-
Notifications
You must be signed in to change notification settings - Fork 0
/
Paper.tex
73 lines (55 loc) · 1.31 KB
/
Paper.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
\input{Praeambel}
\begin{document}
% Title page
\include{Content/Titlepage}
% Roman numerics in caps beginning with 2
\pagenumbering{Roman}
\setcounter{page}{2}
% Non-disclosure statement (only when needed)
\include{Content/NonDisclosure}
% Declaration of Authorship
\include{Content/Declaration}
% Abstract
\include{Content/Abstract}
% Inhaltsverzeichnis
\tableofcontents
\pagebreak
% Abbreviations
\addchap{Abbreviations}
\input{Content/Abbreviations}
\pagebreak
% List of figures
\listoffigures
\pagebreak
% List of tables
\listoftables
\pagebreak
% List of listings
\lstlistoflistings
\pagebreak
% List of to-dos
\listoftodos
\pagebreak
% Use Arabic numerics
\clearpage
\pagenumbering{arabic}
% Change left header to current chapter
\ihead[\headmark]{\headmark}
% Content of the paper
\include{Content/Chapters/01_Introduction}
\include{Content/Chapters/02_Foundations}
\include{Content/Chapters/03_Analysis}
\include{Content/Chapters/04_Implementation}
\include{Content/Chapters/05_Validation}
\include{Content/Chapters/06_Conclusion}
\clearpage
% Change left header to title
\ihead[\mytitle]{\mytitle}
% Appendix
\appendix
\input{Content/Chapters/A_Appendix}
% Bibliography
\printbibliography[title={Literature}]
\clearpage
\clearpage
\end{document}