Unicode-math 无法呈现 Gamma 字母

Unicode-math 无法呈现 Gamma 字母

(更新)

我想知道为什么unicode-math不渲染拉丁伽马字母!?

\documentclass{article}
\usepackage{unicode-math}
\setmathfont{Tahoma}
\begin{document}
$ɣ γ$
\end{document}

这仅渲染希腊伽马。

答案1

您正在使用的角色是

ɣ U+0263 拉丁小写字母 GAMMA

而你想要的角色是

γ U+03B3 希腊小写字母 GAMMA

它们是不同的,不应混淆。

http://en.wikipedia.org/wiki/Latin_gamma有关 U+0263 的一些信息。

相关内容