Fri 12 Sep 2014 01:50:03 AM UTC, original submission:
In ubuntu after reading issue #41606
https://savannah.gnu.org/bugs/?func=detailitem&item_id=41606
I did edit
TeXmacs/plugins/maxima/lisp/texmacs-maxima.lisp, line 25:
-(defconstant texport standard-output)
+(setq texport standard-output)
That got Maxima working with the following error.
Using text input everything work as expected
(%i5) integrate(x^2,x)
(%o5) (x^3)/3
But with mathematical input something goes wrong somewhere
(%i6) intx^2dx
(%o6) (x^22)/22
I inspected the source tree in case i wasn't writing the delimiter in the right place, but everything seems normal
(unfolded-io-math (document (with "color" "red" (concat "(" (with "math-font-family" "rm" "%i") "6) ")))(document (concat (big "int") "x" (rsup "2") "<mathd>x")) (document (math (with "math-display" "true" (concat (text (with "font-family" "tt" "color" "red" (concat "(" (with "math-font-family" "rm" "%o6") ") "))) (frac (concat "x" (rsup "22")) "22"))))))
I downloaded the latest stable, compiled and changed the plugin to get maxima working, but still the same behavior is observed in both versions.
I really don't want to downgrade maxima to a previous version.
Possibly related somehow #107866 http://savannah.gnu.org/support/?107866
I found this with TexMacs 1.0.7.18 and Maxima 5.32.1 with GNU Common Lisp (GCL) GCL 2.6.10
|