在下表中,我想使用 D 下的 2 列和 F 下的 3 列。该怎么做?
\begin{table}[]
\centering
\begin{tabular}{|c|cc|c|}
\hline
A & \multicolumn{2}{c|}{B} & C\\
\hline
& D & F & \\
\hline
\hline
\end{tabular}
\caption{}
\label{tab:my_label}
\end{table}
答案1
答案2
答案3
为了完整起见,让我使用新的 LaTeX-3 包添加解决方案tabularray
:
\documentclass{article}
\usepackage{tabularray}
\begin{document}
\begin{table}[ht]
\centering
\begin{tblr}{hlines, vlines, cells={c}}
A & \SetCell[c=5]{c} B
& & & & & C \\
& \SetCell[c=2]{c} D
& & \SetCell[c=3]{c} F
& & & \\
& 1 & 2 & 1 & 2 & 3 & \\
\end{tblr}
\end{table}
\end{document}