Page Layout ⇒ margins in memoir package
margins in memoir package
I write a article used memoir package. Unluckily I have a problem with setup a margins. I need to set: top, lower, right margins = 2.5cm and left margin = 3cm. Page size is A4 format.
Can anyone help me? I read the manual for this package, but I lose - how can I do it. I don't need any "margin note", and anything else.
I need to have only: 3 cm left margin, 15.5 cm text, 2.5 cm right margin.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
margins in memoir package
If you are using the oneside option, the code would be like the following:
Code: Select all
\documentclass[oneside,a4paper]{memoir}
\usepackage{lipsum} % dummy text
\setlrmarginsandblock{3cm}{2.5cm}{*}
\setulmarginsandblock{2.5cm}{2.5cm}{*}
\checkandfixthelayout
\begin{document}
\lipsum
\lipsum
\end{document}
Code: Select all
\documentclass[a4paper]{memoir}
\usepackage{lipsum} % dummy text
\setlrmarginsandblock{3cm}{2.5cm}{*}
\setulmarginsandblock{2.5cm}{2.5cm}{*}
\checkandfixthelayout
\begin{document}
\lipsum
\lipsum
\end{document}
Code: Select all
\documentclass[a4paper]{memoir}
\usepackage{lipsum} % dummy text
\setlrmarginsandblock{3cm}{2.5cm}{*}
\setulmarginsandblock{2.5cm}{2.5cm}{*}
\checkandfixthelayout
\setlength{\evensidemargin}{\oddsidemargin}
\begin{document}
\lipsum
\lipsum
\end{document}
Re: margins in memoir package
