Page LayoutConfusion with odd- and even pages.

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
bischoff
Posts: 5
Joined: Mon Jul 19, 2010 3:00 am

Confusion with odd- and even pages.

Post by bischoff »

I am finishing the layout of a book at the moment, and have some problems with understanding why I am not able to get the odd numbered pages on the right side (with the biggest margin on the left), and the even numbered pages on the left side. The document is relatively large (ca. 500 pages) and is defined as an article (as the author about that...), twosided.

Is there any way of re-defining which pages should be on the right and left hand side?

Any help is much appreciated!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

bischoff
Posts: 5
Joined: Mon Jul 19, 2010 3:00 am

Confusion with odd- and even pages.

Post by bischoff »

I can't even get this to function properly;

Code: Select all

\documentclass[12pt,a4paper,twoside]{article}
\usepackage{amsmath}

\renewcommand\contentsname{Innholdsfortegnelse}

\begin{document}

Hello!
\newpage
Hello!
\end{document}
If it is any help, the document is written in Scientific Workplace.
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Confusion with odd- and even pages.

Post by gmedina »

Hi,

your confusion comes from forgetting the space that standard document classes (ansd some other classes) reserve for the margin notes. If you want to change the page layout, you can use the geometry package.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Confusion with odd- and even pages.

Post by Stefan Kottwitz »

Don't confuse margins with binding correction. There's no binding correction by default, that's why the inner margin is smaller than the outer. Imagine the book lying opened before you: a good layout would show equal space at left, inner and outer margin, but the inner margin consists of two joined margins. That's why it's a good idea to make the inner margin half of the outer.

If you expect to loose space because of the binding, specify this space. If you use the geometry package then specify a value for the option bindingoffset. If you use typearea then state a BCOR value.

Stefan
LaTeX.org admin
bischoff
Posts: 5
Joined: Mon Jul 19, 2010 3:00 am

Re: Confusion with odd- and even pages.

Post by bischoff »

Thank you!

Haha, I just had a look at some other book I have lying around here and realised that my problem was not a real problem.

Thank you anyway, I've learned something new today :-)
Post Reply