我有下表
\begin{table}[t]
\center
\footnotesize
\caption{the capt}
\label{thelabel}
\begin{tabular}{ | c | c | } \hline
%\multirow{2}{*}{\textbf{Name}} & \multirow{2}{*}{\textbf{Value}} \\ \hline
\textbf{Name} & \textbf{Value} \\ \hline
\textbf{-} & \textbf{-} \\ \hline
\textit{CoCo} & 23 \\ \hline
\textit{KiKi} & 49 \\ \hline
\end{tabular}
\end{table}
如何通过删除包含“-”的单元格将单元格“名称”和“值”放在两行上,当我使用 1 时\multirow{2}{*}{\textbf{Name}} & \multirow{2}{*}{\textbf{Value}}
它不起作用
答案1
我想您只希望在标题中留出更多的垂直空间,这可以通过垂直不可见规则来实现:
\documentclass{scrartcl}
\begin{document}
\begin{tabular}{ | c | c | } \hline
\textbf{Name} & \textbf{Value}\\
\textbf{-} & \textbf{-} \\ \hline
\textit{CoCo} & 23 \\ \hline
\textit{KiKi} & 49 \\ \hline
\end{tabular}
\end{document}