-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
111 lines (85 loc) · 2.67 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
% Template from https://www.overleaf.com/latex/templates/international-university-hcmiu-vnu-pre-thesis-and-thesis-latex-template/hkwcgswxgfth
\documentclass[12pt, twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{csquotes}
\usepackage{graphicx}
\usepackage[english]{babel}
\usepackage[a4paper, top=1in, bottom=0.8in, left=1in, right=1in]{geometry}
\usepackage{fancyhdr}
\usepackage[colorlinks=true,linkcolor=black]{hyperref}
\usepackage{comment}
\usepackage{float}
\usepackage{tikz}
\usepackage{tikz-qtree}
\usepackage{graphicx}
\usepackage{siunitx}
\usepackage{listings}
\usepackage{algorithm}
\usepackage{algorithmic}
\usetikzlibrary{arrows,automata,positioning}
\lstset{%
captionpos=b,
language=Python,
basicstyle=\ttfamily\footnotesize,
keywordstyle=\color{blue}\bfseries,
breaklines=true,
breakatwhitespace=true,
frame=single,
numbers=left,
numberstyle=\footnotesize,
numberstyle=\tiny\color{gray},
stringstyle=\color{orange},
rulecolor=\color{black},
title=\lstname,
showstringspaces=false,
}
\graphicspath{{images/}}
\begin{document}
\pagenumbering{roman}
\begin{titlepage}
\renewcommand{\thesection}{\arabic{section}}
\newcommand{\HRule}{\rule{\linewidth}{0.2mm}}
\center
\textsc{\Large Ca' Foscari University of Venice }\\[1.0cm]
\includegraphics[scale=0.85]{ unive-emblem.png }\\[1cm]
\textsc{\Large Department of Environmental Sciences, Informatics and Statistics }\\[0.5cm]
\textsc{\large MCS Computer Science and Information Technology CM-90 }\\[0.5cm]
\textsc{\large [CM0481] Software Performance and Scalability }\\[0.5cm]
\HRule \\[0.8cm]
{ \Huge \bfseries IMDb: Performance and Scalability Analysis }\\[0.5cm]
\HRule \\[0.8cm]
\Large \emph{Authors:}\\
Michele \textsc{Lotto} - {\normalsize 875922}\\
Daniel Jader \textsc{Pellattiero} - {\normalsize 903837}\\[3.5cm]
{\large Rev. 30/06/2024 }\\
\vfill
\end{titlepage}
\tableofcontents
\listoftables
\addcontentsline{toc}{chapter}{List of Tables}
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
\lstlistoflistings
\addcontentsline{toc}{chapter}{List of Listings}
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
\input{chapters/abstract}
% Body of the paper
\chapter{System implementation}
\pagenumbering{arabic}
\setcounter{page}{1}
\input{chapters/001}
\chapter{Test case identification}
\input{chapters/002.tex}
\chapter{Queueing network model}
\input{chapters/003.tex}
\chapter{Q.N. Theoretical analysis}
\input{chapters/004.tex}
\chapter{Q.N. Empirical analysis}
\input{chapters/005.tex}
\chapter{Enhanced architecture proposal}
\input{chapters/006.tex}
\chapter{Concluding remarks}
\input{chapters/007.tex}
\end{document}