I'm typesetting a friend's novel using LaTeX (in my actual document I'm using memoir, but the same happens if I just use book). It's possible I'm going crazy, but I'm sure that it's setting up odd pages to be left pages, instead of right pages (which is what appears to be standard). My code looks something like this:
\documentclass{book}
\usepackage{lipsum}
\title{Lorem Ipsum Dolor Sit Amet}
\author{The Author}
\begin{document}
\frontmatter
\maketitle
\mainmatter
\lipsum
\end{document}
This generates me a 4 page PDF (you can download it here) - which I think has odd pages as left-hand pages (odd pages have wide right margins, even pages have wide left margins, but then on the other hand, odd pages have page numbers on the right hand side, which makes them look like right-hand pages).
Shouldn't I have a wide left margin? Have I totally misunderstood odd and even pages? Have I just completely lost it from staring at this for too long?
evince, a popular document viewer for many GNU/Linux distributions leaves the first left/recto page alone on the right-hand side in its two-page viewing mode. (I think it does this by default.) – jon Dec 16 '12 at 19:09hyperrefhas an option somewhere to do the same in all readers ;) – tohecz Dec 17 '12 at 0:09