Rahmenumbrüche in mehrspaltiger Umgebung zulassen

Rahmenumbrüche in mehrspaltiger Umgebung zulassen

Ich möchte, dass Beamer meinen Text automatisch auf mehrere Frames aufteilt (so viele wie nötig), während das Format der angegebenen Anzahl von Mehrfachspalten (in diesem Fall 3) beibehalten wird. Ich möchte die Spaltenbreite nicht angeben müssen, deshalb habe ich „Multicols“ verwendet. Ich fand die Frage mit dem TitelErlaube Theoremaufteilung in vielen Frames im BeamerDiese Frage ist jedoch nur in der Multicol-Umgebung zu stellen.

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

Antwort1

Wie viel Struktur framebenötigen Sie?

Dies funktioniert beispielsweise mehr oder weniger

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

Dadurch entsteht etwas, das wie eine Präsentation mit zwei Folien aussieht, mit drei Spalten auf jeder Folie und einem Titel auf der ersten Seite. Aber es ist keinrahmenzu Beamer, daher wird die Interaktion mit anderen Beamer-Funktionen anders sein.

verwandte Informationen