[Tex/LaTex] Non-alternating margins in book class

booksgeometrymargins

For a book class, I specify margins like this:

\usepackage[top=1.25in, bottom=1.25in, left=1.5in, right=1.25in]{geometry}

But left and right appear to behave as inner and outer. I need to have the left margin 1.5 inch, and not have it alternate from page to page.

It looks like the assymetric option should do this, but it does not appear to have any effect.

Best Answer

Why don't you just change from twoside to oneside? The following example works for me just fine.

\documentclass[oneside]{book}

\usepackage[margin=1cm, bindingoffset=5cm]{geometry}

\usepackage{lipsum} % serving demonstration purposes only

\begin{document}
\lipsum[1-25]
\end{document}

The default value is twoside, and when you have a twosided document left and right margin specification will transform into inner and outer.

You should change the margin values of course.