我怎样才能在 Beamer 中为定理添加数字,如定理 0.1 或 1.1?当我尝试时,我只得到了定理 1,而不是定理 0.1,请帮助我。
答案1
这显示了如何theorem
在内编号section
。
\documentclass{beamer}
\setbeamertemplate{theorems}[numbered]
\counterwithin{theorem}{section}
\begin{document}
\section{title}
\begin{frame}
\begin{theorem}
content
\end{theorem}
\begin{theorem}
content
\end{theorem}
\end{frame}
\section{title}
\begin{frame}
\begin{theorem}
content
\end{theorem}
\begin{theorem}
content
\end{theorem}
\end{frame}
\end{document}