Garamond 取消粗体字体

Garamond 取消粗体字体

[从 latex-community.org 交叉发布]

当我使用 Garamond 字体时,一切都立即变得更浅,特别是 \begin{description} … \end{description} 部分。

使用 Garamond:

\documentclass[10pt]{book}
\usepackage[OT1]{fontenc}
\usepackage{pslatex}
\usepackage{garamond}

\begin{document}
\chapter{Introduction and Ideas}
\begin{description}
\item[Item 1]
\item[Item 2]
\end{description}

\section{More Ideas}

\end{document}

未使用 Garamond:

\documentclass[10pt]{book}

%\usepackage[OT1]{fontenc}
%\usepackage{pslatex}
%\usepackage{garamond}

\begin{document}
\chapter{Introduction and Ideas}
\begin{description}
\item[Item 1]
\item[Item 2]
\end{description}

\section{More Ideas}

\end{document}

我该如何解决这个问题?谢谢

答案1

一些建议:

  1. 使用T1字体编码\usepackage[T1]{fontenc}
  2. URW 加拉蒙德通常不包含在任何 TeX 发行版中。因此,它通常需要手动下载和安装。它在这里urw-garamond例如。
  3. 还有另一种使用方法URW 加拉蒙德,通过包mathdesign。它还提供了数学字体,这种数学字体不是最好的,但它是基于 Garamond 的。它在这里数学设计并以这种方式调用\usepackage[urw-garamond]{mathdesign}

答案2

此答案是因为其他答案存在问题。

我正在使用 TeXLive,并且安装了非免费字体getnonfreefonts。在我的文档中,我想使用 Garamond 作为衬线字体,并使用另一种(我认为非常匹配的)字体作为无衬线字体。使用 KOMA-Script(不知道这是否相关)。

如果我使用:

\usepackage[urw-garamond]{mathdesign}

那么无衬线文本确实至少会失去粗体和小型大写字母。

对我来说,解决方案是使用EB 加拉蒙德, 和:

\usepackage[cmintegrals,cmbraces]{newtxmath}
\usepackage{ebgaramond-maths}
\usepackage[T1]{fontenc}

请注意,有些款式未显示在上面链接的页面,例如粗体,但\textbf{text}对我来说效果如预期。

更重要的是,所有以 Sans-Serif 排版的文本仍然保留了预期的所有样式!

答案3

garamond 不会杀死粗体字体。您需要单独安装 garamond 粗体字体才能生成粗体字符。斜体和其他字体也是如此。例如,如果您使用的是“Garamond Pro”,则只有安装了“Garamond Pro Bold”字体,\textbf 才会起作用。

答案4

我使用 cormorantgaramond 代替 EBgaramond,效果似乎不错,因为它可以生成粗体和斜体字体

相关内容