-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
64 lines (50 loc) · 1.31 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
\documentclass{report}
\usepackage[utf8]{inputenc}
% language
\usepackage[english]{babel}
\usepackage[fixlanguage]{babelbib}
% images
\usepackage{graphicx}
\graphicspath{ {images} }
\usepackage{subcaption}
\usepackage{amsmath}
\usepackage{blkarray}
\usepackage{parskip}
\usepackage[colorlinks=true, allcolors=black]{hyperref}
\usepackage{url}
\usepackage[dvipsnames]{xcolor}
\usepackage{listings}
\usepackage{float}
\input{commands/keywords}
\input{commands/yaml}
\usepackage{ragged2e}
\justifying
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\lhead{\rightmark}
\rhead{\textbf{\thepage}}
\fancyfoot{}
\setlength{\headheight}{15pt}
\usepackage{titlesec}
\usepackage{xhfill}
\titleformat{\chapter}[display]
{\filcenter}{\mbox{}\textsc{\large\includegraphics[width=0.23\textwidth]{chapters/\thechapter } }\mbox{}}{0.3ex} {\vskip3ex\huge\bfseries}[\medskip{}]
\begin{document}
\include{contents/frontespizio}
\include{contents/abstract}
\include{contents/responsability-declaration}
\include{contents/mentions}
\tableofcontents
\listoffigures
\listoftables
\include{contents/introduction}
\include{contents/background}
\include{contents/dataset}
\include{contents/methods}
\include{contents/tools}
\include{contents/experiments}
\include{contents/conclusion}
\bibliographystyle{siam}
\bibliography{bibliography}
\end{document}