当我在 Maxima 中有一个方程式时,请以表格形式说“x = 5”
equal(x,5)
我在它上面使用了 tex 函数,我得到了输出
$${\it equal}\left(x , 5\right)$$
但我想得到
$$x=5$$
这可能吗?
texequal(e):= block([a, b], [a, b]: args(e), concat(tex1(a), "=", tex1(b)))$
texput(equal, texequal)$
expr: equal(x, 5)$
tex(expr)$
texput (equal, "=", infix);
tex (equal (x, 5));
=> $$x=5$$
(%i15) equal('x,5);
(%o15) equal(x, 5)
...
(%i18) tex(part(%o15,1)=part(%o15,2));
$$x=5$$
(%o18) false
(%i19)