因为WordPress并没有数学公式编辑器,之前在遇到需要输入数学公式时只能将公式在其他软件中编辑,并作为图片导入博文。最近发现了一个数学公式插件:LaTeX for WordPress. 该插件基于MathJax和LaTex图片服务,为WordPress提供WordPress支持。
以下测试插件对各类公式的支持:
1.普通公式
\forall x \in X, \quad \exists y \leq \epsilon
---------
\cos (2\theta) = \cos^2 \theta - \sin^2 \theta
---------
\lim_{x \to \infty} \exp(-x) = 0
---------
k_{n+1} = n^2 + k_n^2 - k_{n-1}
2. 行列式(矩阵)
Matrix:
A_{m,n} =
\begin{pmatrix}
a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\
a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m,1} & a_{m,2} & \cdots & a_{m,n}
\end{pmatrix}
\begin{equation}
A_{m,n} =
\begin{pmatrix}
a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\
a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m,1} & a_{m,2} & \cdots & a_{m,n}
\end{pmatrix}
\end{equation}
---------
Array:
\begin{array}{c|c}
a & b \\
\hline
c & d
\end{array}
3. 条件公式
\begin{equation}
f(n) = \begin{cases}
n/2 & \quad \text{if } n \text{ is even} \\
-(n+1)/2 & \quad \text{if } n \text{ is odd} \\
\end{cases}
\end{equation}
4. 复杂格式
\begin{equation}
\frac{
\begin{array}[b]{r}
\left( x_1 x_2 \right)\\
\times \left( x'_1 x'_2 \right)
\end{array}
}{
\left( y_1y_2y_3y_4 \right)
}
\end{equation}
---------
\begin{equation}
x = a_0 + \cfrac{1}{a_1
+ \cfrac{1}{a_2
+ \cfrac{1}{a_3 + \cfrac{1}{a_4} } } }
\end{equation}