操作系统:win10;
安装的发行版: texlive2021;
编辑器:texstudio;
使用的编辑命令: pdflatex;
\documentclass{beamer}
\mode<presentation> {
\setbeamercovered{transparent}
\useoutertheme{infolines}
\usetheme{CambridgeUS}
\usecolortheme{dolphin}
}
\newtheorem{lema}{Lemma}[section]
\begin{document}
\begin{frame}
Suppose
\begin{lema}\label{le3}
Suppose
\end{lema}
\end{frame}
\end{document}
\documentclass[notheorems]{beamer}
% 上面加一个 notheorems
\mode<presentation> {
\setbeamercovered{transparent}
\useoutertheme{infolines}
\usetheme{CambridgeUS}
\usecolortheme{dolphin}
}
% 下面加 style
\theoremstyle{definition}
\newtheorem{lema}{Lemma}[section]
\begin{document}
\begin{frame}
Suppose
\begin{lema}\label{le3}
Suppose
\end{lema}
\end{frame}
\end{document}