答案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}
其生产成果为: