-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
44 lines (44 loc) · 1.37 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
\documentclass[12pt, a4paper, twoside]{report}
\input{preamb.tex}
\begin{document}
%-------------------------------------FRONTESPIZIO
\begin{titlepage}
\subfile{src/fronte.tex}
\end{titlepage}
\setcounter{page}{1}
\pagenumbering{roman}
%-------------------------------------ABSTRACT
\chapter*{Abstract}
\subfile{src/abstract.tex}
\chapter*{Prefazione}
\subfile{src/prefazio.tex}
%-------------------------------------INDICE
\tableofcontents{}
\newpage
%-------------------------------------INTRODUZIONE
\pagenumbering{arabic}
\chapter*{Introduzione}
\addcontentsline{toc}{chapter}{Introduzione}
\subfile{src/intro.tex}
%-------------------------------------CAPITOLO 1
\chapter{Esperimenti di fascio di particelle a \emph{target} fisso}
\subfile{src/esp.tex}
%-------------------------------------CAPITOLO 2
\chapter{TriDAS}
\subfile{src/tridas.tex}
%-------------------------------------CAPITOLO 3
\chapter{Algoritmo di \emph{tagging} di raggi cosmici}
\subfile{src/algo.tex}
%-------------------------------------DISCUSSIONE E CONCLUSIONI
\chapter*{Conclusioni}
\subfile{src/end.tex}
\addcontentsline{toc}{chapter}{Conclusioni}
%-------------------------------------APPENDICI
\appendix
\chapter{Listato completo dell'algoritmo}
\subfile{src/appendix.tex}
%-------------------------------------BIBLIOGRAFIA
\nocite{*}
\printbibliography
\addcontentsline{toc}{chapter}{Bibliografia}
\end{document}