-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
105 lines (81 loc) · 3.15 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
\documentclass{scrbook} % <= Druckversion: "scrbook" / Bildschirmversion: "scrreprt"
\usepackage[english,bibtex]{osm-thesis} % <= Sprache der Arbeit ("ngerman"/"english"), Biblatex-Backend ("bibtex"/"biber")
\usepackage[capitalise]{cleveref} % HK: to stick to IEEE and similar standards
\usepackage{acro}
\usepackage{CJKutf8}
\usepackage{listings}
\usepackage{tikz}
\usetikzlibrary{positioning, shapes.geometric, arrows.meta, fit}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{amsmath}
\usepackage{svg}
\usepackage{amssymb}
\usepackage{acro}
\usepackage{parskip}[parskip]
\usepackage{hyperref}
\usepackage{xspace}
% Set the caption position for listings and tables to top
\lstset{captionpos=t}
\graphicspath{{images}}
\usepackage{todonotes}
\newcommand{\fmhkn}[1]{\todo[inline,color=green!10]{#1}}
% ABOUT
\newcommand{\hpitype}{Bachelor's thesis}
\newcommand{\hpiauthor}{Lina Wilske}
\newcommand{\hpititle}{Machine Learning-based User Movement Prediction in Layer 2 Networks}
%\newcommand{\hpititleother}{Vorhersage von Benutzerbewegungen in Layer 2 Netzwerken basierend auf Maschinellem Lernen} % <= das Studienreferat verlangt einen deutschen UND englischen Titel
\newcommand{\hpisupervisor}{Prof.\,Dr.\,Holger Karl \\ Leonard Paeleke}
\newcommand{\hpichair}{Internet Technology and Softwarization Group}
\newcommand{\hpidate}{September 11, 2023}
\newcommand{\threeAP}{\texttt{3AP}\xspace}
\definecolor{hpiyellow}{RGB}{246,168,0}
\definecolor{hpiorange}{RGB}{221,97,8}
\definecolor{hpired}{RGB}{177,6,58}
\definecolor{hpigray}{RGB}{90,96,101}
\definecolor{hpiblue}{RGB}{0,122,158}
% Acronyms before everything else
\include{content/acronyms}
% DOCUMENT
\bibliography{bibliography}
\begin{document}
% Einband
\pagenumbering{alph}
%\ifisbook\include{content/coverpage}\fi
\ifisbook\cleardoubleemptypage\fi
% (Haupt-)Titelseite, Abstract, ggf. Danksagung & Inhaltsverzeichnis
\pagenumbering{roman}
\include{content/titlepage}
\ifisbook\cleardoubleemptypage\fi\include{content/abstract}
%\ifisbook\cleardoubleemptypage\fi\include{content/dedication}
\tableofcontents
\cleardoublepage
% Textteil
\pagenumbering{arabic}
\include{content/introduction}
\include{content/background}
\include{content/related_work}
\include{content/data_analysis}
\include{content/discussion_ml}
\include{content/implementation_ml}
\include{content/evaluation_ml}
\include{content/conclusion}
% Bibliographie
\ifisbook\cleardoubleemptypage\fi
\phantomsection\addcontentsline{toc}{chapter}{\refname}
\printbibliography[category=cited]
% ggf. Anhang
\appendix\include{content/appendix} % example
% ggf. bei englischen Arbeiten den deutschen Abstract nach hinten verschieben
\ifisbook\pagestyle{plain}\cleardoubleemptypage\include{content/abstract_ger}\fi
\listoftables
\begingroup
\let\clearpage\relax
\let\cleardoublepage\relax
\listoffigures
\renewcommand{\lstlistlistingname}{List of Listings}
\lstlistoflistings
\endgroup
% Eigenständigkeitserklärung
\ifisbook\pagestyle{plain}\cleardoubleemptypage\include{content/disclaimer}\fi
\end{document}