子表的垂直对齐

子表的垂直对齐

我想对子表进行垂直对齐。以下是我拥有的表的一个最小示例。

\documentclass{article}
\usepackage{multirow}
\usepackage{subcaption}

\begin{document}
\begin{table}[]
    \centering
    \caption{Test1}
    \begin{subtable}{.3\linewidth}
        \centering
        \caption{Subtable 1}
        \begin{tabular}{|l|l|c|}
            \hline
            \multicolumn{2}{|c|}{Col 1} & Col 2 \\ \hline
            \multicolumn{2}{|l|}{Cell 1} & 1 \\ \hline
        \end{tabular}
    \end{subtable}%
    \begin{subtable}{.3\linewidth}
        \caption{Subtable 2}
        \centering
        \begin{tabular}{|l|l|c|}
            \hline
            \multicolumn{2}{|c|}{Col 1} & Col 2 \\ \hline
            \multicolumn{2}{|l|}{Cell 1} & 1 \\ \hline
            \multicolumn{2}{|l|}{Cell 2} & 2 \\ \hline
        \end{tabular}
    \end{subtable}% 
\end{table}
\end{document}

这将生成以下类型的表

未对齐的表格

如果我想得到这样的表格该怎么办(在paint中编辑):

对齐表格

答案1

使用环境的可选参数subtable

\begin{subtable}[t]{.3\linewidth}

答案2

为了补充@Bernard 的回答,我还必须设置[吨]在里面表格元素。

\begin{subtable}[t]{.48\linewidth}

\begin{tabular}[t]{lrl}

相关内容