Possible Duplicate:
How to exclude certain slides from handout
OK. Here is the MWE that explains it all. When compiled as beamer (onscreen) option, the itemized items appear on every click. Are red colored and bold as they appear. But go back to normal view as soon as the slideshow advances. The final view of the slide is all lines except the 'permanently bold' line are normal.
But when compiled as a handout, the entire itemized list appears red colored and bold.
Is there a way in which handout view = last view of the frame on-screen can be achieved?
% this is for onscreen
\documentclass[xcolor=dvipsnames,english,professionalfonts,smaller]{beamer}
% \documentclass[xcolor=dvipsnames,english,professionalfonts,smaller,handout]{beamer}
\usetheme{Madrid}
\usecolortheme[named=Black]{structure}
\begin{document}
\begin{frame}[<+->]{Leave the competition behind}
\pause
Some Text that remains normal all through.
\pause
\begin{itemize}
\item \alert <.>{\textbf <.> {Want this bold and alert when just displayed}}
\item \alert <.>{\textbf <.> {But remains bold and alert in handout, too}}
\item \alert <.>{\textbf <.> {The question is, how to avoid this}}
\end{itemize}
\uncover <+-> {Some other text that too remains normal all through}
\uncover <+-> {\Large{\textbf{Want this bold permanently}}}
\uncover <+-> {See, earlier text remains bold}
\end{frame}
\end{document}
handout:0to the effects that you want to suppress. See http://tex.stackexchange.com/q/35027/86 for another example (for more, search forhandout:0on this site). – Andrew Stacey Oct 09 '12 at 09:13\alert<.>{something}and the<.>specification says "On the current slide, do this". In handout mode, that gets activated. So you need some way to specify "Don't take this action on handouts" and that's thehandout:0overlay specification. – Andrew Stacey Oct 09 '12 at 13:20handout:0on certain actions. So\alertor\textbf, but not on\uncover. – Andrew Stacey Oct 09 '12 at 13:49