Me gustaría poner "censo de EE. UU." en el medio del espacio dado, y también "Grupo A". Actualmente está algo desplazado. ¿Cómo debo combinar las filas?
\begin{table}
\begin{tabular}{lrrrrrr}
\toprule
& U.S. Census & \multicolumn{5}{c}{Study2} \\
& & GroupA & \multicolumn{4}{c}{GroupB} \\
& & & A & B & C & D \\
\bottomrule
\end{tabular}
\end{table}
Probé las funciones multifila y makecell pero ninguna funcionó. Gracias de antemano.
Respuesta1
¿Es una de las siguientes dos soluciones (cerca de) lo que busca?
\documentclass{article}
\usepackage{booktabs,caption}
\begin{document}
\begin{table}
\centering
\caption*{First possibility}
\begin{tabular}{@{} l c r rrrr @{}}
\toprule
&& \multicolumn{5}{c@{}}{Study2} \\
\cmidrule(l){3-7}
XYZ & U.S. Census & Group A & \multicolumn{4}{c@{}}{Group B} \\
\cmidrule(lr){3-3} \cmidrule(l){4-7}
&& & A & B & C & D \\
\midrule
% more table stuff
\\
\bottomrule
\end{tabular}
\vspace{0.5in}
\caption*{Second possibility}
\begin{tabular}{@{} l c r rrrr @{}}
\toprule
&& \multicolumn{5}{c@{}}{Study2} \\
\cmidrule(l){3-7}
XYZ & U.S. Census & & \multicolumn{4}{c@{}}{Group B} \\
\cmidrule(l){4-7}
&& Group A & A & B & C & D \\
\midrule
% more table stuff
\\
\bottomrule
\end{tabular}
\end{table}
\end{document}
Respuesta2
Con tabularray
:
\documentclass{article}
\usepackage{tabularray}
\UseTblrLibrary{booktabs}
\begin{document}
\begin{table}\centering
\begin{tblr}{colspec={lrrrrrr}}
\toprule
&\SetCell[r=3]{c} U.S. Census & \SetCell[c=5]{c} Study2 &&&& \\
&& \SetCell[r=2]{c} GroupA & \SetCell[c=4]{c} GroupB &&&\\
& & & A & B & C & D \\
\bottomrule
\end{tblr}
\end{table}
\begin{table}\centering
\begin{tblr}{colspec={lrrrrrr}}
\toprule
&\SetCell[r=3]{c} U.S. Census & \SetCell[c=5]{c} Study2 &&&& \\
\cmidrule{3-7}
&& \SetCell[r=2]{c} GroupA & \SetCell[c=4]{c} GroupB &&&\\
\cmidrule{4-7}
& & & A & B & C & D \\
\bottomrule
\end{tblr}
\end{table}
\end{document}