113 lines
2.6 KiB
TeX
113 lines
2.6 KiB
TeX
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\documentclass[12pt,a4paper]{report} % o article, book, ...
|
|
|
|
% TODO inserire vari packages (todonotes, ecc.)
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% packages...
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage[english,italian]{babel}
|
|
\usepackage[hyphens]{url}
|
|
|
|
% Per generare il file PDF aderente alle specifiche PDF/A-1b. Verificarne poi la validità.
|
|
\usepackage[a-1b,mathxmp]{pdfx}
|
|
|
|
\usepackage{hyperref}
|
|
\hypersetup{
|
|
colorlinks,
|
|
linkcolor={black!100!black},
|
|
citecolor={blue!100!black},
|
|
urlcolor={blue!100!black}
|
|
}
|
|
|
|
\usepackage{graphicx}
|
|
|
|
\usepackage{lipsum}% Per inserire testo a caso in attesa di realizzare i capitoli
|
|
|
|
\usepackage{listings} %Per inserire codice formattato
|
|
%\lstset{
|
|
%lstset va usato dopo l'inizio del document e ogni volta che si vuole cambiare/impostare il linguaggio da formattare
|
|
% language=bash
|
|
%frame=single,
|
|
%breaklines=true,
|
|
%postbreak=\raisebox{0ex}[0ex][0ex]{\ensuremath{\color{red}\hookrightarrow\space}},
|
|
%basicstyle=\ttfamily\footnotesize
|
|
%}
|
|
|
|
\usepackage[backend=biber,
|
|
style=alphabetic,
|
|
%citestyle=authoryear
|
|
]{biblatex}
|
|
|
|
\usepackage{csquotes}
|
|
|
|
\usepackage{epigraph} % per le frasi inizio capitolo
|
|
|
|
\usepackage{fancyhdr}
|
|
|
|
\setlength {\marginparwidth }{2cm}
|
|
\usepackage[colorinlistoftodos]{todonotes}
|
|
%\usepackage[disable]{todonotes}
|
|
|
|
\usepackage{refcheck}
|
|
|
|
\addbibresource{Biblio.bib}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\begin{document}
|
|
|
|
% Frontespizio
|
|
\begin{titlepage}
|
|
\begin{center}
|
|
\includegraphics[width=\textwidth]{Logo.jpg}\\
|
|
{\large{\em Corso di Laurea in Informatica per la comunicazione digitale}}
|
|
\end{center}
|
|
\vspace{12mm}
|
|
\begin{center}
|
|
{\huge{\bf Streaming decentralizzato di}}\\
|
|
\vspace{4mm}
|
|
{\huge{\bf contenuti audiovisivi}}\\
|
|
\end{center}
|
|
\vspace{12mm}
|
|
\begin{flushleft}
|
|
{\large{\bf Relatore:}}
|
|
{\large{Trentini Andrea}}\\
|
|
%{\large{\bf Correlatore:}}
|
|
%{\large{...}}\\
|
|
\end{flushleft}
|
|
\vfill
|
|
\begin{flushright}
|
|
\parbox{1.7in}{
|
|
{\large{\bf Tesi di Laurea di:}}\\
|
|
{\large{Mirko Milovanovic}}\\
|
|
{\large{\bf Matricola: \normalfont 870671}}
|
|
}
|
|
\end{flushright}
|
|
\vfill
|
|
\begin{center}
|
|
{\large{\bf Anno Accademico 2021-2022}}
|
|
\end{center}
|
|
\end{titlepage}
|
|
|
|
\tableofcontents
|
|
\thispagestyle{empty}
|
|
|
|
% o sections (dipende dal documentclass)
|
|
\chapter{Lipsum 1}
|
|
\setcounter{page}{1}
|
|
|
|
TCP/IP over Avian Carriers\cite{waitzman1990standard}\\
|
|
\lipsum[50-80]
|
|
|
|
\chapter{Lipsum 2}
|
|
\lipsum[10-20]
|
|
\section{Test sezione}
|
|
\lipsum[20-30]
|
|
\chapter{Cap3}
|
|
\chapter{Introduzione su cosa è un servizio di live streaming}
|
|
\todo{Analisi delle soluzioni esistenti}
|
|
|
|
\printbibliography
|
|
\addcontentsline{toc}{chapter}{Bibliografia}
|
|
|
|
\end{document} |