根据设置数字下方和上方的边距对投影仪没有任何影响在 beamer 中,数字不是浮点数。这就是为什么如何改变图形/表格和文本之间的间距?在那里不起作用。
问题是删除所有边距。但是我想保留一些边距,只需对其进行适当修改即可。
有没有办法在 beamer 中做到这一点?
梅威瑟:
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{figure}[h]
\centering
\includegraphics[width=0.4\linewidth]{example-image-a}
\caption{Test}
\end{figure}
\begin{figure}[h]
\centering
\includegraphics[width=0.4\linewidth]{example-image-a}
\caption{Test}
\end{figure}
\end{frame}
\end{document}
答案1
Beamer 没有浮动。该figure
环境只是一个美化center
环境,因此可以像任何其他普通文本一样添加到页面中。
如果您想改变空间,您可以根据需要在图形之间调整一些垂直空间:
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{figure}
\centering
\includegraphics[width=0.4\linewidth]{example-image-a}
\caption{Test}
\end{figure}
\vskip-0.5cm
\begin{figure}
\centering
\includegraphics[width=0.4\linewidth]{example-image-a}
\caption{Test}
\end{figure}
\end{frame}
\end{document}
或者不只是使用figure
环境并随意放置图像:
\documentclass{beamer}
\usepackage{caption}
\begin{document}
\begin{frame}
\centering
\includegraphics[width=0.4\linewidth]{example-image-a}
\captionof{figure}{Test}
\includegraphics[width=0.4\linewidth]{example-image-a}
\captionof{figure}{Test}
\end{frame}
\end{document}