表格多列分支列

表格多列分支列

生成表 我想生成完全相同模式的表格。我尝试了几个小时,但都无法正确完成,谁能

请尽快帮助我,谢谢

答案1

在此处输入图片描述

\documentclass{article}
\renewcommand{\arraystretch}{1.8}
\begin{document}
\begin{table}[t]
\caption{This is a table }
\centering
\begin{tabular}
{|c|c|c|c|c|c|c|c|c|c|}\hline
N & \multicolumn{3}{c|}{One} &
 \multicolumn{3}{c|}{Two} &
 \multicolumn{3}{c|}{Three}  \\ \hline
1 &  & & & & & & & &   \\\hline
2 &  & & & & & & & &  \\\hline
3 &  & & & & & & & &  \\\hline
4 &  & & & & & & & &  \\\hline
5 &  & & & & & & & &  \\\hline
6 &  & & & & & & & &  \\\hline
7 &  & & & & & & & &  \\\hline
8 &  & & & & & & & &  \\\hline
\end{tabular}
\label{table}
\end{table}

\end{document}

答案2

\documentclass{article}
\begin{document}
\begin{tabular}{|c|r|r|r|r|r|r|r|r|r|}
\hline
{} &\multicolumn{3}{|c|}{}&\multicolumn{3}{|c|}{}&\multicolumn{3}{|c|}{}\\
\hline
1 &&&&&&&&&\\ \hline
2 &&&&&&&&&\\ \hline
3 &&&&&&&&&\\ \hline
4 &&&&&&&&&\\ \hline
5 &&&&&&&&&\\ \hline
6 &&&&&&&&&\\ \hline
7 &&&&&&&&&\\\hline
8 &&&&&&&&&\\\hline
\end{tabular}
\end{document}

空表

相关内容