1. 程式人生 > 其它 >Hexo中使用插入數學公式

Hexo中使用插入數學公式

技術標籤:hexo

Hexo中插入數學公式時會出現顯示問題,這裡借用mathjax外掛和writage工具來實現hexo中插入數學公式。
麥克斯韋方程組

首先,安裝hexo-math

npm install hexo-math --save

在站點配置檔案下新增:

math:
  engine: 'mathjax' 
  mathjax:

在主題配置檔案下修改:

math:
  enable: true
  engine: mathjax

mathjax:
  enable: true
  cdn: //cdn.jsdelivr.net/npm/[email protected]/MathJax.js?config=TeX-AMS-MML_HTMLorMML

其中 per_page 根據提示,表示預設不載入 mathjax/katex 指令碼,如果設定為 false,則是每篇文章都會去載入 mathjax 指令碼,這裡我設定為 true,然後在需要載入的文章抬頭新增 mathjax: true 。
公式可以通過Latex語法規則編輯,同時也可以通過Writage外掛,將Word中編輯好的公式,轉化成markdown格式後使用。

參考: hexo中插入數學公式
    writage官網