I have created the code below to highlight the parts where something need to be completed by the students. It works, but
- instead of frames there should be a light colored background
- this background would appear just before the part will be uncovered to know where is the next problem to solve
- the beamerarticle form should not have the frames (background color is all right)
My code:
\documentclass{beamer}
\newcommand{\frameuncover}[2]{\framebox{\uncover<#1>{#2}}}
\begin{document}
\begin{frame}[fragile]
{Hamming distance}
The Hamming distance of the code below is \frameuncover{5-}{4}.
\begin{verbatim}
a 01010101
b 00001111
c 00110010
\end{verbatim}
d(ab) = \frameuncover{2-}{4}
d(bc) = \frameuncover{3-}{5}
d(ac) = \frameuncover{4-}{5}
\end{frame}
\end{document}
