
I'm trying to lay out a book using the memoir class. The problem I'm having is that even though I'm using the twoside option my margins don't flip flop sides for recto and verso pages. The wider margin that I want for the spine always stays on the left while the page numbers and header flip flop like they should.
Here's the sample code I'm using to test out my margin setup.
Does anyone see anything I'm doing wrong?
Code: Select all
\documentclass[twoside,openright,onecolumn,postvopaper,final,extrafontsizes]{memoir}
\usepackage{lipsum} % dummy text
\setstocksize{8in}{5.375in}
\settrimmedsize{8in}{5.375in}{*}
\settrims{0pt}{0pt}
\setlrmarginsandblock{3cm}{2.5cm}{*}
\setulmarginsandblock{2.5cm}{2.5cm}{*}
\checkandfixthelayout
\setlength{\evensidemargin}{\oddsidemargin}
\begin{document}
\lipsum
\lipsum
\end{document}