108 lines
2.3 KiB
TeX
108 lines
2.3 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]{pdfx}
|
|
|
|
\usepackage{hyperref}
|
|
\hypersetup{
|
|
colorlinks,
|
|
linkcolor={red!50!black},
|
|
citecolor={blue!50!black},
|
|
urlcolor={blue!80!black}
|
|
}
|
|
|
|
\usepackage{graphicx}
|
|
|
|
\usepackage{lipsum}% Per inserire testo a caso in attesa di realizzare i capitoli
|
|
|
|
\usepackage{listings}
|
|
\lstset{
|
|
% 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: \normalfont870671}}
|
|
}
|
|
\end{flushright}
|
|
\vfill
|
|
\begin{center}
|
|
{\large{\bf Anno Accademico 2021-2022}}
|
|
\end{center}
|
|
\end{titlepage}
|
|
|
|
\tableofcontents
|
|
|
|
% o sections (dipende dal documentclass)
|
|
\chapter{Lipsum 1}
|
|
|
|
TCP/IP over Avian Carriers\cite{waitzman1990standard}
|
|
\lipsum
|
|
|
|
\chapter{Lipsum 2}
|
|
\lipsum[10-20]
|
|
\chapter{Cap3}
|
|
\chapter{Cap4}
|
|
|
|
\printbibliography
|
|
\addcontentsline{toc}{chapter}{Bibliografia}
|
|
|
|
\end{document} |