Given that
- many presentations are viewed on a computer nowadays (think e.g. of lectures in distance teaching)
- in a 16:9 format (wider than lines should be)
I'm looking for Beamer templates that simulate a two part blackboard or a horizontally split screen and allow to rewrite one half of the screen while the other half still shows the previous contents. E.g., I'd like to enter something like
\documentclass{beamer}
\usetheme{splitscreen}
\newcommand\sometext{Abra kadabra, hokus pokus, simsalabim. }
\begin{document}
\begin{frame}
\sometext\sometext
\begin{center}
\includegraphics[width=\textwidth]{example-image-a}
\end{center}
\sometext\sometext
\end{frame}
\begin{frame}
\sometext\sometext
\begin{center}
\includegraphics[width=\textwidth]{example-image-b}
\end{center}
\sometext\sometext
\end{frame}
\begin{frame}
\sometext\sometext
\begin{center}
\includegraphics[width=\textwidth]{example-image-c}
\end{center}
\sometext\sometext
\end{frame}
\end{document}
and get something like
With the beamer template that I'm looking for, it should be possible
- to specify each half screen only once,
- but have it repeated on the next page when presenting the next half-screen
- any uncovering actions of a half-screen should be active only when presenting the material, but be inactive on the next page;
- as a bonus, it would be nice if it is possible to add graphic elements that connect the two sides of the screen (as long as both parts are visible).


\againframeof thebeamerclass, and the questions "Snapshot like macro for entire beamer frame?" and "beamer: repeat variations of a frame" – gernot Nov 01 '21 at 09:51\againframe. – Dr. Manuel Kuehner Nov 01 '21 at 19:36