generated from felix-kaestner/better-tudscr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
187 lines (141 loc) · 4.61 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
% the following command is only required if the thesis is written in german
\RequirePackage[ngerman=ngerman-x-latest]{hyphsubst}
\documentclass[
ngerman, % change to ngerman for german theses
symmetric, % use two-side for booklike layouts
numbers=noenddot % remove trailing dots in chapter/section/... enumeration
]{tudscrreprt}
% use a custom serif font
\usepackage[bitstream-charter]{mathdesign}
% make chapter, section, ... use serif font
\addtokomafont{disposition}{\rmfamily}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[
ngerman % change to ngerman for german theses
]{babel}
\usepackage{isodate}
\usepackage{pdfpages}
\usepackage{listings}
\usepackage[toc, page]{appendix}
\usepackage{hyphenat}
\usepackage[
style=alphabetic,
backend=biber,
url=false,
doi=false,
isbn=false,
hyperref,
]{biblatex}
% configure the location of the biblatex file
\addbibresource{bibliography.bib}
\AtEveryBibitem{%
\clearfield{note}%
}
% make all links clickable but hide ugly boxes
\usepackage[hidelinks]{hyperref}
% automatically insert Fig. X in the text with \cref{..}
\usepackage[capitalise,nameinlink,noabbrev]{cleveref}
\usepackage[colorinlistoftodos,prependcaption,textsize=tiny]{todonotes}
\usepackage{graphicx}
\graphicspath{ {./images/} }
\usepackage{svg}
% if you need mathy stuff
\newtheorem{lem}{Lemma}
\crefname{lem}{Lemma}{Lemmas}
\newtheorem{thm}{Theorem}
\crefname{thm}{Theorem}{Theorems}
\newtheorem{defs}{Definition}
\crefname{defs}{Def.}{Defs.}
\usepackage{blindtext}
%\usepackage{tudscrsupervisor} % if you want to copy the sources of the task description into the thesis
\usepackage{csquotes}
\usepackage{caption}
\captionsetup{font=normalfont,labelfont=normalfont,labelsep=space}
\usepackage{floatrow}
\floatsetup{font=normalfont}
\floatsetup[table]{style=plaintop}
\captionsetup{singlelinecheck=off,format=hang,justification=raggedright}
\DeclareCaptionSubType[alph]{figure}
\DeclareCaptionSubType[alph]{table}
\captionsetup[subfloat]{labelformat=brace,list=off}
\usepackage{booktabs}
\usepackage{array}
\usepackage{tabularx}
\usepackage{tabulary}
\usepackage{tabu}
\usepackage{longtable}
\usepackage{multirow}
\usepackage{quoting}
\usepackage[babel]{microtype}
\usepackage{xfrac}
\usepackage{enumitem}
\setlist[itemize]{noitemsep}
\usepackage{ellipsis}
\let\ellipsispunctuation\relax
\usepackage{xcolor, soul}
\input{lst.tex} % code styles (listings)
\colorlet{hlcolor}{lightgray!20}
\sethlcolor{hlcolor}
\DeclareRobustCommand{\texttt}[1]{%
\hl{\ttfamily#1}%
}
% use this custom theorem for research questions
\newtheorem{researchquestion}{Research Question}
\crefname{researchquestion}{Research Question}{Research Questions}
% use this custom environment for equations
\newenvironment{conditions}
{\par\vspace{\abovedisplayskip}\noindent\begin{tabular}{>{$}l<{$} @{${}={}$} l}}
{\end{tabular}\par\vspace{\belowdisplayskip}}
\usepackage{float}
\usepackage{xcolor}
% configure the name of your appendix
\renewcommand\appendixtocname{Anhang}
\renewcommand\appendixpagename{Anhang}
% use \tocless before a chapter/section/... in the
% appendix to hide it from the toc
\newcommand{\nocontentsline}[3]{}
\newcommand{\tocless}[2]{
\bgroup\let\addcontentsline=\nocontentsline#1{#2}\egroup
}
\begin{document}
% use uppercase roman letters for all pages until the introduction
% this way, it is easier to identify how many pages the thesis has
\pagenumbering{Roman}
\faculty{Fakultät Informatik}
\department{}
\institute{Institut für Systemarchitektur}
\chair{Professur für Rechnernetze}
\title{Dokumentation über den Neuaufbau der OUTPUT.DD App im WiSe 2020/21}
\thesis{project} % the type of thesis you want to write
\author{Felix Kästner}
\matriculationnumber{4606485}
\matriculationyear{WiSe 2016/17}
\dateofbirth{04.09.1997}
\placeofbirth{Friedrichroda}
\course{Master Informatik (PO 2010)}
\supervisor{Dr. Thomas Springer}
\date{8.3.2021}
\maketitle
\newpage
% include the task definition if you want
% \includepdf[pages=-]{task/task.pdf}
% \newpage
% for the order of the following sections please refer to
% the recommendations for thesis structuring
\confirmation
\tableofcontents
\listoffigures
\addcontentsline{toc}{chapter}{\listfigurename}
% \listoftables
% \addcontentsline{toc}{chapter}{\listtablename}
% this is where your thesis lives
\input{sections/01_introduction.tex}
\input{sections/02_basics.tex}
\input{sections/03_analysis.tex}
\input{sections/04_concept.tex}
\input{sections/05_summary.tex}
\newpage
% use lowercased roman page numbers for the appendix and the bibliography
\pagenumbering{roman}
\end{document}