aboutsummaryrefslogtreecommitdiffstats
path: root/doc/thesis/Fading.tex
blob: 31e0b90bc139263bb2750b665ccf5bf450d9cc52 (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
% !TeX program = xelatex
% !TeX encoding = utf8
% !TeX root = Fading.tex
% vim: set ts=2 sw=2 noet:

\RequirePackage{silence} % :-\
\WarningFilter{scrreprt}{Usage of package `tocloft'}
\WarningFilter{titlesec}{Non standard sectioning command}

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

\input{tex/classicthesis-config}
\usepackage{tex/classicthesis}

\begin{document}
	% stuff before
	\hypersetup{pageanchor = false}
	\include{tex/titlepage}

	\pdfbookmark[1]{Abstract}{Abstract}
	\begin{abstract}
		%% TODO
	\end{abstract}
	\cleardoublepage

	\pagenumbering{roman}
	\include{tex/preamble}

	% actual content
	\hypersetup{pageanchor = true}
	\pagenumbering{arabic}
	\setcounter{page}{1}
	\include{chapters/introduction}
	\include{chapters/theory}
	\include{chapters/implementation}
	\include{chapters/conclusions}

	% TODO: stuff after

\end{document}