答案1
\\
有一个可选参数,表示添加的垂直空间。因此,您可以将示例重写为(值由您自己决定):
\begin{tabular}{*4l}\toprule
\textbf{R1} & 12 & 13 & 14 \\
\multirow{2}{*}{\textbf{R2-3}} & 22 & 23 & 24 \\[-3pt] % here is the change
& 32 & 33 & 34 \\
\textbf{R4} & 42 & 43 & 44 \\
\bottomrule
\end{tabular}
答案2
您也可以使用\addlinespace
booktabs 中的命令。 的值\defaultaddspace
可以在序言中调整。 我还稍微简化了第一列的代码:
\documentclass{article}
\usepackage{array, booktabs, multirow}
\begin{document}
\begin{tabular}{ > {\bfseries}l*3l}
\toprule
R1 & 12 & 13 & 14 \\
\addlinespace
\multirow{2}{*}{R2-3} & 22 & 23 & 24 \\
& 32 & 33 & 34 \\
\addlinespace
R4 & 42 & 43 & 44 \\
\bottomrule
\end{tabular}
\end{document}