我有以下文字:
\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}等,但它似乎没有任何作用。
答案 0 :(得分:2)
在第一列中的tabular
中设置堆积的项目,您可以将它们对准[b]
aseline:
\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}