forked from MichaelGrupp/TTT
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUoB_Thesis_Template.tex
89 lines (62 loc) · 2.34 KB
/
UoB_Thesis_Template.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
%%%%%%%%%%%%%%%%%%%
% placeholders
%%%%%%%%%%%%%%%%%%%
% chair name not allowed at Department of Informatics
% remove \phantom{} if you want the chair name on the cover
\newcommand{\chair}{\phantom{Cognitive Systems}}
\newcommand{\faculty}{Information Systems and Applied Computer Sciences}
\newcommand{\uni}{Otto-Friedrich-Universit\"at Bamberg}
\newcommand{\studycourse}{Robotics, Cognition, Intelligence}
\newcommand{\authorname}{Max Mustermann}
\newcommand{\city}{Bamberg}
\newcommand{\worktype}{Master's Thesis in \studycourse}
\newcommand{\titleFirstLanguage}{Energy-Saving Approaches for Highly Efficient Procrastination in Robotics Research}
% optional: German & English
\newcommand{\titleForeignLanguage}{Energiesparende Verfahren f\"ur hocheffiziente Prokrastination in der Robotik}
\newcommand{\supervisor}{Prof. Dr. rer. nat. John Doe}
\newcommand{\advisor}{Dr. Ing. Eva Musterfrau}
% set date manually or use \today
\newcommand{\submissionDate}{\today}
% optionally, yo can use {\AdvanceDate[+1]\today} for tomorrow, yesterday etc.
%%%%%%%%%%%%%%%%%%%
% settings
%%%%%%%%%%%%%%%%%%%
% quick settings
\def\printstyle{twoside} % set to {twoside} for printing, else {oneside}
%\def\monochromeCover{} % uncomment if you prefer a black UoB logo on the cover
\def\monochromeCoverInside{} % uncomment if you prefer a black UoB logo on the inside cover page
% complete settings & packages: see settings.text
\input{settings}
%%%%%%%%%%%%%%%%%%%
% main document
%%%%%%%%%%%%%%%%%%%
\begin{document}
\frontmatter
% first part of document before actual content
\include{titlepage} % first titlepage
\include{titlepage_inside} % optional second titlepage
\include{content/Abstract}
\include{content/Acknowledgements}
\include{content/Poem}
\tableofcontents
\mainmatter
% include chapter files here or write your text directly here
\include{content/ExampleChapterOne}
\include{content/ExampleChapterTwo}
\backmatter
% optional: list of figures
\listoffigures
% optional: list of tables
\listoftables
% optional: list of source code listings
\lstlistoflistings
% % optional: list of algorithms
\listofalgorithms
% your BibTex file
\bibliography{bib/references.bib}
\appendix
% include appendix chapters here
\include{content/AppendixExample}
% for the University of Bamberg, this has to be on the last page
\include{content/EidesstattlicheErklaerung}
\end{document}