MathJax:如何删除 "Typesetting math: 100%" 显示消息

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

我正在使用 MathJax 来呈现一些数学。我如何摆脱左下角的这条消息?我在 MathJax 的 docs.

中找不到这个

这是一个状态栏。根据 MathJax-Docs,您可以在加载 mathjax 之前通过将消息样式设置为 none 来关闭它:

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