Page LayoutPage starts too low on paper

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
rplantz
Posts: 16
Joined: Mon Jan 21, 2008 12:35 am

Page starts too low on paper

Post by rplantz »

My page starts too low on the paper.

I am using the geometry package to specify page size:

Code: Select all

\usepackage[dvips=false,pdftex=false,vtex=false]{geometry}
\geometry{
      paperwidth=7.44in,paperheight=9.69in,
      includeall=true,twoside=true,centering=true,
      textwidth=5.1in,marginparwidth=1.0in,
      top=0.25in,height=9.19in
}
and the crop package so I can print on letter paper:

Code: Select all

\usepackage[cam,letter,center]{crop}
My text is properly centered right-to-left, but the top starts about 1.5" from the top of the paper. Thus the bottom of the text spills off the paper. What is my mistake?

My system is Ubuntu 10.10.
Last edited by rplantz on Wed Jan 12, 2011 6:53 pm, edited 2 times in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: Page starts too low on paper

Post by frabjous »

How actually are you compiling if you're not using dvips, pdftex or vtex?
rplantz
Posts: 16
Joined: Mon Jan 21, 2008 12:35 am

Page starts too low on paper

Post by rplantz »

frabjous wrote:How actually are you compiling if you're not using dvips, pdftex or vtex?
I copied the code from the crop manual incorrectly. It should be

Code: Select all

\usepackage[cam,letter,center,dvips]{crop}
However, this did not fix my problem. I have tried many things. For example,

Code: Select all

\usepackage[paperwidth=7.44in,paperheight=9.68in,
            textwidth=4.9in,marginparwidth=1.0in,
            top=1.0in,bottom=1.0in]{geometry}
produces the same problem. (Yes, the margins are different here, but the too low on page issue is the same.)
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: Page starts too low on paper

Post by frabjous »

So you're compiling with LaTeX, then running through dvips, then ps2pdf?

Have you checked the intermediate dvi and ps files to see if they're OK?
rplantz
Posts: 16
Joined: Mon Jan 21, 2008 12:35 am

Page starts too low on paper

Post by rplantz »

frabjous wrote:So you're compiling with LaTeX, then running through dvips, then ps2pdf?
Actually, I was looking at the .ps file.
Have you checked the intermediate dvi and ps files to see if they're OK?
Aha!! The .dvi file was fine, so this showed that the problem was with dvips. I added -O 0,-1.0in to the argument list and all is fine. My command is

Code: Select all

dvips -t letter -0,-1.0in -z book.dvi
Thank you very much for pointing me in the right direction.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Page starts too low on paper

Post by localghost »

Now that the problem is solved, please be so kind and mark the topic accordingly witht the green check mark as clearly written in Section 3 of the Board Rules (to be read before posting). Please keep that in mind for the future so that further reminders will not be necessary.


Thorsten
Post Reply