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

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10335
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