我想使用以下答案将第一张图片添加到我的乳胶演示文稿中投影机上的图像不显示。
图像和 .tex 文档位于同一文件夹中。文件夹名称中的单词之间没有空格。我得到:
使用
\documentclass{beamer}
\usepackage{lmodern}
\mode<presentation>
\usetheme{Warsaw}
\begin{document}
\begin{frame}\frametitle{Test}
\includegraphics[width=5cm]{presentation/image.png}
\end{frame}
\end{document}
我也尝试过{image.png}
和{image}
。
非常感谢您的帮助!
编辑:
我的文件夹包含两张图片:image.jpeg
和image.png
。
\documentclass{beamer}
\begin{document}
\begin{frame}\frametitle{Test}
\includegraphics[width=5cm]{image.png}
\end{frame}
\end{document}