I am trying to get the copyright page to print (or display) on the back of the title page. What is happening is that I get a blank page after the title page and then the copyright page opens on the right hand side. What I would like to do is eliminate the blank page immediately after the title page and have the copyright page print on the back of the title page.
I am using the memoir class (though Koma-script scrbook has the same behavior). Here is a minimum working example:
\documentclass[11pt]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{geometry}
\geometry{bottom=1in}
\usepackage{tgpagella}
\usepackage{lettrine}
\usepackage{microtype}
\begin{document}
\begin{titlingpage}
\begin{center}
\huge{Los picapiedras}
\vspace{1 in}
\bigskip
f.flinstone
\end{center}
\end{titlingpage}
\frontmatter
\textit{Picapiedras}
here is the copyright page
\mainmatter
\lettrine{Y}{o estaba alojado} en un hotel
\end{document}