0

当我在 Maxima 中有一个方程式时,请以表格形式说“x = 5”

equal(x,5) 

我在它上面使用了 tex 函数,我得到了输出

$${\it equal}\left(x , 5\right)$$

但我想得到

$$x=5$$

这可能吗?

4

3 回答 3

0
texequal(e):= block([a, b], [a, b]: args(e), concat(tex1(a), "=", tex1(b)))$
texput(equal, texequal)$

expr: equal(x, 5)$
tex(expr)$
于 2013-09-15T13:12:19.440 回答
0
texput (equal, "=", infix);
tex (equal (x, 5));
  => $$x=5$$
于 2013-09-30T22:20:56.553 回答
0
(%i15) equal('x,5);
(%o15)                            equal(x, 5)
...
(%i18) tex(part(%o15,1)=part(%o15,2));
$$x=5$$
(%o18)                               false
(%i19)
于 2013-09-12T15:28:29.113 回答