thesis.tex 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. %%%%%% Explanation of class options
  2. %
  3. % predefineddeclaration: if you use option predefineddeclaration, a predefined declaration (always in German!) will be automatically included between titlepage and abstract using \FirstName, \LastName, \ThesisEnd,
  4. % (1) if you do not use this option, the file "declaration.tex" will be included automatically between titlepage and abstract instead
  5. % (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
  6. % (3) "declaration.tex" needs to be modified manually with respect to name and date!
  7. %
  8. % additional options will be passed to the base class "scrbook"
  9. %
  10. %%%%% End of explanations
  11. \documentclass[11pt, english, predefineddeclaration, BCOR=10mm]{dbvthesis}
  12. \usepackage{blindtext}
  13. \input{header.tex} % put all the required packages and stuff in file header.tex
  14. \input{macros.tex} % define your own abbreviations,commands, etc. in file macros.tex
  15. % widow and club penalty
  16. \widowpenalty = 10000
  17. \clubpenalty = 10000
  18. \displaywidowpenalty = 10000
  19. \renewcommand{\labelenumii}{\theenumii}
  20. \renewcommand{\theenumii}{\theenumi.\arabic{enumii}.}
  21. \graphicspath{ {./images/} }
  22. \begin{document}
  23. \pagenumbering{Roman}
  24. \begin{dbvthesisTitlepageAndDeclaration}
  25. % Specify the title and a possible subtitle of your thesis, if you do not have a subtitle, comment the Subtitle command out
  26. \Title{Investigating the Evolution of the COVID-19 Pandemic in Germany Using Physics-Informed Neural Networks}
  27. \ThesisType{Bachelor Thesis}
  28. \FirstName{Phillip}
  29. \LastName{Rothenbeck}
  30. \DateOfBirth{22}{02}{2002}
  31. \Birthplace{Eckernf{\"o}rde}
  32. % 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
  33. \Supervisor{Prof. Dr.-Ing. Joachim Denzler} % optional
  34. \Advisor{Niklas Penzel, Sai Karthikeya Vemuri} % mandatory
  35. % Specify start and end of your thesis
  36. \ThesisStart{01}{05}{2024}
  37. \ThesisEnd{14}{09}{2024}
  38. \end{dbvthesisTitlepageAndDeclaration}
  39. \include{./abstract}
  40. \tableofcontents
  41. \cleardoublepage
  42. \pagenumbering{arabic}
  43. \include{./chapters/chap01-introduction/chap01-introduction}
  44. %--------------------------------------------------
  45. %--------------------------------------------------
  46. \include{./chapters/chap02/chap02}
  47. %--------------------------------------------------
  48. %--------------------------------------------------
  49. \include{./chapters/chap03/chap03}
  50. %--------------------------------------------------
  51. %--------------------------------------------------
  52. \include{./chapters/chap04/chap04}
  53. %--------------------------------------------------
  54. %--------------------------------------------------
  55. \include{./chapters/conclusions/conclusions}
  56. %--------------------------------------------------
  57. %--------------------------------------------------
  58. \appendix
  59. % if you do not have appendix sections, comment this include command out
  60. \include{./chapters/appendix/appendix}
  61. \singlespacing
  62. \interlinepenalty10000 % so no bib-entry will be separated by a pagebreak
  63. \bibliography{thesis.bib}
  64. \bibliographystyle{unsrt} % change the bib-style if you want to
  65. \listoffigures
  66. \listoftables
  67. \end{document}