Document Classesmemoir - "odd" page margins

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
h0ps
Posts: 17
Joined: Thu Nov 08, 2012 10:29 pm

memoir - "odd" page margins

Post by h0ps »

Hi guys

I have a problem. I would like to have the same margins on all pages, so they don't change depending on whether the page is a odd or even number.

I would also like to set the margin size by myself.

Can anyone help me? Thx in advance.

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

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

memoir - "odd" page margins

Post by cgnieder »

Hi h0ps,

Welcome to the LaTeX community! Is this post referring to the memoir class? I'm guessing and that's why I changed the title of the post (from »memori« to »memoir«). If that was wrong please feel free to change it back.

Like many classes »memoir« provides the option oneside which should be what you're looking for.

Code: Select all

\documentclass[oneside]{memoir}
\usepackage{lipsum}% for dummy text
\begin{document}
\lipsum
\end{document}
As for changing margins: »memoir« provides possibilities for that, see the manual: memman.pdf, especially chapter 2. If they don't suit you you can also use the geometry package for full control over the page layout.

Regards
site moderator & package author
h0ps
Posts: 17
Joined: Thu Nov 08, 2012 10:29 pm

Re: memoir - "odd" page margins

Post by h0ps »

Hi. Yeah, sorry for the misunderstanding and for changing the title.

I will look at your links and return if I need further help. Thx a lot!
h0ps
Posts: 17
Joined: Thu Nov 08, 2012 10:29 pm

memoir - "odd" page margins

Post by h0ps »

For people who are interested in the answer to the last question I used this in my preamble

Code: Select all

\setlrmarginsandblock{25mm}{25mm}{*} 
\setulmarginsandblock{25mm}{25mm}{*} 
\checkandfixthelayout[nearest] 
Post Reply