答案1
这里我展示了很多相同的“图像”,给出为\img
。为了使它们不同,\img
用一些生成所需图像的代码替换每个实例,如我在 3 个案例中所示。
\documentclass{article}
\usepackage{stackengine,scalerel,xcolor,graphicx}
\def\img{\textcolor{blue!100!green!50}{\rule{2.5cm}{2cm}}}
\newlength\gap
\gap=2ex\relax
\newcommand\hgap[1][1]{\hspace{#1\gap}}
\def\imgA{\includegraphics[width=2.5cm,height=2cm]{example-image-A}}
\def\imgB{\includegraphics[width=2.5cm,height=2cm]{example-image-B}}
\def\imgC{\includegraphics[width=2.5cm,height=2cm]{example-image-C}}
\begin{document}
\stackon[2\gap]{\imgA\hgap\img\hgap\scalerel*{\stackon[.5\gap]{\imgC}{\img}}{\img}}%
{\img\hgap[.5]\imgB}
\end{document}