samcarter
If the frame option `allowframebreaks` is used, the frametitle is automatically numbered with Roman numerals. How to switch this off?
```
\documentclass{beamer}
\begin{document}
\begin{frame}[allowframebreaks]
\frametitle{title}
test
\vspace{10cm}
test
\end{frame}
\end{document}
```
Top Answer
samcarter
One can redefine the `frametitle continuation` template to be empty:
```
\documentclass{beamer}
\setbeamertemplate{frametitle continuation}{}
\begin{document}
\begin{frame}[allowframebreaks]
\frametitle{title}
test
\vspace{10cm}
test
\end{frame}
\end{document}
```