Add \\( and \\[ as mathjax delimiters (#239)

This commit is contained in:
KK
2019-11-26 20:50:56 +08:00
committed by Luiz F. A. de Prá
parent a980192fa7
commit 64a613ce31
2 changed files with 4 additions and 4 deletions

View File

@@ -6,10 +6,7 @@
MathJax = {
tex: {
inlineMath: [
['$', '$']
],
displayMath: [
['$$', '$$']
['$', '$'], ['\\(', '\\)']
],
processEscapes: true,
processEnvironments: true
@@ -29,6 +26,8 @@
delimiters: [
{left: '$$', right: '$$', display:true},
{left: '$', right: '$', display:false},
{left: '\\(', right: '\\)', display: false},
{left: '\\[', right: '\\]', display: true}
]
}
);">