@kguler traditional form does not fit here. After Traditional Form I cannot copy to Latex, for instance.
– AnixxApr 25 '15 at 17:06
@Anixx, wrap everything in TeXForm to get an output that can be copy/pasted into Latex: e.g., copying the output of TraditionalForm[a x^3 + b x^4 + c, ParameterVariables -> {a, b, c}] // TeXForm and pasting here (between $ signs) gives $b x^4+a x^3+c$
– kglrApr 25 '15 at 17:09
@kguler there can be many parameters (as many as the degree of the polynomia)l. It is easier to re-type all manually than list the parameters in this option.
– AnixxApr 25 '15 at 17:12
Anixx, maybe using DeleteCases on Variables, .e.g. expr = a x^3 + b x^4 + c; TeXForm[ TraditionalForm[expr, DeleteCases[Variables[expr], x]]]?
– kglrApr 25 '15 at 17:21
TraditionalFormfor this. – m0nhawk Apr 25 '15 at 16:29TraditionalForm[a x^3 + b x^4 + c, ParameterVariables -> {a, b, c}]? See also tutorial/PolynomialOrderings. – kglr Apr 25 '15 at 16:49TeXFormto get an output that can be copy/pasted into Latex: e.g., copying the output ofTraditionalForm[a x^3 + b x^4 + c, ParameterVariables -> {a, b, c}] // TeXFormand pasting here (between$signs) gives $b x^4+a x^3+c$ – kglr Apr 25 '15 at 17:09DeleteCasesonVariables, .e.g.expr = a x^3 + b x^4 + c; TeXForm[ TraditionalForm[expr, DeleteCases[Variables[expr], x]]]? – kglr Apr 25 '15 at 17:21