Merge pull request #425 from dvberkel/correct-documentation-of-inline-mathematics

Correct inline mathematics delimiters
This commit is contained in:
Mathieu David 2017-09-08 20:23:08 +02:00 committed by GitHub
commit 743713ad3a
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 \\)
```