在 teXnicCenter & 上更改字母大小米克特克斯
为什么 TeXicCenter 和 MiKTeX 总是生成 A4 尺寸的 pdf 纸张?
我重新安装了 MiKTeX 和 TeXicCenter,并确保选择“Letter”作为默认纸张尺寸。没有任何改变。
How come TeXicCenter and MiKTeX always generate an A4 size pdf paper?
I reinstalled both MiKTeX and TeXicCenter and I made sure that I selected "Letter" to be my default paper size. Nothing changes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
无论使用什么文档类或其他包,这都是对我有用的。
在 \begin{document} 之后我放置了这两行:
Here is what worked for me, regardless of the documentclass or other packages used.
Right after \begin{document} I put these two lines:
MikTeX 的默认纸张大小包含在 MikTeX 目录中某个配置文件中。您可以通过启动 MikTeX 的“设置(管理员)”程序来更改它,但您可能已经尝试过。 TeXnicCenter 与此无关。
您始终可以指定使用 letter 尺寸的纸张,通过将
letterpaper
选项添加到\documentclass
命令来覆盖默认值: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:仅当您的 LaTeX 文档未指定纸张尺寸时,才会使用您指定的纸张尺寸。即使您没有在文档中执行此操作,您正在使用的类或包之一也可能会执行此操作。
要明确选择纸张尺寸,请使用
或
其他可能的纸张尺寸为
a0paper
、a1paper
、...、a6paper
、b0paper、< /code>b1paper
, ...,
b6paper,
letterpaper,
legalpaper,
executivepaper`。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
or
Other possible paper sizes are
a0paper
,a1paper
, ...,a6paper
,b0paper,
b1paper, ...,
b6paper,
letterpaper,
legalpaper,
executivepaper`.如果您使用的是
LaTeX=>PS=>PDF
,那么以下操作将适合您:-sPAPERSIZE=a4
更改为-sPAPERSIZE=letter
。请注意,PDF 的大小现在为 8.5 x 11。
If you are using
LaTeX=>PS=>PDF
, then the following will work for you:-sPAPERSIZE=a4
to-sPAPERSIZE=letter
.Notice that the size of the PDF is now 8.5 x 11.