昨天给hexo装了mathjax 以后好直接写公式

基本语法

位置

  • 公式插入在文档中的一句话 (有点像html 的display: inline)
$(中间写正文)$
  • 公式直接占用一行 (有点像 html display: block)
$$(中间写正文)$$

希腊字母

这个直接照搬一位大佬的

显示 命令 显示 命令
α \alpha β \beta
γ \gamma δ \delta
ε \epsilon ζ \zeta
η \eta θ \theta
ι \iota κ \kappa
λ \lambda μ \mu
ν \nu ξ \xi
π \pi ρ \rho
σ \sigma τ \tau
υ \upsilon φ \phi
χ \chi ψ \psi
ω \omega

运算符

上下标

  • 上标^
  • 下标_

括号

括号运算符直接打就行了
{} 有做一个快的功能
除法 : \frac 例子: \frac{x^2}{y^2} x 2 y 2 \frac{x^2}{y^2} y2x2

输入省略号

  • 省略号在下面: \ldots 省略号在中间:\cdots 例子$f(x_1,x_2,\ldots,x_n) = x_1^2 + x_2^2 + \cdots + x_n^2$
    f ( x 1 , x 2 , , x n ) = x 1 2 + x 2 2 + + x n 2 f(x_1,x_2,\ldots,x_n) = x_1^2 + x_2^2 + \cdots + x_n^2 f(x1,x2,,xn)=x12+x22++xn2

空格

LaTeX语法本身会忽略空格的存在
小空格:a\ b呈现为 a <mtext>   </mtext> b a\ b a b
4格空格:a\quad b呈现为 a b a\quad b ab

对齐等式

aligned 例子:

\begin{aligned}
\sqrt{37} & = \sqrt{\frac{73^2-1}{12^2}} \\
 & = \sqrt{\frac{73^2}{12^2}\cdot\frac{73^2-1}{73^2}} \\ 
 & = \sqrt{\frac{73^2}{12^2}}\sqrt{\frac{73^2-1}{73^2}} \\
 & = \frac{73}{12}\sqrt{1 - \frac{1}{73^2}} \\ 
 & \approx \frac{73}{12}\left(1 - \frac{1}{2\cdot73^2}\right)
\end{aligned}

<mstyle displaystyle="true" scriptlevel="0"> 37 </mstyle> <mstyle displaystyle="true" scriptlevel="0"> = 7 3 2 1 1 2 2 </mstyle> <mstyle displaystyle="true" scriptlevel="0"> </mstyle> <mstyle displaystyle="true" scriptlevel="0"> = 7 3 2 1 2 2 7 3 2 1 7 3 2 </mstyle> <mstyle displaystyle="true" scriptlevel="0"> </mstyle> <mstyle displaystyle="true" scriptlevel="0"> = 7 3 2 1 2 2 7 3 2 1 7 3 2 </mstyle> <mstyle displaystyle="true" scriptlevel="0"> </mstyle> <mstyle displaystyle="true" scriptlevel="0"> = 73 12 1 1 7 3 2 </mstyle> <mstyle displaystyle="true" scriptlevel="0"> </mstyle> <mstyle displaystyle="true" scriptlevel="0"> 73 12 ( 1 1 2 7 3 2 ) </mstyle> \begin{aligned} \sqrt{37} &amp; = \sqrt{\frac{73^2-1}{12^2}} \\ &amp; = \sqrt{\frac{73^2}{12^2}\cdot\frac{73^2-1}{73^2}} \\ &amp; = \sqrt{\frac{73^2}{12^2}}\sqrt{\frac{73^2-1}{73^2}} \\ &amp; = \frac{73}{12}\sqrt{1 - \frac{1}{73^2}} \\ &amp; \approx \frac{73}{12}\left(1 - \frac{1}{2\cdot73^2}\right) \end{aligned} 37 =1227321 =1227327327321 =122732 7327321 =127317321 1273(127321)

分段

$$\begin{cases}
y_1=a_0+a_1x_1+a_2x_1^2\\
y_2=a_0+a_1x_2+a_2x_2^2\\
y_3=a_0+a_1x_3+a_2x_3^2
\end{cases}
$$

{ <mstyle displaystyle="false" scriptlevel="0"> y 1 = a 0 + a 1 x 1 + a 2 x 1 2 </mstyle> <mstyle displaystyle="false" scriptlevel="0"> y 2 = a 0 + a 1 x 2 + a 2 x 2 2 </mstyle> <mstyle displaystyle="false" scriptlevel="0"> y 3 = a 0 + a 1 x 3 + a 2 x 3 2 </mstyle> \begin{cases} y_1=a_0+a_1x_1+a_2x_1^2\\ y_2=a_0+a_1x_2+a_2x_2^2\\ y_3=a_0+a_1x_3+a_2x_3^2 \end{cases} y1=a0+a1x1+a2x12y2=a0+a1x2+a2x22y3=a0+a1x3+a2x32

分段函数

f(n) =
\begin{cases}
n/2,  & \text{if $n$ is even} \\
3n+1, & \text{if $n$ is odd}
\end{cases}

f ( n ) = { <mstyle displaystyle="false" scriptlevel="0"> n / 2 , </mstyle> <mstyle displaystyle="false" scriptlevel="0"> <mtext> if  </mtext> <mstyle displaystyle="false" scriptlevel="0"> n </mstyle> <mtext>  is even </mtext> </mstyle> <mstyle displaystyle="false" scriptlevel="0"> 3 n + 1 , </mstyle> <mstyle displaystyle="false" scriptlevel="0"> <mtext> if  </mtext> <mstyle displaystyle="false" scriptlevel="0"> n </mstyle> <mtext>  is odd </mtext> </mstyle> f(n) = \begin{cases} n/2, &amp; \text{if $n$ is even} \\ 3n+1, &amp; \text{if $n$ is odd} \end{cases} f(n)={n/2,3n+1,if n is evenif n is odd

求和、求积、极限与积分

求和 : \sum, 例子:\sum_{i=1}^n{a_i} i = 1 n a i \sum_{i=1}^n{a_i} i=1nai
求极限: \lim 例子: \lim_{x\to 0} lim x 0 \lim_{x\to 0} limx0
求积分: \int 例子: \\int_0^\infty{fxdx} 0 f x d x \int_0^\infty{fxdx} 0fxdx
求积: \prod 例子: \prod_{i=0}^n \frac{1}{i^2} i = 0 n 1 i 2 \prod_{i=0}^n \frac{1}{i^2} i=0ni21

运算符

* \ast \ast