Page Layout ⇒ How do I get rid of the blank page after the title page?
How do I get rid of the blank page after the title page?
The 'standard' is for the title-verso page (aka copyright page) to go on the reverse of the title page.
However, \maketitle inserts a blank page.
I've tried creating both pages as 'ordinary' pages, but then the title page gets a page number.
Short of some further fudge involving the fancyheader package...
How do I get rid of the blank page after the title page?
Thanks.
I hope this is a simple question, I've done plenty of searching here and elsewhere.
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
How do I get rid of the blank page after the title page?
If I simply do the following:
Code: Select all
\documentclass{book}
\title{A title}
\author{An author}
\date{\today}
\begin{document}
\maketitle
Some stuff
\chapter{A chapter}
some stuff
\end{document}
How do I get rid of the blank page after the title page?
My very silly error was putting the title-verso page after \frontmatter.
It should be:
Code: Select all
\begin{document}
\include{titlepage}
\maketitle
\include{title-verso}
\frontmatter
\tableofcontents
etc...
Alan