Re: Titolo e numero di pagina nel piè di pagina

#87084
Up
0
Down
::


Io nella stesura della mia tesi sto usando la classe book con facyhdr per l’intestazione e il piè pagina e frontespizio per il frontespizio. Inoltre puoi usare \frontmatter, \mainmatter e \backmatter per separare indice, capitoli e eventuali appendici con appropriata numerazione in numeri romani e arabi.

`\documentclass[12pt,a4paper,twoside,openright,titlepage]{book}

\usepackage{fancyhdr}
\usepackage[signatures]{frontespizio}

% page style
\pagestyle{fancy}
\fancyhead[LE,RO]{\slshape \rightmark}
\fancyhead[LO,RE]{\slshape }
\fancyfoot[C]{\thepage}
% more page style
%\lhead{}
%\chead{}
%\rhead{}
%\lfoot{}
%\cfoot{\thepage}
%\rfoot{}
\renewcommand{\headrulewidth}{0.01cm}

\begin{document}
{
\begin{frontespizio}
% see frontespizio doc

\end{frontespizio}

\frontmatter
\tableofcontents
% eventually lists of figures and tables

\mainmatter
% actual chapters of your thesis
% bibliography

\backmatter
%\appendix
}
\end{document}`

Go to top