在 jekyll 中增加对公式的支持
在_includes/head.html
中添加以下内容:
<!-- 数学公式 -->
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre'],
displayMath: [['$$','$$'], ['\[','\]']],
inlineMath: [['$','$']],
}
});
</script>
要实现自动编号需要添加
TeX: {equationNumbers: {autoNumber: "AMS"}},
最终设置为:
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', '\''],
displayMath: [['$$','$$'], ['\[','\]']],
inlineMath: [['$','$']],
},
TeX: {equationNumbers: {autoNumber: "AMS"}},
});
</script>
注意
- jekyll只有
display
(即以\$\$...\$\$
或\[...\]
的形式)的公式才能显示行号,并且前后均需要空行。 - markdown中公式支持见vscode配置mathjax
问题
添加了公式解析后,可能会导致$[{
{]$
等成对符号解析错误。目前已知问题有:
- 代码域`中的成对$会被解析为公式。
- 行内公式($$)内的
\{
无法显示。