-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
90 lines (68 loc) · 2.26 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
\documentclass[10pt,a4paper]{book}
\input{style}
% adding space after section numbers in TOC
\makeatletter
\renewcommand{\l@section}{\@dottedtocline{1}{1.5em}{2.6em}}
\renewcommand{\l@subsection}{\@dottedtocline{2}{4.0em}{3.6em}}
\renewcommand{\l@subsubsection}{\@dottedtocline{3}{7.4em}{4.5em}}
\makeatother
\begin{document}
\frontmatter
\pagestyle{empty}
% COPERTINA
\hypertarget{mytitlepage}{} % set the hypertarget
\bookmark[dest=mytitlepage,level=chapter]{Title Page} % add the bookmark
\vspace*{\fill}
\begin{center}
{\large \textsc{Appunti di}}\\
\vspace*{0.4cm}
{\Huge \textsc{Fisica Sperimentale 1}}\\
\vspace*{1cm}
{\large per il corso di Ingegneria Matematica}\\
\vspace*{0.4cm}
{\large {di Teo Bucci e Giulia Di Giusto}}\\
\vspace*{1cm}
Politecnico di Milano\\
A.A. 2018/2019
\end{center}
\vspace*{\fill}
\clearpage
% COPYRIGHT PAGE
\hypertarget{mycopyright}{} % set the hypertarget
\bookmark[dest=mycopyright,level=chapter]{Copyright Page} % add the bookmark
\input{firstpages/copyright}
\clearpage
% PREFAZIONE
\hypertarget{mypreface}{} % set the hypertarget
\bookmark[dest=mypreface,level=chapter]{Prefazione} % add the bookmark
\input{firstpages/prefazione}
\clearpage
% INDICE
\cleardoublepage
\pagestyle{toc}
\hypertarget{mytoc}{} % set the hypertarget
\bookmark[dest=mytoc,level=chapter]{\contentsname} % add the bookmark
\tableofcontents
\cleardoublepage
% MAIN MATTER
\pagestyle{fancy}
\mainmatter
\input{chapters/01-introduzione} \cleardoublepage
\input{chapters/02-cinematica-punto-materiale} \cleardoublepage
\input{chapters/03-dinamica-punto-materiale} \cleardoublepage
\input{chapters/04-lavoro-energia} \cleardoublepage
\input{chapters/05-moto-armonico} \cleardoublepage
\input{chapters/06-gravitazione} \cleardoublepage
\input{chapters/07-dinamica-sistemi-particelle} \cleardoublepage
\input{chapters/08-dinamica-corpo-rigido} \cleardoublepage
\input{chapters/09-statica-fluidi} \cleardoublepage
\input{chapters/10-termodinamica} \cleardoublepage
% APPENDICE
\appendix
\begin{appendices}
\input{chapters/A1-costanti-unita-misura} \cleardoublepage
\input{chapters/A2-trigonometria} \cleardoublepage
\input{chapters/A3-calcolo-differenziale-integrale} \cleardoublepage
\input{chapters/A4-identita-vettoriali} \cleardoublepage
\end{appendices}
\end{document}