LaTeX表格单元格内容垂直对齐问题

发布于 2024-09-05 02:40:58 字数 168 浏览 3 评论 0原文

我想对齐下面创建的表格右侧单元格中的文本,以垂直对齐到顶部。怎么办呢?

\begin{tabular}{l|p{3cm}}
    \rule{2cm}{5cm} & Top align content ? \\
\end{tabular}

问候

I'd like to align text in right cell of table created below, to be vertically align to the top. How to do that ?

\begin{tabular}{l|p{3cm}}
    \rule{2cm}{5cm} & Top align content ? \\
\end{tabular}

Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

剪不断理还乱 2024-09-12 02:40:58

回答第二个问题
您应该使第一个单元格中的表格顶部对齐。

如果你写

\begin{tabular}{|l|}  
    \hline text \\ text \\ text\\ text \\ \hline 
\end{tabular}

,你会得到一个居中对齐的表格。

\begin{tabular}{p{1cm}|p{3cm}}  
    \vtop{\vskip 0pt \vskip -\ht\strutbox 
    \begin{tabular}{|l|}  
        \hline text \\ text \\ text\\ text \\ \hline 
    \end{tabular}\vskip -\dp\strutbox }%
    & Top align content ? \\  
\end{tabular} 

Answer to second qeustion
You should make your table in the first cell to be top aligned.

If you write

\begin{tabular}{|l|}  
    \hline text \\ text \\ text\\ text \\ \hline 
\end{tabular}

then you get a center aligned table.

Write

\begin{tabular}{p{1cm}|p{3cm}}  
    \vtop{\vskip 0pt \vskip -\ht\strutbox 
    \begin{tabular}{|l|}  
        \hline text \\ text \\ text\\ text \\ \hline 
    \end{tabular}\vskip -\dp\strutbox }%
    & Top align content ? \\  
\end{tabular} 
三生池水覆流年 2024-09-12 02:40:58
\begin{tabular}{l|p{3cm}} 
    \vrule width 2cm height \ht\strutbox depth 5cm & Top align content ! \\ 
\end{tabular} 
\begin{tabular}{l|p{3cm}} 
    \vrule width 2cm height \ht\strutbox depth 5cm & Top align content ! \\ 
\end{tabular} 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文