Hexo 支持 LaTeX 的三种方法

[TOC]

在线编写

网页上写LaTeX

CodeCogs Equation Editor

image-20200929012702361

插入图片

1
![](https://latex.codecogs.com/svg.latex?sin(5))

效果

其他主题

GitHub

模块安装

1
2
npm install hexo-filter-mathjax
hexo clean

配置

_config.yml

1
2
3
4
5
6
7
mathjax:
tags: none # or 'ams' or 'all'
single_dollars: true # enable single dollar signs as in-line math delimiters
cjk_width: 0.9 # relative CJK char width
normal_width: 0.6 # relative normal (monospace) width
append_css: true # add CSS to pages rendered by MathJax
every_page: false # if true, every page will be rendered by MathJax regardless the `mathjax` setting in Front-matter

使用方法

在要启用MathJax的每篇文章(文章/页面)的前题中,将mathjax设置为true。 例如:

1
2
3
4
5
6
---
title: On the Electrodynamics of Moving Bodies
categories: Physics
date: 1905-06-30 12:00:00
mathjax: true
---

然后,您可以在文章中使用LaTeX语法。

NexT主题

配置

_config.next.yml

1
2
3
4
math:
every_page: true
mathjax:
enable: true