-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththesis.tex
More file actions
75 lines (54 loc) · 1.83 KB
/
Copy paththesis.tex
File metadata and controls
75 lines (54 loc) · 1.83 KB
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
\documentclass[
english, % change to ngerman for german theses
twoside=false, % use twoside for booklike layouts
numbers=noenddot, % remove trailing dots in chapter/section/... enumeration
parskip=half*
]{scrbook}
\input{preamble}
% configure the location of the biblatex file
\addbibresource{bibliography.bib}
\AtEveryBibitem{%
\clearfield{note}%
}
\begin{document}
\frontmatter
\pagenumbering{roman} % uppercase Roman numerals for front matter
\faculty{Faculty of Computer Science}
\institute{Institute of Systems Architecture}
\chair{Chair of Distributed and Networked Systems}
\title{%
Title of your Thesis
}
% \subtitle{An Optional Subtitle} % uses KOMA's built-in \subtitle
\thesis{master} % the type of thesis you want to write, e.g., master, bachelor
\graduation[M.Sc.]{Master of Science}
\author{Max Mustermann}
\matriculationnumber{1234567}
\email{max.mustermann@mailbox.tu-dresden.de}
\supervisor{%
Dipl. Inf. Max Mustermann \and Dr. Co-Supervisor
}
\professor{Prof. Dr. rer. nat. Matthias Wählisch}
\reviewer{Prof. Dr. Second Reviewer}
\date{01.01.1970} % the date of submission
\maketitle
% \includepdf[pages=-]{task/task.pdf} % optional: task definition
\raggedbottom
\confirmation
\input{sections/abstract}
\tableofcontents
\listoffigures
\addcontentsline{toc}{chapter}{\listfigurename}
\listoftables
\addcontentsline{toc}{chapter}{\listtablename}
\mainmatter % arabic page numbers, chapter numbering re-enabled
% this is where your thesis lives
\input{sections/introduction}
\Blinddocument
\blinddocument
\backmatter % arabic continues, chapter numbers suppressed
\printbibliography[heading=bibintoc]\label{sec:bibliography}
\appendix % chapter numbering switches to A, B, C…
\part*{Appendix}
\input{sections/appendix}
\end{document}