14

I'm working on a Java applet that needs to display "fancy" equations. Is there any Java renderer for MathML or LaTeX that's open source? Ideally it would be a pure Java solution that doesn't use JNI.

Ideally it would also allow to animate the generated glyphs (e.g. animating adding a constant to both sides of a equation, lines going through terms for cancellation, etc.)

hlovdal
  • 24,540
  • 10
  • 85
  • 154
Ryan
  • 14,540
  • 6
  • 47
  • 50

2 Answers2

19

I know these libraries for Java:

For the animation part of your question, you can look at these projects:

For a web interface you can also use the jsMath JavaScript or it's successor Mathjax library as a Latex/MathML renderer.

axelclk
  • 951
  • 9
  • 25
4

Take a look at JEuclid, it seems to do the first part of what you want.

Allain Lalonde
  • 88,763
  • 69
  • 182
  • 238