Add \\( and \\[ as mathjax delimiters (#239)
| | |
| | | - [José Mª Escartín](https://github.com/jme52) |
| | | - [John Schroeder](https://blog.schroedernet.software) |
| | | - [Tobias Lindberg](https://tobiaslindberg.com) |
| | | - [KK](https://github.com/bebound) |
| | |
| | | MathJax = { |
| | | tex: { |
| | | inlineMath: [ |
| | | ['$', '$'] |
| | | ], |
| | | displayMath: [ |
| | | ['$$', '$$'] |
| | | ['$', '$'], ['\\(', '\\)'] |
| | | ], |
| | | processEscapes: true, |
| | | processEnvironments: true |
| | |
| | | delimiters: [ |
| | | {left: '$$', right: '$$', display:true}, |
| | | {left: '$', right: '$', display:false}, |
| | | {left: '\\(', right: '\\)', display: false}, |
| | | {left: '\\[', right: '\\]', display: true} |
| | | ] |
| | | } |
| | | );"> |