Add LaTeX support for hexo

use the plugin hexo-filter-mathjax to enable the LaTex syntax in the article.

Preparation

if you have already enabled other math rendering methods before installing this plugin, please do the following to avoid conflicts:

  • Remove all other Hexo math plugins:
1
2
3
npm un hexo-math
npm un hexo-renderer-marked
# just two samples above, please uninstall the others if you have more plugins.
  • you can find more information here

Installation

1
2
$ npm install hexo-filter-mathjax
$ hexo clean

Usage

Set mathjax: true in Front-matter of each article (post / page) that you would like to enable MathJax. For example:

1
2
3
4
5
6
7
---
title: Add LaTeX support for hexo
date: 2023-08-10 22:25:03
tags:
categories: tech
mathjax: true ##add this line to your post.md
---

to be continued……