我想呈现下表:
----------------------------------
| Col1 | Col2 |
-------------------------------------------------
|label 1 | | blah2 |
| | | blah2 |
---------------- blah1 -------------
|label 2 | blah1 | blah3 |
| | | blah3 |
-------------------------------------------------
我怎样才能做到这一点?
到目前为止,我已经通过复制内容完成了此操作:
\begin{tabular}{|l|l|l|}
\hline
& Col1 & Col2 \\
\hline
\textbf{label 1} & blah1 & blah2\\
& blah1 & blah2\\
\hline
\textbf{label 2} & blah1 & blah3\\
& blah1 & blah3\\
\hline
\end{tabular}
这不是我想要做的,因为它会复制数据。我不知道如何统一 col1 的 row1 和 row2。
答案1
\documentclass{article}
\usepackage{multirow}
\usepackage{array}
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\begin{document}
\begin{tabular}{|>{\bfseries}l|C{1cm}|C{1cm}|}
\cline{2-3}
\multicolumn{1}{l|}{}& Col1 & Col2 \\
\hline
label 1 & \multirow{2}{1cm}[-4mm]{blah1 blah1} & blah2 blah2\\
\cline{1-1}\cline{3-3}
label 2 & & blah3 blah3\\
\hline
\end{tabular}
\end{document}