我正在寻找一种方法将其放入一个表格中,下划线正确。我想要的是以下内容:两列都加下划线,但它不是一条连线。我希望两者之间有一个小的差距。我怎么能得到这个?
我知道我可以使用\cline{1}
和\cline{2}
为列添加下划线,但这会使它们连接起来,这是我不想要的。
\begin{table}
\begin{tabular}{cc}
3 & 3 \\
\end{tabular}
\end{table}
希望有人可以帮助我。
答案 0 :(得分:0)
只需使用空列和hhline
(或cline
)
%...
\usepackage{hhline}
%...
\begin{tabular}{c@{\ }c@{\ }c}
3 & & 3 \\
\hhline{-~-}
\end{tabular}