Latex
编程导航
易用难精。How to Convert a Word Document to Markdown for Free using Pandoc
希腊字母
1  | α A \alpha A \\  | 
不等于
1  | \neq  | 
\[ \neq \]
大于等于
1  | \geq  | 
\[ \geq \]
小于等于
1  | \leq  | 
\[ \leq \]
点乘
1  | \cdot  | 
\[ \cdot \]
叉乘
1  | \times  | 
\[ \times \]
分式
1  | \frac{a}{b}  | 
\[ \frac{a}{b} \]
加粗
1  | \mathbf{dT(P)}  | 
\[ \mathbf{dT(P)} \]
单括号
1  | \left\{  | 
\[ \left\{ \right. \]
一般情况下,括号是成对使用的,用一半的话需要手动取消。其中\right.就是手动取消的表达式。
矢量
向右箭头,这个不标准。
1  | \overrightarrow{a}  | 
\[ \overrightarrow{a} \]
矢量,正确的表达:
1  | \vec{a}  | 
\[ \vec{a} \]
对齐
- 左对齐
 - 右对齐
 - 等号处对齐 align,在 & 处对齐
 
上下标
1  | \mathop{\sum}_{a=\frac{1}{2} \times 10}^{b=\frac{4}{5}}c \cdot d  | 
1  | \mathop{\sum}\limits_{a=\frac{1}{2} \times 10}^{b=\frac{4}{5}}c \cdot d  | 
\[ \mathop{\sum}_{a=\frac{1}{2} \times 10}^{b=\frac{4}{5}}c \cdot d \]
\[ \mathop{\sum}\limits_{a=\frac{1}{2} \times 10}^{b=\frac{4}{5}}c \cdot d \]
省略号
1  | Y=\{y_1, y_2, \ldots, y_n\},  | 
\[ Y=\{y_1, y_2, \ldots, y_n\}, \begin{bmatrix} x_{11} & x_{12} & \cdots & x_{1m} \\ x_{21} & x_{22} & \cdots & x_{2m} \\ \vdots & \vdots & \ddots & \vdots \\ x_{n1} & x_{n2} & \cdots\ & x_{nm} \\ \end{bmatrix} \]
 评论
