hexo 中使用数学公式

https://theme-next.org/docs/third-party-services/math-equations
讲的很清楚,只要启用mathjax就可以。启用它依赖hexo的插件

npm i -D hexo-math

虽然它提示安装hexo-math可能会和它本身内部渲染机制冲突,但是安装了暂时没有发现有什么不妥。倒是安装了 hexo-renderer-pandoc会一直报错。未深究下去,先用起来,具体问题具体分析。网上找的资料基本上都过时了,还是得去官网查手册,等遇到问题的时候估计又有新更新出现,所以不纠结。

在markdown指令中添加mathjax: true 让带有数学公式的页面生效。

---
title: Will Render Math
mathjax: true
---
....

参考

http://stevenshi.me/2017/06/26/hexo-insert-formula/

你可能感兴趣的:(hexo 中使用数学公式)