Document Classes ⇒ memoir - "odd" page margins
memoir - "odd" page margins
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.
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
memoir - "odd" page margins
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
Re: memoir - "odd" page margins
I will look at your links and return if I need further help. Thx a lot!
memoir - "odd" page margins
Code: Select all
\setlrmarginsandblock{25mm}{25mm}{*}
\setulmarginsandblock{25mm}{25mm}{*}
\checkandfixthelayout[nearest]