I'm writing a report which needs to be bound, and as such I'd like to use the twoside option. However, the first few pages of the report are causing some issues with the ordering. In the MWE below, the title page has no displayed page number, and is a verso page. The pages for the abstract and table of contents switch to roman numbering, and as a result the title page and abstract page are both verso. The page numbers for the actual report have arabic numbering, and this results in pages 4 and 5 both being verso.
What is the best way to keep the correct margins across these numbering switches? Perhaps something like using a hidden counter for the page numbers used by twoside to determine the margins would work, but I don't know how to do that.
\documentclass[a4paper,11pt,twoside]{article}
\author{A Name}
\title{A Title}
\begin{document}
\maketitle
\thispagestyle{empty}
\newpage
\pagenumbering{roman}
\begin{abstract}
We discuss the joys of \LaTeX
\end{abstract}
\newpage
\tableofcontents
\newpage
\mbox{}
\newpage
\pagenumbering{arabic}
\section{One}
\section{Two}
\end{document}
\cleardoublepagebefore the\pagenumberingwould keep things on the right side or usebookclass and\frontmatter\mainmatter(which basically just do\cleardoublepage\pagenumbering{..}– David Carlisle Apr 11 '13 at 22:08\cleardoublepageadds an additional page to the document - is it possible to do it without this happening? – heuristicus Apr 11 '13 at 22:15\newpage\mbox{}\newpagewill get the wrong parity if your table of contents gets more than a page long. You need\cleardoublepageor\cleartoevenpagehttp://tex.stackexchange.com/questions/62033/figures-on-left-pages-text-on-right-pages/62065#62065 – David Carlisle Apr 11 '13 at 22:30\mbox{}in to illustrate the structure of my document, which has two pages for the table of contents. There is a very strict page limit, which is why I'd rather not add more pages unless absolutely necessary. – heuristicus Apr 12 '13 at 09:33\pagenumbering{roman}before the title then that is page 1 (not shown as page style empty) and your abstract comes on page 2 shown as ii and they'll have different parity for the page counter and so get the correct margins. – David Carlisle Apr 12 '13 at 09:43