将方程编号添加到矩阵

将方程编号添加到矩阵

我确实有一个矩阵,但我无法为其添加参考编号,如下图所示。有什么帮助吗?

\[
  A=
  \begin{pmatrix}
    0.3 & 0.4 & 0.3 & 0.0 \\
    0.4 & 0.3 & 0.0 & 0.3 \\
    0.3 & 0.0 & 0.4 & 0.3 \\
    0.0 & 0.3 & 0.3 & 0.4
  \end{pmatrix}
\]
\label{e1}

在此处输入图片描述

答案1

您应该使用equation

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\begin{document}

See~\eqref{eq:myeqn} below.
\begin{equation}
  A=
  \begin{pmatrix}
    0.3 & 0.4 & 0.3 & 0.0 \\
    0.4 & 0.3 & 0.0 & 0.3 \\
    0.3 & 0.0 & 0.4 & 0.3 \\
    0.0 & 0.3 & 0.3 & 0.4
  \end{pmatrix}
  \label{eq:myeqn}
\end{equation}

\end{document}

相关内容