Hi,
I want to change page size of a4 paper in PDFLatex.
I use \documentclass[10pt,a4paper]{report}
How to customize a4 paper size in PDFLatex?
Regards,
Nick
Page Layout ⇒ Change Page size in PDFLatex
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Change Page size in PDFLatex
You can use the geometry package to use any papersize you want.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Change Page size in PDFLatex
Hi Nick,
welcome to the forum!
You can give another paper option to the document class, such as:
or
or
In any case I would load the geometry package. And I would set margins with that package's options or using the
Here's a link to the manual:
geometry. Since I don't know what exactly you are going to do with the page layout, I just can give you the link. But that manual shows all available options and explains it in depth. Let us know if you have a further question.
Stefan
welcome to the forum!
You can give another paper option to the document class, such as:
\documentclass[10pt,letterpaper]{report}
or
\documentclass[10pt,a5paper]{report}
or
\documentclass[10pt,b6paper]{report}
In any case I would load the geometry package. And I would set margins with that package's options or using the
\geometry
command.Here's a link to the manual:

Stefan
LaTeX.org admin