-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
Description
I want to use a pair of single dollar sign as formula delimiter for inline style math formula and double for display style , my settings as following
<script>
renderMathInElement(document.body,{delimiters: [
{left: "$", right: "$", display: false},
{left: "$$", right: "$$", display: true}
]});
</script>
This caused KaTeX to render well for inline style math formula but not for display style , any good solutions ?
BTW, the same delimiter rule works well for MathJax, I just want to use KaTeX as an replacement Of MathJax for speed reason .
Reactions are currently unavailable