多行組合單元格

多行組合單元格

我正在嘗試製作一個如下所示的表格,其中包含所有水平線和垂直線。請幫忙。

https://i.stack.imgur.com/mWGkL.png

答案1

\begin{table}[htbp]
  \centering
  \caption{Add caption}
    \begin{tabular}{rr}
    \toprule
    title 1 & title 2 \\
    \midrule
    a     & \multicolumn{1}{c}{\multirow{2}[0]{*}{c}} \\
    b     & \multicolumn{1}{c}{} \\
    d     & \multicolumn{1}{c}{\multirow{2}[0]{*}{f}} \\
    e     & \multicolumn{1}{c}{} \\
    \bottomrule
    \end{tabular}%
  \label{tab:addlabel}%
\end{table}%

相關內容