-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaturaarbeit.tex
185 lines (151 loc) · 4.94 KB
/
maturaarbeit.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
% !TEX program = pdflatex+makeindex+bibtex
% !TEX encoding = UTF-8 Unicodede_ch
% created by Simon Schälli <[email protected]>
% v1.0 ursprüngliche Version
% v1.1 2015-10-22 mit Titelbild
% v1.2 2016-09-30 aufgeräumt
% v1.3 2016-10-16 Layoutfehler behoben
%======================================================================%
%=== Dokument auf häufige Fehler überprüfen ===%
%======================================================================%
\RequirePackage[l2tabu, orthodox]{nag}
%======================================================================%
%=== Dokumentklasse wählen ===%
%======================================================================%
\documentclass[a4paper,openright,12pt]{scrreprt}
%======================================================================%
%=== Pakete einbinden ===%
%======================================================================%
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
% Latin Modern Schriftart
\usepackage{lmodern}
\usepackage[T1]{fontenc}
% Mathematik-Pakete
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[mathscr]{euscript}
\usepackage{mathtools}
% mathematische Buchstaben als Text
\usepackage{textcomp}
% komfortable Referenzen mit \fref
\usepackage[english]{fancyref}
% Kopf- und Fusszeilen
\usepackage[automark,headsepline]{scrpage2}
\ihead[]{\headmark}
\chead[]{}
\ohead[]{\pagemark}
\ifoot[]{}
\cfoot[\pagemark]{}
\ofoot[]{}
\pagestyle{scrheadings}
% Einfügen von Bildern¨
\usepackage{float}
\usepackage{graphicx}
\usepackage{subfig}
% schöne Tabellen
\usepackage{booktabs}
\captionsetup[table]{font=small,skip=0pt}
% Tabelleninhalt an Dezimalpunkt ausrichten
\usepackage{dcolumn}
\makeatletter % <- hebt Sonderbedeutung von @ auf
\newcolumntype{d}[1]{D{.}{.}{#1}} % <- definiert einen neuen Spaltentyp
\makeatother % <- setzt Sonderbedeutung von @ wieder
% Algorithms
\usepackage[ruled,vlined]{algorithm2e}
\SetKwInput{KwRequire}{Require}
% code
\usepackage{xcolor}
\definecolor{bluekeywords}{rgb}{0.13,0.13,1}
\definecolor{greencomments}{rgb}{0,0.5,0}
\definecolor{redstrings}{rgb}{0.9,0,0}
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.5,0,1.0}
\usepackage{listings}
\lstset{language=Python,
showspaces=false,
showtabs=false,
breaklines=true,
showstringspaces=false,
breakatwhitespace=true,
escapeinside={(*@}{@*)},
keywordstyle=\color{bluekeywords}\bfseries,
stringstyle=\color{redstrings},
basicstyle=\ttfamily
}
%Color Boxes, proofs
\usepackage{tikz,lipsum,lmodern}
\usepackage[most]{tcolorbox}
% Beispieltext
\usepackage{lipsum}
% Hyperlinks in PDF
\usepackage{hyperref}
% Biblatex
\usepackage[
backend=biber,
style=numeric,
sorting=ynt
]{biblatex}
\addbibresource{mybib.bib}
% Macros
\usepackage{mymacros}
\usepackage{xargs}
%======================================================================%
%=== Angaben zum Dokument ===%
%======================================================================%
\titlehead{Kantonsschule im Lee \hfill Kalani Fin Kistler\\
Fachschaft Mathematik \hfill Dättnauerstrasse 107\\
% Rychenbergstrasse \hfill 8406 Winterthur\\
% 8400 Winterthur
}
\subject{Matura Thesis 20/21}
\title{Policy Gradient Based Reinforcement Learning Applied to Playing Soccer}
\author{\texorpdfstring{Kalani Fin Kistler, 4h \\[1cm]\includegraphics[scale=0.2]{figures/Screenshot from 2020-09-22 23-05-59.png}\\[1cm] {\small Supervisor: Elena Fattorini}}{Kalani Fin Kistler 4h}}
\date{\small Winterthur, 04.01.2021}
%======================================================================%
%=== PDF Dokumenteinstellungen ===%
%======================================================================%
\makeatletter
\hypersetup{
pdftitle={\@title},%
pdfsubject={\@subject},%
pdfauthor={\@author},%
pdfkeywords={},%
colorlinks,%
citecolor=black,%
filecolor=black,%
linkcolor=black,%
urlcolor=black}
\makeatother
\linespread{1}
\usepackage{geometry}
\geometry{
a4paper,
right=30mm,
left=30mm,
top=30mm,
}
%======================================================================%
%=== Beginn des eigentlichen Dokumentes ===%
%======================================================================%
\begin{document}
\fontfamily{lmr}\selectfont
\maketitle % <- Titel setzen
\cleardoublepage
\pagenumbering{roman} % <- römische Seitennummerierung
\tableofcontents % <- Inhaltsverzeichnis
\cleardoublepage % <- neue Seite
\pagenumbering{arabic} % <- arabische Seitennummerierung
\input{chapters/introduction}
\input{chapters/background}
\input{chapters/implementation}
\input{chapters/training}
\input{chapters/discussion}
\input{chapters/conclusion}
\input{chapters/bibliography}
\appendix
\listoffigures
\listoftables
\input{chapters/appendix}
\end{document}