将单元格文本对齐到单元格的底部

时间:2018-07-17 18:11:29

标签: latex

我有以下文字:

\begin{table}[H]
\begin{tabular}{ll}
Text 1      & \multirow{3}{*}{\hspace{8.5cm}\includegraphics[scale=1]{"Images/picture".pdf}} \\
Text 2 &                        \\
Text 3                   &                       
\end{tabular}
\end{table}

它包含2列。左列包含3个单元格,右列仅包含1个包含图像的单元格。

我希望左列的文本与底部的底部对齐。

我已经尝试过使用数组包中的b {5cm}等,但它似乎没有任何作用。

1 个答案:

答案 0 :(得分:2)

在第一列中的tabular中设置堆积的项目,您可以将它们对准[b] aseline:

enter image description here

\documentclass{article}

\usepackage{graphicx}

\begin{document}

\begin{table}
  \begin{tabular}{ @{} l @{} l }
    \begin{tabular}[b]{ l }
      Text 1 \\
      Text 2 \\
      Text 3
    \end{tabular} &
    \includegraphics[height=5\normalbaselineskip]{example-image}
  \end{tabular}
\end{table}

\end{document}