I've been trying to make a table using the \booktabs pagackage and following this model with some tweaks. However, the merged cells end up in the wrong column, namely the first column and not the third as I intend.
I'd appreciate your help! Working example is below:
\documentclass{article}
\usepackage{booktabs}
\newcommand{\head}[1]{\textnormal{\textbf{#1}}}
\begin{document}
\begin{tabular}{@{}*4l@{}}
\toprule[1.5pt]
\multicolumn{1}{c}{\head{Group}} &
\multicolumn{1}{c}{\head{1st round}} &
\multicolumn{2}{c}{\head{2nt round}}\\
\head{New Interview Partners} & \head{Follow-Up Interviews} & \\
\cmidrule(r){1-2}\cmidrule(l){3-3}
Group 1 & 4 & 0 & 4\\
Group 2 & 5 & 3 & 3\\
Group 3 & 2 & 1 & 2 \\
Total & 11 & 4 & 9 \\
\bottomrule[1.5pt]
\end{tabular}
\end{document}
And here what it looks like when I compile:

And this is a rough sketch of what it should look like (but in booktabs style):

Thank you for your help!
