我正在尝试演示
\documentclass[11pt] {beamer}
\begin{document}
\begin{frame}
\begin{figure}[h!]
I have a sentence here \footnote{\tiny I have a reference here \vspace{1.5ex}}
\centering
\includegraphics[width=1\textwidth, height=0.5\textheight]{photo1.png}
\end{figure}
\end{frame}
\end{document}
我的句子位于图形上方。我想知道是否可以在图形和句子之间留出一个空格
答案1
\vspace*{...}
您可以手动在句子和图像之间插入。
与问题无关,但浮动说明符(例如[h!]
)在没有浮动机制且图形默认居中的文档类中没有意义,因此\centering
是多余的。
另外,通常最好指定图像的宽度或高度,但不要同时指定两者,因为这很可能会扰乱纵横比。如果您确实必须同时指定两者,请添加选项keepaspectratio
。
\documentclass[11pt]{beamer}
\begin{document}
\begin{frame}
\begin{figure}
I have a sentence here \footnote{\tiny I have a reference here \vspace{1.5ex}}
\vspace*{1cm}
%\centering
\includegraphics[width=1\textwidth, height=0.5\textheight, keepaspectratio]{example-image}
\end{figure}
\end{frame}
\end{document}