%%%%% 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}