我正在尝试用 displaystyle 写一个固定宽度的表格和方程式。我写了
\begin{tabular}{|p{6cm}|p{6cm}|}
\hline
stuff1 & stuff2\\
\hline
\pbox{6cm}{some text
\begin{equation}
\begin{gathered}
a+b=c \\
d+e=f
\end{gathered}
\end{equation}
}
& \pbox{6cm}{some text
\begin{equation}
a+b=c
\end{equation}
text.
} \\
\hline
\end{tabular}
\\
\end{center}
我收到一条错误消息
缺少插入 $。
我尝试过多次更改方程命令但仍然会收到错误。
答案1
您没有显示完整的示例或定义,\pbox
但如果删除它,表格将按预期工作。
\documentclass{article}
\addtolength\textwidth{30pt}
\usepackage{amsmath}
\begin{document}
\begin{center}
\begin{tabular}{|p{6cm}|p{6cm}|}
\hline
stuff1 & stuff2\\
\hline
some text
\begin{equation}
\begin{gathered}
a+b=c \\
d+e=f
\end{gathered}
\end{equation}
&
some text
\begin{equation}
a+b=c
\end{equation}
text.
\\
\hline
\end{tabular}
\end{center}
\end{document}