-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
156 lines (121 loc) · 3.71 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
% the following command is only required if the thesis is written in german
%\RequirePackage[ngerman=ngerman-x-latest]{hyphsubst}
% change to english for english theses
\documentclass[english,BCOR=1.5cm,twoside]{tudscrreprt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{isodate}
\usepackage[
style=numeric-comp,
backend=biber,
url=false,
doi=false,
isbn=false,
hyperref,
]{biblatex}
\addbibresource{bibliography.bib}
\AtEveryBibitem{%
\clearfield{note}%
}
\usepackage[hidelinks]{hyperref} % makes all links clickable but hides ugly boxes
\usepackage[capitalise,nameinlink,noabbrev]{cleveref} % automatically inserts Fig. X in the text with \cref{..}
\usepackage[colorinlistoftodos,prependcaption,textsize=tiny]{todonotes}
\usepackage{graphicx}
\graphicspath{ {./images/} }
% 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}
\usepackage{subcaption}
\captionsetup{font=sf,labelfont=bf,labelsep=space}
\usepackage{floatrow}
\floatsetup{font=sf}
\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{xcolor,colortbl}
\usepackage{quoting}
\usepackage[babel]{microtype}
\usepackage{xfrac}
\usepackage{enumitem}
\setlist[itemize]{noitemsep}
\usepackage{ellipsis}
\let\ellipsispunctuation\relax
\input{lst.tex}
\newcommand{\todoD}[1]{\todo[color=green,inline,size=\small]{Dmytro: #1}}
\newcommand{\todoJ}[1]{\todo[color=green,inline,size=\small]{Johannes: #1}}
\newcommand{\todoR}[1]{\todo[color=yellow,inline,size=\small]{Roman: #1}}
\usepackage{amssymb}
\definecolor{Gray}{gray}{0.85}
\newcolumntype{a}{>{\columncolor{Gray}}c}
\begin{document}
\faculty{Faculty of Computer Science}
\department{}
\institute{Institute of Software and Multimedia Technology}
\chair{Chair of Software Technology}
\title{%
Systematic Parameter Tuning of Genetic Optimization Approaches
}
%% for a bachelor thesis
%\thesis{bachelor}
%\graduation[B.Sc.]{Bachelor of Science}
% for a master thesis
\thesis{master}
\graduation[M.Sc.]{Master of Science}
% for a diploma thesis
%\thesis{diploma}
%\graduation[Dipl.Inf.]{Diplom-Informatiker}
\author{Roman Kosovnenko}
%\emailaddress[]{[email protected]}
\matriculationnumber{4733290}
\matriculationyear{2017}
\dateofbirth{18.1.1994}
\placeofbirth{Chernihiv, Ukraine}
%\discipline{Distributed Systems Engineering}
\course{Distributed Systems Engineering}
\supervisor{%
% Dipl.-Inf. ABC XYZ%
M.Sc. Dmytro Pukhkaiev
\and Dipl.-Inf. Johannes Mey
\and Dr.-Ing. Sebastian Götz%
}
\professor{Prof. Dr. rer. nat habil. Uwe Aßmann}
\date{9.3.2020}
\maketitle
\newpage
\input{TaskDescription.tex}
\input{Acknowledgment}
\tableofcontents
\listoffigures
\listoftables
\input{sections/intro}
\input{sections/background}
\input{sections/implementations}
\input{sections/evalutation}
\input{sections/conclution}
\input{sections/future_work}
\printbibliography[heading=bibintoc]\label{sec:bibliography}
\appendix
\input{sections/ExperimentDescriptionApp}
\input{sections/ProblemsApp}
\input{sections/Distributions1App}
\input{sections/Distributions2App}
\input{sections/Distributions3App}
\confirmation
\end{document}