[Tex/LaTex] Pagebreak after titlepage

abstractpage-breakingtitles

I have now made a titlepage in my document using

\begin{titlepage}
stuff
\end{titlepage}

and that is fine, but now when I tried to insert a blank page after the titlepage and before

\begin{abstract}
stuff
\end{abstract}

Latex will not listen and put a blank page there! Can someone help me to do this?

P.S. I have no idea whether using the titlepage environment is "good" practice when using Latex, so if anyone has comments on that, they are most welcome.

P.P.S. The relevant stuff from my preamble is

\documentclass[a4paper, twoside, 11pt]{report}

P.P.P.S. MWE:

\documentclass[a4paper, twoside, 11pt]{report}

%irrelevant stuff

\begin{document}

\begin{titlepage}

some nonsense

\end{titlepage}

%Tried \pagebreak,\clearpage,\newpage,combinations thereof

\begin{titlepage}

Abstract 

\end{titlepage}

%Tried as above

\tableofcontents

Some more text

\end{document}

Best Answer

Using \cleardoublepage will here fill in a blank page. It ensures that the next content, whatever it might be, is on the rightside.

Full Code

\documentclass[a4paper, twoside, 11pt]{report}

%irrelevant stuff

\begin{document}

\begin{titlepage}

some nonsense

\end{titlepage}

\cleardoublepage

\begin{titlepage}

Abstract 

\end{titlepage}

%Tried as above

\tableofcontents

Some more text

\end{document}