letax表格多行多列合并

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/G_Barble/article/details/78905552

在用latex做表格的时候会需要多行或者多列合并,如下图所示:


上表的letax代码如下:

\subsection{Costs}
\begin{table}[!htbp]
   \centering
   \caption{Costs}
   \label{Table-cost}
   \renewcommand{\arraystretch}{1.3}
   \begin{tabular}{ | c |c | c |c |  }
   \hline
     \multirow{2}{*}{Schemes}& \multirow{2}{*}{  xxxxx } & \multicolumn{2}{c|}{xxxxx  (Bytes)}   \cr \cline{3-4}
     & Cost (Bytes) & xxxxx & xxxxx    \\      
    (这个地方\multirow{2}{*}{  xxxxx } 表示合并两行;\multicolumn{2}{c|}{xxxxx  (Bytes)} 表示合并两列;\cline{3-4}表示表格第3、4列划横线 )
   \hline
      Scheme 1 & xxxxx  & xxxxx &  xxxxx\\
   \hline
      Scheme 2 & xxxxx & xxxxx & xxxxx \\
   \hline
      Scheme 3 &  xxxxx  & xxxxx & xxxxx \\
   \hline
      Scheme 4 &  xxxxx & xxxxx & xxxxx\\
   \hline
  \end{tabular}
\end{table}  

 

猜你喜欢

转载自blog.csdn.net/G_Barble/article/details/78905552