-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathTUM_Thesis_Template.tex
85 lines (57 loc) · 2.14 KB
/
TUM_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
%%%%%%%%%%%%%%%%%%%
% placeholders
%%%%%%%%%%%%%%%%%%%
% chair name not allowed at Department of Informatics
% remove \phantom{} if you want the chair name on the cover
\newcommand{\chair}{\phantom{Lehrstuhl f\"ur Musterverfahren}}
\newcommand{\faculty}{Fakult\"at f\"ur Informatik}
\newcommand{\uni}{Technische Universit\"at M\"unchen}
\newcommand{\studycourse}{Robotics, Cognition, Intelligence}
\newcommand{\authorname}{Max Mustermann}
\newcommand{\city}{Munich}
\newcommand{\worktype}{Master's Thesis in \studycourse}
\newcommand{\titleFirstLanguage}{Energy-Saving Approaches for Highly Efficient Procrastination in Robotics Research}
% German & English needed at Department of Informatics
\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}
%%%%%%%%%%%%%%%%%%%
% settings
%%%%%%%%%%%%%%%%%%%
% quick settings
\def\printstyle{twoside} % set to {twoside} for printing, else {oneside}
%\def\monochromeCover{} % uncomment if you prefer a black TUM logo on the cover
\def\monochromeCoverInside{} % uncomment if you prefer a black TUM 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}
\include{titlepage_inside} % needed at Department of Informatics
\include{content/EidesstattlicheErklaerung}
\include{content/Abstract}
\include{content/Acknowledgements}
\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
% your BibTex file
\bibliography{bib/references.bib}
\appendix
% include appendix chapters here
\include{content/AppendixExample}
\end{document}