尝试定义矩阵时出错

尝试定义矩阵时出错

我正在尝试定义一个矩阵:

\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}$在各种数学环境之一中使用或,例如equationalign等。

\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}

在此处输入图片描述

相关内容