This repository has been archived by the owner on Sep 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
153 lines (105 loc) · 6.58 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
\documentclass
[
twoside, % The thesis is formatted like a book. That is, odd and even pages are handled differently.
openright, % Starts a new chapter on an odd page number (right side).
cleardoublepage = empty, % Clear pages inserted in order to have new chapters appear on odd pages are formatted with an empty style.
fontsize = 12 pt, % The size of the font.
american, % Support for American English.
captions = tableheading, % Places the correct amount of space when the caption of a table is above the table.
numbers = noenddot, % Does not use a period at the end of numbered titles, such as sections or figures.
footheight = 35 pt, % Defines the height of the foot. Due to the line, it needs extra height.
% draft, % Only displays boxes of figures. This option is useful if compilation takes a long time.
]
{scrbook}
\input{core/preamble/document_settings} % Contains commands that are used for certain information that is printed.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Please adjust your options here. %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This section contains commands with important data for your thesis. Please adjust them in order for the document to be printed correctly.
% Defines the length of the amount that a printed page will be cut from EACH side (including the inner side). This option only takes effect with \printVersiontrue and \professionalPrinttrue.
\extraBorder{3 mm}
% Shifts the inner margin outward by the amount specified. When the book is bound, part of the page will not be seen anymore. This option compensates for this loss. It only takes effect with \printVersiontrue.
\bindingCorrection{6 mm}
% Use the following command if this is a master thesis.
% \bachelorThesisfalse
% \printVersiontrue % Use this value if you want to prepare your thesis for physical printing. In this case, links will not be colored. Without \professionalPrinttrue, the content will be moved outward by the binding correction, increasing the inner margin and decreasing the outer margin.
% \professionalPrinttrue % Use this value if you want to have extra border for cutting and are not bound to paper formats (like A4). This option will increase the page size by the extra border on every side plus the binding correction once for the width. It only takes effect in combination with \printVersiontrue.
% \fancyTheoremsfalse % Use this value if you want to use the classical theorem style, where the text is italic. Further, with this style, the QED symbol is colorless.
% \boldNumberSetsfalse % Use this value if you want variables for number sets (like N or R) to appear in blackboard bold rather than bold.
% The title of the thesis. The first argument is for the English name, the second is for the German name.
\myTitle{A comparison of reinforcement learning algorithms for dynamic pricing in recommerce markets}{Ein Vergleich von Reinforcement-Learning-Algorithmen für die dynamische Preisgestaltung auf Recommerce-Märkten}
% The author’s name.
\myName{Jan Niklas Groeneveld}
% The author’s program.
\myProgram{IT Systems Engineering}
% The date when the thesis will be handed in.
\dateOfHandingIn{19. Juli 2022}
% The name and affiliation of the author’s supervisor.
% \nameOfMySupervisor{Dr. Rainer Schlosser}
% A list with the names of the additional examiners.
\additionalExaminers{Dr. Michael Perscheid\newline Dr. Rainer Schlosser\newline Johannes Huegle\newline Alexander Kastius}
% A short summary of the thesis. These information will be used for the PDF meta data.
\mySubject{A bachelor thesis about RL algorithms to optimize dynamic pricing on re-commerce marketplaces}
% Some keywords of the thesis. These information will be used for the PDF meta data. Please use | as a separator and try to avoid commas.
\myKeywords{bachelor thesis | RL | reinforcement learning | dynamic pricing}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% End of options to adjust. %%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{core/preamble/format} % Contains commands that define the general format and layout of the thesis.
\input{core/bibliography/bibliography_format} % Contains commands for the layout of the bibliography.
\input{packages_and_commands/standard_packages} % Contains the packages that this template provides.
\input{packages_and_commands/general_commands} % Contains newly defined commands useful for mathematics.
\input{packages_and_commands/user-defined_commands} % This is where user-defined commands should go.
% This is the thesis. The front matter as well as the references should not be changed. The main matter can be edited freely.
\begin{document}
\selectlanguage{ngerman}
\frontmatter
\include{core/title_page/title_page}
\pagestyle{plain}
\selectlanguage{american}
\addchap{Abstract}
\input{preface/abstract}
\selectlanguage{ngerman}
\addchap{Zusammenfassung}
\input{preface/abstractGerman}
% \addchap{Acknowledgments}
% \input{preface/acknowledgments}
\setuptoc{toc}{totoc}
\tableofcontents
\pagestyle{headings}
\mainmatter
\chapter{Einführung}
\input{introduction/introduction}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Please add the content of your thesis here. %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% \part{The Beginning of It All}
\chapter{Related Work}
\input{related_work/related_work}
\chapter{Hintergrund}
\input{background/background}
\chapter{Vergleich der Algorithmen}
\input{main/main_part}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% End of adding your content. %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Add the following chapters not to the current ›part‹ but one level above instead.
% \makeatletter
% \def\toclevel@chapter{-1}
% \def\toclevel@section{0}
% \makeatother
\chapter{Schlussfolgerungen \& Ausblick}
\input{conclusions/conclusions}
% Following are the files and commands for the bibliography and the author’s publications.
\pagestyle{plain}
\renewcommand*{\bibfont}{\small}
\printbibheading
\addcontentsline{toc}{chapter}{Bibliographie}
\printbibliography[heading = none]
\listoffigures
\addcontentsline{toc}{chapter}{Abbildungsverzeichnis}
\addchap{Appendix}
\input{appendix/appendix}
\addchap{Eigenständigkeitserklärung}
\input{core/declaration_of_authorship/declaration_of_authorship}
\end{document}