-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
117 lines (79 loc) · 2.13 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
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
\documentclass[12pt,twoside,openany]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[backend=biber,style=authoryear-ibid]{biblatex}
\usepackage{csquotes}
\addbibresource{references.bib}
\usepackage[a4paper]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{hyperref}
\usepackage{titlesec}
\titleformat{\chapter}
{\Large\bfseries} % format
{} % label
{0pt} % sep
{\huge} % before-code
\usepackage{graphicx}
\graphicspath{{images/}}
\usepackage{float} % to use H option
% loading in math packages
\usepackage{mathtools}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{siunitx}
\usepackage{gensymb}
\usepackage[version=4]{mhchem}
\begin{document}
%\maketitle
\begin{titlepage}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\center % Centre everything on the page
%------------------------------------------------
% Headings
%------------------------------------------------
\textsc{\textbf{\LARGE Università degli Studi di Trento}}\\[1.5cm]
\textsc{\textbf{\Large Dipartimento di Fisica }}\\[0.5cm]
%------------------------------------------------
% Title
%------------------------------------------------
\HRule\\[0.4cm]
{\huge\bfseries XY model}\\[0.1cm] % Title of your document
\HRule\\[1.5cm]
\vfill
\begin{figure}[h]
\centering
\includegraphics[scale=0.18]{logo.png}
\end{figure}
\vfill
\begin{figure}[h]
\centering
\begin{minipage}{0.4\textwidth}
\Large
\textbf{\textit{Author}\\
Francesco\\ \textsc{Musso}} % Author's name
\end{minipage}
\qquad \qquad \qquad
\begin{minipage}{0.4\textwidth}
\begin{flushright}
\Large
\textbf{\textit{Supervisor}\\
Prof. Francesco \textsc{Pederiva}} % Supervisor's name
\end{flushright}
\end{minipage}
\end{figure}
\vfill
\textbf{{\Large November 2020}}
\end{titlepage}
\tableofcontents
\chapter{Introduction}
\input{chapters/introduction.tex}
\chapter{XY model}
\input{chapters/xy.tex}
\chapter{Montecarlo simulation}
\input{chapters/montecarlo.tex}
\chapter{Conclusion}
\input{chapters/conclusion.tex}
\printbibliography[heading=bibintoc]
\end{document}