Possible Duplicate:
How do I make pages which were “intentionally left blank”?
Assuming I am forcing amount of pages to be even using Raphink's solution : https://tex.stackexchange.com/a/69112/7128
\documentclass{article}
\usepackage{lipsum}
\usepackage{ifthen}
\begin{document}
\lipsum
\ifthenelse{\isodd{\thepage}}
{\cleardoublepage\mbox{}}
{}
\end{document}
How to put a nice grey large text in the center of page "This page was left intentionally blank" ?
I suppose it's the place where is \mbox{}, but how to typeset such information ?
(I use pdflatex)