gpt4 book ai didi

javascript - 使用 MathJax 获取 MathML 代码

转载 作者:行者123 更新时间:2023-11-30 12:16:39 24 4
gpt4 key购买 nike

我构建了一个表单来编写 LaTeX 表达式并使用 MathJax 呈现它们。为了加速MathML 代码的复制,我编写了一个脚本,在另一个文本区域中显示MathML 代码,如您can see here .

这是我的代码:

<!doctype html>
<html>
<head>
<title>LaTeX para Word</title>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
showProcessingMessages: false,
tex2jax: {
inlineMath: [
['$','$'],
[ '\\(', '\\)' ]
]
},
extensions: ['toMathML.js']
});

var math = null;
MathJax.Hub.queue.Push(function () {
math = MathJax.Hub.getAllJax('MathOutput') [0];
});

window.UpdateMath = function (TeX) {
MathJax.Hub.queue.Push(['Text', math, '\\displaystyle{' + TeX + '}']);
document.getElementById('output').value = '<?xml version="1.0"?>' + math.root.toMathML("");
};

function selectTextarea(element) {
var text = document.getElementById(element).select();
}
</script>
<script type="text/javascript" src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&locale=pt-br"></script>
</head>
<body>

<textarea id="MathInput" cols="60" rows="10" onkeyup="UpdateMath(this.value)"></textarea>

<div id="MathOutput">
$${}$$
</div>
<hr>
<br>
<textarea id="output" cols="60" rows="10" readonly="readonly"></textarea>
<br>
<button onclick="selectTextarea('output')">Selecionar código</button>
<script src="main.js"></script>
</body>
</html>

问题是当我更快地键入公式时,最后一个字符没有显示在 MathML 代码中。有时,我必须在公式末尾添加一个空格才能获得正确的 MathML 代码。谁能给我一些提示来解决这个问题?

最佳答案

问题是您将异步 调用与同步 调用混合在一起。 Queue 工作异步,所以当你调用它时:

MathJax.Hub.queue.Push(['Text', math, '\\displaystyle{' + TeX + '}']);

它不会等到实际渲染完成才转到下一行。所以这个调用在完成之前就被执行了:

document.getElementById('output').value = '<?xml version="1.0"?>' + math.root.toMathML("");

解决该问题的一种方法是将输出更新也加入队列,您可以通过创建另一个函数来处理输出并在渲染后将其排队,这样它只会在渲染完成时执行.例如:

window.updateMathMl = function (math) {
document.getElementById('output').value = '<?xml version="1.0"?>' + math.root.toMathML("");
};

window.UpdateMath = function (TeX) {
MathJax.Hub.queue.Push(['Text', math, '\\displaystyle{' + TeX + '}'], [updateMathMl, math]);
};

https://jsfiddle.net/ew6vsqy8/1/

关于javascript - 使用 MathJax 获取 MathML 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32278601/

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