描述环境中的表格环境的垂直对齐

描述环境中的表格环境的垂直对齐

我在描述环境中使用表格环境,例如:

\item[This is some description]
  \begin{tabular}{ll}
   apple:       &  200g \\
   pear:        &  206g \\
   banana:      &  114g \\
   orange:      &  150g \\
   grapefruit:  &  350g 
 \end{tabular}

 \lipsum[1]

但是,表格与描述标签没有垂直对齐(见图)。

如何实现这一点?

在此处输入图片描述

答案1

表格的标准格式是

\begin{tabular}[pos]{table spec}

其中[pos]是基线位置的选项:[t]顶部、[b]底部和c垂直中心,这是默认值。有关详细信息,请参阅LaTeX/表格

就您而言,MWE 是:

\documentclass{article}
\usepackage{lipsum}

\begin{document}
    \begin{description}
\item[This is some description]
  \begin{tabular}[t]{ll}
   apple:       &  200g \\
   pear:        &  206g \\
   banana:      &  114g \\
   orange:      &  150g \\
   grapefruit:  &  350g
 \end{tabular}

 \lipsum[1]
     \end{description}
\end{document}

其生产成果为:

在此处输入图片描述

相关内容