I am writing a very long document in Memoir, and, right at the start, I would like to have a verso (left-facing) "copyright page" before the (recto, right-facing) title page. At the moment, I'm doing this by just inserting a \cleartoverso command right at the start of the document:
\documentclass[onecolumn,openright,a4paper]{memoir}
% Use very different margins to accentuate recto and verso differences
\setlrmarginsandblock{5cm}{2.25cm}{*}
\setulmarginsandblock{2.54 cm}{*}{*}
\usepackage{titling}
\pretitle{\begin{flushright}\LARGE}
\posttitle{\par\end{flushright}\vskip 0.5em}
\preauthor{\begin{flushleft}\LARGE \lineskip 0.5em}
\postauthor{\par\end{flushleft}}
\title{A Big Title In A Customised \\maketitle Command }
\author{ A. An Author, A. N. Other University. }
\date{}
\begin{document}
\frontmatter
\cleartoverso
\flushleft
\vspace*{\fill}
\footnotesize
\textbf{I am a copyright notice.}\\
I am probably very long and boring. I additionally am liable to contain lots of pointless notices about mechanical book retrieval systems that don't really exist any more more. The main point of this block of text is to show you on which side the margins are!\\
\copyright{} 2015 A. An Author. Licensed under the GPL v. 3.14159.
\maketitle
\mainmatter
% Stuff goes here...
\end{document}
This is suboptimal: the first page in the resultant output is empty, followed by the copyright page and then the title. I would like to have no blank page, copyright page, and then the title -- but with all subsequent chapters opening right, which is the reason I've chosen openright as a class option. However, I essentially don't want the frontmatter opening right!
Is there a better way of doing this, but without the \cleartoverso? Does Memoir have an internal counter I can manipulate to make the first page of the document verso rather than recto?
\maketitleright after\frontmatter(assuming you want the title page first??? The first page og the book is always (by logic) recto, as it's generally what you see when the book sits on the table. – Brent.Longborough Jul 19 '15 at 17:02openanyclass option, then use the\openrightcommand to (memoir manual 6.5) to switch when you're ready for chapter content. Alternatively, I'd just post-process the PDF to remove the first page when I was completely done writing. – Mike Renfro Jul 19 '15 at 17:03I know how to change page numbering in either the
– Landak Jul 19 '15 at 17:43\frontmatter,\mainmatteror\backmatter, but now I'd just like to know how to change the first page in a document from one side to the other.