-
Notifications
You must be signed in to change notification settings - Fork 0
/
abschlussarbeit.tex
83 lines (68 loc) · 2.09 KB
/
abschlussarbeit.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
\documentclass[
reqno,
fontsize=12pt,
twoside,
numbers=noenddot % Removes dots after figure labels (Figure 1.: ... becomes Figure 1: ...)
]{scrbook}
\usepackage{arbeit}
\input{macros}
\bibliography{references}
% Fix hypenation
\hyphenation{Fur-ther-more}
\begin{document}
\newcommand{\TypeDerArbeit}{Masterarbeit}
\newcommand{\Student}{Christian Reinbold}
\newcommand{\Betreuer}{\parbox[t]{8cm}{apl. Prof. Dr. Anne Frühbis-Krüger \\ Dr. Janko Böhm \\ Dr. Mirko Rahn}}
\newcommand{\Kooperation}{Technische Universität Kaiserslautern \\
Fraunhofer-Institut für Techno- und Wirtschaftsmathematik}
\newcommand{\Matrikelnummer}{2942360}
\newcommand{\Erstpruefer}{apl. Prof. Dr. Anne Frühbis-Krüger}
\newcommand{\Zweitpruefer}{Dr. Janko Böhm}
\newcommand{\AbgabeDerArbeit}{11.01.2018}
\newcommand{\TitelDerArbeit}{Computation of the GIT-fan using a massively parallel implementation}
\newcommand{\Einrichtung}{Leibniz Universität Hannover\\Fakultät für Mathematik und Physik\\Institut für Algebraische Geometrie}
\include{includes/titlepage}
\frontmatter
{
\pagestyle{plain}
\include{includes/abstract}
\cleardoublepage
\include{includes/acknowledgements}
}
\tableofcontents
\cleardoublepage
\mainmatter
\addtolength{\headheight}{3pt}
\setcounter{chapter}{0}
\include{includes/introduction}
\include{includes/preliminaries}
\include{includes/algorithm}
\include{includes/implementation}
\include{includes/applications}
\include{includes/conclusion}
\appendix
\include{includes/appendix}
% Literaturhinweise
\backmatter
\nocite{*}
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
% Abkürzungsverzeichnis
\include{includes/acronym}
% Index
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Index}
\printindex
% Abkürzungsverzeichnis
%\cleardoublepage
%\addcontentsline{toc}{chapter}{List of abbreviations}
%\input{includes/acronyms}
% Selbstständigkeitserklärung
\cleardoublepage
{
\pagestyle{empty}
\include{includes/erklaerung}
}
\end{document}