1

I don't want to use the option allowframebreaks in every single frame like

\begin{frame}[allowframebreaks]
    Text
\end{frame}

Is there a way to set it globally?

Adam
  • 4,684

1 Answers1

1

Try with defining new command ...

\documentclass{beamer}
\newcommand\breakframe{\begin{frame}[allowframebreaks]}

\begin{document}
\breakframe
    Text
\end{frame}
\end{document}

I'm not sure, if you consider all possible consequences of this wish. With it some features of Beamer is lost (like uncover). My solution is rather rude, but works

Zarko
  • 296,517
  • Thank you for your answer but I already do it with a custom command. I just thought that a global way would exist. If there is not I will accept your answer as a reference for future readers. – Adam Sep 20 '16 at 18:48