|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- %%% Main Document
-
- \input{Praeambel} % settings
-
- \begin{document} % beginning of the document
-
- \hypersetup{
- pdftitle={Template}, % insert title of the thesis
- pdfsubject={Thesis}, % Bachelor`s Thesis, Research Internship, Master's Thesis
- pdfauthor={First Name Last Name}, % insert your name
- pdfkeywords={Key Words} % insert key words
- }
-
- \include{Content/TitlePage_LES} % including the title page for LES students
- %\include{Content/TitlePage_ZAE} % including the title page for ZAE students
-
- \newpage\thispagestyle{empty}\mbox{}\newpage % including a blank page
- \pagenumbering{Roman} % page numbering with large roman numerals
-
- \input{Content/StatutoryDeclaration} % including the statutory declaration
- \cleardoublepage % page break after the statutory declaration
-
- %\input{Content/Acknowledgements} % including the acknowledgements
- %\cleardoublepage % page break after the acknowledgements
-
- \input{Content/Abstract} % including the abstract
- \cleardoublepage % page break after the abstract
-
- \pdfbookmark[0]{\contentsname}{chap:toc} % adds the table of contents to the bookmark bar of the generated PDF
- \tableofcontents % including the table of contents
- \cleardoublepage % page break after the table of contents
-
- \listoffigures % including the list of figures
- \cleardoublepage % page break after the list of figures
-
- \listoftables % including the list of tables
- \cleardoublepage % page break after the list of tables
-
- \input{Content/Abbreviations} % including the abbreviations
- \cleardoublepage % page break after the abbreviations
-
- \input{Content/Notation} % including the notation
- \cleardoublepage % page break after the notation
-
- \pagenumbering{arabic} % page numbering with large arabic numerals
-
- \input{Content/Introduction} % including the introduction
- \cleardoublepage % page break after the introduction
-
- \input{Content/Theoretical Background} % including the main section
- \cleardoublepage % page break after the main section
-
- \input{Content/Method} % including the main section
- \cleardoublepage % page break after the main section
-
- \input{Content/Results and Discussion} % including the main section
- \cleardoublepage % page break after the main section
-
- \input{Content/SummaryAndOutlook} % including the summary and outlook
- \cleardoublepage % page break after the summary and outlook
-
- \interlinepenalty 10000 % prevents a page break in the bibliography within an entry
-
- %\bibliographystyle{dinatles} % modification of the "dinat" style for the LES
- \bibliographystyle{unsrtnat} % numerical citation
- %\bibliographystyle{english_dinatles} % good style if your thesis is in english
-
- \bibliography{Bibliography} % including the bibliography
- \cleardoublepage % page break after the bibliography
-
- \appendix % change document to appendix
- \input{Content/Appendix} % including the appendix
- %\clearpage % page break after the appendix
-
- \end{document} % end of the document
|