Document ClassesBeamer Handout

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
Mikerada6
Posts: 42
Joined: Fri Oct 17, 2008 5:55 pm

Beamer Handout

Post by Mikerada6 »

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?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Beamer Handout

Post by frabjous »

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:

Code: Select all

Code, edit and compile here:
\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}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
That will generate something like this:
pres.png
pres.png (2.92 KiB) Viewed 2705 times
However, if you change the first line to \documentclass[handout]{beamer} and process the handout, instead you'll get:
handout.png
handout.png (1013 Bytes) Viewed 2705 times
But I don't know whether that suits your needs or not.
Post Reply