评论包在 Beamer 中不起作用

评论包在 Beamer 中不起作用

我想comment在我的演示中使用该包。我读到它在某些非常复杂的环境中并不总是有效,但在这里它甚至在一个非常简单的例子中也失败了:

\documentclass{beamer}
\usepackage{comment}
\begin{document}
\begin{frame}
random text

\begin{comment}
hidden text
\end{comment}

\end{frame} 
\end{document}

我在这个网站上找不到这个问题的解决方案。是否存在不兼容性,还是我遗漏了什么?

答案1

环境comment的工作原理是将环境内容解释为逐字文本,然后将其丢弃。

因此,它需要像其他逐字文本一样beamer加载在框架内:fragile

\documentclass{beamer}
\usepackage{comment}
\begin{document}
\begin{frame}[fragile]     % fragile option
random text

\begin{comment}
hidden text
\end{comment}

\end{frame} 
\end{document}

这没有直接记录,但是由comment包的内部工作原理暗示,在文档中解释。

相关内容