将公式编号添加到包含文本+垂直线和水平线的表格中

将公式编号添加到包含文本+垂直线和水平线的表格中

我有以下代码可以生成表格,我想在其中添加公式编号(这样我就可以通过编号在文本中引用它)。有什么建议吗?谢谢!

\begin{tabular}{ | l | c | c |}
    \hline
    & \multicolumn{2}{|c|}{\textbf{Signaler strategy}} \\
    \hline
    \textbf{Chooser strategy} & TFT & ALLD \\ \hline
    TFT (Accept) & $\frac{bw_{c}w_{s}-c}{1-(w_{c}w_{s})^2},\frac{b-cw_{c}w_{s}}{1-(w_{c}w_{s})^2}$ & $-c,b$ \\ \hline
    ALLD (Reject) & 0,0 &  0,0 \\ \hline
\end{tabular}

答案1

您可以将其封闭在一个equation环境中:

示例输出

\documentclass{article}

\begin{document}

\begin{equation}
  \label{eq:tab}
  \begin{tabular}{ | l | c | c |}
    \hline
    & \multicolumn{2}{|c|}{\textbf{Signaler strategy}} \\
    \hline
    \textbf{Chooser strategy} & TFT & ALLD \\ \hline
    TFT (Accept) & $\frac{bw_{c}w_{s}-c}{1-(w_{c}w_{s})^2},\frac{b-cw_{c}w_{s}}{1-(w_{c}w_{s})^2}$ & $-c,b$ \\ \hline
    ALLD (Reject) & 0,0 &  0,0 \\ \hline
  \end{tabular}
\end{equation}

As we can see in the Table of (\ref{eq:tab})\dots

\end{document}

相关内容