Consider the following MWE which uses this answer to generate a bookmark for each frame:
\documentclass{beamer}
\usepackage{etoolbox}
\usepackage{lmodern}
\usepackage{lipsum}
\usepackage{bookmark}
\makeatletter
\apptocmd{\beamer@@frametitle}{%
\only<1>{\bookmark[page=\the\c@page,level=3]{#1}}}%
\makeatother
\begin{document}
\begin{frame}
\frametitle{Foo}
\end{frame}
\begin{frame}[allowframebreaks]
\frametitle{Baz}
\lipsum
\end{frame}
\end{document}
When allowframebreaks option is given this means that a bookmark is generated for each of the new frames created by the mentioned option. I want the bookmarks of these "continuation" frames to either have the proper frametitle (i.e "Baz II" rather than just "Baz") or just to generate a bookmark for the first frame and not for those created by the allowframebreak option.



Foo 0? And just name the bookmark asFoo. – petobens Sep 25 '14 at 16:57allowframebreaksoptions but the resulting frame has no continuation frames then the bookmark for that frame still showsFoo Irather than justFooii) if I use the option\setbeamertemplate{frametitle continuation}[from second][\insertcontinuationcountroman]the first frame in the bookmarks showsFoo Iwhereas in the text it is actuallyFooand then the second oneFoo II. Do you want me to open a another question? – petobens Sep 26 '14 at 19:29Foo Ito be unnumbered, simply change the >0 to a >1. – samcarter_is_at_topanswers.xyz Sep 29 '14 at 14:34