-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththesis.tex
58 lines (42 loc) · 1.3 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
% !TeX encoding = utf8
% !TeX program = xelatex
% !BIB program = bibtex
%
% Configuration options:
% english - Use for English language theses
% german - Use for German language theses
% ba - Use for Bachelor theses
% ma - Use for Master theses
\documentclass[german,ma]{tudo-sse-thesis}
% Add the packages necessary
\usepackage[math]{blindtext}
% Provide your title
\title{Thesis Title}
% Provide your name
\author{Firstname Lastname}
% Provide examiner names. First examiner has a reasonable default and only needs to changed if the default does not fit.
% \firstexaminer{JProf.\ Dr.-Ing.\ Ben Hermann} % Default value
\secondexaminer{Prof.\ Dr.\ Zweiter Gutachter}
\begin{document}
\maketitle
\pagenumbering{roman}
% Only add for english documents
\begin{abstract}
This is an Abstract. \blindtext
\end{abstract}
% This needs to be in German or English documents
\begin{abstract-ger}
Dies ist eine Zusammenfassung. ßäöü \blindtext
\end{abstract-ger}
\tableofcontents
\cleardoublepage
\pagenumbering{arabic}
% Add your content here
\input{chapters/introduction.tex}
\input{chapters/sample-chapter.tex}
% Bibliography
\bibliographystyle{ACM-Reference-Format}
\bibliography{bibliography/references}
\addcontentsline{toc}{chapter}{\bibname}
\includepdf[pages=-]{Eidesstattliche_Versicherung}
\end{document}