使用MathJax在Hugo网站上渲染乳胶

时间:2019-06-18 11:44:16

标签: latex markdown render mathjax hugo

我有一个Hugo网站:

http://cnr.lwlss.net/post/autoregression/

Latex用于在上述类似页面上正确呈现,但目前还不能。我不知道发生了什么变化。

设置Hugo网站时,我遵循了Hugo文档中的说明运行MathJax with Hugo。 Hugo使用以下代码生成页面,这似乎是正确的。但是Latex现在不渲染。

谁能解释一下我需要做些什么才能使MathJax重新在Hugo下运行?

<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>

<script type="text/x-mathjax-config">
MathJax.Hub.Config({
  tex2jax: {
     inlineMath: [['$','$'], ['\\(','\\)']],
     displayMath: [['$$','$$']],
     processEscapes: true,
     processEnvironments: true,
     skipTags: ['script', 'noscript', 'style', 'textarea', 'pre'],
     TeX: { equationNumbers: { autoNumber: "AMS" },
            extensions: ["AMSmath.js", "AMSsymbols.js"] }
  }
});
</script>

<script type="text/x-mathjax-config">
  MathJax.Hub.Queue(function() {
     // Fix <code> tags after MathJax finishes running. This is a
     // hack to overcome a shortcoming of Markdown. Discussion at
     // https://github.com/mojombo/jekyll/issues/199
     var all = MathJax.Hub.getAllJax(), i;
     for(i = 0; i &lt; all.length; i += 1) {
          all[i].SourceElement().parentNode.className += ' has-jax';
     }
});
</script>

更新:

似乎删除最后的代码块会使事情恢复并重新运行。例如,this code可以正确渲染,而this code则不能正确渲染。

也许Hugo文档需要更新?

0 个答案:

没有答案