Page Layoutmargins

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
trnbvn
Posts: 8
Joined: Mon Oct 06, 2008 9:24 pm

margins

Post by trnbvn »

Can someone please tell me what are the default margin sizes in report class [12pt]?

I'm having trouble adjusting the margins. I want to have page with left=1.5in, right=1in, top=bottom=1in. I tried {geometry} as in the following simple codes

Code: Select all

\documentclass{12pt]{report}
\usepackage[left=1.5in, right=1.0in, top=1.0in, bottom=1.0in]{geometry}
\begin{document}
text......
\end{document}
I printed it out on a letter paper (8.5in x 11 in). The left and right margins are OK, but the top and bottom are not as specified in the command; indeed the top margin is about 1.65in, and the bottom margin is about 1.38in. Can someone teach me what is happening here? Is that because of the paper sizes?

-trnbvn

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

margins

Post by gmedina »

trnbvn wrote:Can someone please tell me what are the default margin sizes in report class [12pt]?
You can get a summary of the layout of the current document by using the \layout command provided by the layout package:

Code: Select all

\documentclass[12pt]{report}
\usepackage{layout}

\begin{document}

\layout

\end{document}
You can introduce the margin changes and see their effect:

Code: Select all

\documentclass[12pt]{report}
\usepackage[left=1.5in, right=1.0in, top=1.0in, bottom=1.0in]{geometry}
\usepackage{layout}

\begin{document}

\layout

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply