From d53c03cdd7bdf2228d8528582501770d42afed19 Mon Sep 17 00:00:00 2001 From: Samuele <67107052+samul-1@users.noreply.github.com> Date: Fri, 29 Jan 2021 13:58:02 +0100 Subject: [PATCH] Update vue-mathjax.vue The standard TeX tags are `\(`, `\)`, as opposed to just `(` `)`. I think this might have been an oversight. --- src/components/vue-mathjax.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/vue-mathjax.vue b/src/components/vue-mathjax.vue index b6e629e..ff9aedb 100644 --- a/src/components/vue-mathjax.vue +++ b/src/components/vue-mathjax.vue @@ -41,7 +41,7 @@ export default { if (window.MathJax) { window.MathJax.Hub.Config({ tex2jax: { - inlineMath: [['$', '$'], ['(', ')']], + inlineMath: [['$', '$'], ['\\(', '\\)']], displayMath: [['$$', '$$'], ['[', ']']], processEscapes: true, processEnvironments: true