Latex insert an empty or a blank page

Commands to insert an empty page (continuing page number) and a blank page (no continuing page number).

Add an empty page

1
2
3
\newpage
\thispagestyle{plain} % empty
\mbox{}

The major part is \mbox{}, which ensures the existence of an empty page.Following page will continue with numbering.

Insert a blank page

In the preamble:

1
2
3
4
5
6
7
8
\usepackage{afterpage}

\newcommand\blankpage{
    \null
    \thispagestyle{empty}
    \addtocounter{page}{-1}
    \newpage
    }

In the page after which you want a blank page:

1
\afterpage{\blankpage}

The following page will not continue with the numbering.

comments powered by Disqus
CC-BY-NC 4.0
Built with Hugo Theme Stack