无需校样即可编译 PDF

无需校样即可编译 PDF

我正在撰写学位论文,我需要对其进行综合:基本上我想要做的是复制一份而不提供证明......有没有办法自动排除它们,而不必手动删除它们?

答案1

您可以使用comment包装并在序言中说,

\excludecomment{proof}

完整示例:

\documentclass{article}
\usepackage{amsthm}
\usepackage{comment}

\excludecomment{proof}

\begin{document}

Text before the proof
\begin{proof}
Text for the proof
\end{proof}
Text after the proof

\end{document}

在此处输入图片描述

要再次获得证明,只需注释掉该\excludecomment{proof}行。

相关内容