gpt4 book ai didi

javascript - 使用 javascript 和 MathJax 将数学公式字符串添加到文档

转载 作者:行者123 更新时间:2023-11-30 14:02:55 26 4
gpt4 key购买 nike

当按下添加数学公式的按钮时,MathJax语句似乎没有被解释:

const button = document.getElementById('go');
button.addEventListener('click', displayMath, true);

function displayMath() {
const body = document.body;
p = document.createElement('p');
const a = 3, b = 2;
const c = a + b;
const math = "\\(" + a + "+ " + b + " = " + c + "\\)";
p.innerHTML = math;
body.appendChild(p);
}
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML" async>
</script>
</head>

<body>
<p>press the button to display math like this: \(a + b = c\)</p>
<button id="go" type="button">Go!</button>

<script src="test.js"></script>
</body>
</html>

1) MathJax 语句可以通过按钮点击等事件添加吗?

2) 如果没有,是否有更好的选择?

感谢任何帮助,谢谢:>

最佳答案

您需要再次运行 Mathjax 解析器,将动态添加的表达式转换为数学。这是 documentation .因此,您需要做的是在新表达式上运行 MathJax.Hub.Queue(); 方法。您的代码应如下所示:

const button = document.getElementById('go');
button.addEventListener('click', displayMath, true);

function displayMath() {
const body = document.body;
p = document.createElement('p');
const a = 3, b = 2;
const c = a + b;
const math = "\\(" + a + "+ " + b + " = " + c + "\\)";
p.innerHTML = math;
body.appendChild(p);
MathJax.Hub.Queue(["Typeset", MathJax.Hub, p]);
}

here is working fiddle

关于javascript - 使用 javascript 和 MathJax 将数学公式字符串添加到文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55990923/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com