我不想要“网站”单元格上方的额外行(红色圆圈部分)。如何删除它?
这是我的 LaTeX 命令:
\setlength{\arrayrulewidth}{0.5mm}
\setlength{\tabcolsep}{18pt}
\renewcommand{\arraystretch}{1.5}
\begin{center}
\begin{tabular}{ |c|c|c|}
\cline{2-3} & \multicolumn{2}{c|}{License Numbers} \\
\hline
Website & Present & Not Present \\ \cline{1-3}
HiPages & 527 & 72 \\
Airtasker & 73 & 20 \\
GumTree & 26 & 5 \\
Service Seeking & 151 & 20 \\
\hline
\end{tabular}
\end{center}
我的输出:
答案1
我建议你更换
\cline{2-3} & \multicolumn{2}{c|}{License Numbers} \\
和
\cline{2-3} \multicolumn{1}{c|}{} & \multicolumn{2}{c|}{License Numbers} \\
哦,我肯定会用\cline{1-3}
来代替\hline
。
% !TEX TS-program = pdflatex
\documentclass{article}
\usepackage{newtxtext,newtxmath} % optional
\usepackage{array}
\begin{document}
\begin{center}
%\setlength{\arrayrulewidth}{0.5mm}
%\setlength{\tabcolsep}{18pt}
\renewcommand{\arraystretch}{1.15}
\begin{tabular}{ |l|c|c|}
%\cline{2-3} & \multicolumn{2}{c|}{License Numbers} \\
\cline{2-3} \multicolumn{1}{c|}{} & \multicolumn{2}{c|}{License Numbers} \\
\hline
Website & Present & Not Present \\
\hline %%\cline{1-3}
HiPages & 527 & 72 \\
Airtasker & 73 & 20 \\
GumTree & 26 & 5 \\
Service Seeking & 151 & 20 \\
\hline
\end{tabular}
\end{center}
\end{document}