gab06
gab06

Reputation: 610

Mathjax ignore latex on the page

Can I make Mathjax to not render the latex on the page inmediately?

I could remove all the $ symbols on the html and later on add them and call the typeset function MathJax.Hub.Queue(["Typeset",MathJax.Hub]), but I'm asking if there's a better way to delay Mathjax from rendering the latex on the page.

Upvotes: 1

Views: 159

Answers (1)

gab06
gab06

Reputation: 610

I just found this code that does the thing:

<script type="text/x-mathjax-config">
    MathJax.Hub.Config({
       skipStartupTypeset: true
    });
</script>

Upvotes: 1

Related Questions