views:

866

answers:

6
+6  Q: 

MathML and Java

Hi all.

I've been doing some research for a mathematical Android related project I'd like to embark upon and I stumbled across for the first time MathML.

Does anyone know of any Java libraries which can do any (preferably all) of the following things?

  1. Parse MathML
  2. Output MathML by parsing standard mathematical notation
  3. Render MathML (particularly important)
  4. Do any other cool maths-ey things (like re-arrange equations in terms of different things)

Number 3 is probably the most important, and number 4 the least.

Thanks in advance.

+1  A: 

The W3C MathML Implementations page (http://www.w3.org/Math/Software/mathml%5Fsoftware%5Fcat%5Feditors.html) has a few that mention Java-based tools... that might be a good place to start looking.

Good luck.

cjstehno
Cheers - looks promising
Tom R
A: 

It depends on having a browser that will render MathML, of course.

An alternative would be to try jsMath, a JavaScript library that uses TeX to render equations.

duffymo
+1  A: 

I have used this for your Point #3 above (rendering): http://jeuclid.sourceforge.net/

It does a pretty nifty job taking MathML and creating a JPG, PNG, etc. It will also display the equations in a GUI (and I'm guessing you can look at the GUI code and incorporate that into your own project)

rascher
Excellent! Thanks very much.
Tom R
+6  A: 

I've used JEuclid for rendering MathML in my Symja project (Java symbolic math system - point 4 of your list). Maybe, that JEuclid is to slow (especially at startup) for rendering MathML on a mobile phone?

Other alternatives for rendering math expressions with TeX:

and for re-arranging equations or as general Java math libraries:

Calculator projects for Android:

axelclk
Very helpful - thank you very much
Tom R
+1  A: 

JScience (jscience.org) looks like it has some experimental support for MathML being introduced.

I would like to say I am extremely impressed with the features the JScience author has chosen and proven able to support with his powerful Java library.

It is a pretty amazing piece of craftsmanship. If you are doing any significant amount of sophisticated mathematics in your Java programs, or just want to create a utility to punt around with then you should take a look at this library. It might even give you some ideas for things you never thought about doing before because they were "too hard".

There is an open source project named MathEclipse that might interest you too.

JohnnySoftware
A: 

@JonnySoftware, I have looked at the org.JScience.ml.mathml package that you suggested; however, it looks like this one is used to create mathml file rather than parsing content mathml, isn't it? Please correct me if I'm wrong here.

Do you (or any others) have any suggestion for java API used for parsing content mathml?

@Tom R Did you find solution for your question 1 (parsing content mathml)?

Thanks

chepukha