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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
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