使用回忆录的表格

使用回忆录的表格

我需要帮助来使用 创建“表格的表格” memoir。我想使用booktabs中嵌入的功能memoir。我试图排版的是类似子浮点数的东西,在同一页内有两个 2x2 矩阵(小)表格,并且表格有一个主标题,每个表格都有一个标题。我能够通过在\newsubfloat{figure}图形环境中使用然后使用\subbottom命令添加表格来实现它。但是,问题是环境不是表格环境,因此标签和标题不是指表格。我该怎么办?

答案1

\documentclass{memoir}
\newsubfloat{table}

\begin{document}

\begin{table}
\centering
\subbottom[Table 1]{%
\begin{tabular}{ll}
\toprule
text & text \\
text & text \\
\bottomrule
\end{tabular}
\label{subt:1}%
}\hfill
\subbottom[Table 2]{%
\begin{tabular}{ll}
\toprule
text & text \\
text & text \\
\bottomrule
\end{tabular}%
\label{subt:2}}\\
\subbottom[Table 3]{%
\begin{tabular}{ll}
\toprule
text & text \\
text & text \\
\bottomrule
\end{tabular}
\label{subt:3}%
}\hfill
\subbottom[Table 4]{%
\begin{tabular}{ll}
\toprule
text & text \\
text & text \\
\bottomrule
\end{tabular}%
\label{subt:4}}
\caption{Table with four subtables} 
\label{fig:foursubtab}
\end{table}

\end{document}

在此处输入图片描述

相关内容