-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
95 lines (69 loc) · 2.49 KB
/
main.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
\documentclass[12pt]{article}
\usepackage{graphicx}%Package um Grafiken einzufügen
\graphicspath{ {assets/} }
\usepackage[ngerman]{babel}%Sprache Deutsch einstellen
\usepackage[headheight=15pt, a4paper, left=4cm, top=2cm, bottom=2cm, right=2cm]{geometry}
\usepackage[]{fontspec}
\setmonofont{CascadiaCode.ttf}[Scale=0.88]
\usepackage[]{fancyhdr}
\pagestyle{fancy}
%\setlength{\headheight}{16pt}
\lhead{\leftmark}
\rhead{Phillip Bronzel}
\usepackage[style=authoryear, backend=biber]{biblatex}
\addbibresource{references.bib}
\usepackage{csquotes}
\usepackage{eso-pic}
\newcommand\BackgroundPic{
\put(0,0){
\parbox[b][\paperheight]{\paperwidth}{
\vfill
\centering
\includegraphics[width=\paperwidth,height=\paperheight]{assets/titlebackground.pdf}
\vfill
}}}
\usepackage{chronology}
\usepackage{subfig}
\usepackage{pgfplots}
\usepackage[onehalfspacing]{setspace}
\usepackage[bottom]{footmisc}
\usepackage{wrapfig}
\usepackage{xcolor}
\usepackage{float}
\usepackage{minted}
\usemintedstyle{pastie}
\renewcommand\listoflistingscaption{Quellcodeverzeichnis}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{matrix,calc,arrows.meta,bending}
\newcommand*\annotatedFigureBoxCustom[8]{\draw[#5,thick,rounded corners] (#1) rectangle (#2);\node at (#4) [fill=#6,thick,shape=circle,draw=#7,inner sep=2pt,text=#8] {\textbf{#3}};}
\newcommand*\annotatedFigureBox[4]{\annotatedFigureBoxCustom{#1}{#2}{#3}{#4}{white}{white}{black}{black}}
\newcommand*\annotatedFigureText[4]{\node[draw=none, anchor=south west, text=#2, inner sep=0, text width=#3\linewidth] at (#1){#4};}
\newenvironment {annotatedFigure}[1]{\centering\begin{tikzpicture}
\node[anchor=south west,inner sep=0] (image) at (0,0) { #1};\begin{scope}[x={(image.south east)},y={(image.north west)}]}{\end{scope}\end{tikzpicture}}
\usepackage{ifthen}
\setcounter{secnumdepth}{3} \setcounter{tocdepth}{3}
\title{Machine Learning in Smartphone Apps}
\date{Phillip Bronzel \today}
\author{ASGSG Informatik, 2020/2021}
\begin{document}
\AddToShipoutPicture*{\BackgroundPic}
\maketitle
\pagenumbering{gobble}
\begin{center}
\includegraphics[totalheight=10cm]{titlepage.png}
\cite{titlepageimage}
\end{center}
\input{lib/erklärung.tex}
\newpage
\pagenumbering{arabic}
\tableofcontents
\newpage
\input{lib/einführung.tex}%TODO: Kapitel der App einfügen
\input{lib/neuronalenetzwerke.tex}
\input{lib/labelcheck.tex}
\newpage
\input{lib/anhang.tex}
\newpage
\printbibliography[heading=bibintoc, title={Literaturverzeichnis}]
\end{document}