Giusto, grazie. Allora questo è lo scheletro del mio documento:
`\documentclass[a4paper,12pt,oneside]{book}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{setspace} %per l'interlinia
\usepackage{graphicx}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
%\usepackage{geometry} %nel caso debba riadattare i margini
\usepackage{titlesec} %formato titoli capitoli
\titleformat{\chapter}
{\filright\normalfont\huge\bfseries}
{}
{5pt}
{}
\usepackage{fancyhdr} %aggiungere l'abstract alla modalità book
\newcommand{\fncyblank}{\fancyhf{}}
\newenvironment{abstract}
{\cleardoublepage\fncyblank\null \vfill\begin{center}
\bfseries \abstractname \end{center}}
{\vfill\null}
\usepackage{tocloft} %aggiungere punti collegamento a tableofcontent
\renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}}
\begin{document}
\pagestyle{headings}
\doublespacing
\begin{titlepage}
…
\end{titlepage}
\newpage
\thispagestyle{empty}
\begin{abstract}
… …
\end{abstract}
\newpage
\setcounter{page}{1}
\tableofcontents
\chapter{Introduction}
\label{0}
… … …
\chapter{Conclusion}
\label{1}
… … … …`