==================================================================== MathML Format ==================================================================== MathML is an HTML-like markup language for mathematics. It uses the "knuckle" syntax of HTML such as "" to introduce a math operator and "" to mark the end of the operator. FriCAS can generate MathML output and does so when it communicates to the browser front end. This output is enabled by :: )set output mathml on after which you'll see the MathML markup as well as the algebra. Note that you can turn off the algebra output with :: )set output algebra off but we don't do that here so you can compare the output. :: 1/2 1/2 1 / 2 1/(x+5) 1/(x + 5) 1 / ( x + 5 ) (x+3)/(y-5) (x + 3)/(y - 5) ( x + 3 ) / ( y - 5 ) R See Also: * )show MathMLFormat