如何使某一列单元格的内容固定在顶部?

如何使某一列单元格的内容固定在顶部?
\documentclass{article}

\usepackage{lipsum, array}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}

\begin{document}
\begin{tabular}{lL{.5\textwidth}}
    This should stick to the top. & \lipsum[1]
\end{tabular}
\end{document}

表格图片乳胶

我认为 MWE 是不言自明的。如何让内容保持在顶部?

答案1

标准p{..}列类型将与文本的第一行对齐。使用它来代替列类型,它是垂直中心包m{..}的扩展(array中间)对齐。

相关内容