无法使用示例上的MathJax节点生成SVG

时间:2018-12-12 11:12:01

标签: svg mathjax

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>

1 个答案:

答案 0 :(得分:1)

由于您禁用了MathML生成,因此需要在data.mml中将data.svg更改为console.log()