Page LayoutBottom Margin Extension

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
InquisitorMo
Posts: 44
Joined: Mon Jul 15, 2013 12:22 am

Bottom Margin Extension

Post by InquisitorMo »

Hello,

I am trying to expand my bottom margin to allow for more text to fill the page (it's a 1 page Resume).

I was able to successfully 'back up' the top of the page with some copied code:

Code: Select all

\titlespacing{\section}{0pt}{3pt}{3pt}
\addtolength{\voffset}{-1cm}
But setting my margins with:

Code: Select all

\usepackage[margin=0.8in]{geometry}
Doesn't seem to be doing anything for some reason.

Any ideas? I'm using XeLaTex

Thanks!
Last edited by Stefan Kottwitz on Sat Feb 22, 2014 6:17 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Bottom Margin Extension

Post by Johannes_B »

Hard to tell without any compilable code. Please prepare a minimal working example with your code, that lets us just reproduce the problem.
You can load package showframe and blindtext to make the borders appear and to add some dummy text, respectively.
BTW: The key for the bottom margin of the page is bottom

Code: Select all

\documentclass{article}
\usepackage{showframe}
\usepackage{blindtext}
\usepackage{geometry}
\geometry{bottom=12cm}
\begin{document}
\blinddocument
\end{document}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
InquisitorMo
Posts: 44
Joined: Mon Jul 15, 2013 12:22 am

Re: Bottom Margin Extension

Post by InquisitorMo »

I found the answer I was looking for HERE:

http://en.wikibooks.org/wiki/LaTeX/Page_Layout#Margins

Using the geometry package easily let me customize all 4 margins.
Post Reply