[Tex/LaTex] More than one option within a frame

beamer

I'm using beamer to create frames. I don't want frame numbers and I want to allow for frame breaks:

\begin{frame}[allowframebreaks]{My title}

does work, and

\begin{frame}[noframenumbering]{My title}

How do I combine both?

\begin{frame}[noframenumbering allowframebreaks]{My title}

nor

\begin{frame}[noframenumbering][allowframebreaks]{My title}

work.

\begin{frame}[noframenumbering, allowframebreaks]{My title}

only enables the first option.

Best Answer

You want to say

\begin{frame}[options,separated,by,commas]{title}

Sample output

\documentclass{beamer}

\usepackage{lipsum} %for dummy text

\begin{document}

\begin{frame}[noframenumbering,allowframebreaks]{Title}

  \lipsum[1-4]
\end{frame}

\end{document}

However noframenumbering is not an option that removes the continuation numbers from these slides. For that you should adjust the beamer template for frametitle continuation:

\setbeamertemplate{frametitle continuation}{}

either globally or restricted to a group for the particular frame:

Unnumbered sample

\documentclass{beamer}

\usepackage{lipsum} %for dummy text

\begin{document}

{\setbeamertemplate{frametitle continuation}{}
\begin{frame}[noframenumbering,allowframebreaks]{Title}

  \lipsum[1-4]
\end{frame}
}

\end{document}
Related Question