如何在创建 pdf 时忽略定理?

如何在创建 pdf 时忽略定理?

我正在写一份包含练习及其解决方案的文档。为了很好地区分它们,我使用了 amsthm 包和以下代码:

\newtheoremstyle{dotlessP}{}{}{\color{black}}{}{\color{red}\bfseries}{}{ }{}   
\newtheoremstyle{dotlessPP}{}{}{\color{black}}{}{\color{blue}\bfseries}{}{ }{}   
\theoremstyle{dotlessPP} \newtheorem{auf}{Aufgabe}[subsection]  
\theoremstyle{dotlessP} \newtheorem{loes}{Loesung}[subsection]
 
 \begin{loes}  
  Some Solutions
 \end{loes}

这确实很有效。但是,我现在想创建一个不包含练习答案的 PDF。这意味着,\begin{loes} 和 \end{loes} 之间的所有内容都应该被忽略。有没有简单的方法可以实现这一点?

多谢!

相关内容