如何并排放置两个不同大小的表格

如何并排放置两个不同大小的表格

询问了类似的问题,但它们都是针对相同大小的桌子,当有两个桌子时,当其中一个较短时,我正在寻找什么,如何放置一个与高桌子底部相同的短桌子?

我在绘画中创建了一个图形来展示我正在尝试做的事情。编辑:示例代码

数字

\begin{table}[!htb]
    \caption{Global caption}
    \begin{minipage}{.5\linewidth}
      \centering
\begin{tabular}{rrr}
  \hline
 \# knots & AIC & BIC \\ 
  \hline
  1 & 322625.83 & 322868.78 \\ 
  2 & 321432.75 & 321666.71 \\ 
  3 & 321761.76 & 322004.71 \\ 
  4 & 320820.95 & 321072.90 \\ 
  5 & 320912.06 & 321173.01 \\ 
  6 & 320423.63 & 320693.58 \\ 
  7 & 320526.15 & 320805.09 \\ 
  8 & 320310.71 & 320598.65 \\ 
  9 & 320383.00 & 320679.94 \\ 
  10 & 320247.17 & 320553.11 \\ 
  11 & 320281.47 & 320596.41 \\ 
  12 & 320235.23 & 320559.17 \\ 
  13 & 320207.29 & 320540.22 \\ 
  14 & 320235.88 & 320577.82 \\ 
  15 & 320120.00 & 320470.93 \\ 
  16 & 320208.19 & 320568.12 \\ 
  17 & 319964.00 & 320332.93 \\ 
  18 & 320037.99 & 320415.92 \\ 
  19 & 320090.17 & 320477.09 \\ 
  20 & 319771.52 & 320167.44 \\ 
  21 & 319793.34 & 320198.26 \\ 
  \textbf{22} & \textbf{319718.50} & \textbf{320132.42} \\ 
  23 & 319819.55 & 320242.46 \\ 
   \hline
\end{tabular}
\caption{\label{AICbsX} (a)}
    \end{minipage}%
    \begin{minipage}{.5\linewidth}
      \centering
\begin{tabular}{rrr}
  \hline
 \# knots & AIC & BIC \\ 
  \hline
1 & 320699.70 & 321095.62 \\ 
  2 & 320466.72 & 320853.65 \\ 
  3 & 319899.46 & 320295.38 \\ 
  4 & 320113.59 & 320518.51 \\ 
  5 & 319718.50 & 320132.42 \\ 
  6 & 319802.50 & 320225.42 \\ 
  7 & 319732.82 & 320164.74 \\ 
   \hline
\end{tabular}
\caption{\label{AICbsY} (b)}
    \end{minipage} 
\end{table}

答案1

由于您要将标题放在两个表格下方,因此您不妨使用 subcaption 包中的 subtable。subtable 的 [b] 对齐最后一个基线,这实际上是标题的第一个基线。表格的 [b] 是为了防止您决定丢失标题。

如果您不使用 twocolumn,只需将 table* 替换为 table。

\documentclass[twocolumn]{article}
\usepackage{subcaption}
\begin{document}
\begin{table*}[t]
    \caption{Global caption}
\begin{subtable}[b]{.5\linewidth}
      \centering
\begin{tabular}[b]{rrr}
  \hline
 \# knots & AIC & BIC \\ 
  \hline
  1 & 322625.83 & 322868.78 \\ 
  2 & 321432.75 & 321666.71 \\ 
  3 & 321761.76 & 322004.71 \\ 
  4 & 320820.95 & 321072.90 \\ 
  5 & 320912.06 & 321173.01 \\ 
  6 & 320423.63 & 320693.58 \\ 
  7 & 320526.15 & 320805.09 \\ 
  8 & 320310.71 & 320598.65 \\ 
  9 & 320383.00 & 320679.94 \\ 
  10 & 320247.17 & 320553.11 \\ 
  11 & 320281.47 & 320596.41 \\ 
  12 & 320235.23 & 320559.17 \\ 
  13 & 320207.29 & 320540.22 \\ 
  14 & 320235.88 & 320577.82 \\ 
  15 & 320120.00 & 320470.93 \\ 
  16 & 320208.19 & 320568.12 \\ 
  17 & 319964.00 & 320332.93 \\ 
  18 & 320037.99 & 320415.92 \\ 
  19 & 320090.17 & 320477.09 \\ 
  20 & 319771.52 & 320167.44 \\ 
  21 & 319793.34 & 320198.26 \\ 
  \textbf{22} & \textbf{319718.50} & \textbf{320132.42} \\ 
  23 & 319819.55 & 320242.46 \\ 
   \hline
\end{tabular}
\caption{}\label{AICbsX}
\end{subtable}%
\begin{subtable}[b]{.5\linewidth}
      \centering
\begin{tabular}[b]{rrr}
  \hline
 \# knots & AIC & BIC \\ 
  \hline
1 & 320699.70 & 321095.62 \\ 
  2 & 320466.72 & 320853.65 \\ 
  3 & 319899.46 & 320295.38 \\ 
  4 & 320113.59 & 320518.51 \\ 
  5 & 319718.50 & 320132.42 \\ 
  6 & 319802.50 & 320225.42 \\ 
  7 & 319732.82 & 320164.74 \\ 
   \hline
\end{tabular}
\caption{}\label{AICbsY}
\end{subtable} 
\end{table*}

\end{document}

相关内容