## 编译环境 操作系统 * [x] Windows 7/8/10 * [ ] macOS * [ ] Linux `若需勾选,请把[ ]改成[x]` Tex发行版 * [ ] TexLive `年份` * [x] MikTeX `版本号` * [ ] CTeX `若需勾选,请把[ ]改成[x]` ## 我的问题 在此输入你遇到的问题... 求助:使用LaTex制作PPT时,插入图片报错“Cannot determine size of graphic in 1.png (no BoundingBox).”我使用的代码如下: \documentclass{beamer} \usetheme{Madrid} \title{Access to finance} \subtitle{Journal of Economic Geography} \author{by Neil Lee and Davide Luca} \centering \date{5/27,2020} \begin{document} \maketitle \begin{frame}{Results} \includegraphics[height=8cm]{2.png} \centering \end{frame} \end{document} 一个月以前我用相同的命令完全没有报错,今天再次使用这段命令时出现了这个问题,请教大家这是什么原因呢?应该如何解决。 PS:我自己搜索的结果是说这是因为无法解析png格式的图片,需要用如下代码替换: \documentclass{article} \usepackage{graphicx} \begin{document} \begin{figure} \centering \includegraphics[width=0.8\textwidth,natwidth=610,natheight=642]{tiger.pdf} \end{figure} \end{document} 但是这个命令依然会报错“Overfull \hbox (125.24805pt too wide) has occurred while \output is active”

1 回答1

0
首先,在LaTeX里,这不叫PPT,叫Beamer做的Slides. 其次,由于未提供图片,无法准确确定原因。 另外,标题页,不是这么做的,以下是代码,未发现问题: ```tex \documentclass{beamer} \usetheme{Madrid} \title{Access to finance} \subtitle{Journal of Economic Geography} \author{by Neil Lee and Davide Luca} %\centering% 没有必要 \date{5/27,2020} \begin{document} %标题页 \begin{frame}[plain,noframenumbering] % plain选项移除标题页的边栏和页眉 \titlepage \end{frame} % \maketitle % 错误代码 % \begin{frame}{Results} \centering %应该在前面 \includegraphics[height=8cm]{example-image}%测试图像 %\centering \end{frame} \end{document} ```

你的回答

请登录后回答

你的回答将会帮助更多人,请务必认真回答问题。