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
Issue by rreusser Tuesday Jun 13, 2017 at 14:33 GMT Originally opened as idyll-lang/idyll-compiler#30
This equation succeeds:
[Equation display:`true`] \sum_{j=0}^n x^{j} + \sum x^{k} [/Equation]
and renders like this:
While this equation fails:
[Equation display:`true`] \sum_{j=0}^n x^{j} + \sum_{k=0}^n x^{k} [/Equation] and renders like this:
It seems like maybe the _ is interfering with markdown parsing, but I'm not 100% sure yet.
_
As usual, work around is [Equation latex:"..."/]
[Equation latex:"..."/]
The text was updated successfully, but these errors were encountered:
I've run into this problem as well. As a simple example,
Compare [Equation]x_0[/Equation] to [Equation]y_0[/Equation] and you will discover...
renders as
My guess is that the _s are being treated with a higher precedence than [Equation], which is surprising to me.
[Equation]
(But that work-around works. Thanks!)
Sorry, something went wrong.
No branches or pull requests
Issue by rreusser
Tuesday Jun 13, 2017 at 14:33 GMT
Originally opened as idyll-lang/idyll-compiler#30
This equation succeeds:
and renders like this:
While this equation fails:
It seems like maybe the
_
is interfering with markdown parsing, but I'm not 100% sure yet.As usual, work around is
[Equation latex:"..."/]
The text was updated successfully, but these errors were encountered: