对齐两个表格的底部

对齐两个表格的底部

我需要对齐这两个表格的底部,并且我需要在第二个表格的每一侧添加一个括号。我该怎么做?

\begin{figure}[]
 \centering
  \subfloat[]{ 
  \begin{tabular}{cc}
  \hline
  0 & 1\\
  \hline
  2 & 1\\
  3 & 1\\
  4 & 2\\
  5 & 3\\
  4 & 8\\
  \hline
  \end{tabular}
  }  
  \subfloat[]{
  \begin{tabular}{cc}
  \hline
  1 & 2\\
  \hline
  3 & 7\\
  4 & 5\\
  \hline
  \end{tabular}
  }
\end{figure}

任何帮助表示感谢,

特德。

答案1

我不知道你指的是哪种括号。这是一个带圆括号的示例,也可以更改为其他括号。

在此处输入图片描述

\documentclass{scrartcl}
\usepackage{subfig}
\begin{document}

\begin{figure}
 \centering
  \subfloat[]{% 
  \begin{tabular}[b]{cc}
  \hline
  0 & 1\\
  \hline
  2 & 1\\
  3 & 1\\
  4 & 2\\
  5 & 3\\
  4 & 8\\
  \hline
  \end{tabular}%
  }  \qquad
  \raisebox{1.2\normalbaselineskip}{$\left\{\rule{0pt}{2.1\normalbaselineskip}\right.$}
  \subfloat[]{%
  \begin{tabular}[b]{cc} \hline
  1 & 2\\ \hline
  3 & 7\\
  4 & 5\\\hline
  \end{tabular}%
  }~
  \raisebox{1.2\normalbaselineskip}{$\left\}\rule{0pt}{2.1\normalbaselineskip}\right.$}
\end{figure}

\end{document} 

答案2

为了对齐,使用

\begin{tabular}[b]{cc}
...

代替

\begin{tabular}{cc}

对于大括号,使用delarray包装。

在此处输入图片描述

完整代码:

\documentclass{article}
\usepackage{subfig}
\usepackage{delarray}

\begin{document}

\begin{figure}
 \centering
  \subfloat[]{%
  \begin{tabular}[b]{cc}
  \hline
  0 & 1\\
  \hline
  2 & 1\\
  3 & 1\\
  4 & 2\\
  5 & 3\\
  4 & 8\\
  \hline
  \end{tabular}}\qquad
  \subfloat[]{%
  \begin{tabular}[b]\{{cc}\}
  \hline
  1 & 2\\
  \hline
  3 & 7\\
  4 & 5\\
  \hline
  \end{tabular}}
\end{figure}

\end{document}

相关内容