Hi I'm converting some physics writeups to epub format for Calibre conversion to mobi for reading on a Kindle Paperwhite. I like to have the formulas in MathML, and was wondering whether there's a way to have the Kindle hide the un-rendered MathML and instead replace with simple text markup or an SVG.
Example...
Math-ML supported browser renders:
Code:
\[f \ \nu / \lambda\]
Non-Math-ML supported browser (e.g. Kindle) renders:
Code:
f = ν / λ
or for more complex equations, a non-Math-ML supported browser renders:
Code:
<img src="freq-vel-wavelength.svg" />
Thanks!