I'm using Ubuntu (10.04) texlive. I use the geometry package for a smaller print page size on letter (8.5 X 11) physical paper for a book. With the move to texlive 2009 Ubuntu changed the default paper size from letter to a4. So I have to use the "-t letter" option to dvips.
With this option I find that
Code: Select all
\usepackage[paperwidth=7.44in,paperheight=11.0in,
textwidth=6.0in,marginparwidth=1.0in,
top=1.0in,bottom=1.0in,centering]{geometry}
gives a printed page that is narrower than and centered on the physical page, just as one would expect.
However,
Code: Select all
\usepackage[paperwidth=7.44in,paperheight=9.68in,
textwidth=6.0in,marginparwidth=1.0in,
top=1.0in,bottom=1.0in,centering]{geometry}
causes the printed page to still be centered right to left, but not from top to bottom. It is about 2 inches from the top of the paper, and then the bottom of the printed page spills off the bottom of the paper.
Can I expect that removing the Ubuntu texlive and doing my own installation will fix this problem?