GeneralBlank pages at the beginning

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Keta
Posts: 63
Joined: Tue Nov 25, 2008 1:00 pm

Blank pages at the beginning

Post by Keta »

I bet this is an easy one, but I just can't find a solution! :oops: I just want a single-page empty document, so I can use it with the pdfpages package to insert blank pages into pdf files. The best I could do is

Code: Select all

\documentclass[a4paper]{book}
\pagestyle{empty}
\begin{document}
Don't use this page!
\cleardoublepage
\end{document}
which makes the second page blank. I could use this, but I'll have to remember to insert the second page when using pdfpages.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10348
Joined: Mon Mar 10, 2008 9:44 pm

Blank pages at the beginning

Post by Stefan Kottwitz »

Hi,

to produce empty pages you could use for instance

Code: Select all

\newpage\mbox{}\newpage
or similar with \clearpage.

Stefan
LaTeX.org admin
Keta
Posts: 63
Joined: Tue Nov 25, 2008 1:00 pm

Re: Blank pages at the beginning

Post by Keta »

Thanks a lot, that's what I wanted! :D :D
mas
Posts: 226
Joined: Thu Dec 04, 2008 4:39 am

Blank pages at the beginning

Post by mas »

Stefan_K wrote:Hi,

to produce empty pages you could use for instance

Code: Select all

\newpage\mbox{}\newpage
or similar with \clearpage.
I use the shorter version

\newpage
~
\newpage

Regards.

OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim
Post Reply