我遇到了这个问题:在框架框内有一行文本不应该成为表格环境的一部分,因为它会加宽第一个选项卡。以下是代码
\documentclass[12pt, a4paper]{amsbook}
\usepackage{pstricks,pst-plot,pst-node,pstricks-add,amsmath}
%\usepackage{a lot of other packages}
\begin{document}
\begin{table}[h]
\begin{center}
\begin{pspicture}[showgrid=false](18,16)
\rput[Bc](9,8)
{\psframebox{\begin{tabular}{lll}
\underline{LongTextWhichInterferesWithTheTabs}\\
\\
$1$ & = & $A$ \\
$2$ & = & $B$ \\
$3$ & = & $C$ \\
$4$ & = & $D$ \\
$5$ & = & $E$ \\
\end{tabular}}}
\end{pspicture}
\end{center}
\end{table}
\end{document}
有什么方法可以将长下划线文本从表格环境中排除?提前致谢!