-
Notifications
You must be signed in to change notification settings - Fork 0
/
document.tex
85 lines (64 loc) · 2.35 KB
/
document.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
74
75
76
77
78
79
80
81
82
83
84
85
% This thesis template is based on the report class of
% latex. Yout do not need to change this.
\documentclass[12pt, a4paper]{report}
% This includes all variables that are used in this work
% Use this document to specify your name, your reviewers
% and other values that you would like to maintain
% in one place.
\include{variables}
% This includes all packages and presets. You do not need
% to change this file unless you want to add new packages
% or change the presets of one of the used packages.
\include{frontmatter/preamble}
% This includes custom latex commands. You can use this
% file to create your own command sequences.
\include{commands}
\begin{document}
\frontmatter
% This places the front matter. You do not need to
% change this file. All thesis-specific values are
% imported from "variables.tex".
\include{frontmatter/titlepage}
% This places the "Eidesstattliche Erklärung". This
% Document is always in German, even if your work is
% written in English.
% \include{frontmatter/erklarung}
\tableofcontents
\markboth{}{}
% This adds a german and an english summary to your work.
% You always have to add both, independent of whether your
% work is done in german or english
% \include{frontmatter/summary_en}
% \include{frontmatter/summary_de}
\mainmatter
% This places the actual chapters. The files referenced here
% are just an example. You can add additional chapters if
% necessary
\include{chapters/chap01}
\include{chapters/chap02}
\include{chapters/chap03}
%\include{chapters/chap04}
\iflanguage{english}{
\bibliographystyle{apalike}
}{
\bibliographystyle{apalike-german}
}
% This places the bibliography. You can add more
% bibliographic items it the bibliography.bib file.
% We suggest using a reference manager (e.g., Jabref)
% to maintain this file
\bibliography{bibliography}
\newpage
\backmatter
\begin{appendices}
% This is the actual appendix. The files referenced here
% are just examples. You can add additional appendices
% if necessary
% \include{appendix/app01}
%\include{appendix/app02}
\include{frontmatter/acronyms}
% \lstlistoflistings
\listoffigures
% \listoftables
\end{appendices}
\end{document}