如何更改 LaTeX 中的文档字体?

发布于 2024-07-21 08:44:14 字数 33 浏览 5 评论 0原文

如何将整个文档的字体更改为无衬线字体(或其他字体)?

How do you change the font for the whole document to sans-serif (or anything else)?

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

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

发布评论

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

评论(4

合约呢 2024-07-28 08:44:14

感谢文森特答案中的链接,我找到了解决方案。

 \renewcommand{\familydefault}{\sfdefault}

这会将默认字体系列更改为无衬线字体。

I found the solution thanks to the link in Vincent's answer.

 \renewcommand{\familydefault}{\sfdefault}

This changes the default font family to sans-serif.

倒带 2024-07-28 08:44:14

对于不同的方法,我建议使用 XeTeXLuaTex 系统。 它们允许您访问系统字体(TrueType、OpenType 等)并设置字体功能。 在典型的 LaTeX 文档中,您只需将其包含在标头中:

\usepackage{fontspec}
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase}
\setmainfont{Times}
\setmonofont{Lucida Sans Typewriter}

它是允许 \setmainfont\setmonofontfontspec 包。 选择多种字体功能的能力超出了我的专业知识,但我建议查找一些示例,看看这是否适合您的需求。

只是不要忘记将您最喜欢的乳胶编译器替换为适当的编译器(xelatex 或 lualatex)。

For a different approach, I would suggest using the XeTeX or LuaTex system. They allow you to access system fonts (TrueType, OpenType, etc) and set font features. In a typical LaTeX document, you just need to include this in your headers:

\usepackage{fontspec}
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase}
\setmainfont{Times}
\setmonofont{Lucida Sans Typewriter}

It's the fontspec package that allows for \setmainfont and \setmonofont. The ability to choose a multitude of font features is beyond my expertise, but I would suggest looking up some examples and seeing if this would suit your needs.

Just don't forget to replace your favorite latex compiler by the appropriate one (xelatex or lualatex).

不奢求什么 2024-07-28 08:44:14

正如第二个所说,大多数为 TeX 文档所做的“设计”决策都有经过充分研究的可用性研究的支持,因此应谨慎进行更改。 然而,用 Times(也是衬线字体)代替 Computer Modern 是相对常见的。

尝试 \usepackage{times}

As second says, most of the "design" decisions made for TeX documents are backed up by well researched usability studies, so changing them should be undertaken with care. It is, however, relatively common to replace Computer Modern with Times (also a serif face).

Try \usepackage{times}.

夏日浅笑〃 2024-07-28 08:44:14

这篇文章 可能对更改字体有帮助。

来自文章:

以下示例说明了更改字体属性的命令:

  \fontencoding{T1}
  \fontfamily{garamond}
  \fontseries{m}
  \fontshape{it}
  \fontsize{12}{15}
  \selectfont

这一系列命令将当前字体设置为中等粗细斜体
Garamond 12pt 类型,T1 编码方案中领先 15pt,以及
\selectfont 命令使 LaTeX 在其映射方案中查找
与这些属性相对应的指标。

This article might be helpful with changing fonts.

From the article:

The commands to change font attributes are illustrated by the following example:

  \fontencoding{T1}
  \fontfamily{garamond}
  \fontseries{m}
  \fontshape{it}
  \fontsize{12}{15}
  \selectfont

This series of commands set the current font to medium weight italic
garamond 12pt type with 15pt leading in the T1 encoding scheme, and
the \selectfont command causes LaTeX to look in its mapping scheme for
a metric corresponding to these attributes.

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