Las páginas súper anchas de Beamer se superponen entre monitores

Las páginas súper anchas de Beamer se superponen entre monitores

Estoy intentando utilizar el paquete pgfpagescon la opción \setbeameroption{previous slide on second screen=left}de crear páginas súper anchas para aprovechar varios monitores. Esto es lo que obtengo en mi lector de PDF.

ingrese la descripción de la imagen aquí

Dado que el icono de Inicio no está alineado con el cuadro vertical, significa que una parte de la vista previa de la izquierda se mostrará en el monitor del proyector (porque todo lo que esté a la izquierda del icono de inicio se mostrará en el proyector). Algunas personas pueden decir que no tiene nada que ver con LaTeX, pero se puede encontrar una buena solución con LaTeX; Si puedo insertar un espacio vacío entre las dos diapositivas (en la posición del cuadro vertical), entonces las dos diapositivas se separarán y cualquier superposición aparecerá como un espacio en blanco en lugar de como parte del contenido de la otra diapositiva. También podría ser bueno si el fondo del espacio vacío se pudiera personalizar para que se combine con el fondo de la diapositiva izquierda (en caso de que no fuera blanco).

\documentclass[aspectratio=169, xcolor={x11names}]{beamer}

\setbeameroption{show notes}

\usecolortheme{wolverine}
\useoutertheme[]{split}
\useinnertheme{inmargin}

\newlength{\widthTextMarginLeft}
\setlength{\widthTextMarginLeft}{1.5mm}
\newlength{\widthTextMarginRight}
\setlength{\widthTextMarginRight}{2mm}
\setbeamersize{text margin left=\widthTextMarginLeft, text margin right=\widthTextMarginRight}
\newlength{\sidebarWidth}
\setlength{\sidebarWidth}{0.3\paperwidth}
\setbeamersize{sidebar width left=\sidebarWidth, sidebar width right=0cm}

\setbeamercovered{transparent=30}
\setbeamersize{description width=0mm}

\usepackage{blindtext}

\usepackage{pgfpages}
\setbeameroption{previous slide on second screen=left}



\begin{document}

\begin{frame}{Showing Contents Gradually without Alert}

    \begin{block}{Why is induction motor very common}
        %
        \uncover<+->{\vphantom{$1$}}\uncover<+->{Induction motors are very practical for the following reasons}

        \begin{description}[<+->]
            \item[Rigid] Rigid
            \item[Cheap] Cheap
                \note<+>{\blindlistlist[1]{enumerate}}
            \item[Low Maintenance] Low Maintenance
            \item[Self-Starting] Self-starting
                \note<+>{\blindlistlist[1]{enumerate}}
            \item[No Excitation Needed] No Excitation Needed
        \end{description}

    \end{block}


\end{frame}

\end{document}

Respuesta1

En lugar de utilizar el diseño redefinido, previous slide on second screenpuedes definir uno personalizado y mover las páginas como quieras (marqué los dos lugares para ajustar los valores con <-...):

\documentclass[aspectratio=169, xcolor={x11names}]{beamer}

\setbeameroption{show notes}

\usecolortheme{wolverine}
\useoutertheme[]{split}
\useinnertheme{inmargin}

\newlength{\widthTextMarginLeft}
\setlength{\widthTextMarginLeft}{1.5mm}
\newlength{\widthTextMarginRight}
\setlength{\widthTextMarginRight}{2mm}
\setbeamersize{text margin left=\widthTextMarginLeft, text margin right=\widthTextMarginRight}
\newlength{\sidebarWidth}
\setlength{\sidebarWidth}{0.3\paperwidth}
\setbeamersize{sidebar width left=\sidebarWidth, sidebar width right=0cm}

\setbeamercovered{transparent=30}
\setbeamersize{description width=0mm}

\usepackage{blindtext}

\usepackage{pgfpages}
\setbeameroption{previous slide on second screen=left}


\setbeamercolor{background canvas}{bg=green}

\makeatletter
\pgfpagesdeclarelayout{my two screens with lagging second}
{}
{
  \pgfpagesphysicalpageoptions
  {%
    logical pages=2,%
    physical height=\pgfpageoptiontwoheight,%
    physical width=2.5\paperwidth,% <- change "2.5" to adjust total paper width
    last logical shipout=1,%
  }
  \pgfpageslogicalpageoptions{1}
  {%
    center=\pgfpoint{2\paperwidth}{.5\paperheight},% <- change the "2" to horizontally move left page
  }%
  \pgfpageslogicalpageoptions{2}
  {%
    center=\pgfpoint{.5\paperwidth}{.5\paperheight},%
    copy from=1%
  }%
}
\pgfpagesuselayout{my two screens with lagging second}
\makeatother


\begin{document}

\begin{frame}{Showing Contents Gradually without Alert}

    \begin{block}{Why is induction motor very common}
        %
        \uncover<+->{\vphantom{$1$}}\uncover<+->{Induction motors are very practical for the following reasons}

        \begin{description}[<+->]
            \item[Rigid] Rigid
            \item[Cheap] Cheap
                \note<+>{\blindlistlist[1]{enumerate}}
            \item[Low Maintenance] Low Maintenance
            \item[Self-Starting] Self-starting
                \note<+>{\blindlistlist[1]{enumerate}}
            \item[No Excitation Needed] No Excitation Needed
        \end{description}

    \end{block}


\end{frame}

\end{document}

ingrese la descripción de la imagen aquí

información relacionada