Re: Come usare l’ambiente abstract con la classe book

#52318
Up
0
Down
::


`\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

Go to top