We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
\exponentialE is not converted to math-ml well
\exponentialE
math-ml
e e ^ 2 produces \exponentialE^2 (stringified it shows "\\exponentialE^2") yet
e
^
2
\exponentialE^2
"\\exponentialE^2"
mathlive.convertLatexToMathMl("\\exponentialE^2") // or mf.getValue('math-ml')
<msup><mn>2</mn></msup>
on the other hand
mathlive.convertLatexToMathMl("\exponentialE^2")
<msup>exponentialE<mn>2</mn></msup>
which is better but weird that \e is used, either way something is off.
\e
Additionally it should be something more standard thatn exponentialE in mathml, e.g. Mathematica produces:
exponentialE
<msup> <mi>ⅇ</mi> <mn>2</mn> </msup>
And I just found ⅇ in https://www.w3.org/TR/REC-MathML/chap4_1.html
ⅇ
I am not a LaTeX expert so correct me if I am wrong but I'd expect:
mathlive.convertLatexToMathMl("\\exponentialE^2")
<msup> <mi>ⅇ</mi> <mn>2</mn> </msup>
MathLive version 0.87.1
Operating System Window 10
Browser Chrome
The text was updated successfully, but these errors were encountered:
I will post a separate issue later but this seems to be related:
mathlive.convertLatexToMathMl("x^2")
<msup>x<mn>2</mn></msup>
Shouldn't it be <mi>x</mi>?
<mi>x</mi>
Sorry, something went wrong.
069c1b1
fix: fixed arnog#1803
7bb0d79
No branches or pull requests
Description
\exponentialE
is not converted tomath-ml
wellSteps to Reproduce
e
e
^
2
produces\exponentialE^2
(stringified it shows"\\exponentialE^2"
) yeton the other hand
which is better but weird that
\e
is used, either way something is off.Additionally it should be something more standard thatn
exponentialE
in mathml, e.g. Mathematica produces:And I just found
ⅇ
in https://www.w3.org/TR/REC-MathML/chap4_1.htmlExpected Behavior
I am not a LaTeX expert so correct me if I am wrong but I'd expect:
Environment
MathLive version 0.87.1
Operating System Window 10
Browser Chrome
The text was updated successfully, but these errors were encountered: