Document Classes ⇒ Beamer Handout
Beamer Handout
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Beamer Handout
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.