generated from mzietlow/latex-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
140 lines (115 loc) · 4.16 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
% !TEX TS-program = lualatex
% !TEX encoding = UTF-8 Unicode
% Ignorierte Warnings
\RequirePackage{silence}
\documentclass[11pt,oneside,numbers=noenddot,a4paper,titlepage,abstract,bibliography=totocnumbered,parskip=half+]{scrartcl}
% debugging
% \usepackage{lua-visual-debug} % Visualize spacing around text and objects
% \usepackage{endfloat} % Move all floats/images etc. into backmatter
% \include{preamble/end-equation.tex} % this must be included right-b4 doc-begin
% wondering how to fix obscure errors? try preceding \protect
% Language-Encoding und Font
\input{preamble/encoding-and-language.tex}
\setmainlanguage[variant=british]{english}
\setotherlanguage[babelshorthands=true]{german}
% Fonts
\input{preamble/fonts-and-symbols.tex}
% Scientific Packages
\input{preamble/scientific.tex}
% Formatting
\input{preamble/formatting.tex}
% Fileinsertion
\usepackage{pdfpages} % Inserting PDFs
% Graphics, Tables, Colors
\input{preamble/color-graphics-tables.tex}
\graphicspath{ {./figures/} }
\input{preamble/extensions/linebreaks-in-tables.tex}
\input{preamble/extensions/list-inside-tables.tex}
% Placeholder Text
\usepackage{blindtext} % I like it better than lorem ipsum
\usepackage{kantlipsum} % 20% cooler than blindtext
\usepackage[disable,textwidth=15mm]{todonotes} % Insert von Todos - [disable]
\input{preamble/references-and-citation.tex}
\setlength{\marginparwidth}{20mm} % For todonotes
\usepackage{hyperref} % Verlinkungen im Dokument
\usepackage[nameinlink]{cleveref}
% Citation, Verweise
\addbibresource{BibLaTex/citation.bib}
%%%% <Workarounds> %%%%
% Fix für unbekannten Fehler
\DeclareOldFontCommand{\bf}{\normalfont\bfseries}{\mathbf}
% stopping Floats with a \FloatBarrier. Subsections not included!
%\usepackage[section]{placeins}
% fancyhdr und KOMA-Script Klassen sollten nicht gemeinsam genutzt werden
% ich habe noch keine Zeit für einen Fix gefunden. scrhack ist ein quickfix.
% \usepackage{scrhack}
% Custom Commands
\input{preamble/custom-commands.tex}
% Provides:
% \namedlabel for \ref of description-items
% \fref for idk what
% \parref for referencing paragraphs
% \defref for referencing math-definitons
% \invdefref like defref but inverted
% \begin{conditions} for describing params/variables in a math equation
% Document Dimensions
\spacing{1.25}
\geometry{a4paper,margin=20mm, bottom=30mm, footskip=10mm}
\raggedbottom{}
% Subsection numbering depth
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
% Metadaten %
\title{Online Anomaly Detection in Unlabeled Univariate Time Series Data}
\subtitle{A Comparison of Approaches}
\author[]{Malte Zietlow}
\affil[]{
Department of Computer Science \\
Nordakademie \\
Köllner Chaussee 11\\
25337 Elmshorn}
\affil[]{\textit{malte.zietlow@nordakademie.de}}
\date{\today}
\makeglossaries{} % makeglossaries <document-root ohne .tex> per cmd
%%% Counter to remember page number %%%
\newcounter{roman-pagenumber}
\begin{document}
\input{Structure/GlossarMetadaten}
%%%% Frontmatter %%%%
\pagenumbering{gobble} % No page numbering for title and abstract
\maketitle
%\includepdf[pages=1]{figures/front_page.pdf}
\input{Structure/01_Frontmatter/Abstract.tex}
\pagenumbering{roman} % Roman page numbering for TOC and lists
{\hypersetup{hidelinks}
\tableofcontents
\begingroup
\listoffigures
\let\clearpage\relax
\listoftables
\printglossaries{}
\endgroup
}
\setcounter{roman-pagenumber}{\value{page}} % save pagenumber in counter
%%%% Mainmatter %%%%
\clearpage
\pagenumbering{arabic} % arabic page numbering for mainmatter
\input{Structure/02_Mainmatter/Introduction.tex}
\input{Structure/02_Mainmatter/Definitions.tex}
\input{Structure/02_Mainmatter/Experimental_Setup.tex}
\input{Structure/02_Mainmatter/Results_and_Discussion.tex}
\input{Structure/02_Mainmatter/Conclusion.tex}
%%%% Backmatter %%%%
\clearpage
\pagenumbering{roman} % Continued roman page numbering backmatter
\setcounter{page}{\value{roman-pagenumber} + 1} % set page number to counter+1
{
\hypersetup{hidelinks}
\begin{sloppypar}
\printbibliography[title={Bibliography}]
\end{sloppypar}
}
\appendix
\input{Structure/03_Backmatter/Appendices.tex}
%%%% General Todos: %%%%
\end{document}