MathJax和Node新手在尝试使用此处https://github.com/mathjax/MathJax-node稍加修改的示例生成svg时,得到undefined
输出
// a simple TeX-input example
var mjAPI = require("mathjax-node");
mjAPI.config({
MathJax: {
// traditional MathJax configuration
}
});
mjAPI.start();
var yourMath = 'E = mc^2';
mjAPI.typeset({
math: yourMath,
format: "TeX", // or "inline-TeX", "MathML"
svg:true, // was mml:true
}, function (data) {
if (!data.errors) {console.log(data.mml)}
});
样品运行:-
C:\Users\user\Desktop\math-eqn>node math-eqn.js
undefined
原始示例工作正常:-
C:\Users\user\Desktop\math-eqn>node math-eqn.js
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block" alttext="E = mc
^2">
<mi>E</mi>
<mo>=</mo>
<mi>m</mi>
<msup>
<mi>c</mi>
<mn>2</mn>
</msup>
</math>
答案 0 :(得分:1)
由于您禁用了MathML生成,因此需要在data.mml
中将data.svg
更改为console.log()
。