Add a new empty page

\newpage\null\thispagestyle{empty}\newpage

gives an empty page. \null is defined as \hbox{}. This is needed because TeX doesn't create a pagebreak if there is nothing on the page. You can define an own command:

\newcommand*\NewPage{\newpage\null\thispagestyle{empty}\newpage}

\cleardoublepage may also be of help, it brings you to the next available odd page, given the document is typeset in the twoside mode (default in the standard book class, for instance).


article class has titlepage option which prints title, author and date on its own page and starts text on second page. book class print a title page and start chapters on right-hand pages leaving and empty page after title page. report class does the same with the twoside option.