forked from rubenvereecken/thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
67 lines (57 loc) · 1.45 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
\documentclass[a4paper,12pt]{report}
% The following makes latex use nicer postscript fonts.
\usepackage{times}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}% Recommended
\usepackage{attrib}% Attribute quotes
\usepackage{amsmath,amsfonts,amssymb}
\usepackage{graphicx}
\usepackage[linkbordercolor={0.7 0.2 0.25},citebordercolor={0 0.2 .8}]{hyperref}
\usepackage[backend=biber, style=apa, uniquelist=false, maxcitenames=1,
doi=false,
url=false,
isbn=false
]{biblatex}
\DeclareLanguageMapping{english}{english-apa}
\usepackage[section]{placeins} % To keep floats within their sections
\usepackage{vubtitlepage}
\usepackage[Rejne]{fncychap}
\usepackage{subcaption}
\usepackage{epigraph} % Citation start of chapter
\usepackage{algorithm,algpseudocode}
\usepackage[toc,page]{appendix}
\usepackage{tabularx}
\usepackage{siunitx}
% \usepackage{refcheck}
%\usepackage{layouts}
\graphicspath{ {images/} }
%\addbibresource{bib/Mendeley.bib}
\addbibresource{bib/Thesis.bib}
\addbibresource{other.bib}
\input{custom.tex}
\begin{document}
\renewcommand{\arraystretch}{1.3}
\hfuzz=100pt
\input{titlepage.tex}
\hfuzz=0pt
\pagenumbering{roman}
\include{pre}
\tableofcontents
\listoffigures
\listoftables
\listofalgorithms
% Actual content
\include{introduction}
\include{ml}
\include{ann}
\include{rl}
\include{dl}
\include{exp}
\include{conclusions}
\begin{appendices}
\include{appendix}
\include{extra}
\end{appendices}
\printbibliography
\end{document}