我刚刚读过
解释如何才能\begin{comment} etc. \end{comment}
使其工作,它需要进入“脆弱”框架。但如果我想要一个超出框架的评论怎么办?是否有一些针对评论包的解决方法,或者另一个具有相同效果的包,我们可以说,对于它的使用位置更加宽容?
答案1
This is Text
\iffalse
This is Text, too, but not printed
\fi
Another text
答案2
我是否遗漏了什么,或者您可以简单地执行以下操作:
\documentclass{beamer}
\usepackage{comment}
\begin{document}
\begin{frame}
random text
\end{frame}
\begin{comment}
hidden text
\end{comment}
\end{document}
(与 TeXlive 2015、2016 和 2017 的 pdflatex 配合使用时没有错误,我还没有测试过其他引擎。)
或者,您可以使用ignorenonframetext
beamer 选项:
\documentclass[ignorenonframetext]{beamer}
\begin{document}
\begin{frame}
random text
\end{frame}
hidden text
\end{document}