-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
87 lines (67 loc) · 2.2 KB
/
main.tex
File metadata and controls
87 lines (67 loc) · 2.2 KB
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
\documentclass[a4paper, oneside, openright]{book}
\usepackage[T1]{fontenc} % Font encoding, T1 = it
\usepackage[english,italian]{babel} % Lingua principale italiano, con parti in inglese
\usepackage[a4paper,top=2.5cm,bottom=2.5cm,left=3cm,right=3cm]{geometry} %impaginazione e margini documento
\usepackage[fontsize=13pt]{scrextend} %dimensione font
\usepackage{graphicx} % Sallows inserting graphics
\usepackage{listings}
\usepackage{algpseudocode} % allows code snippets
\usepackage{algorithm}
\usepackage[hidelinks]{hyperref} % hyperlink senza bordi rossi visibili nel PDF
\usepackage{subcaption}
\usepackage[export]{adjustbox}
\usepackage{wrapfig} % allows warped figures
\usepackage[acronym]{glossaries} % add glossary
\usepackage{acronym} % add acronyms
\usepackage{subfiles} % support multiple files
\usepackage{fancyhdr} % more control on headers and footers
\usepackage{xcolor}
\usepackage[active=false]{preview}
\usepackage{svg}
\usepackage{amssymb}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{colortbl}
\usepackage[table]{xcolor}
\usepackage{minted}
\usepackage{tikz}
\usetikzlibrary{positioning, fit, arrows.meta}
\newcommand{\red}[1]{\textcolor{red}{#1}}
\graphicspath{ {./images/} }
\pagestyle{plain} %oppure none
\usepackage[
backend=biber,
style=ieee,
sorting=ynt
]{biblatex}
\addbibresource{bibliography.bib} % Nome del tuo file .bib
\makeglossaries
\newglossaryentry{latex}{name=latex,
description={Is a markup language specially suited for
scientific documents}}
\begin{document}
%\maketitle
\subfile{frontispiece}
\tableofcontents
\listoffigures
\listoftables
\printglossary
\clearpage
\subfile{Acronyms}
\subfile{chapters/0-Abstract}
\subfile{chapters/1-Introduction}
\subfile{chapters/2-StateOfArt}
\subfile{chapters/3-IntroduzioneAlProgettoPuckTrick}
\subfile{chapters/4-DatasetAnalysis}
\subfile{chapters/5-EmpyricAnalysis}
\subfile{chapters/6-MLP}
\subfile{chapters/7-LSTM}
\subfile{chapters/8-conclusion}
% ----------------------
% ---- BIBLIOGRAPHY ----
% ----------------------
\backmatter
\sloppy % serve a non far andare i link oltre ai margini
\printbibliography[heading=bibintoc, title=Bibliografia]
% \printbibliography[type=online, heading=bibintoc, title=Sitografia]
\end{document}