我正在尝试定义一个矩阵:
\begin{matrix}
a & b & c \\
d & e & f
\end{matrix}
但我一直收到这个错误:
! Missing $ inserted.<inserted text>$ \begin{matrix}
! Missing $ inserted.<inserted text>$ \end{matrix}
答案1
该matrix
环境必须在数学模式下使用,即$\begin{matrix}...\end{matrix}$
在各种数学环境之一中使用或,例如equation
或align
等。
\documentclass{article}
\usepackage{mathtools}% Only needed for `pmatrix` etc.
\begin{document}
$
\begin{matrix}
a & b & c \\
d & e & f
\end{matrix}$
$\begin{pmatrix}
a & b & c \\
d & e & f
\end{pmatrix}$
\begin{equation}
\begin{bmatrix}
a & b & c \\
d & e & f
\end{bmatrix} &\neq
\begin{Bmatrix}
a & b & c \\
d & e & f
\end{Bmatrix}
\end{equation}
\end{document}