1

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}
9
  • 1
    \AtBeginNote{\setbeamercovered{transparent=25}} works for me. Commented Oct 19, 2023 at 14:15
  • 2
    Welcome to TeX.SX! Please help us help you and add a minimal working example (MWE) that illustrates your problem. Reproducing the problem and finding out what the issue is will be much easier when we see compilable code, starting with \documentclass{...} and ending with \end{document}.
    – dexteritas
    Commented Oct 19, 2023 at 14:23
  • 1
    @dexteritas: Sure, I have added an MWE now. :D
    – nijoakim
    Commented Oct 19, 2023 at 14:35
  • 2
    \insertslideintonotes only “copies” over the frame without rendering it again. You won't be able to have different transparencies here. Commented Oct 19, 2023 at 14:47
  • 2
    @nijoakim I don't know. Maybe there's a way to recall a slide and have it render again. \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). Commented Oct 19, 2023 at 15:04

0

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.