I want to have a twoside document, left pages should be aligned more to the left and right pages more to the right. Also, when I begin a chapter this should always begin on the right side. All the pages before introduction should have roman numbering, and the pages after the contents should have arabic numbering.
Thus, Chapter one should start at page number 1, at the right hand side of the document, with an increased left margin. I figured the latex book style should cope with this quite easily, below is a minimal working example.
\documentclass[a4paper,twopage]{book}
\usepackage[english]{babel}
\usepackage{blindtext}
\frontmatter
\begin{document}
\begin{titlepage}
\blindtext
\end{titlepage}
\begin{titlepage}
\blindtext
\end{titlepage}
\chapter*{abstract}
\blindtext[6]
\mainmatter
\chapter{introduction}
\blindtext[6]
\end{document}
The problems are:
- The titlepage is the first page, and should start with an increased left margin, however, it starts with an increased right margin.
- The abstract is the first chapter, and thus it should start on the right side, with an increased left margin, this is also not true. Same goes for the introduction.
I tried the options openright, openleft, and openany, all three have no effect.
How to solve?
edit: Added the frontmatter and mainmatter. Still no effect.


\frontmatterjust before\begin{document}and\mainmatterjust before the first chapter ? – Jérôme Dequeker Feb 24 '16 at 16:31