在相同的垂直位置但在右侧、中间和左侧显示图像?

在相同的垂直位置但在右侧、中间和左侧显示图像?

我想要在文档顶部放置三张水平大小不同的图像,但每张图像的对齐方式都不同:

__________________________________________________________________________
|top left image|           |top center image|            |top right image|
--------------------------------------------------------------------------

我使用\par\raisebox\hfill获取两侧的图像,但在顶部中心添加第三张图像似乎不像使用另一个 那样简单\hfill。此外,adjustbox 包无法实现预期结果,因为它会修改垂直对齐,这也是同样的问题\hfil。我怎样才能将所有图像保持在垂直边界内,但每张图像的水平对齐方式都不同。

答案1

在此处输入图片描述

\documentclass{article}

\usepackage{graphicx}

\begin{document}

\hrule

\bigskip

\noindent
\includegraphics[width=2cm]{example-image-a}\hfill
\includegraphics[width=2cm]{example-image}\hfill
\includegraphics[width=2cm]{example-image-b}

\bigskip

\hrule

\bigskip

\noindent
\makebox[0pt][l]{\includegraphics[width=3cm]{example-image-a}}\hfill
\includegraphics[width=2cm]{example-image}\hfill
\makebox[0pt][r]{\includegraphics[width=1cm]{example-image-b}}


\bigskip

\hrule

\end{document}

相关内容