[Tex/LaTex] Add white page after table of contents before abstract

double-sidedpage-breaking

How can I add a white pages after the table of contents in order to have the abstract on a right page?

If I add

\clearpage
\newpage

I cannot get the white page added.

Ideas?

Best Answer

In general you need place something on the page, like \hbox{} (aka \null), otherwise two page breaks in a row are ignored:

\clearpage\null\newpage

But actually you should use \cleardoublepage instead! It ensures that the next page is on a right page.