I'm writing a book in Persian, so it is read from right to left. That means that all odd pages should have a wide right-margin, whereas even pages should have a wide left-margin. All chapters should also start on odd pages.
Here is a MWE of my current document:
Code: Select all
\documentclass[14pt, extrafontsizes, openleft]{memoir}
\usepackage{xepersian}
\settextfont{XB Niloofar}
\usepackage{blindtext}
\begin{document}
\mainmatter
\chapter{One}
\blindtext
\end{document}
This produces a document where the margin is correctly widest in the right part of the page where the chapter starts. However, the chapter starts on page 2, and not 1 as it should?

- 9iWss.png (36.11 KiB) Viewed 2302 times
Why is this? And what is the correct way to configure my preamble such that it understands that I am writing a document that is to be read from right to left?