删除表格头中的垂直线

删除表格头中的垂直线

我想从这里开始:
带线条的图像

到:
在此处输入图片描述

我有以下 LaTeX:

\begin{tabular}{p{8cm}|c|c|c|c|c}
\textbf{Functionality} &
\rot{Old ICCS engine} &
\rot{Current ICCS engine} &
\rot{Confious system} &
\rot{OpenConf} &
\rot{START} \\

\hline

Customizable conference settings & & & & & \\

\end{tabular}

我应该怎么办?

答案1

您可以使用它\multicolumn来覆盖单元格声明的格式规范:

\begin{tabular}{p{8cm}|c|c|c|c|c}
\multicolumn{1}{l}{\textbf{Functionality}} &
\rot{Old ICCS engine} &
\rot{Current ICCS engine} &
\rot{Confious system} &
\rot{OpenConf} &
\rot{START} \\
\hline
Customizable conference settings & & & & & \\
\end{tabular}

相关内容