mathml.tst 365 B

123456789101112131415161718192021222324252627282930313233343536
  1. on mathml; % output
  2. sin (x);
  3. (x + y)^5;
  4. off mathml;
  5. parseml();<math>
  6. <apply><plus/>
  7. <cn>3</cn>
  8. <cn>5</cn>
  9. </apply>
  10. </math>
  11. operator gt;
  12. % MathML 1.x form
  13. parseml();<math>
  14. <reln><gt/>
  15. <ci>x</ci>
  16. <ci>y</ci>
  17. </reln>
  18. </math>
  19. % MathML 2.x form
  20. parseml();<math>
  21. <apply><gt/>
  22. <ci>x</ci>
  23. <ci>y</ci>
  24. </apply>
  25. </math>
  26. end;