-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy paththesis.tex
155 lines (130 loc) · 4 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% MCI Thesis Template
%% Copyright 2018. David Gollasch.
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[
11pt,
a4paper,
twoside,
openright,
titlepage=firstiscover,
numbers=noenddot,
BCOR=12mm,
headsepline,
footsepline,
toc=listof,
toc=bibliography
]{scrbook}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% 1. Configure Document
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%todo: Configure Document
\def\doclanguage{english} %english, german, ngerman
\def\doctitle{Ministry of Silly Walks}
\def\doctype{Bachelor's Thesis}
\def\docdate{\today}
\def\authorname{John Doe}
\def\authorbirthday{18.04.1990}
\def\authorbirthplace{Old Gill on South}
\def\professor{Prof. Dr. rer. nat. habil. Gerhard Weber}
\def\supervisors{Dr.-Ing. Jane Doe \\ Christoph Smith, M.\,Sc.}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% 2. Take a Look at the Following Predefined Commands
%%
%% - encoding is utf8 and does not require entities for ä/ö/ü/ß
%% - generate the document using XeLaTeX instead of pdfLaTeX
%% - and Biber engine instead of BibTeX
%% - Ensure, your TeX distribution is up to date!
%%
%% - BIB-File is located at includes/bibliography.bib
%% - abbreviations supported (includes/acronyms.tex)
%% - multiple columns supported (multicol)
%% - URLs supported (url)
%%
%% - definitions and formulae supported
%% USAGE:
%% \begin{definition}[<term>] | \begin{formula}[<term>]
%% \label{def:<term>} | \label{for:<term>}
%% <definition text> | <formula text>
%% \end{definition} | \end{formula}
%%
%% - listings supported (listings)
%% USAGE:
%% inline:
%% \begin{lstlisting}[caption=<caption>, label=lst:<label>]
%% <YOUR CODE HERE>
%% \end{lstlisting}
%% include:
%% \lstinputlisting[language=Python]{source_filename.py}
%%
%% - predefined commands for TODOs
%% USAGE:
%% \todo{This is a sandbox todo.}
%% \todo[Wow]{This as well with own labeling.}
%% \enhancement{This is an enhancement.}
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%todo: Look into the available commands
\include{includes/commands}
\begin{document}
\pagenumbering{gobble}
\include{includes/titlepage}
%todo: Include thesis task description here
% You got it from your supervisor. Scan the document and
% include it as full-page PDF here. If your task description
% is larger than 3 pages, consider putting it in the appendix
% instead.
\include{includes/confirmation} %todo: Sign the confirmation
\cleardoublepage
\pagenumbering{Roman}
%todo: Write an abstract
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
\Blindtext[2][2]
\tableofcontents
\cleardoublepage
\pagenumbering{arabic}
%todo: Write you thesis content
\chapter{Motivation}
\Blindtext[2][2]
\chapter{Context and Preliminaries}
\Blindtext[2][2]\cite{al-kodmany_sentient_2012}
\section{This is a Section}
\Blindtext[2][2]
\begin{definition}[Useless Definition Using Blindtext]
\Blindtext[1][1]
\end{definition}
\Blindtext[1][2]
\cleardoublepage
\pagenumbering{roman}
\appendix
%todo: Add appendices
\chapter{Appendix}
\Blindtext[2][2]
% List of Abbreviations
%todo: Include your abbreviations into includes/acronyms.tex
\include{includes/acronyms}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% THE FOLLOWING WILL GENERATE LISTS AUTOMATICALLY
% DO NOT CHANGE THE CODE BESIDES THE LISTS' ORDER
% List of Definitions
\renewcommand{\listtheoremname}{List of Definitions}
\listoftheorems[ignoreall,show={definition}]
% List of Figures
\listoffigures
% List of Tables
\listoftables
% List of Listings
\renewcommand{\lstlistlistingname}{List of \lstlistingname s}
\lstlistoflistings
% List of Formulas
\renewcommand{\listtheoremname}{List of Formulas}
\listoftheorems[ignoreall,show={formula}]
% Bibliography
\printbibliography %\printbibliography[heading=bibintoc] if ToC entry desired
\end{document}