Document Classes ⇒ Beamer Handout
Beamer Handout
I would like to create a handout of my beamer document for my class. However I would like it to have keywords blanked out forcing the students to fill it in for themselves. Is it possible to do such?
NEW: TikZ book now 40% off at Amazon.com for a short time.
Beamer Handout
It would help to have more specific information about what you want to do, including a minimal working example. At the moment, the best I could suggest would be to define the same command differently for the different modes. That, is consider this code:
That will generate something like this:
However, if you change the first line to \documentclass[handout]{beamer} and process the handout, instead you'll get:
But I don't know whether that suits your needs or not.
Code: Select all
\documentclass{beamer}
\newcommand{\mykeyword}[1]{\alert{#1}}
\mode<handout> {
\renewcommand{\mykeyword}[1]{\underline{\phantom{#1}}}
}
\begin{document}
\begin{frame}
The capital of Russia is \mykeyword{Moscow}.
\end{frame}
\end{document}
However, if you change the first line to \documentclass[handout]{beamer} and process the handout, instead you'll get:
But I don't know whether that suits your needs or not.