forked from yforster/thesis-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
90 lines (59 loc) · 1.59 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
\documentclass[a4paper,11pt, openany, draft]{book} %Remove draft option to hide ToDos
\include{header}
\tolerance=200
\settitle{A Very Nice Thesis}
\setauthor{Dieter Schlau}
\advisor{Prof. Dr. Fast Richtig}
\reviewerOne{Prof. Dr. Fast Richtig}
\reviewerTwo{Prof. Dr. Leider Falsch}
\university{Saarland University}
\faculty{Faculty of Mathematics and Computer Science}
\thesistype{Bachelor's}
\DTMsavedate{subdate}{2017-01-01}
\city{Saarbr\"ucken}
\setBaseUrl{{https://www. ... .de/coq/}}
\DeclareTextFontCommand{\emph}{\bfseries}
\pagenumbering{roman}
\setlength{\headheight}{15pt}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{ \markboth{#1}{} }
%\renewcommand{\sectionmark}[1]{ \markright{#1}{} }
\fancyhf{}
\fancyhead[LE,RO]{\thepage}
\fancyhead[RE]{\textit{ \nouppercase{\leftmark}} }
\fancyhead[LO]{\textit{ \nouppercase{\rightmark}} }
\fancypagestyle{plain}{
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
}
\makeglossaries
\begin{document}
\renewcommand\cite{\citep}
\thispagestyle{empty}
\maketitlepage
\statementpage
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{\numberline{}Abstract}
\input{abstract}
\newpage
\chapter*{Acknowledgements}
\input{acknowledgements}
\addtocontents{toc}{\vspace{5mm}}
\tableofcontents
\listoftodos
\clearpage
\pagenumbering{arabic}
\include{chapterOne}
\include{chapterTwo}
\appendix
\addtocontents{toc}{\vspace{5mm}}
\include{chapterAppendix}
\renewcommand{\emph}{\textit}
\bibliographystyle{plainnat}
\bibliography{mybibliography}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: