I am trying to insert a blank page between the title page and the table of contents in my RMarkdown document, pdf output. I followed the suggestion described here. My issue is that the blank page does not appear. Here is my code:
\pagenumbering{gobble}
\centering
\centerline{\includegraphics[height=2in]{glasgowuni.png}}
\large{UNIVERSITY OF GLASGOW}
\normalsize{COLLEGE OF SCIENCE AND ENGINEERING}
\normalsize{SCHOOL OF MATHEMATICS AND STATISTICS}\linebreak
\raggedright
\clearpage
\pagenumbering{arabic}
\tableofcontents
\newpage
Can anyone spot why the blank page does not appear?