MathJAX阿拉伯语Mathmatical unicode字符未显示

时间:2015-11-22 09:16:30

标签: html unicode mathjax

我试图在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>&#126492;</mi>
            <mo>&leq;</mo>
            <mi>&#126498;</mi>
        </mrow>
    </math>
    <p>Expected:</p>
    <p dir="rtl">&#126492; &leq; &#126498;</p>
</body>
</html>
&#13;
&#13;
&#13;

0 个答案:

没有答案