::
il file main della tesi è – per ora – il seguente
`
\documentclass[a4paper,11pt,openright,twoside]{book}
\usepackage[T1]{fontenc}
\usepackage[italian]{babel}
\usepackage{amsmath,amsfonts}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{pifont}
\usepackage[binding=.6cm]{layaureo}
\usepackage{lettrine}
\usepackage{titlesec}
%%%%%%%%%%%%%%%%%%%%%%%%
\renewcommand{\sf}[1]{\textsf{#1}}
\renewcommand{\d}{\mathop{}\!\mathrm{d}}
\newcommand{\pd}[2]{\frac{\partial #1}{\partial #2}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\titleformat{\chapter}[block]{\Huge\bfseries\sffamily}{\thechapter.~}
{1pc}{}[\titlerule\vspace{4cm}]
\titleformat{\subsection}[wrap]{\sffamily\bfseries}{\thesubsection.}{.5em}
{}\titlespacing{\subsection}{12pc}{1.5ex plus .1ex minus .2ex}{1pc}
\titleformat{\paragraph}[leftmargin]{\sffamily\bfseries\filleft}
{\theparagraph}{.5em}{}\titlespacing{\paragraph}{4pc}{1.5ex plus .1ex minus .2ex}{1pc}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\numberwithin{equation}{chapter}%numera le eq secondo il capitolo(amsmath)
\setlength{\headheight}{15pt}%altrimenti fancyhdr mi dà un warning
\usepackage{hyperref}
\includeonly{capitolo1}
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{\sffamily\thechapter\; #1}{}}
\renewcommand{\sectionmark}[1]{\markright{\sffamily #1\;\thesection}}
%\renewcommand{\footrulewidth}{0mm}
\renewcommand{\headrulewidth}{0.2mm} %intestazioni e piè di pagina
\fancyhf{} %con l'uso del pacchetto
\fancyhead[lo]{\leftmark} %fancyhdr
\fancyhead[re]{\rightmark}
\fancyhead[ro,le]{\sffamily\thepage}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\include{frontespizio}
\frontmatter
\tableofcontents
\listoffigures
\mainmatter
\include{capitolo1}
\include{capitolo2}
\nocite{*}
\addcontentsline{toc}{chapter}{Bibliografia}
\bibliographystyle{unsrt}
\bibliography{articoli}
\end{document}
`