Starting chapters on even-numbered pages
13 June 2008 by Stefan Kottwitz
In documents using the book class chapters start by default on a right-hand, odd-numbered page (recto page), corresponding to option openright. This may be changed by specifying the option openany to use the next available page, which is set default in the case of the report class.
But the LaTeX standard classes don’t provide an openleft option. The memoir class accepts openleft and enables chapters to start on left-hand pages (verso pages).
The book and report class use \cleardoublepage (defined in latex.ltx) to ensure that chapters start on odd-numbered pages. The opposite could be specified by redefining the \cleardoublepage command:
\makeatletter \renewcommand*\cleardoublepage{\clearpage\if@twoside \ifodd\c@page \hbox{}\newpage\if@twocolumn\hbox{}% \newpage\fi\fi\fi} \makeatother
This topic was discussed on mrunix.de.
This entry was posted on 13 June 2008 at 7:38 PM and is filed under Layout. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.




12 June 2009 at 12:52 AM
Thank You for that post, it is very helpful if the minitoc package is used. Then it looks nice, when chapter title, and table of contents is placed on the left hand side…
14 February 2010 at 1:39 AM
What i want to get is every chapter starting in the first free page following that where the one before ended. How can i get that?
14 February 2010 at 9:38 PM
Hi Hernán,
use the class option openany in the declaration of the document class at the beginning of your document.
Stefan