我想有条件地注释掉我的证明。我尝试使用以下方法,但没有成功。
\usepackage{comment}
没有用,因为我使用的\documentclass{elegantbook}
它们不兼容。
\newif\ifanswers
%\answerstrue % comment out to hide answers
\answersfalse % comment out to show answers
\documentclass{amsart}
\newenvironment{sol}{\ifanswers\begin{proof}}{\end{proof}\fi}
\begin{document}
\begin{sol}
abc
\end{sol}
\end{document}