无法生成包含单个图像的帧

无法生成包含单个图像的帧

我正在尝试生成一系列包含图像的帧。Overleaf 给出了以下错误,我无法解释。该命令在其他幻灯片中正常工作,我也在其中插入了文本

Missing number, treated as zero.

<to be read again> 
                   ]
l.145 \end{frame}

A number should have been here; I inserted `0'. 

这是我的代码,应该是可测试的

\documentclass[10pt,xcolor={table,dvipsnames},t]{beamer}
\usetheme{UCBerkeley}
\newtheorem{myth}{Theorem}[section]
\newtheorem{myprop}{Proposition}[section]
\usepackage{graphicx}
\usepackage{wrapfig}

\begin{document}

\begin{frame}
\begin{figure}
    \includegraphics{sperner_graph_1.PNG}[width=0.33\linewidth]
\end{figure}
\end{frame}

\begin{frame}
\begin{figure}
    \includegraphics{sperner_graph_2.PNG}[width=0.33\linewidth]
\end{figure}
\end{frame}
\begin{document}

\begin{frame}
\begin{figure}
    \includegraphics{sperner_graph_3.PNG}[width=0.33\linewidth]
\end{figure}
\end{frame}

\begin{frame}
\begin{figure}
    \includegraphics{sperner_graph_4.PNG}[width=0.33\linewidth]
\end{figure}
\end{frame}

\end{document}

答案1

您系统性地将可选参数放错了位置,在\newtheorem和中\includegraphics,即方括号中的参数。也就是说,

\newtheorem{myth}{Theorem}[section]

需要成为

\newtheorem{myth}[section]{Theorem}

 \includegraphics{sperner_graph_1.PNG}[width=0.33\linewidth]

必须

  \includegraphics[width=0.33\linewidth]{sperner_graph_1.PNG}

不幸的是,我没有伯克利主题,也没有您的图形,但可以使用以下作品:

\documentclass[10pt,xcolor={table,dvipsnames},t]{beamer}
%\usetheme{UCBerkeley}
\newtheorem{myth}[section]{Theorem}
\newtheorem{myprop}[section]{Proposition}

\begin{document}

\begin{frame}
\begin{figure}
    \includegraphics[width=0.33\linewidth]{example-image-a}
\end{figure}
\end{frame}

\begin{frame}
\begin{figure}
    \includegraphics[width=0.33\linewidth]{example-image-b}
\end{figure}
\end{frame}

\begin{frame}
\begin{figure}
    \includegraphics[width=0.33\linewidth]{example-image-c}
\end{figure}
\end{frame}

\begin{frame}
\begin{figure}
    \includegraphics[width=0.33\linewidth]{example-image-duck}
\end{figure}
\end{frame}

\end{document}

相关内容