如何使用javascript在其渲染视图和纯文本/代码视图之间切换MathJax等式的显示?
例如,如何在下面的示例中获取按钮以在显示此项之间切换等式:
$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
以及运行代码段时呈现的等式?
var btn = document.getElementById("math-toggle");
btn.onclick = function(event) {
// Toggle Math rendering here using MathJax API?
alert("moo!");
};
<!DOCTYPE html>
<html>
<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.4/latest.js?config=TeX-MML-AM_CHTML" async>
</script>
</head>
<body>
<button id="math-toggle">Toggle Math</button>
<p>
Equation: $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
</p>
</body>
</html>
答案 0 :(得分:2)
一种方法(使用MathJax API)将使用PlainSource
输出并重新渲染。
根据具体情况,可能更容易在应用程序中跟踪此情况(例如,只需抓取MathJax创建的脚本标记的内容)。
由于用于TeX的分隔符仅在预处理阶段发挥作用(并且是用户可配置的),因此需要额外的逻辑来跟踪它。
var btn = document.getElementById("math-toggle");
btn.onclick = function(event) {
if (!btn.checked) {
MathJax.Hub.Queue(["setRenderer", MathJax.Hub, "CommonHTML"]);
MathJax.Hub.Queue(["Rerender", MathJax.Hub]);
} else {
MathJax.Hub.Queue(["setRenderer", MathJax.Hub, "PlainSource"]);
MathJax.Hub.Queue(["Rerender", MathJax.Hub]);
}
};
&#13;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>MathJax example</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/latest.js?config=TeX-MML-AM_CHTML">
</script>
</head>
<body>
<input id="math-toggle" type="checkbox" name="mathjax-switch" >
<label id="mathjax-switch">Replace with plain text source</label>
<p>
Equation: $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
</p>
</body>
</html>
&#13;