beamer add tag
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}
```

This room is for discussion about this question.

Once logged in you can direct comments to any contributor here.

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.