Page Layout ⇒ blank page
blank page
Does anyone know how I can insert an unnumbered (!) blank page after the title page in the "report" class?
Thanks!
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
Re: blank page
I am using fancyhdr package to configure my page layouts, but it might be an overkill for what you have in mind.
blank page
use something along these lines:
Code: Select all
\documentclass[titlepage]{report}\title{The Title}\author{The Author}\begin{document}\maketitle\clearpage\thispagestyle{empty}\mbox{}\setcounter{page}{0}\clearpagetest text\end{document}