다중 열 환경에서 프레임 나누기 허용

다중 열 환경에서 프레임 나누기 허용

저는 Beamer가 지정된 다중 열 수(이 경우 3)의 형식을 유지하면서 텍스트를 여러 프레임(필요한 만큼)으로 자동으로 분할하기를 원합니다. 나는 "다중 열"을 사용한 이유인 열 너비를 지정하고 싶지 않습니다. 라는 제목의 질문을 찾았습니다.비머의 여러 프레임에서 정리 분할을 허용합니다.하지만 이 질문은 multicol 환경에만 해당됩니다.

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

각 슬라이드에 세 개의 열이 있고 첫 페이지에 제목이 있는 두 개의 슬라이드 프레젠테이션처럼 보입니다. 하지만 그것은 아니다액자따라서 다른 비머 기능과의 상호 작용이 달라집니다.

관련 정보