Hello everybody, i'm using this class 'mymothesis' but it uses a A4 size , I need to change it to Letter.
someone can help me, i'm new with LaTeX and I dont know how to edit classes.
thanks
General ⇒ changing page size in a class
changing page size in a class
- Attachments
-
- mymothesis.cls
- (2.21 KiB) Downloaded 238 times
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
changing page size in a class
Hi,
if you want to edit the class file you could change line 17:
Just change a4paper to letterpaper.
Without to change the class file you could specify letter paper in a document using this class by \geometry:
Stefan
if you want to edit the class file you could change line 17:
Code: Select all
\RequirePackage[a4paper,margin=1in]{geometry}
Without to change the class file you could specify letter paper in a document using this class by \geometry:
Code: Select all
\geometry{letterpaper}
LaTeX.org admin