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
From what I understand when you use block mode in latex we do something like this:
\[ \sum_{i=1}^n i \]
We would get :
when we try the same using latex2mathml we get the following:
@>>> convert(r"\sum_{i=1}^n i", display="block") '<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><mrow><msubsup><mo>∑</mo><mrow><mi>i</mi><mo>=</mo><mn>1</mn></mrow><mi>n</mi></msubsup><mi>i</mi></mrow></math>'
I find this behavior strange because I requested it in block mode but I didn't get what latex gives when in block mode.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
From what I understand when you use block mode in latex we do something like this:
We would get :
when we try the same using latex2mathml we get the following:
I find this behavior strange because I requested it in block mode but I didn't get what latex gives when in block mode.
The text was updated successfully, but these errors were encountered: