我想减少图形之间的垂直空间。它看起来像这样:
\begin{figure}[H]
\centering
\includegraphics[height=3.in,width=6in]{pics3/LCCohResEW.pdf}
\includegraphics[height=3.in,width=6in]{pics3/CBDCohResEW.pdf}
\includegraphics[height=2.05in,width=2.98in]{pics3/LCYearResEW.pdf}
\includegraphics[height=2.05in,width=2.98in]{pics3/CBDYearResEW.pdf}
\includegraphics[height=2.05in,width=2.98in]{pics3/LCAgeResEW.pdf}
\includegraphics[height=2.05in,width=2.98in]{pics3/CBDAgeResEW.pdf}
\caption{}
\label{}
\end{figure}
计划是使用 4 个带有图形的面板,我想减少它们之间的垂直空间。
我尝试添加\vspace{-something}
,但似乎没有按预期工作。
任何帮助均感激不尽。
答案1
这不是一个答案,只是一个实际的 MWE。
\documentclass[legalpaper]{article}
\usepackage[margin=1in]{geometry}
\usepackage{graphics}
\usepackage{mwe}
\begin{document}
\begin{figure}
\centering
\includegraphics[height=3.in,width=6in]{example-image-a}\\
\includegraphics[height=3.in,width=6in]{example-image-b}\\
\includegraphics[height=2.05in,width=2.98in]{example-image-c} %
\includegraphics[height=2.05in,width=2.98in]{example-image-a}\\
\includegraphics[height=2.05in,width=2.98in]{example-image-b} %
\includegraphics[height=2.05in,width=2.98in]{example-image-c}
\caption{caption}
\label{label}
\end{figure}
\end{document}