答案1
使用minipage
s:
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[!h]
\begin{minipage}{.45\textwidth}
\fbox{\includegraphics[width=\textwidth,height=3cm]{example-image-a}}
\vspace*{1.5cm}
\fbox{\includegraphics[width=\textwidth,height=3cm]{example-image-b}}
\end{minipage}
\hfill
\begin{minipage}{.45\textwidth}
\fbox{\includegraphics[width=\textwidth,height=2cm]{example-image-a}}
\vspace*{0.5cm}
\fbox{\includegraphics[width=\textwidth,height=2cm]{example-image-b}}
\vspace*{0.5cm}
\fbox{\includegraphics[width=\textwidth,height=2cm]{example-image-c}}
\end{minipage}
\end{figure}
\end{document}
@JohnKormylo 有个好主意,使用特定高度的迷你页面:
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[!h]
\begin{minipage}[c][8cm][c]{.45\textwidth}
\fbox{\includegraphics[width=\textwidth,height=3cm]{example-image-a}}
\vfill
\fbox{\includegraphics[width=\textwidth,height=3cm]{example-image-b}}
\end{minipage}
\hfill
\begin{minipage}[c][8cm][c]{.45\textwidth}
\fbox{\includegraphics[width=\textwidth,height=2cm]{example-image-a}}
\vfill
\fbox{\includegraphics[width=\textwidth,height=2cm]{example-image-b}}
\vfill
\fbox{\includegraphics[width=\textwidth,height=2cm]{example-image-c}}
\end{minipage}
\end{figure}
\end{document}