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?
Try pfeformat:true;
Does that help?