Hexo支持Latex公式

安装NextT主题

Hexo使用NextT主题

按照上述方法,即可容易地在NextT主题下支持Latex公式。

配置

修改 Blog/theme/next/_config.yml 文件中

1
2
3
4
5
6
7
8
math:
# Default (false) will load mathjax / katex script on demand.
# That is it only render those page which has `mathjax: true` in front-matter.
# If you set it to true, it will load mathjax / katex script EVERY PAGE.
every_page: false

mathjax:
enable: true

enable 设置为 true 即可


对于 every_page 参数,若为 true ,则对所有博文页面渲染Latex;若为 false ,则仅为每个博文 md 文件头部有注释的渲染

例如:

  • 渲染
1
2
3
---
mathjax: true
---
  • 不渲染
1
2
3
---
mathjax: false
---
  • 不渲染
1
2
3
---

---

REF