答案1
正如@egreg 所指出的,charter 使用的数学字体中的括号mathdesign
似乎是问题所在。有趣的是,utopia
中的字体选项的mathdesign
行为也类似。
\documentclass[10pt]{article}
\usepackage[utopia]{mathdesign}
\usepackage[T1]{fontenc}
\begin{document}
The mass as a function of time ($M(t)$).
\end{document}
产量:
我通过用字体中的适当字符替换分隔符来纠正 Bitstream-Charter 的问题mdbch
。
\documentclass[10pt]{article}
\usepackage[T1]{fontenc}
\usepackage[bitstream-charter]{mathdesign}
\AtBeginDocument{%
\DeclareSymbolFont{bch}{T1}{\rmdefault}{m}{n}%
\DeclareMathDelimiter{(}{\mathopen}{bch}{'050}{largesymbols}{"00}%
\DeclareMathDelimiter{)}{\mathopen}{bch}{'051}{largesymbols}{"01}%
}
\begin{document}
The mass as a function of time ($M(t)$).
\end{document}