I am using the command \begin{frame}[allowframebreaks] to split a large slide into multiple slides. However, the last slide only contains two lines and I would like to force them into the previous slide. How can I do so?
Asked
Active
Viewed 1,598 times
2
Vesnog
- 1,307
- 2
- 15
- 30
1 Answers
2
One possibility is to have two slides where there is no frametitle in the second one:
\begin{frame}
\frametitle{Lorem ipsun}
\end{frame}
\begin{frame}
Lorem Ipsun.
\end{frame}
In this way, you kind of visually "break" one slide into many slides.
Other ways which affects the visual appearance are
- make text smaller
- to put more text in the same space - tables
However, I like the "no-frametitle" option most, since it is most flexible.
Léo Léopold Hertz 준영
- 7,906
allowframebreaksin that case you can distribute it better. – Aradnix May 07 '14 at 07:41allowframebreaks, am I right? – Vesnog May 07 '14 at 20:41