`\documentclass [12pt,a4paper,twoside,openany]{book}
\usepackage[rilegatura=1.3 cm]{layaureo}
\usepackage[latin1]{inputenc}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[tight,italian]{minitoc}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{lettrine}\usepackage[babel]{csquotes}
\usepackage{biblatex}\usepackage[Lenny]{fncychap}
\usepackage{fancyhdr}
\pagestyle{fancy}
\ChTitleVar{\LARGE\bfseries\rm\centering}
\fancyhead{}
\fancyfoot{}
\fancyfoot[RO,LE]{\thepage}
\fancyhead[LE]{{\footnotesize\nouppercase\leftmark}} % even pages!
\fancyhead[RO]{{\footnotesize\nouppercase\rightmark}} % odd pages!
\usepackage {epigraph} %epigrafe
\usepackage[bf,footnotesize]{caption}
\usepackage{doublespace}
\usepackage{chngcntr}
\counterwithin{figure}{section}
\counterwithin{table}{section}
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\bibliography{Bibliography}\usepackage{emptypage}
\begin{document}
\frontmatter % per i numeri di pagina in romano
\tableofcontents % Indice%******************************************************************
% Capitoli
%******************************************************************
\input{Chapters/Inizio} % Abstract Aknowledgments Declaration
\mainmatter % per i numeri di pagina in arabo
\input{Chapters/01-LinearBlockCodes}
\input{Chapters/02-LowDensityParityCheckCodes}
\input{Chapters/03-SC-MPC}
\input{Chapters/04-PerformanceComparison}
%******************************************************************\backmatter
%******************************************************************
% Bibliografia
%******************************************************************
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
%******************************************************************\end{document}
`Il file Inizio dove ci sono l’abstract ecc è
`\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
In this section, we provide some examples of codes with the aim to compare M-SC-MPC codes and their irregular versions with IEEE 802.16e standard QC-LDPC codes. For this purpose, we consider codes having all values of rate specified by the standard (R = 1/2, 2/3, 3/4 and 5/6) and length n = 1632. We have designed some M-SC-MPC codes and irregular M-SC-MPC codes with exactly the same length and rate.\chapter*{Aknowledgments}
\addcontentsline{toc}{chapter}{Aknowledgements}
In this section, we provide some examples of codes with the aim to compare M-SC-MPC codes and their irregular versions with IEEE 802.16e standard QC-LDPC codes. For this purpose, we consider codes having all values of rate specified by the standard (R = 1/2, 2/3, 3/4 and 5/6) and length n = 1632. We have designed some M-SC-MPC codes and irregular M-SC-MPC codes with exactly the same length and rate.\chapter*{Declaration}
\addcontentsline{toc}{chapter}{Declaration}
In this section, we provide some examples of codes with the aim to compare M-SC-MPC codes and their irregular versions with IEEE 802.16e standard QC-LDPC codes. For this purpose, we consider codes having all values of rate specified by the standard (R = 1/2, 2/3, 3/4 and 5/6) and length n = 1632. We have designed some M-SC-MPC codes and irregular M-SC-MPC codes with exactly the same length and rate.
`Dopo il declaration mi lascia una pagina vuota…. che non voglio
La “colpa” è di \mainmatter. Se tu non vuoi fai molto male: cominciare il primo capitolo su una pagina sinistra è proprio sbagliato, anche con “openany” che ti invito a non usare comunque.
Ah, contrariamente a quanto qualcuno ti ha suggerito, non serve in \frontmatter scrivere \chapter*{…}\addcontentsline{toc}{chapter}{…}; basta un semplice
`\chapter{…}`
La parola “Acknowledgments” si scrive con “ck”; la “e” tra “dg” e “m” è ammessa, ma o la si mette sempre o mai.
Ciao
Enrico