tabular(x): 如果放入图片,如何获得顶部对齐?

tabular(x): 如果放入图片,如何获得顶部对齐?

我如何获得它

在此处输入图片描述

而不是这个

在此处输入图片描述

\documentclass[paper=a5]{scrreprt}
\usepackage{graphicx}
\usepackage{tabularx}

\begin{document}
\begin{tabularx}{\linewidth}{l X}
Laptop & \rule{2cm}{3cm} \\
Laptop & \includegraphics[width=2cm]{example-image} \\
\end{tabularx}
\end{document}

答案1

使用包valign中的选项adjustbox

\documentclass[paper=a5]{scrreprt}
\usepackage{graphicx}
\usepackage{tabularx}

\usepackage[export]{adjustbox}

\begin{document}
\begin{tabularx}{\linewidth}{l X}
Laptop & \rule{2cm}{3cm} \\
Laptop & \includegraphics[width=2cm,valign=t]{example-image} \\
\end{tabularx}
\end{document}

相关内容