thesis.tex 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. %%%%% Explanation of class options
  2. %
  3. % font size: YOU HAVE TO CHOOSE one of the following: 11pt, 12pt
  4. % language: YOU HAVE TO CHOOSE one of the following: english, german, ngerman
  5. % predefineddeclaration: if you use option predefineddeclaration, a predefined declaration (always in German!) will be automatically included between titlepage and abstract using \FirstName, \LastName, \ThesisEnd,
  6. % (1) if you do not use this option, the file "declaration.tex" will be included automatically between titlepage and abstract instead
  7. % (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
  8. % (3) "declaration.tex" needs to be modified manually with respect to name and date!
  9. %
  10. % additional options will be passed to the base class "scrbook"
  11. %
  12. %%%%% End of explanations
  13. \documentclass[12pt,english,predefineddeclaration,BCOR=10mm]{customdbvthesis}
  14. \include{./header} % put all the required packages and stuff in file header.tex
  15. \usepackage{blindtext}
  16. \include{./macros} % define your own abbreviations,commands, etc. in file macros.tex
  17. % widow and club penalty
  18. \widowpenalty = 10000
  19. \clubpenalty = 10000
  20. \displaywidowpenalty = 10000
  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{Anomaly Detection in Camera Trap Images} % mandatory
  26. % \Subtitle{It is possible, that the subtitle is also too long for a single line} % optional
  27. % Specify the type of your thesis, e.g. Diploma Thesis, Student Research Project, Bachelor Thesis, Master Thesis / Diplomarbeit, Studienarbeit, Bachelorarbeit, Masterarbeit
  28. \ThesisType{Bachelor Thesis} % mandatory
  29. % Specify your first and last name as well as your date of birth and birthplace
  30. \FirstName{Felix} % mandatory
  31. \LastName{Kleinsteuber} % mandatory
  32. \DateOfBirth{10}{12}{2000} % mandatory, format: {DD}{MM}{YYYY} (include leading zeros if necessary)
  33. \Birthplace{Halle (Saale)} % mandatory
  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{B. Sc. Daphne Auer, Dr.-Ing. Paul Bodesheim} % mandatory
  37. % Specify start and end of your thesis
  38. \ThesisStart{11}{04}{2022} % mandatory, format: {DD}{MM}{YYYY} (include leading zeros if necessary)
  39. \ThesisEnd{25}{08}{2022} % mandatory, format: {DD}{MM}{YYYY} (include leading zeros if necessary)
  40. % Specify a second institute, company, etc. if you do not have a second institute or a company, comment the following command out
  41. % \SecondInstitute{Carl Zeiss AG \\ 07743 Jena \\ Germany} % optional
  42. % note that the declaration (always in german!) will be automatically included between titlepage and abstract using \FirstName, \LastName, \ThesisEnd
  43. % you can modify the declaration, if you do not use the class option predefineddeclaration, than you can edit the file "declaration.tex", which will be included automatically between titlepage and abstract
  44. \end{dbvthesisTitlepageAndDeclaration}
  45. \include{./abstract}
  46. \tableofcontents
  47. \cleardoublepage
  48. \pagenumbering{arabic}
  49. \include{./chapters/chap01-introduction/chap01-introduction}
  50. %--------------------------------------------------
  51. %--------------------------------------------------
  52. \include{./chapters/chap02/chap02}
  53. %--------------------------------------------------
  54. %--------------------------------------------------
  55. \include{./chapters/chap03/chap03}
  56. %--------------------------------------------------
  57. %--------------------------------------------------
  58. \include{./chapters/chap04/chap04}
  59. %--------------------------------------------------
  60. %--------------------------------------------------
  61. % include more chapters if you want or have to
  62. %--------------------------------------------------
  63. %--------------------------------------------------
  64. \include{./chapters/conclusions/conclusions}
  65. %--------------------------------------------------
  66. %--------------------------------------------------
  67. \include{./chapters/furtherWork/furtherWork}
  68. %--------------------------------------------------
  69. %--------------------------------------------------
  70. \appendix
  71. % if you do not have appendix sections, comment this include command out
  72. % \include{./chapters/appendix/appendix}
  73. \singlespacing
  74. \interlinepenalty10000 % so no bib-entry will be separated by a pagebreak
  75. \bibliography{thesis}
  76. \bibliographystyle{apalike} % change the bib-style if you want to
  77. \listoffigures
  78. \begingroup
  79. \let\clearpage\relax
  80. \listoftables
  81. \endgroup
  82. \end{document}