aboutsummaryrefslogtreecommitdiffstats
path: root/doc/thesis/Fading.tex
blob: 010675473c307c6140847e467ae3b2cbe6d60c73 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
% !TeX program = xelatex
% !TeX encoding = utf8
% !TeX root = Fading.tex
% vim: set ts=2 sw=2 noet:

\documentclass[
	twoside, openright, titlepage, numbers = noenddot,
	headinclude, footinclude, cleardoublepage = empty, abstract = on,
	BCOR = 5mm, paper = a4, fontsize = 11pt
]{scrreprt}

%% Custom packages
\usepackage{tex/docmacros}

%% Language configuration
\usepackage{polyglossia}

%% Links
\usepackage{hyperref}

\hypersetup{
	colorlinks = true
}

%% Citations
\usepackage[
	backend = biber,
	style = ieee,
]{biblatex}

\addbibresource{Fading.bib}

%% Pretty figures
\usepackage{tikz}

\usetikzlibrary{
	calc,
	backgrounds
}
\pgfdeclarelayer{background}
\pgfdeclarelayer{foreground}
\pgfsetlayers{background,main,foreground}

%% Pretty plots
\usepackage{pgfplots}

%% Include pictures
\usepackage{graphicx}

\begin{document}

	\hypersetup{pageanchor = false}
	%% TODO: titlepage

	\cleardoublepage
	\pagenumbering{roman}

	%% TODO: abstract
	% \begin{abstract}
	% \end{abstract}

	\hypersetup{pageanchor = true}
	\pagenumbering{arabic}
	\setcounter{page}{1}

	\include{chapters/introduction}
	\include{chapters/theory}
	\include{chapters/implementation}
	\include{chapters/conclusions}

	\printbibliography

\end{document}