Correct inline mathematics delimiters

This fixes #424
This commit is contained in:
Daan van Berkel 2017-09-06 15:49:43 +02:00
parent 6bc3039b4f
commit bd30cae17e
No known key found for this signature in database
GPG Key ID: 3A57E20BCAC4B005
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ mathjax-support = true
The usual delimiters MathJax uses are not yet supported. You can't currently use `$$ ... $$` as delimiters and the `\[ ... \]` delimiters need an extra backslash to work. Hopefully this limitation will be lifted soon.
### Inline equations
Inline equations are delimited by `\\[` and `\\]`. So for example, to render the following inline equation \\( \int x dx = \frac{x^2}{2} + C \\) you would write the following:
Inline equations are delimited by `\\(` and `\\)`. So for example, to render the following inline equation \\( \int x dx = \frac{x^2}{2} + C \\) you would write the following:
```
\\( \int x dx = \frac{x^2}{2} + C \\)
```