问题

软件 >> MathJax
Questions in category: MathJax (MathJax).

在网页上显示小于等于号

Posted by haifeng on 2015-06-16 18:05:41 last update 2015-06-16 18:14:42 | Answers (0) | 收藏


MathJax 的默认设置是不能正常显示 \leqslant 的, 需要将设置改为如下

<script type="text/x-mathjax-config">
MathJax.Hub.Config({
  tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]},
  TeX: {extensions: ["AMSmath.js","AMSsymbols.js","extpfeil.js"]}
});
</script>
<script type="text/javascript" src="path/to/mathjax/MathJax.js?config=default">
</script>