具有多个表头列跨度和表尾总行的表格

具有多个表头列跨度和表尾总行的表格

[ 代码][ 格式]

我在格式化此表格时遇到问题。我已经设置好了,但我无法让它\multicolumn跨越两个主标题和一个底部跨度。

\begin{tabular}{ |p{.6cm}||p{2.5cm}|p{1cm}|p{1cm}|p{2.2cm}||p{1.7cm}|p{1.7cm}|  }
 \hline
 \multicolumn{5}{|c||}{Book Process Guide} & {Price List}\\
 \hline
 Qty &  Type &  Size &  Code &  Dimension &     Each &      Total\\
 \hline
 3 &    Press Pad &     0.055 &  &      8x8 &   2.25 &      6.75\\
 1 &    Release Film &  0.001 &  &      9x9 &    &          0.00\\
 1 &    FR4 &           0.028 &  &      8x8 &   2.00 &      2.00\\
 3 &    Press Pad &     0.055 &  &      8x8 &   2.25 &      6.75\\
 \hline 
 11 &   Books &          &       &       &       &          302.50\\
 \hline
\end{tabular}

答案1

修改第三行如下图所示并编译

\multicolumn{5}{|c||}{图书流程指南} & \multicolumn{2}{c|}{价格表}\

您将获得所需的输出。

输出

相关内容