-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Luca Pascucci
committed
Sep 16, 2023
1 parent
f72fcdf
commit 8af89f3
Showing
13 changed files
with
240 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,240 @@ | ||
\documentclass[12pt,a4paper,italian]{book} | ||
|
||
|
||
% numera i subsubsection 1 - 1.1 - 1.1.1 - 1.1.1.1 | ||
\setcounter{secnumdepth}{3} | ||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% Scelta dei package da usare % | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
\usepackage[italian]{babel} | ||
\usepackage[utf8]{inputenc} | ||
\usepackage[T1]{fontenc} | ||
\usepackage{amsmath,amsfonts,amssymb,amsthm} | ||
\usepackage{deistesi} | ||
\usepackage{fancyhdr} | ||
\usepackage{multirow} | ||
\usepackage{tabularx} | ||
\usepackage{float} | ||
|
||
\usepackage[ | ||
pdftex, | ||
pdfauthor={Luca Pascucci}, | ||
pdftitle={Game Engine come layer di modellazione dell'ambiente per un Sistema Multi-Agente}, | ||
pdfsubject={Relazione Sistemi Autonomi}, | ||
bookmarks=true, | ||
bookmarksopen=true, | ||
breaklinks=true, | ||
colorlinks=true, | ||
linkcolor=black, | ||
anchorcolor=blue, | ||
citecolor=blue, | ||
filecolor=red, | ||
urlcolor=blue, | ||
pdfborderstyle={/S/U/W 1}% border style will be underline of width 1pt | ||
]{hyperref} | ||
|
||
\urlstyle{same} | ||
|
||
\usepackage[final]{listings} | ||
\usepackage[pdftex,dvipsnames]{xcolor} | ||
\usepackage{inconsolata} | ||
|
||
\definecolor{mygray}{gray}{0.6} | ||
\definecolor{delim}{RGB}{20,105,176} | ||
\colorlet{myred}{red!60!black} | ||
\colorlet{numb}{red!60!black} | ||
|
||
\lstset{ | ||
frame=bt, | ||
captionpos=b, | ||
aboveskip=3mm, | ||
belowskip=3mm, | ||
showspaces=false, % show spaces everywhere adding particular underscores; it overrides 'showstringspaces' | ||
showstringspaces=false, % underline spaces within strings only | ||
showtabs=false, | ||
columns=flexible, | ||
extendedchars=true, | ||
basicstyle=\fontsize{10}{10}\ttfamily, | ||
numbers=left, | ||
stepnumber=3, | ||
numberstyle=\tiny\color{gray}, | ||
keywordstyle=\color{blue}, | ||
commentstyle=\color{ForestGreen}, | ||
stringstyle=\color{mygray}, | ||
breaklines=true, | ||
breakatwhitespace=true, | ||
tabsize=2, | ||
title=\lstname, | ||
literate= | ||
{á}{{\'a}}1 {é}{{\'e}}1 {í}{{\'i}}1 {ó}{{\'o}}1 {ú}{{\'u}}1 | ||
{Á}{{\'A}}1 {É}{{\'E}}1 {Í}{{\'I}}1 {Ó}{{\'O}}1 {Ú}{{\'U}}1 | ||
{à}{{\`a}}1 {è}{{\`e}}1 {ì}{{\`i}}1 {ò}{{\`o}}1 {ù}{{\`u}}1 | ||
{À}{{\`A}}1 {È}{{\'E}}1 {Ì}{{\`I}}1 {Ò}{{\`O}}1 {Ù}{{\`U}}1 | ||
{ä}{{\"a}}1 {ë}{{\"e}}1 {ï}{{\"i}}1 {ö}{{\"o}}1 {ü}{{\"u}}1 | ||
{Ä}{{\"A}}1 {Ë}{{\"E}}1 {Ï}{{\"I}}1 {Ö}{{\"O}}1 {Ü}{{\"U}}1 | ||
{â}{{\^a}}1 {ê}{{\^e}}1 {î}{{\^i}}1 {ô}{{\^o}}1 {û}{{\^u}}1 | ||
{Â}{{\^A}}1 {Ê}{{\^E}}1 {Î}{{\^I}}1 {Ô}{{\^O}}1 {Û}{{\^U}}1 | ||
{Ã}{{\~A}}1 {ã}{{\~a}}1 {Õ}{{\~O}}1 {õ}{{\~o}}1 | ||
{œ}{{\oe}}1 {Œ}{{\OE}}1 {æ}{{\ae}}1 {Æ}{{\AE}}1 {ß}{{\ss}}1 | ||
{ű}{{\H{u}}}1 {Ű}{{\H{U}}}1 {ő}{{\H{o}}}1 {Ő}{{\H{O}}}1 | ||
{ç}{{\c c}}1 {Ç}{{\c C}}1 {ø}{{\o}}1 {å}{{\r a}}1 {Å}{{\r A}}1 | ||
{€}{{\euro}}1 {£}{{\pounds}}1 {«}{{\guillemotleft}}1 | ||
{»}{{\guillemotright}}1 {ñ}{{\~n}}1 {Ñ}{{\~N}}1 {¿}{{?`}}1 | ||
} | ||
|
||
\lstset{ | ||
language=Java, | ||
morekeywords={final} | ||
moredelim=[il][\textcolor{mygray}]{@}{\ }, | ||
moredelim=[is][\textcolor{mygray}]{\%\%}{\%\%} | ||
} | ||
|
||
\lstdefinelanguage{json}{ | ||
comment=[l]{//}, | ||
literate= | ||
{0}{{{\color{myred}0}}}{1} | ||
{1}{{{\color{myred}1}}}{1} | ||
{2}{{{\color{myred}2}}}{1} | ||
{3}{{{\color{myred}3}}}{1} | ||
{4}{{{\color{myred}4}}}{1} | ||
{5}{{{\color{myred}5}}}{1} | ||
{6}{{{\color{myred}6}}}{1} | ||
{7}{{{\color{myred}7}}}{1} | ||
{8}{{{\color{myred}8}}}{1} | ||
{9}{{{\color{myred}9}}}{1} | ||
{:}{{{\color{myred}{:}}}}{1} | ||
{,}{{{\color{myred}{,}}}}{1} | ||
{\{}{{{\color{delim}{\{}}}}{1} | ||
{\}}{{{\color{delim}{\}}}}}{1} | ||
{[}{{{\color{delim}{[}}}}{1} | ||
{]}{{{\color{delim}{]}}}}{1}, | ||
} | ||
|
||
\lstdefinelanguage{asl}{ | ||
comment=[l]{//}, | ||
morestring=**[d][\color{myred}]{"}, | ||
keywords={include} | ||
} | ||
|
||
\usepackage{xargs} | ||
\usepackage[colorinlistoftodos,prependcaption]{todonotes} | ||
\newcommandx{\unsure}[2][1=]{\todo[linecolor=red,backgroundcolor=red!25,bordercolor=red,#1]{#2}} | ||
\newcommandx{\change}[2][1=]{\todo[linecolor=blue,backgroundcolor=blue!25,bordercolor=blue,#1]{#2}} | ||
\newcommandx{\improvement}[2][1=]{\todo[linecolor=ForestGreen,backgroundcolor=ForestGreen!25,bordercolor=ForestGreen,#1]{#2}} | ||
\newcommandx{\marianiSays}[2][1=]{\todo[linecolor=Orange,backgroundcolor=Orange!25,bordercolor=Orange,#1]{#2}} | ||
|
||
\makeatletter | ||
|
||
\newcommand\ProcessThreeDashes{\llap{\color{cyan}\mdseries-{-}-}} | ||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% Scelta delle dimensioni della pagina % | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
\setlength{\textwidth}{13.5cm} | ||
\setlength{\textheight}{19cm} | ||
\setlength{\footskip}{3cm} | ||
\setlength{\headheight}{15pt} | ||
\oddsidemargin=50pt \evensidemargin=20pt | ||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% Informazioni generali sulla Tesi % | ||
% da usare nell'intestazione % | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
\titolo{Game Engine come layer di modellazione dell'ambiente per un Sistema Multi-Agente} | ||
\laureando{Luca Pascucci} | ||
\annoaccademico{2018--2019} | ||
\sessione{II} | ||
\facolta{CAMPUS DI CESENA\\SCUOLA DI INGEGNERIA E ARCHITETTURA} | ||
\corsodilaurea{Ingegneria e Scienze Informatiche} | ||
\corso{Sistemi Autonomi} | ||
\relatore{Andrea Omicini} | ||
\correlatorea{Stefano Mariani} | ||
%\correlatoreb[]{Pablo Neruda} | ||
\parolechiave{Sistema Multi-Agente}{Game Engine}{Middleware}{Play framework}{...} | ||
|
||
\dedica{\textit{"Dedica...}} | ||
%\dedica{\textit{"Non ti dico di correre...\\ma non fermarti mai!"\\L.P.}} | ||
|
||
\author{Luca Pascucci} | ||
\title{Game Engine come layer di modellazione dell'ambiente per un Sistema Multi-Agente} | ||
\date{\today} | ||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% Fine Preambolo % | ||
% Inizio tesi % | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
\begin{document} | ||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% inizio prefazione | ||
% pagina del titolo, indice, sommario | ||
%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
\frontmatter \maketitle \pagestyle{plain} \tableofcontents | ||
|
||
\input{sommario.tex} | ||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% inizio corpo del documento | ||
% | ||
% sequenze dei vari capitoli | ||
% è consigliato mantenere una struttura logica ben definita per separare i vari capitoli | ||
% si consiglia di reificare tale struttura fisicamente sul file system | ||
%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
\mainmatter | ||
|
||
% stile della pagina | ||
\pagestyle{fancy} \fancyhead[LE,RO]{\bfseries\thepage} | ||
|
||
% inclusione dei capitoli | ||
\input{capitolo1bis.tex} | ||
|
||
\input{capitolo1.tex} | ||
|
||
\input{capitolo2.tex} | ||
|
||
\input{capitolo3.tex} | ||
|
||
%\input{link_materiali.tex} | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% THESIS CONTENT - APPENDICES | ||
%---------------------------------------------------------------------------------------- | ||
|
||
\appendix % Cue to tell LaTeX that the following "chapters" are Appendices | ||
|
||
% Include the appendices of the thesis as separate files from the Appendices folder | ||
% Uncomment the lines as you write the Appendices | ||
|
||
%\include{appendici/appendice} | ||
%\include{Appendices/AppendixB} | ||
%\include{Appendices/AppendixC} | ||
|
||
% \appendix | ||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% inizio parte finale del documento | ||
% | ||
% eventuali appendici, bibliografia obbligatoria, | ||
% eventuale lista delle tabelle e delle figure (nel caso decommentare la riga con i comandi \listoffigures e \listoftables) | ||
%%%%%%%%%%%%%%%%%%%%%%%%% | ||
\backmatter | ||
|
||
%\input{./Appendice/appendice.tex} | ||
%\input{./Bibliografia/bibliografia.tex} | ||
|
||
%\listoftodos[Lista Note] | ||
\listoffigures | ||
%\listoftables | ||
%\lstlistoflistings | ||
\bibliography{biblio} | ||
\bibliographystyle{abbrv} | ||
|
||
% chiusura del documento | ||
\end{document} |