-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy paththesis.tex
More file actions
79 lines (60 loc) · 1.74 KB
/
Copy paththesis.tex
File metadata and controls
79 lines (60 loc) · 1.74 KB
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
\documentclass{scrbook}
\input{style}
\input{macros}
% Set title and author used in the PDF meta data
\hypersetup{
pdftitle={Wie schreibe ich eine Masterarbeit?},
pdfauthor={Erika Mustermann}
}
% Depending on which of the following two color schemes you import your thesis will be in color or grayscale. I recommend to generate a colored version as a PDF and a grayscale version for printing.
\input{schema-color}
%\input{schema-gray}
\newcommand{\duedate}{15. Juli 2016}
\begin{document}
\frontmatter
\include{title}
\include{declaration}
\include{abstract}
\cleardoublepage
\phantomsection
\pdfbookmark{\contentsname}{tableofcontents}
\markboth{\contentsname}{}
\tableofcontents
% Remove this for the final version of the thesis!
\cleardoublepage
\phantomsection
\newcommand{\listtodoname}{Aufgabenverzeichnis}
\pdfbookmark{\listtodoname}{listoftodos}
\listoftodos[\listtodoname]
\mainmatter
\include{einleitung}
\include{grundlagen}
\include{konzept}
\include{evaluation}
\include{fazit}
\appendix
\include{appendix}
\backmatter
\cleardoublepage
\phantomsection
\pdfbookmark{\listfigurename}{listoffigures}
\listoffigures
\cleardoublepage
\phantomsection
\pdfbookmark{\listtablename}{listoftables}
\listoftables
\cleardoublepage
\phantomsection
\renewcommand{\listtheoremname}{Definitions- und Theoremverzeichnis}
\pdfbookmark{\listtheoremname}{listoftheorems}
\listoftheorems[ignoreall,show={Lemma,Theorem,Korollar,Definition}]
\cleardoublepage
\phantomsection
\pdfbookmark{\lstlistlistingname}{listoflistings}
\lstlistoflistings
\include{abkuerzungen}
\cleardoublepage
\phantomsection
\pdfbookmark{\bibname}{bibliography}
\bibliography{literature}
\end{document}