-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTesi.tex
83 lines (69 loc) · 2.9 KB
/
Tesi.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
\documentclass{theme/uniprthesis}
%%%%%%%%%%%Some Extra Packages%%%%%%%%%%%
\usepackage[italian]{babel} % To have Italina names in Sections, Figures, Chapters etc.
\usepackage{todonotes} % To ease the revision
\usepackage{subcaption}
%%%%% THESIS / TITLE PAGE INFORMATION
% Everybody needs to complete the following:
\title{Addestramento di una rete neurale encoder-decoder con dati limitati per la segmentazione del femore fetale da immagini ecografiche}
\author{Dmitri Ollari Ischimji}
\advisor{Prof. Claudio Ferrari}
\college{Dipartimento di Ingegneria e Architettura}
\degree{Corso di Laurea Triennale in Ingegneria dei Sistemi Informativi}
\degreeyears{2023--2024}
% Not mandatory fields
\newcommand{\subTitle}{Training an encoder-decoder neural network with limited data for fetal femur segmentation from echographic images} %Subtitle, usually the english version of the title
%\newcommand{\advisorSecond}{Prof. Nome2 Cognome2} % For multiple (up to 4) advisors -- if this is not present then also the remaining ones are automatically omitted
%\newcommand{\advisorThird}{Dott. Nome3 Cognome3} % For multiple (up to 4) advisors -- if this is not present then also the remaining ones are automatically omitted
%\newcommand{\advisorFourth}{Dott. Nome4 Cognome4} % For multiple (up to 4) advisors
% \newcommand{\coadvisor}{Prof. co-Nome co-Cognome} %For multiple (up to 4) coadvisors -- if this is not present then also the remaining ones are automatically omitted
% \newcommand{\coadvisorSecond}{Prof. co-Nome2 co-Cognome2} % For multiple (up to 4) coadvisors -- if this is not present then also the remaining ones are automatically omitted
%\newcommand{\coadvisorThird}{Dott. co-Nome3 co-Cognome3} % For multiple (up to 4) coadvisors -- if this is not present then also the remaining ones are automatically omitted
%\newcommand{\coadvisorFourth}{Dott. co-Nome4 co-Cognome4} % For multiple (up to 4) coadvisors
\begin{document}
\maketitle
%%%% La dedica
\newpage
\thispagestyle{empty}
\null\vspace{\stretch{1}}
\begin{flushright}
\textit{Dedicato a Diego}
\end{flushright}
\vspace{\stretch{3}}\null
\newpage
%%%% Gli indici
\pagestyle{plain}
\pagenumbering{arabic}
\tableofcontents
%
\listoffigures %Commentare se non vi sono Immagini
% \listofalgorithms %Commentare se non vi sono Algoritmi
\listoftables %Commentare se non vi sono Tabelle
%
%
%
%%%% La prefazione
% \include{Capitoli/Introduzione}
\include{Capitoli/00_Introduzione}
%
%%%% I Capitoli di Contenuto
\pagestyle{fancy}
\include{Capitoli/01_LavoriCorrelati}
\include{Capitoli/02_Metodi}
\include{Capitoli/03_Risultati}
\pagestyle{plain}
\include{Capitoli/04_Conclusioni}
%
%%%% La bibliografia
\bibliographystyle{apalike} %{plain} -- Scegliere lo stile preferito
\cleardoublepage
\addcontentsline{toc}{chapter}{\bibname}
\bibliography{./Bibliografia}
%
% \include{Capitoli/Ringraziamenti}
%
% Le appendici
\appendix
% \include{Capitoli/Appendici/Appendice1}
%
\end{document}