How can I decrease page borders in latex for a shorter essay?

  • Context: LaTeX 
  • Thread starter Thread starter blahblah8724
  • Start date Start date
  • Tags Tags
    Latex
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 5K views
blahblah8724
Messages
31
Reaction score
0
Does anyone know how to reduce the size of the page borders in latex? This is so I can reduce the number of pages my essay covers.

Thanks!
 
Physics news on Phys.org
The hard way is to painstakingly follow the diagrams in multiple LaTeX documents that describe page layout.

There is a much easier way: Use the geometry package. For example, to have your text in a 6.5 inch by 8.75 inch block (1 inch horizontal margins, 1.25 inch vertical margins), use

\RequirePackage[text={6.5in,8.75in},centering]{geometry}
 
The geometry package seems awesome. Thanks for pointing that out!