Page Layoutblank page

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
whocares1
Posts: 1
Joined: Mon May 10, 2010 4:09 pm

blank page

Post by whocares1 »

Hi,

Does anyone know how I can insert an unnumbered (!) blank page after the title page in the "report" class?

Thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
AP
Posts: 6
Joined: Thu Mar 11, 2010 3:19 pm

Re: blank page

Post by AP »

\cleardoublepage might do the trick.
I am using fancyhdr package to configure my page layouts, but it might be an overkill for what you have in mind.
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

blank page

Post by gmedina »

Hi whocares1,

use something along these lines:

Code: Select all

\documentclass[titlepage]{report}

\title{The Title}
\author{The Author}

\begin{document}

\maketitle

\clearpage\thispagestyle{empty}\mbox{}\setcounter{page}{0}\clearpage

test text
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply