在乳胶中使用@{} 的列间距很奇怪

在乳胶中使用@{} 的列间距很奇怪

这是我的代码:

\begin{tabular}{@{} c @{} c @{}}
\multicolumn{2}{c}{\textbf{Target Firm}}\\
\hline
Assets & NPV \\
\hline
500 & 100 \\
\hline
\end{tabular}

这是我的输出:

输出

我想删除两侧和柱子之间的空间

答案1

您还需要调整列分隔符\multicolumn

\documentclass{article}
\begin{document}
\sffamily
\begin{tabular}{@{}c@{}c@{}}
  \multicolumn{2}{@{}c@{}}{\textbf{Target Firm}}\\
  \hline
  Assets & NPV \\
  \hline
  500 & 100 \\
  \hline
\end{tabular}
\end{document}

输出

相关内容