Latex 将单元格文本与单元格底部对齐

Latex 将单元格文本与单元格底部对齐,latex,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

我有以下案文:

\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}
它包含两列。左栏包含3个单元格,右栏仅包含1个带图像的单元格

我希望左栏的文本与右栏的图像对齐


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

将第一列中的堆叠项目设置为其自己的
表格
,您可以将其与
[b]
行对齐:

\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}