about summary refs log tree commit diff
path: root/main.tex
blob: b6557263ebdf2cd47abde84f3cc78b1ee6be8ca3 (plain)
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
\documentclass[twocolumn, a4paper, 10pt]{article}
\usepackage[top=2cm, bottom=2cm, left=1.5cm, right=1.5cm]{geometry}
\usepackage[utf8]{inputenc} % support for utf8 chars
%\usepackage[english]{babel}
\usepackage[german]{babel} % german language

% general math stuff
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amsthm}

\usepackage[hidelinks]{hyperref} % clickable links
\usepackage{graphicx} % graphics
\usepackage{caption} % captions
%\usepackage{lmodern} % even nicer font
\usepackage[stable]{footmisc} % footnotes

% code listings
\usepackage{listings}
\usepackage{listings-golang}

\lstset{
    frame=single,
    language=golang,
}

% tikz for drawing stuff and forest for nice graphs
\usepackage{tikz}
\usepackage{forest}

\linespread{1}

\begin{document}

\input{docs/titleabstract.tex}
\tableofcontents

\input{docs/einleitung}
\input{docs/vorgehensweise}
\input{docs/generieren}
\input{docs/simulieren}
\input{docs/ergebnisse}
\input{docs/darstellung}
\input{docs/vektoren}
\input{docs/fazit}
\input{docs/quellenliteraturverzeichniss}

\end{document}