Is it possible to have \setbeamercovered{transparent=0}
for the normal presentation, but to have \setbeamercovered{transparent=25}
in the notes page?
If so, how?
I tried adding \setbeamercovered{transparent=25}
within \setbeamertemplate{note page}
, and I have also tried adding \AtBeginNote{\setbeamercovered{transparent=25}}
at various location, but that neither of those approaches appear to work.
\documentclass{beamer}
\setbeameroption{show notes on second screen=right}
\usepackage[utf8]{inputenc}
\setbeamercovered{transparent=0}
\AtBeginNote{\setbeamercovered{transparent=25}}
\setbeamertemplate{note page}{
\setbeamercovered{transparent=25}
\begin{columns}[T]
\begin{column}{0.7\paperwidth}
\insertslideintonotes{0.7}
\end{column}
\vrule
\colorbox{blue!7}{%
\begin{column}{0.3\paperwidth}~\\
\insertnote~\\
\end{column}
}
\end{columns}
}
\begin{document}
\AtBeginNote{\setbeamercovered{transparent=25}}
\begin{frame}
\AtBeginNote{\setbeamercovered{transparent=25}}
\begin{itemize}
\item Test 1
\item<2-> Test 2
\item<3-> Test 3
\end{itemize}
\end{frame}
\end{document}
\AtBeginNote{\setbeamercovered{transparent=25}}
works for me.\documentclass{...}
and ending with\end{document}
.\insertslideintonotes
only “copies” over the frame without rendering it again. You won't be able to have different transparencies here.\againframe
does something similar. Let's wait for @samcarter or @josephwright who are the current maintainers and active here. The current implementation of\insertslideintonotes
is fast (render once, shipout twice) and simple (just a transformation).