views:

454

answers:

3

this is a very stupid question...

but how come teXNicCenter and MikTex always generate an A4 size pdf paper?

I reinstalled both MikTex and TecNixCenter and I made sure that I selected "Letter" to be my default paper size. nothing changes.. :|

I need a letter size paper not A4.

+1  A: 

The default paper size for MikTeX is contained in some configuration file somewhere in the MikTeX directory. You can change it by starting up MikTeX's "Settings (Admin)" program, but you probably already tried that. TeXnicCenter has nothing to do with it.

You can always specify to use letter size paper, overriding the default, by adding the letterpaper option to your \documentclass command:

\documentclass[letterpaper]{article}
ptomato
hmmm... still not working..
lulala
What is the `documentclass` you are using?
ptomato
{acm_proc_article-sp}.. acm format. tried using [letter], not working
lulala
Aha. This class is apparently notorious. See: http://www.acm.org/sigs/publications/sigfaq#a5 See also: http://tstotts.net/blog/archives/2009/12/12/latex_letter_paper/
ptomato
A: 

The paper size you specify is only used if your LaTeX document doesn't specify one. Even if you didn't do this in your documents, the class or one of the packages you are using may do this.

To explicitly choose your papersize either use

\documentclass[letterpaper]{scrreprt}

or

\usepackage[letterpaper]{geometry}

Other possible paper sizes are a0paper, a1paper, ..., a6paper, b0paper,b1paper, ...,b6paper,letterpaper,legalpaper,executivepaper`.

Meinersbur
I am getting this.. Latex warning: Unused global option(s): [letterpaper].
lulala
Even with geometry?
Meinersbur
A: 

If you are using LaTeX=>PS=>PDF, then the following will work for you.

Goto Build->Define Output Profiles->LaTeX=>PS=>PDF.

Goto the Postprocessor tab.

Select Ghostscript (ps2pdf).

Edit the "Arguments".

change the -sPAPERSIZE=a4 to -sPAPERSIZE=letter.

notice the size of the PDF is now 8.5 x 11.

losthack