thesis.tex 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. \newcommand{\RO}{\ensuremath{\mathcal{R}_0}}
  24. \newcommand{\Rt}{\ensuremath{\mathcal{R}_t}}
  25. \pagenumbering{Roman}
  26. \begin{dbvthesisTitlepageAndDeclaration}
  27. % Specify the title and a possible subtitle of your thesis, if you do not have a subtitle, comment the Subtitle command out
  28. \Title{Investigating the Evolution of the COVID-19 Pandemic in Germany Using Physics-Informed Neural Networks}
  29. \ThesisType{Bachelor Thesis}
  30. \FirstName{Phillip}
  31. \LastName{Rothenbeck}
  32. \DateOfBirth{22}{02}{2002}
  33. \Birthplace{Eckernf{\"o}rde}
  34. % 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
  35. \Supervisor{Prof. Dr.-Ing. Joachim Denzler} % optional
  36. \Advisor{Niklas Penzel, Sai Karthikeya Vemuri} % mandatory
  37. % Specify start and end of your thesis
  38. \ThesisStart{01}{05}{2024}
  39. \ThesisEnd{14}{09}{2024}
  40. \end{dbvthesisTitlepageAndDeclaration}
  41. 40 pages in total
  42. \begin{enumerate}
  43. \item Introduction | 5
  44. \begin{enumerate}
  45. \item Introduction / Motivation | 3
  46. \item Related Work | 2
  47. \end{enumerate}
  48. \item Background | 12
  49. \begin{enumerate}
  50. \item Domains | 1
  51. \item Basics of Differential Equations | 1
  52. \item Pandemic Models | 3
  53. \begin{enumerate}
  54. \item SIR Model | 2
  55. \item reduced SIR Model | 1
  56. \end{enumerate}
  57. \item Multilayer Perceptron | 2
  58. \item Physics Informed Neural Networks | 5
  59. \begin{enumerate}
  60. \item General | 3
  61. \item Desease Informed Neural Networks | 2
  62. \end{enumerate}
  63. \end{enumerate}
  64. \item Methods | 8
  65. \begin{enumerate}
  66. \item Data Preprocessing | 3
  67. \begin{enumerate}
  68. \item RKI Data | 2
  69. \item Recovery Queue | 1
  70. \end{enumerate}
  71. \item SIR | 3
  72. \item r SIR | 2
  73. \end{enumerate}
  74. \item Experiments | 10
  75. \begin{enumerate}
  76. \item SIR Model | 5
  77. \begin{enumerate}
  78. \item Setup | 1
  79. \item Results | 4
  80. \end{enumerate}
  81. \item reduced SIR Model | 5
  82. \begin{enumerate}
  83. \item Setup | 1
  84. \item Results | 4
  85. \end{enumerate}
  86. \end{enumerate}
  87. \item Conclusions | 3
  88. \item Further Work
  89. \end{enumerate}
  90. \include{./abstract}
  91. \tableofcontents
  92. \cleardoublepage
  93. \pagenumbering{arabic}
  94. \include{./chapters/chap01-introduction/chap01-introduction}
  95. %--------------------------------------------------
  96. %--------------------------------------------------
  97. \include{./chapters/chap02/chap02}
  98. %--------------------------------------------------
  99. %--------------------------------------------------
  100. \include{./chapters/chap03/chap03}
  101. %--------------------------------------------------
  102. %--------------------------------------------------
  103. \include{./chapters/chap04/chap04}
  104. %--------------------------------------------------
  105. %--------------------------------------------------
  106. \include{./chapters/conclusions/conclusions}
  107. %--------------------------------------------------
  108. %--------------------------------------------------
  109. \appendix
  110. % if you do not have appendix sections, comment this include command out
  111. %\include{./chapters/appendix/appendix}
  112. \singlespacing
  113. \interlinepenalty10000 % so no bib-entry will be separated by a pagebreak
  114. \bibliography{thesis.bib}
  115. \bibliographystyle{alphadin} % change the bib-style if you want to
  116. \listoffigures
  117. \listoftables
  118. \end{document}