1 개요[ | ]
- 행렬과 TeX
- 행렬 표기와 TeX
TeX에서 행렬을 표기하는 방법은 다음 5가지이다.
지시어 | 특징 |
---|---|
matrix | 괄호 없음 |
bmatrix ★ | 대괄호(bracket) |
pmatrix ★ | 소괄호(parentheses) |
vmatrix | 세로줄(vertical) |
Vmatrix | 겹세로줄(Vertical) |
※ 이중에서 bmatrix 또는 pmatrix를 쓰는 것이 일반적이다.
2 matrix[ | ]
html
Copy
<math>\begin{matrix} a & b \\ c & d \end{matrix}</math>
3 bmatrix[ | ]
html
Copy
<math>\begin{bmatrix} a & b \\ c & d \end{bmatrix}</math>
4 pmatrix[ | ]
html
Copy
<math>\begin{pmatrix} a & b \\ c & d \end{pmatrix}</math>
5 vmatrix[ | ]
html
Copy
<math>\begin{vmatrix} a & b \\ c & d \end{vmatrix}</math>
6 Vmatrix[ | ]
html
Copy
<math>\begin{Vmatrix} a & b \\ c & d \end{Vmatrix}</math>