我正在使用包ebgaramond-maths
(参见http://ctan.org/pkg/ebgaramond-maths)。
使用此包,boldface 命令\textbf
实际上不会将句子变成粗体。但是,我正在处理的文档中有一些单词确实必须变成粗体。也许有必要注意,这些单词不会出现在数学模式中。
在序言中我提出了以下内容(以及其他不相关的内容):
\usepackage[lf]{ebgaramond}
\usepackage[cmintegrals,cmbraces]{newtxmath}
\pdfmapfile{+EBGaramond-Maths.map}
\usepackage{ebgaramond-maths}
那么,我的问题是:
我该如何解决这个问题?如何使用包将单词加粗ebgaramond-maths
?
答案1
使用 提供的 Garamond 字体伪造粗体mathdesign
;但是在使用 Garamond 粗体之前请三思。
\documentclass{article}
\usepackage[lf]{ebgaramond}
\usepackage[cmintegrals,cmbraces]{newtxmath}
%\pdfmapfile{+EBGaramond-Maths.map} % not necessary on my system
\usepackage{ebgaramond-maths}
\usepackage{amsmath}
\newcommand{\fakebf}{\fontfamily{mdugm}\fontseries{b}\selectfont}
\DeclareTextFontCommand{\textbf}{\fakebf}
\begin{document}
This text is in EB Garamond,
with \textbf{fake boldface}.
\textbf{This text is not in EB Garamond}
Some math $a+b=\textbf{T}$
\end{document}