因此,我尝试使用类似于
的HTML代码生成小写的sigma<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>MathJax example</title>
<script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML" async>
</script>
</head>
<body>
<p id="This_Is_What_I_Want"> $$ \sigma^2 $$</p>
<p id="Output"></p>
<p id="Activate"><button onclick="RUN()">Test This out</button></p>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS_HTML,http://myserver.com/MathJax/config/local/local.js">
function RUN() {
document.getElementById("Output").innerHTML = "$$ \sigma^2 $$";
MathJax.Hub.Queue(["Typeset", MathJax.Hub]);
}
</script>
</body>
第一个sigma正确加载,但是当我按下按钮时,第二个sigma无法正确加载
答案 0 :(得分:0)
remove
显然我没有阅读文档中的说明,但是默认情况是您需要两个\而不是一个