forked from dmke/thesis-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
61 lines (42 loc) · 899 Bytes
/
thesis.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
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
\documentclass[english]{thesis}
\usepackage{blindtext}
\setStyleFile{glossary}
\makeglossaries
\input{glossary.tex}
\input{acronyms.tex}
\bibliography{bibliography}
\input{settings.tex}
\begin{document}
% Titel
\maketitle
% Impressumsseite
\clearpage
\thispagestyle{empty}\small
\null\vfill
\makeatletter
\textbf{\@author}\par
\@title\par
\ifthesis@hassubtitle\@subtitleshort\fi
\diplomaname, \@department\par
\@institute, \monthyear
\makeatother
\normalsize
\clearpage
\input{chapters/declarations.tex}
\clearpage
\input{chapters/acknowledgements.tex}
\clearpage
\input{chapters/abstract.tex}
\frontmatter
\phantomsection
\addcontentsline{toc}{section}{\contentsname}
\tableofcontents
%\clearpage
%\listoftodos
\cleardoublepage
\mainmatter
\input{chapters/index.tex}
\input{appendices/index.tex}
\end{document}