Search code examples
maxima

Manipulate maxima output to show numerical fractions before variable


Say I have the following polynomial:

(3/4) * x^2 - (1/2) *x  + 3/4;

Maxima output (also the tex output) would show this as:

(%i1) (3/4) * x^2 - (1/2) *x  + 3/4;
                                    2
                                 3 x    x   3
(%o1)                            ---- - - + -
                                  4     2   4

But I want the fractions before the variables. Like this:

Is that possible?


Solution

  • Try pfeformat:true; Does that help?