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
It would be nice to have support for expressions such as:
{{1} \over {2}}
Here the \over command is used in an infix position between {1} and {2}.
\over
{1}
{2}
Sadly a simple s/\\over/\\frac/g isn't a workaround due to the infix positioning.
s/\\over/\\frac/g
The text was updated successfully, but these errors were encountered:
Note that {1} {2} \over {3} is equivalent to \frac{{1} {2}}{3}, not {1} \frac{2}{3}.
{1} {2} \over {3}
\frac{{1} {2}}{3}
{1} \frac{2}{3}
Sorry, something went wrong.
Perhaps we could change formula so it stops at an \over and resumes again to parse the denominator.
formula
No branches or pull requests
It would be nice to have support for expressions such as:
Here the
\over
command is used in an infix position between{1}
and{2}
.Sadly a simple
s/\\over/\\frac/g
isn't a workaround due to the infix positioning.The text was updated successfully, but these errors were encountered: