My front matter (abstract, table of contents, etc) does not start on the right hand side despite my chapters doing so. How do I ensure that these pages also start on the right hand side? The latex code is below.
\documentclass[twoside,openright]{report}
% Packages
\begin{document}
\include{0_Frontmatter/title}
\onehalfspacing
\pagenumbering{roman}
\include{0_Frontmatter/acknowledgements}
\include{0_Frontmatter/abstract}
\tableofcontents
\listoffigures
\clearpage
\setcounter{page}{1}
\pagenumbering{arabic}
\include{1_Introduction/chapter1}
% etc ...
\end{document}
\cleardoublepagebefore using\includein each of your front matter components (or as the first thing contained within the.texfile you're including). Otherwise, if this does not work, post the partial contents of (say)title.texandchapter1.texso it would be possible to assess what you're doing differently. – Werner Feb 24 '12 at 20:01