-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
103 lines (97 loc) · 2.87 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
\documentclass[12pt,italian,a4paper,oneside,openright]{book}
\usepackage{geometry}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{float}
\usepackage{hyperref}
\usepackage{fancyhdr}
\usepackage{wrapfig}
\usepackage{minted}
\usepackage{amsmath}
\usepackage{tabularx}
\usepackage[table]{xcolor}
\usepackage[hyphens]{url}
\usepackage[backend=biber,style=numeric,sorting=none]{biblatex}
\addbibresource{bibliography.bib}
\addbibresource{Sitography.bib}
\setcounter{biburllcpenalty}{7000}
\setcounter{biburlucpenalty}{8000}
\usepackage{amsfonts}
\usepackage{epsfig}
\usepackage{adjustbox}
\usepackage[T1]{fontenc}
\usepackage{subcaption}
\usepackage{mwe}
\usepackage[italian]{babel}
%\usepackage[latin1]{inputenc}
%\usepackage[format=hang,font=footnotesize]{caption}
\usepackage{vmargin}
\usepackage{indentfirst}
\usepackage[hyperindex]{hyperref} %per l'indice interattivo
\hypersetup{breaklinks=true}
\hypersetup{colorlinks=true, linkcolor=black} %per colorare i link
%\DeclareGraphicsRule{.jpg}{jpg}{}{} %da commentare per il PDF
%\DeclareGraphicsRule{.bmp} {bmp}{}{} %da commentare per il PDF
\setmarginsrb{35mm}{30mm}{30mm}{30mm}{0mm}{10mm}{0mm}{10mm}
%%\setmarginsrb{1.5cm}{1.5cm}{1,2cm}{1,5cm}{0cm}{2cm}{2cm}{2cm}
\begin{document}
\include{title_page}
\newpage
\thispagestyle{plain}
\markboth{Indice}{Indice}
\tableofcontents
\cleardoublepage
% \phantomsection
\addcontentsline{toc}{chapter}{Elenco delle figure}
\listoffigures
\cleardoublepage
% \phantomsection
\addcontentsline{toc}{chapter}{Elenco delle tabelle}
\listoftables
\newpage
\thispagestyle{plain}
\markboth{\large{INTRODUZIONE}}{\large{INTRODUZIONE}}
\cleardoublepage
% \phantomsection
\addcontentsline{toc}{chapter}{Introduzione}
\include{introduction}
\thispagestyle{plain}
\markboth{\large{ABSTRACT}}{\large{ABSTRACT}}
\cleardoublepage
% \phantomsection
\addcontentsline{toc}{chapter}{Abstract}
\include{abstract}
%\cleardoublepage
% \phantomsection
%\addcontentsline{toc}{chapter}{Acronimi}
%\include{acronyms}
\pagenumbering{arabic}
\include{chapters/ch1}
\include{chapters/ch2}
\include{chapters/ch3}
\include{chapters/ch4}
\thispagestyle{plain}
\markboth{\large{CONCLUSIONI}}{\large{CONCLUSIONI}}
\addcontentsline{toc}{chapter}{Conclusioni}
\include{conclusion}
\appendix
\thispagestyle{plain}
\markboth{\large{RINGRAZIAMENTI}}{\large{RINGRAZIAMENTI}}
\cleardoublepage
% \phantomsection
\addcontentsline{toc}{chapter}{Ringraziamenti}
\include{acknowledgements}
\thispagestyle{plain}
\markboth{\large{BIBLIOGRAFIA}}{\large{BIBLIOGRAFIA}}
\Urlmuskip=0mu plus 1mu\relax
\cleardoublepage
\addcontentsline{toc}{chapter}{Bibliografia}
\printbibliography[nottype=misc, heading=bibliography, title=Bibliografia]
\thispagestyle{plain}
\markboth{\large{SITOGRAFIA}}{\large{SITOGRAFIA}}
\cleardoublepage
\addcontentsline{toc}{chapter}{Sitografia}
\printbibliography[type=misc, heading=bibliography, title=Sitografia]
\newpage
\pagestyle{plain}
\end{document}