我在my blogspot blog中使用mathjax并且在计算机中看到它时效果很好,但是当在手机上看到时,公式不会转换。我发现这个other blogspot blog可以在手机上看到它的公式。为什么?如何在手机上看到我的博客变换公式?
答案 0 :(得分:2)
这种情况正在发生,因为Mathjax脚本(如下所示)未在移动模板中加载。
<script src='//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML,http://flengyel.github.io/mathjaxconfig.js,http://sonoisa.github.io/xyjax_ext/xypic.js' type='text/javascript'>
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
inlineMath: [
['$', '$'],
["\\(", "\\)"]
],
displayMath: [
['$$', '$$'],
["\\[", "\\]"]
],
},
"HTML-CSS": {
availableFonts: ["TeX"]
}
});
</script>
要使其适用于移动模板,您必须通过进入主题&gt;启用自定义移动模板齿轮图标&gt;从选择移动主题下拉列表中选择自定义,请参阅下图 -