General ⇒ Margins in documents
Margins in documents
I am currently working on the final formatting of my dissertation.
I am working with a the report document class.
My university has specific margin requirements:
1. Top, bottom and right margins need to be at least 1 inch and the left margin at least 1.5 inches,
2. The page number needs to be at least 1 inch from bottom of page,
3. There should be 2 spaces between the page number and bottom of the text.
I am using the geometry package to handle the margins:
\usepackage[left=1.6in, top=1.1in, bottom=1.5in, right=1.1in]{geometry}
While conditions 1 and 2 are satisfied, I have problem with condition 3.
Can anyone help me with the right command here?
Thank for you help in davance,
Wolf
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 documents
the distance between the baseline of the text body and the baseline of the footer is controlled by the parameter \footskip. This can also be set using the geometry package, using option footskip. You will probably have to use the option includefoot to fulfill requirement 2. Here is an example:
Code: Select all
\documentclass[letterpaper]{article}
\usepackage[includefoot, margin=1in, footskip=3\baselineskip]{geometry}
\usepackage{layout}
\begin{document}
\layout
\end{document}
Re: Margins in documents
It worked perfectly.