如何使多列表格中的文本居中?

如何使多列表格中的文本居中?

我使用以下代码创建了一个多列表。我想将“THIS”居中。该怎么做?(我对 Latex 还不太熟悉,我从大学的论文模板中得到了这个,所以我不确定该怎么做)

\documentclass[a4paper]{memoir}

\begin{document}

\begin{table}[htp]
\centering
\caption[Table1]{How do I center 'THIS' above the midrule}
\begin{tabular}{@{}lllll@{}} \toprule
    \multicolumn{4}{c}{\textbf{THIS}} \\ \cmidrule(){2-5}
    \textbf{Object} 
    &
    \textbf{1} 
    &
    \textbf{2} 
    &
    \textbf{3} 
    &
    \textbf{4}
    \\
    \midrule
    Aa & 1 & 2 & 3 & 4
    \\[0.3ex]
    Bb & 1 & 2 & 3 & 4
    \\[0.3ex]
    \bottomrule
    \label{table:Table1}
\end{tabular}
\end{table}

\end{document}

在此处输入图片描述

相关内容