Latex表格

\begin{table}[!h]
\centering
    \caption{Statistic results}     % NOTE!  caption goes _before_ the table contents !!
    \label{tab:resultTable}
\begin{small}
\begin{tabular}{|c|c|c|c|c|}
 \hline
             & AAA & BBB & CCC & DDD \\
 \hline
 \multirow{3}{*}{Multi-Row}
  & column-1 & column-2 & column-3 & column-4  \\
 \cline{2-5}
   & column-1 & column-2 & column-3 & column-4  \\
 \cline{2-5}
   & column-1 & column-2 & column-3 & column-4  \\
 \hline
\multirow{3}{*}{Multi-Row}
  & column-1 & column-2 & column-3 & column-4  \\
 \cline{2-5}
   & column-1 & column-2 & column-3 & column-4  \\
 \cline{2-5}
   & column-1 & column-2 & column-3 & column-4  \\
 \hline
 \end{tabular}
    \end{small}
\end{table}

Latex表格_第1张图片

需要导入包:multirow


你可能感兴趣的:(Latex表格)