Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MathJax: How do I remove the "Typesetting math: 100%" display message

I'm using MathJax to render some math. How do I get rid of this message in the bottom left? I can't find this in MathJax's docs.

screenshot of mathjax display

like image 962
nnyby Avatar asked Feb 20 '18 20:02

nnyby


1 Answers

It's a status bar. Per MathJax-Docs, you can turn it off by setting the message style to none before you load mathjax:

<script type="text/x-mathjax-config">
MathJax.Hub.Config({
  messageStyle: "none"
});
</script>
like image 72
scrappedcola Avatar answered Oct 17 '22 21:10

scrappedcola