General ⇒ Vertical offset for even/oddsides
-
- Posts: 2
- Joined: Sun Oct 26, 2008 8:55 pm
Vertical offset for even/oddsides
I am just formatting my PhD thesis and adjusting it such that the printer offsets are corrected from the software side. Our printer has a little vertical offset of the page, which means that the evenside is printed a little further up than the oddside. Can anyone suggest how to solve this problem? Is there a similar command as \evensidemargin and \oddsidemargin for the topmargin?
Thanks in advance!
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
Vertical offset for even/oddsides
Code: Select all
\usepackage{everyshi}
\EveryShipout{\ifodd\value{page}\setlength{\voffset}{0pt}\else\setlength{\voffset}{2cm}\fi}
-
- Posts: 2
- Joined: Sun Oct 26, 2008 8:55 pm
Re: Vertical offset for even/oddsides
