I'm interested in finding out if I can use fromLatex() in combination with toString() to get a suitable input for mathJS.
Are these libraries compatible? Has anyone tested them for compatibility?
Example:
import { create, all } from 'mathjs'
math = create(all, {})
exp = MathExpression.fromLatex(myLatexMathString)
expStr = MathExpression.toString(exp)
evaluatedMath = math.evaluate(expStr)