Page LayoutChange Document Paper Size to Letter

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
Kuo000
Posts: 4
Joined: Sat Nov 12, 2011 7:54 am

Change Document Paper Size to Letter

Post by Kuo000 »

Hi all,

I am a complete newbie to LaTeX and this forum. I was trying to create a letter size article document to start my work there. But despite explicit option [letterpaper] I put, the document still turned out to be A4-sized.

Here is my entire LaTeX code (which can hardly be any simpler):

Code: Select all

\documentclass[letterpaper,10pt]{article}

\begin{document}
Hello World!
\end{document}
BTW, I use a Windows 7 machine with MiKTeX 2.9 (64bit) and Texmaker as my editor. I even changed the default paper format to "LetterSize" in MikTeX settings, but it didn't seem to help. Can someone give me a hand?

Great thanks.
Last edited by Kuo000 on Sat Nov 12, 2011 11:04 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Change Document Paper Size to Letter

Post by localghost »

Very astonishing that the MiKTeX Settings don't help here. So try the geometry package. It will write information to the resulting output which should fix the issue.

Code: Select all

\documentclass[11pt,letterpaper]{article}
\usepackage{geometry}

\begin{document}
  Hello World!
\end{document}
For further setup of paper and page dimensions refer to the package manual.


Best regards and welcome to the board
Thorsten
Kuo000
Posts: 4
Joined: Sat Nov 12, 2011 7:54 am

Re: Change Document Paper Size to Letter

Post by Kuo000 »

Thank you localghost.

This sets my document to letter-size.
Post Reply