For a submission requirement I need that my document exactly fills a box of m x n inches.
Does anybody know how I can specify this in LaTeX?
geometry
In your document preamble, use
\usepackage[includeheadfoot,width=<m>in,height=<n>in]{geometry}
where you specify <m> and <n> (or use text={<m>in,<n>in}). Add the showframe option to see the boundaries.
<m>
<n>
text={<m>in,<n>in}
showframe
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
65 times
active
Get the weekly newsletter!
see an example newsletter
By subscribing, you agree to the privacy policy and terms of service.
geometryis the go-to layout package. – Werner May 8 '12 at 20:39