-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththesis.tex
More file actions
166 lines (135 loc) · 4.01 KB
/
thesis.tex
File metadata and controls
166 lines (135 loc) · 4.01 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
%=============================================
% Document settings
%---------------------------------------------
% For printing in a4
%\documentclass[a4,10pt,twoside,openright,italian,english]{book}% twoside!
% For printing with the A5 format
\documentclass[10pt,twoside,openright,english]{book}
% Set paper size
\usepackage[twoside=true]{geometry}
%For printing with the weird format
\geometry{
paperwidth=17cm,
paperheight=24cm,
% margin=2cm,
margin=1.9cm,
bottom=2cm,
top=2.3cm,
bindingoffset=0.4cm
}
% For printing in a4
%\geometry{a4paper,
% margin=3cm,
% top=3.8cm,
% bindingoffset=0.4cm
%}
%Uncomment this for final prints: this just enables printing on a4 paper
%\usepackage[cam,center,a4,pdflatex,axes]{crop}
\usepackage{phdthesis}
\usepackage{phdtitle}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage[main=english,italian]{babel}
%% force the font size fot subsubsection titles
\titleformat*{\subsubsection}{\large\bfseries}
%% force the font size fot paragraph titles
\titleformat*{\paragraph}{\large\bfseries}
\input{settings/packages}
\input{settings/commands}
\input{acronyms}
\makeglossaries
%=============================================
% Title and other info
%---------------------------------------------
\hypersetup{pdftitle={\thesistitle}, pdfauthor={Ewerton de Oliveira}}
\hypersetup{pageanchor=false}
\department {Dipartimento di Elettronica, Informazione e Bioingegneria}
\phdprogram{Doctoral Program In Information Technology}
\author{Ewerton Lopes Silva de Oliveira}
\title{\thesistitle}
\supervisor{Andrea Bonarini}
\cosupervisor{Tiago Pereira do Nascimento}
\tutor{Francesco Amigoni}
\chair{Andrea Bonarini}
\titleimage{images/polilogo/logoPoliWhite_nome.pdf}
\phdcycle{2018 -- Cycle XXX}
%%\input{contents/glossary} % to enable it againt, decomment also the last line
%%\makenoidxglossaries
%\bibliography{bibliography}
\addbibresource{bibliography}
\begin{document}
\selectlanguage{english}
\maketitle
%=============================================
% Print info
%---------------------------------------------
%\vspace*{\fill}
%\noindent Ewerton Lopes Silva de Oliveira\\
%Dipartimento di Elettronica, Informazione e Bioingegneria\\
%Politecnico di Milano\\
%e-mail: \texttt{ewerton.lopes@polimi.it}\\[.2cm]
%\begin{small}
%Printed \today
%\end{small}
\hypersetup{pageanchor=true}
\cleardoublepage
\newpage
% change numbering into Roman numbers for the introductory part
\setcounter{page}{1}
\pagenumbering{Roman}
\pagestyle{fancy} %\pagestyle{plain}
%=============================================
% Acknowledgement
%---------------------------------------------
% \include{contents/acknowledgment}
% \cleardoublepage
% \newpage
%=============================================
% Abstract
%---------------------------------------------
\include{chapters/00-abstract}
%=============================================
% Sommario
%---------------------------------------------
\selectlanguage{italian}
\include{chapters/00-sommario}
\selectlanguage{english}
%=============================================
% TOC
%---------------------------------------------
\tableofcontents
\listoffigures
\listoftables
\printglossaries
\cleardoublepage
\newpage
% Now lets go back to normal numbering
\setcounter{page}{1}
\pagenumbering{arabic}
\cleardoublepage
%=============================================
% Main document
%---------------------------------------------
\include{chapters/01-introduction}
\include{chapters/02-art}
\include{chapters/03-foundations}
\include{chapters/04-activity}
\include{chapters/05-modeling}
\include{chapters/06-adaptation}
\include{chapters/07-deception}
\include{chapters/08-key-issues}
\include{chapters/09-future-and-conclusions}
%=============================================
% Bibliography
%---------------------------------------------
\cleardoublepage
\phantomsection
%\printbibliography
%=============================================
% Appendices
%---------------------------------------------
\cleardoublepage
\appendix
%\input{appendix/A-environments}
\end{document}