Re: Pagina bianca per stampare il capitolo sulla pagina destra

#78253
Up
0
Down
::


sulla rete ho trovato questo suggerimento, che funziona egregiamente! lo metto a disposizione di tutti, magari per altri utenti.
non so se sia il caso di inserirlo nelle future edizioni dell’Arte, ma sicuramente a qualcuno potrebbe risultare utile!

`
Creat an empty page in Latex
It is necessary to use a trick when creating an empty page in Latex. The following code does the job:

\newpage
\thispagestyle{empty}
\mbox{}

The major part is \mbox{}, which ensures the existence of an empty page.

The usage of \thispagestyle is \thispagestyle{option}. The option can be:

plain – Just a plain page number.
empty – Produces empty heads and feet – no page numbers.
headings – Puts running headings on each page. The document style specifies what goes in the headings.
myheadings – You specify what is to go in the heading with the \markboth or the \markright commands
`

Go to top