【发布时间】:2011-01-14 12:32:33
【问题描述】:
我有一个非常简单的表格:
\begin{table}[t]
\begin{tabular}{|c||c|c|c|}
\hline
\multirow{2}{*}{Implementation} & Test 1 & Test2 & Test3 \\\hline
& \multicolumn{3}{|c|}{results} \\\hline\hline
\end{tabular}
\end{table}
它几乎“完美”地工作,我唯一的问题是 hline 仍然通过我合并的前两个单元格。 基本上是这样的
"-------------------------------------------------"
"| | Test 1 | Test 2 | Test 3 |"
" ----Implementation-------------------------------"
"| | results |"
"-------------------------------------------------"
但是,它应该是这样的:
"-------------------------------------------------"
"| | Test 1 | Test 2 | Test 3 |"
" Implementation ---------------------------"
"| | results |"
"-------------------------------------------------"
有人知道如何去掉第一列中的行吗?
谢谢
【问题讨论】: