123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- %%%%% Explanation of class options
- %
- % predefineddeclaration: if you use option predefineddeclaration, a predefined declaration (always in German!) will be automatically included between titlepage and abstract using \FirstName, \LastName, \ThesisEnd,
- % (1) if you do not use this option, the file "declaration.tex" will be included automatically between titlepage and abstract instead
- % (2) if you do not agree to make your thesis publicly available, you CAN NOT USE this option, but have to use "declaration.tex" instead
- % (3) "declaration.tex" needs to be modified manually with respect to name and date!
- %
- % additional options will be passed to the base class "scrbook"
- %
- %%%%% End of explanations
- \documentclass[11pt, english, predefineddeclaration, BCOR=10mm]{dbvthesis}
- \usepackage{blindtext}
- \input{header.tex} % put all the required packages and stuff in file header.tex
- \input{macros.tex} % define your own abbreviations,commands, etc. in file macros.tex
- % widow and club penalty
- \widowpenalty = 10000
- \clubpenalty = 10000
- \displaywidowpenalty = 10000
- \renewcommand{\labelenumii}{\theenumii}
- \renewcommand{\theenumii}{\theenumi.\arabic{enumii}.}
- \begin{document}
- \pagenumbering{Roman}
- \begin{dbvthesisTitlepageAndDeclaration}
- % Specify the title and a possible subtitle of your thesis, if you do not have a subtitle, comment the Subtitle command out
- \Title{This is the title of my thesis, maybe a very long one} % mandatory
- \Subtitle{It is possible, that the subtitle is also too long for a single line} % optional
- \ThesisType{Bachelor Thesis}
- \FirstName{Phillip}
- \LastName{Rothenbeck}
- \DateOfBirth{22}{02}{2002}
- \Birthplace{Eckernf{\"o}rde}
- % Specify names of your supervisor and advisor(s): you can either split into supervisor and advisor or name everybody in the advisor command. in the last case, comment the supervisor command out
- \Supervisor{Prof. Dr.-Ing. Joachim Denzler} % optional
- \Advisor{Niklas Penzel, Sai Karthikeya Vemuri} % mandatory
- % Specify start and end of your thesis
- \ThesisStart{01}{05}{2024}
- \ThesisEnd{14}{09}{2024}
- \end{dbvthesisTitlepageAndDeclaration}
- 40 pages in total
- \begin{enumerate}
- \item Introduction | 5
- \begin{enumerate}
- \item Introduction / Motivation | 3
- \item Related Work | 2
- \end{enumerate}
- \item Background | 18
- \begin{enumerate}
- \item Theory | 15
- \begin{enumerate}
- \item Domains | 1
- \item Differential Equations | 1
- \item Multilayer Perceptron | 2
- \item Physics Informed Neural Networks | 5
- \begin{enumerate}
- \item Forward Problem | 3
- \item Backward Problem | 2
- \end{enumerate}
- \item SIR Model | 2
- \item Desease Informed Neural Networks | 2
- \item reduced SIR Model | 2
- \end{enumerate}
- \item RKI Data | 3
- \end{enumerate}
- \item Methods | 4
- \begin{enumerate}
- \item Data Preprocessing | 3
- \item Recovery Queue | 1
- \end{enumerate}
- \item Experiments | 10
- \begin{enumerate}
- \item SIR Model | 5
- \begin{enumerate}
- \item Setup | 1
- \item Results | 4
- \end{enumerate}
- \item reduced SIR Model | 5
- \begin{enumerate}
- \item Setup | 1
- \item Results | 4
- \end{enumerate}
- \end{enumerate}
- \item Conclusions | 3
- \item Further Work
- \end{enumerate}
- \include{./abstract}
- \tableofcontents
- \cleardoublepage
- \pagenumbering{arabic}
- \include{./chapters/chap01-introduction/chap01-introduction}
- %--------------------------------------------------
- %--------------------------------------------------
- \include{./chapters/chap02/chap02}
- %--------------------------------------------------
- %--------------------------------------------------
- \include{./chapters/chap03/chap03}
- %--------------------------------------------------
- %--------------------------------------------------
- \include{./chapters/chap04/chap04}
- %--------------------------------------------------
- %--------------------------------------------------
- % include more chapters if you want or have to
- %--------------------------------------------------
- %--------------------------------------------------
- \include{./chapters/conclusions/conclusions}
- %--------------------------------------------------
- %--------------------------------------------------
- \include{./chapters/furtherWork/furtherWork}
- %--------------------------------------------------
- %--------------------------------------------------
- \appendix
- % if you do not have appendix sections, comment this include command out
- \include{./chapters/appendix/appendix}
- \singlespacing
- \interlinepenalty10000 % so no bib-entry will be separated by a pagebreak
- \bibliography{thesis.bib}
- \bibliographystyle{alphadin} % change the bib-style if you want to
- \listoffigures
- \listoftables
- \end{document}
|