複数列環境でフレーム区切りを許可する

複数列環境でフレーム区切りを許可する

私は、指定した数のマルチカラム(この場合は3)のフォーマットを維持しながら、ビーマーにテキストを複数のフレーム(必要な数だけ)に自動的に分割させたいと考えています。列幅を指定したくないので、「マルチカラム」を使用しています。私は、次のような質問を見つけました。Beamer で定理を複数のフレームに分割できるようにするしかし、この質問はマルチカラム環境に固有のものです。

\documentclass[gray]{beamer}
\usetheme{default}
\begin{document}
\begin{frame}[allowframebreaks]{Example Frame}
\begin{multicols}{3} \small\raggedright
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
\end{multicols}
\end{frame}
\end{document}

答え1

どの程度のframe構造が必要ですか?

これは、例えば、多かれ少なかれ機能します

%\begin{frame}[allowframebreaks]{Example Frame}
  \begin{multicols}{3}[Example Frame] 
.....
\end{multicols}
%\end{frame}

2枚のスライドからなるプレゼンテーションのように見えますが、各スライドに3つの列があり、最初のページにタイトルがあります。しかし、フレームビーマーに、他のビーマー機能との相互作用が異なります。

関連情報