thesis.tex 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. \begin{document}
  22. \pagenumbering{Roman}
  23. \begin{dbvthesisTitlepageAndDeclaration}
  24. % Specify the title and a possible subtitle of your thesis, if you do not have a subtitle, comment the Subtitle command out
  25. \Title{This is the title of my thesis, maybe a very long one} % mandatory
  26. \Subtitle{It is possible, that the subtitle is also too long for a single line} % optional
  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. 40 pages in total
  40. \begin{enumerate}
  41. \item Introduction | 5
  42. \begin{enumerate}
  43. \item Introduction / Motivation | 3
  44. \item Related Work | 2
  45. \end{enumerate}
  46. \item Background | 18
  47. \begin{enumerate}
  48. \item Theory | 15
  49. \begin{enumerate}
  50. \item Domains | 1
  51. \item Differential Equations | 1
  52. \item Multilayer Perceptron | 2
  53. \item Physics Informed Neural Networks | 5
  54. \begin{enumerate}
  55. \item Forward Problem | 3
  56. \item Backward Problem | 2
  57. \end{enumerate}
  58. \item SIR Model | 2
  59. \item Desease Informed Neural Networks | 2
  60. \item reduced SIR Model | 2
  61. \end{enumerate}
  62. \item RKI Data | 3
  63. \end{enumerate}
  64. \item Methods | 4
  65. \begin{enumerate}
  66. \item Data Preprocessing | 3
  67. \item Recovery Queue | 1
  68. \end{enumerate}
  69. \item Experiments | 10
  70. \begin{enumerate}
  71. \item SIR Model | 5
  72. \begin{enumerate}
  73. \item Setup | 1
  74. \item Results | 4
  75. \end{enumerate}
  76. \item reduced SIR Model | 5
  77. \begin{enumerate}
  78. \item Setup | 1
  79. \item Results | 4
  80. \end{enumerate}
  81. \end{enumerate}
  82. \item Conclusions | 3
  83. \item Further Work
  84. \end{enumerate}
  85. \include{./abstract}
  86. \tableofcontents
  87. \cleardoublepage
  88. \pagenumbering{arabic}
  89. \include{./chapters/chap01-introduction/chap01-introduction}
  90. %--------------------------------------------------
  91. %--------------------------------------------------
  92. \include{./chapters/chap02/chap02}
  93. %--------------------------------------------------
  94. %--------------------------------------------------
  95. \include{./chapters/chap03/chap03}
  96. %--------------------------------------------------
  97. %--------------------------------------------------
  98. \include{./chapters/chap04/chap04}
  99. %--------------------------------------------------
  100. %--------------------------------------------------
  101. % include more chapters if you want or have to
  102. %--------------------------------------------------
  103. %--------------------------------------------------
  104. \include{./chapters/conclusions/conclusions}
  105. %--------------------------------------------------
  106. %--------------------------------------------------
  107. \include{./chapters/furtherWork/furtherWork}
  108. %--------------------------------------------------
  109. %--------------------------------------------------
  110. \appendix
  111. % if you do not have appendix sections, comment this include command out
  112. \include{./chapters/appendix/appendix}
  113. \singlespacing
  114. \interlinepenalty10000 % so no bib-entry will be separated by a pagebreak
  115. \bibliography{thesis.bib}
  116. \bibliographystyle{alphadin} % change the bib-style if you want to
  117. \listoffigures
  118. \listoftables
  119. \end{document}