答案1
例如,您可以使用\parbox
或minipage
将两个带有多幅图像的框并排对齐。有关命令和环境的更多信息,请参阅 LaTeX 介绍。
\documentclass{article}
\usepackage{mwe}
\begin{document}
\begin{minipage}{.47\textwidth}
\includegraphics[width=\linewidth]{example-image-a}
% \smallskip % if you want some vertical space
\includegraphics[width=\linewidth]{example-image-a}
% \smallskip % if you want some vertical space
\includegraphics[width=\linewidth]{example-image-a}
\end{minipage}\hfill
\begin{minipage}{.47\textwidth}
\includegraphics[width=\linewidth]{example-image-a}
% \smallskip % if you want some vertical space
\includegraphics[width=\linewidth]{example-image-a}
\end{minipage}
\end{document}
或者删除%
之前的\smallskip
:
还有一些有用的包,例如 adjustbox
用于扩展框对齐或subcaption
适合sub-figures
在内部figure
环境中使用。