我正在尝试使用 JSXgraph 0.99.7 附带的 mathJax 渲染一个方程。
简单的形式似乎呈现 (r^2=(xh)^2+(yk)^2),但不是函数或分数 (1=\frac{(xh)^2}{a^2}+\frac{( yk)^2}{b^2})。
这是一张图片
当前绘制椭圆的代码:
var graph = board.create('ellipse', [A, B, C], {
id: field,
fixed: true,
useMathJax: true,
withLabel: true,
name: '',
strokeColor: color,
strokeWidth: 2,
fillColor: shade,
fillOpacity: 0.3,
size: 2,
dash: dashed,
highlightStrokeColor: 'red',
highlightStrokeWidth: 3,
highlightFillColor: shade,
highlightFillOpacity: op
});
graph.on('down', function (e, i) {
showMaster(this.id);
graph.setName('1=\\frac{(x-h)^2}{a^2}+\\frac{(y-k)^2}{b^2}');
});
有什么建议么 ?