为什么LaTeX会忽略文档类中的字体大小

时间:2010-04-15 09:34:06

标签: text latex formatting text-formatting

我有一个LaTeX文件。我正在尝试减少字体大小(这与我在LaTeX - Changing the font size for a document, but in the preamble, not the document class?的其他问题有关。)

LaTeX文件是从另一个程序生成的。我已将其编辑为

\documentclass[4pt,a4paper,english]{report}

即。我试图让文字真的很小。但它不起作用。我将4pt更改为任何内容,字体大小相同。

在上面运行pdflatex时,我会打印出此消息。

LaTeX Warning: Unused global option(s):
    [4pt].

这可以解释为什么错误消息是

这可能会发生什么?如何使用documentclass定义中的字体大小?

3 个答案:

答案 0 :(得分:10)

您只能使用

10pt|11pt|12pt
默认documentclass

中的

我认为您必须重新定义主文本命令以支持较小(不可读)的字体大小

答案 1 :(得分:10)

没有为文档类4pt定义选项article,因为它已经提到过了。因此,LaTeX无法识别您的4pt

然而,您可以使用extsizes包,它允许更多尺寸选项:8到12,14,17和20pt。但是没有支持4pt。存在允许非标准默认大小的其他包,列在同一页面上。

答案 2 :(得分:-1)

使用\documentclass[10pt,a4paper,english]{article},然后在\tiny之后指定\begin{document}