-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
50 lines (32 loc) · 1.27 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
\documentclass{univemaster}
\author{My name}
\ay{20xx-20xx} % academic year
\supervisor{My supervisor}
\title{My thesis title}
%\teachassistant{The teacher assistant}
\begin{document}
\maketitle
\pagenumbering{roman}
\chapter*{Acknowledgments}
The main structure of this document has been provided by \href{https://github.com/Cinofix/latex-scientific-templates}{Cinofix}.\\
There is not an official template for a master thesis written in LaTex, thus this template with the class ``univemaster''
aims to fill this gap.\\
The Ca' Foscari University logo is a modified version of the one downloadable from
\href{https://commons.wikimedia.org/wiki/File:Logo_Universit\%C3\%A0_Ca\%27_Foscari_Venezia.svg}{Wikipedia} and all rights belong to Ca' Foscari University of Venice.
\chapter*{Abstract}
\lipsum[1-3]
\paragraph{Keywords}
Lorem ipsum, dolor sit amet, consectetur, adipiscing elit
\tableofcontents
\clearpage
% start arabic page numbering
\pagenumbering{arabic}
\setcounter{page}{1}
% include all the others chapter here, "introduction.tex" and "conclusion.tex" are only examples
\include{introduction}
\include{conclusions}
\bibliographystyle{plainnat}
{\footnotesize
\bibliography{references.bib}
}
\end{document}