-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
57 lines (51 loc) · 1.29 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
\documentclass[a4paper,11pt]{article}
\usepackage[a4paper,left=2.5cm,right=3.5cm,top=2cm,bottom=2cm]{geometry}
\usepackage{graphicx}
\usepackage{svg}
\usepackage[nottoc,notlof,numbib]{tocbibind}
\usepackage[ngerman]{babel}
\usepackage{titlesec}
\usepackage{lipsum}
\usepackage[onehalfspacing]{setspace}
\usepackage{hyperref}
\usepackage{caption}
\usepackage{multicol}
\bibliographystyle{apalike}
\counterwithin{figure}{section}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
\captionsetup[figure]{font=small,labelfont=small}
\emergencystretch=1cm
\pagenumbering{arabic}
\begin{document}
\parindent0.4cm
% Titelblatt
\include{chapter/cover.tex}
% Verzeichnis
\tableofcontents
\listoffigures
% Inhalt
\clearpage
\input{chapter/abstract}
\input{chapter/introduction.tex}
\input{chapter/overlay_network.tex}
\input{chapter/vpn.tex}
\input{chapter/tor.tex}
\input{chapter/mixnet.tex}
\input{chapter/evaluation.tex}
\input{chapter/discussion.tex}
\input{chapter/summary.tex}
\clearpage
% Anhang
\appendix
\input{chapter/abbreviations}
\input{chapter/appendix.tex}
\clearpage
\bibliography{references.bib}
\include{chapter/independence.tex}
\end{document}