I'm using the book class to typeset a book.
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.
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?
Last edited by alanq on Wed Jun 08, 2011 4:49 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

How do I get rid of the blank page after the title page?
I cannot duplicate the problem.
If I simply do the following:
Then no blank page is inserted after the title page. Please reduce your problem to a minimal working example or else I fear it will be impossible to diagnose.
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?
frabjous you are brilliant!
My very silly error was putting the title-verso page after \frontmatter.
It should be:
Thank you!
Alan
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