欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LaTeX

程序员文章站 2023-12-25 09:39:09
...

本博文用于记录平时常忘的LaTeX语法

符号 LaTeX
γ \gamma
γ^ \hat{\gamma}
\nabla
ξ \xi
\neq
λ \lambda

1.把下标放在正下方

如果是数学符号,那么直接用\limits命令放在正下方,如

i=1

\sum\limits_{i=1}
若是普通符号,那么要用\mathop先转成数学符号再用\limits,如
ai=1

\mathop{a}\limits_{i=1}

2.空格

两个quad空格 ab a \qquad b 两个m的宽度
quad空格 ab a \quad b 一个m的宽度
大空格 a b a\ b 1/3m宽度
中等空格 ab a\;b 2/7m宽度
小空格 ab a,b 1/6m宽度
紧贴 ab a!b 缩进1/6m宽度

3. 公式标号

(1)
\tag{1}

4.大括号右多行赋值 

方法1:用 array

$$\left\{\begin{array}{cc} 
		1, & x=f(Pa_{x})\\ 
		0, & other\ values 
	\end{array}\right.$$

P(x|Pax)={1,x=f(Pax)0,other values

方法2:用 cases

$$P(x|Pa_x)=\begin{cases} 
		1, & x=f(Pa_{x})\\ 
		0, & other\ values 
	\end{cases}$$

P(x|Pax)={1,x=f(Pax)0,other values

上一篇:

下一篇: