Beamer のスーパーワイド ページがモニター間で重なり合う

Beamer のスーパーワイド ページがモニター間で重なり合う

複数のモニターを活用するために、超ワイド ページを作成するpgfpagesオプション付きのパッケージを使用しようとしています。これが PDF リーダーに表示される内容です。\setbeameroption{previous slide on second screen=left}

ここに画像の説明を入力してください

スタートアイコンが垂直ボックスと揃っていないため、左側のプレビューの一部がプロジェクターモニターに表示されます(起動アイコンの左側にあるものはすべてプロジェクターに表示されるため)。これは LaTeX とは関係ないと言う人もいるかもしれませんが、LaTeX では優れた回避策を実行できます。2 つのスライドの間に空のスペースを挿入できれば(垂直ボックスの位置)、2 つのスライドは分離され、重なり合う部分は他のスライドのコンテンツの一部としてではなく、白いスペースとして表示されます。空のスペースの背景をカスタマイズして、左側のスライドの背景(白でない場合)と調和させることができれば、さらに便利です。

\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}

答え1

再定義されたレイアウトを使用する代わりに、previous slide on second screenカスタムレイアウトを定義して、ページを自由に移動することができます (値を調整する 2 つの場所を でマークしました<-...)。

\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}

ここに画像の説明を入力してください

関連情報