以下のサンプルコードで調整しています。 MathJaxのドキュメントは完全ではありません。誰かが、以下のコードをどのように修正して、$ \ alpha $のような区切り文字を指定したときにTexが解析されるようにするかをもっと知ることができますか?私はそれを数学のように動作させたいと思っています。デリミタがある場合にのみ動的にMathJaxを表示
<html>
<head>
<title>MathJax Dynamic Math Test Page</title>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [["$","$"],["\\(","\\)"]]
}
});
</script>
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML-full">
</script>
</head>
<body>
<script>
//
// Use a closure to hide the local variables from the
// global namespace
//
(function() {
var QUEUE = MathJax.Hub.queue; // shorthand for the queue
var math = null; // the element jax for the math output.
//
// Get the element jax when MathJax has produced it.
//
QUEUE.Push(function() {
math = MathJax.Hub.getAllJax("MathOutput")[0];
});
//
// The onchange event handler that typesets the
// math entered by the user
//
window.UpdateMath = function (TeX) {
QUEUE.Push(["Text",math,"\\displaystyle{"+TeX+"}"]);
}
})();
</script>
<textarea id="MathInput" size="50" onkeyup="UpdateMath(this.value)"></textarea>
<div id="MathOutput">
You typed: ${}$
</div>
</body>
</html>
注:cdn.mathjax.orgはその終末期に近づいている、HTTPSを確認してください。 //www.mathjax.org/cdn-shutting-down/にアクセスしてください。 –