PDF page sizes | topic started 3/26/2001; 2:40:56 PM last post 3/28/2001; 12:49:33 AM |
|
William Wheeler - Re: PDF page sizes 3/28/2001; 12:49:33 AM (reads: 1534, responses: 0) |
This "problem" is caused by the config.ps file for dvips in your TeX
installation. This file can be found in the directory ..../texmf/dvips/config . Inside this config.ps file are the declarations of the various paper sizes that "are supported" at your site. The paper size declarations all begin with the symbol @ . Here are some examples: @ letterSize 8.5in 11in
@ letter 8.5in 11in
@ A4 210mm 297mm The first paper size declaration in the config.ps file is the default paper size for your site. dvips will use this paper size unless it is overridden on the command line with the -t option. If your site is creating PDF files in A4 size rather letter size, then the first paper size declaration in the config.ps file must be an A4 declaration. In order to make letter the default paper size, you should ask your site administrator to modify the config.ps file and insert the following declaration as the first paper size declaration: @ letterSize 8.5in 11in That A4 is the default size for your site suggests that your TeX installation was constructed from Thom Esser's teTeX package. A4 is the default paper size in the teTeX package, because Esser resides in Europe where A4 is the standard paper size. For more information, please consult the dvips.info files, which should be somewhere in your TeX installation. |