LaTeX - 更改文档的字体大小,但在序言中,而不是文档类?

发布于 2024-08-29 00:48:22 字数 1459 浏览 4 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

萌无敌 2024-09-05 00:48:22

您可以使用\fontsize{size}{skip}命令,其中size是您想要的字体大小,skip是行之间的距离(乘以baselineskip)。
为了使新的字体大小生效,您需要使用 \selectfont 执行此命令。

这里提出了类似的问题:how to set LaTeX font size in mm?

You can use the \fontsize{size}{skip} command, where size is your desired fontsize, and skip is the distance between lines (multiplied by baselineskip).
For the new fontsize to take effect, you need to follow this command with \selectfont.

A similar question has been asked here: how to set LaTeX font size in millimeter?

找回味觉 2024-09-05 00:48:22

请参阅 LaTeX - 更改字体大小。您可以将文本包围在特定大小的开始...结束块中,也可以用大括号包围文本,将大小直接放在大括号之后。示例:

\begin{Large}
This text is large.
\end{Large}

或者,使用大括号:

{\Large This text is large.}

See LaTeX - Changing the FontSize. You can surround your text in begin...end blocks for the specific size, or you can surround your text with braces where you place the size immediately after the brace. Example:

\begin{Large}
This text is large.
\end{Large}

Or, using the braces:

{\Large This text is large.}
软甜啾 2024-09-05 00:48:22

使用任何比例。例如,写入

\mag 900

并获取比例 90% 或写入

\mag 1440

并获取比例 144%。

Use any scale. For example, write

\mag 900

and get scale 90% or write

\mag 1440

and get scale 144%.

渔村楼浪 2024-09-05 00:48:22

未经测试,但如果您想覆盖文档类使用的大小选项,这可能会起作用:

\makeatletter
\PassOptionsToClass{10pt}{article}
\makeatother

当然,选择文档类支持的大小选项,并用您的工具生成的类替换文章。

Untested, but this might work, if you want to overwrite which size option the document class uses:

\makeatletter
\PassOptionsToClass{10pt}{article}
\makeatother

Of course, pick a size option that is supported by the document class, and replace article by the class your tool generates.

浪推晚风 2024-09-05 00:48:22

您可以将字体大小指定为大多数文档类的选项,就像

\documentclass[letterpaper, **11pt**]{article}

TeX 中的大括号控制范围一样,就像其他地方一样,正如 Michael 所指出的,因此您可以用 {\Large } 包围整个文档,但是当您只能使用时,这有点愚蠢文档类的选项如上所述。

另一种可能性是定义您自己的样式文件或文档类。 LaTeX 就是为此而构建的,所以尝试一下吧。

You can designate font size as an option to most documentclasses, as in

\documentclass[letterpaper, **11pt**]{article}

Braces control scoping in TeX, just like elsewhere, as Michael indicated, so you can surround the whole document with {\Large }, but that's kinda silly when you can just use the option to the documentclass as above.

Another possibility is defining your own style file or documentclass. LaTeX is built for it, so give it a try.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文