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.
Document Classes ⇒ memoir - "odd" page margins
NEW: TikZ book now 40% off at Amazon.com for a short time.

memoir - "odd" page margins
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
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
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}

Regards
site moderator & package author
Re: memoir - "odd" page margins
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!
I will look at your links and return if I need further help. Thx a lot!
memoir - "odd" page margins
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]