我的基于Jekyll的网站不适用于MathJax

时间:2016-11-10 17:14:18

标签: jekyll github-pages mathjax octopress

我的问题

您可以查看我的问题,请在此链接中查看我的博文: https://matheusrabetti.github.io/statistics/bayesian-introduction/

在帖子的最后你可以看到 - “这可以用带参数的beta分布和(\ beta = 219)表示:”

此处我的降价文件包含以下代码:This can be represented with a beta distribution with parameters $$\alpha=81$$ and \( \beta=219\):

我希望在我的网站上看到使用$$时的Tex公式,并且它会返回一个空白区域。

我知道的路径

在我的 _includes 文件夹中 - 检查我的github存储库https://github.com/MatheusRabetti/matheusrabetti.github.io - 我在_scripts.html文件中有以下代码:

<script type="text/x-mathjax-config">
MathJax.Hub.Config({
    tex2jax: {
  inlineMath: [['$','$'], ['\\(','\\)']],
  displayMath: [ ['$$','$$'], ['\\[','\\]'] ],
  processEscapes: true
     }
});
</script>

<script type="text/javascript"
   src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script> 

这个javacript代码已经在_header.html和许多其他文件中。

我正在使用翻译:

markdown: kramdown

我的_layout帖子文件包含_scripts.html:

{% include _scripts.html %}

</body>
</html>

我的页面空白,检查html页面我发现:

The mean is
<script type="math/tex">
  \frac{\alpha}{\alpha + \beta} = \frac{81}{81+219} = 0.270
<\script>

正如你所看到的,我对Jekyll或Octopress知之甚少,随着帮助的到来,我会提供更多的信息,因为我不知道问题是什么,什么可以帮到你。

0 个答案:

没有答案