-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
116 lines (98 loc) · 2.83 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
\documentclass[12pt,a4paper,oneside]{article}
\usepackage{graphicx}
\usepackage{titlepic}
\usepackage[utf8]{inputenc}
\usepackage[left=1.0in,right=1.0in, top=1in, bottom= 1in]{geometry}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{algorithmicx}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{fancyhdr}
\usepackage{hyperref}
\usepackage{etoolbox}
\usepackage[nottoc]{tocbibind}
\usepackage{appendix}
\usepackage{multicol}
\usepackage{leftidx}
\graphicspath{{figures/}}
\usepackage{ragged2e}
\usepackage{mathtools}
\usepackage{units}
\usepackage{float}
\usepackage{subcaption}
\usepackage{commath}
\usepackage{pdfpages}
\usepackage{wrapfig}
\usepackage[sorting=none]{biblatex} %biblatex package, bibliography
\usepackage{xcolor}
\usepackage{listings}
\usepackage{dirtytalk}
\usepackage{amsthm}
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\newtheorem{theorem}{Theorem}
\usepackage[none]{hyphenat} % Avoids to go out of margin
\usepackage{subfiles}
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{mystyle}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\ttfamily\footnotesize,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=2
}
\lstset{style=mystyle}
% --------------------------------------------- %
\addbibresource{bibliografia.bib} %Import the bibliography file
\title{Design e sviluppo backend per sistema di rilevamento presenza umana tramite audio in seguito a terremoti} % Title
\author{Tommaso Sgroi} % Authors separated by \\
\date{\today} % Date
% Font size of figure smaller than normal size:
\usepackage{caption}
\captionsetup[figure]{font=small}
%\captionsetup[table]{font=small}
%\usepackage{setspace} % double spacing
\linespread{1.2}
\makeatletter
\let\thetitle\@title
\let\theauthor\@author
\let\thedate\@date
\makeatother
\begin{document}
\sloppy
\include{title}
\vspace{1.0cm}
\tableofcontents
\newpage
\subfile{chapters/01-Introduzione}
\clearpage
\subfile{chapters/02-PrimiTask}
\clearpage
\subfile{chapters/03-PostEarthquakePeopleDetection}
\clearpage
\subfile{chapters/04-Conclusioni}
\clearpage
%\subfile{chapters/05-SviluppiFuturi}
\clearpage
% \subfile{chapters/06-ringraziamenti}
\clearpage
%\subfile{chapters/07-Conclusioni}
\clearpage
\printbibliography
\end{document}