-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
74 lines (60 loc) · 1.74 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
\documentclass{ddis-thesis}
\usepackage{amsmath, amsthm, amssymb}
\usepackage[utf8]{inputenc}
\usepackage{program}
\usepackage{mathrsfs}
\usepackage{amsfonts}
\usepackage{gensymb}
\usepackage{multirow}
\usepackage[capitalise]{cleveref}
\usepackage{subfig}
\usepackage{tabularx}
\usepackage{pdflscape}
\usepackage{scrhack}
\usepackage{breakcites}
% \usepackage{natbib}
\usepackage[natbibapa]{apacite}
\usepackage{microtype}
\usepackage[left=2.5cm, right=2.5cm, bottom=2cm, includefoot]{geometry}
\usepackage[margin=15pt,font=small,labelfont={bf,sf}]{caption}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{enumitem}
\usepackage{dirtree}
% fonts
\usepackage[scaled=0.95]{helvet}
\usepackage{mathpazo}
\usepackage[euler-digits,euler-hat-accent]{eulervm}
\usepackage[T1]{fontenc}
\usepackage{xcolor}
\definecolor{VeryLightGrey}{RGB}{255,253,255}
\usepackage{fancyvrb}
\DefineVerbatimEnvironment{code}{Verbatim}{fontsize=\small}
\DefineVerbatimEnvironment{example}{Verbatim}{fontsize=\small}
\usepackage{fancyhdr}% fancyhdr related command; details in its documentation
\pagestyle{fancy}
\fancyhead{}
\fancyhead[LE,RO]{\thepage}
\fancyhead[RE]{\leftmark}
\fancyhead[LO]{\rightmark}
\author{Roland Schl\äfli}
\title{Anomaly detection on data streams}
\begin{document}
% *************** Front matter ***************
\frontmatter
\input{00_title.tex}
\input{00_abstract.tex}
\tableofcontents
\input{00_abbrev.tex}
% *************** Main matter ***************
\mainmatter
% extend vertical spacing of tabular environments
\renewcommand{\arraystretch}{1}
\input{01_introduction}
\input{02_features}
\input{03_approaches}
\input{04_conclusion}
% *************** Bibliography ***************
\bibliographystyle{apalike}
\bibliography{anomaly-detection.bib}
\end{document}