我试图在MathML中使用Arabic Mathematical Alphabetic Symbols 但是MathJAX没有正确显示,是否有任何特定的字体或MathJAX配置来正确呈现它?
这是一个样本:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>MathJax Test</title>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
MathML: {
extensions: ["mml3.js"] // required for rtl to be properly rendered (experimental extension)
}
});
</script>
<script type="text/javascript" src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_SVG"></script>
</head>
<body>
<p>Problem:</p>
<math display="block" dir="rtl">
<mrow>
<mi>𞸜</mi>
<mo>≤</mo>
<mi>𞸢</mi>
</mrow>
</math>
<p>Expected:</p>
<p dir="rtl">𞸜 ≤ 𞸢</p>
</body>
</html>
&#13;