GeneralAny ideas how to add a blank page after the title page?

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
ggyyree
Posts: 21
Joined: Mon Sep 15, 2008 6:32 pm

Any ideas how to add a blank page after the title page?

Post by ggyyree »

I use codes as following to add a blank page after the title page; however, I got the error info: There's no line here to end.

Code: Select all

\maketitle
% End of Title

\clearpage
\thispagestyle{empty}
\phantom{a}
\vfill
\newpage
\centering[This page intentionally left blank]
\vfill
\addtocounter{page}{-1}

% Start Abstract
\pagenumbering{roman}
\addcontentsline{toc}{chapter}{Abstract}
\chapter*{\markboth{Abstract}{Abstract}}

If I use the codes at the end of the document it works!

Code: Select all

\clearpage
\thispagestyle{empty}
\phantom{a}
\vfill
\centering[This page intentionally left blank]
\vfill
Any ideas how to add a blank page after the title page please? Please also make sure it won't affect the hyperlinks of the page. Thank you!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
Stefan Kottwitz
Site Admin
Posts: 10358
Joined: Mon Mar 10, 2008 9:44 pm

Any ideas how to add a blank page after the title page?

Post by Stefan Kottwitz »

Hi,

perhaps use \cleardoublepage, or something like

Code: Select all

\clearpage\mbox{}\clearpage
Stefan
LaTeX.org admin
ggyyree
Posts: 21
Joined: Mon Sep 15, 2008 6:32 pm

Any ideas how to add a blank page after the title page?

Post by ggyyree »

Stefan_K wrote:Hi,

perhaps use \cleardoublepage, or something like

Code: Select all

\clearpage\mbox{}\clearpage
Stefan
Thanks! It works now by removing \centering
Post Reply