我正在使用带有 theorems 库的 tcolorbox 包。当嵌入 \tcboxmath 中时,我遇到了 \pause 问题:它不会隐藏框架的后续部分,而是仅隐藏框中的后续部分,而显示框后的其余所有框架。
以下是 mwe。感谢您的帮助。
\documentclass{beamer}
\usepackage{tcolorbox}
\tcbuselibrary{theorems}
\begin{document}
\begin{frame}
If I put a pause in a tcboxmath frame like here: $\tcboxmath{\cos(x+\pi) = \pause -\cos(x)}$, this is what happens...
\end{frame}
\end{document}
答案1
我的问题并不局限于使用,tcboxmath
因为同样的事情发生在某些tcolorbox
环境中——尽管不是全部……这个问题实际上已经在这里被提出了tcolorbox 内的表格会破坏 beamer \pause?,并且似乎与 Tikz 的使用有关。解决方法是使用\only
而不是\pause
。