答案1
如果不知道你正在使用的课程,很难回答。使用标准article
课程,一切都运行良好:
\documentclass{article}
\usepackage{amsmath,amsthm}
\newtheorem{lemma}{Lemma}[section]
\begin{document}
\appendix
\section{Optimal Values of Weighted Averages}
Below, we will prove two lemmas [...]
\begin{lemma}
Suppose $a \geq b$ and $\lambda \in [0,1]$. Then $a \geq a\lambda +
b(1 - \lambda) \geq b$.
\end{lemma}
\end{document}
你遇到的问题似乎是对 的错误修改\appendix
。尝试这样写
\renewcommand{\appendix}{\par
\setcounter{section}{0}
\setcounter{subsection}{0}
\gdef\thesection{\Alph{section}}
}