隐藏框架中的文本但使用投影仪将其包含在讲义中

隐藏框架中的文本但使用投影仪将其包含在讲义中

我有一个用于教学的乳胶文件,我以两种方式编译它,要么作为讲义,要么使用投影仪作为幻灯片(即,一个文件的两个包装器)。

我知道我可以通过确保它不在框架环境中来在讲义中包含额外的文本:

Some text for the handout bla bla
\frame{ Some text and figures for both the slide and handout bla bla}
Some more text for the handout etc...

但有时我想在讲义中包含一些文本,这些文本可能非常适合幻灯片中间的文本流,所以我想知道是否有办法让“框架”环境忽略框架中间的大块文本?

例如

\frame{Figure XXX shows this and that etc etc
[SOME EXTRA TEXT IN THE HANDOUT I WANT TO LEAVE OFF THE SLIDE]
figure here}

答案1

\documentclass[%
   handout
]{beamer}


\begin{document}
\begin{frame}

Figure XXX shows this and that etc etc

\only<handout>{SOME EXTRA TEXT IN THE HANDOUT I WANT TO LEAVE OFF THE SLIDE}

figure here

\end{frame}
\end{document}

相关内容