Re: inserire pagina bianca

#46471
Up
0
Down
::


questo è un esempio minimale di ciò che mi accade: pagina bianca prima del frontespizio e numerazione nella pagina del frontespizio

Evidentemente c’è qualche incompatibilità, sapreste aiutarmi?

`
\documentclass[a4paper,twoside,11pt]{book}
\usepackage{latexsym}
\usepackage{amsmath,amsfonts,amssymb,amsthm}%amsmath:per azzerare il counter note ad ogni capitolo
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{times}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage[nottoc]{tocbibind}
\usepackage{vmargin}
\usepackage{emptypage}

\usepackage{fancyhdr}

%setta i margini della pagina
\setmarginsrb{25mm}{25mm}%left e top
{20mm}{20mm}%right e bottom
{0mm}{15mm}%{}{}
{0mm}{10mm}%{}{}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}%intestazione capitolo
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}%intestazione sezione
\renewcommand{\subsectionmark}[1]{\markright{\thesubsection\ #1}}%intestazione sottosezione
\fancyhf{}
\fancyhead[LE,RO] {\nouppercase\thepage}%numeri a sx nelle pag pari
%numeri a dx nelle pag dispari

\fancyhead[LO,Re]{\textbf{\nouppercase\chaptername{} %titolo del capitolo in alto alla pagina
\textsl{\nouppercase\thechapter}}:{}\emph{\
\nouppercase\leftmark}}
\renewcommand{\footrulewidth}{0.4pt}

\begin{document}
%\pagenumbering{roman}
\frontmatter
%\pagestyle{empty}
\begin{titlepage}
\centering
\vspace*{\fill}
\includegraphics[width=\textwidth]{frontespizioPhD_new.pdf}
\vspace*{\fill}
\end{titlepage}
\clearpage
%************************************************************

\thispagestyle{empty}
\vspace*{\stretch{1}}
\begin{flushright}
cin cin
\end{flushright}
\vspace*{\stretch{3}}
\cleardoublepage
\thispagestyle{empty}
Si ringrazia la zia Cesarina

\cleardoublepage

\tableofcontents

\chapter{Introduzione}
Qui vediamo che faremo dopo

\mainmatter
\chapter{Pecos Bill}
a
\newpage

b
\newpage
c
\clearpage
\phantomsection
\end{document}

`

Go to top