T1 字体编码和数学字体

T1 字体编码和数学字体

由于特殊原因,我想用 排版一个方程式\mathrm{...}。此外,该文档使用 T1 字体编码。现在,方程式中的希腊字母 Delta 被排版为“ " instead unless I use OT1 font encoding (which I don't want). Of course, I could wrap the parts before and after the\Delta separately in\mathrm{...}”,但这变得相当尴尬。

\documentclass{beamer} %

\usepackage[T1]{fontenc}

\begin{document}
\begin{frame}{Example}
  Plain \textbackslash{}Delta: $\Delta$
  
  \textbackslash{}mathrm: $\mathrm{\Delta}$
  
\end{frame}
\end{document}

还有其他解决办法吗?

答案1

中的字体设置beamer有点不标准(尽可能使用无衬线字体)。如果您想要更“正常”的排列,请

\documentclass[professionalfont]{beamer}

这将解决您的问题。

相关内容