123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- %%%%%% 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}.}
- \graphicspath{ {./images/} }
- \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{Investigating the Evolution of the COVID-19 Pandemic in Germany Using Physics-Informed Neural Networks}
- \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}
- \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{./chapters/conclusions/conclusions}
- %--------------------------------------------------
- %--------------------------------------------------
- \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{unsrt} % change the bib-style if you want to
- \listoffigures
- \listoftables
- \end{document}
|