-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
81 lines (63 loc) · 1.87 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
\documentclass[Lau, italian, noexaminfo]{sapthesis}
\usepackage[italian]{babel} %italian language package
\usepackage{epigraph} %quoting package
\usepackage{biblatex} %biblatex package, bibliography
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage{hyperref}
\usepackage{url}
\usepackage{graphicx} %graphics package
\usepackage{wrapfig} %for wrapping image and let text flanking image
\usepackage{subcaption} %for flanking images
\usepackage{minted} %for code snippets
\usemintedstyle{tango} %for coloring the code
\renewcommand\listoflistingscaption{Codici sorgente}
\renewcommand{\listingscaption}{Codice sorgente}
\usepackage[export]{adjustbox}
\usepackage{listings}
\usepackage{color}
\definecolor{dkgreen}{rgb}{0,0.6,0}
\definecolor{gray}{rgb}{0.5,0.5,0.5}
\definecolor{mauve}{rgb}{0.58,0,0.82}
\lstset{frame=tb,
language=Go,
aboveskip=3mm,
belowskip=3mm,
showstringspaces=false,
columns=flexible,
basicstyle={\small\ttfamily},
numbers=none,
numberstyle=\tiny\color{gray},
keywordstyle=\color{blue},
commentstyle=\color{dkgreen},
stringstyle=\color{mauve},
breaklines=true,
breakatwhitespace=true,
tabsize=3
}
%sapthesis class configuration
\title{Design ed Implementazione del Back End del Sistema di Warehouse di SeismoCloud}
\author{Andrea Stella}
\IDnumber{1869065}
\course{Informatica}
\courseorganizer{Facoltà di Ingegneria dell'informazione, informatica e statistica}
\AcademicYear{2020/2021}
\copyyear{2021}
\advisor{Prof. Emanuele Panizzi}
\authoremail{stella.1869065@studenti.uniroma1.it}
%adding bibliography file
\addbibresource{bib/bibliography.bib}
\begin{document}
\maketitle
\frontmatter
\input{chapters/chapter0}
\mainmatter
\input{chapters/chapter1}
\input{chapters/chapter2}
\input{chapters/chapter3}
\input{chapters/chapter4}
\input{chapters/chapter5}
\input{chapters/chapter6}
\backmatter
\input{chapters/chapter7}
\end{document}