你好,我想在两张图片之间添加空格,如下所示:
\begin{figure}
\includegraphics[width=\textwidth]{test1.png}
\vspace{2cm}
\includegraphics[width=\textwidth]{test2.png}
\caption{ActionButton}
\label{ActionButton}
\end{figure}
但是它在 test2.png 和标题之间添加了空间......
我该如何解决?
答案1
我希望这是你想要的
代码
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\begin{center}
\includegraphics[width=0.35\textwidth]{albt.png}
\vspace{1cm}
\includegraphics[width=0.35\textwidth]{altman.png}
\vspace{0.1cm}
\caption{ActionButton}
\label{ActionButton}
\end{center}
\end{figure}
\end{document}
答案2
如果两张图片彼此相邻,则使用水平空间而不是垂直空间
\hspace{2 cm}
答案3
您也可以在第一个 includegraphics 之后添加一个 \\:
\begin{figure}
\includegraphics[width=\textwidth]{test1.png}\\
\vspace{2cm}
\includegraphics[width=\textwidth]{test2.png}
\caption{ActionButton}
\label{ActionButton}
\end{figure}