[Tex/LaTex] No PDF bookmarks when using llncs class

bookmarkshyperreflncs

When using hyperref together with Springer's LNCS class (llncs), only the title of the document shows up in the PDF bookmarks.

Here is a MWE:

\documentclass{llncs}
\usepackage{hyperref}
\title{Foobar}

\begin{document}
\maketitle
\section{Foo}
\section{Bar}
\end{document}

When you compile this document, the only entry in the PDF bookmarks is one for "Foobar" (which shouldn't be there) and there are no entries for the sections.

Does anybody have an idea what the problem could be?

I'm using TeX Live 2011 and llncs 2.17.

Best Answer

I think this behaviour is intended. The llncs document class is used to put multiple articles into one volume. Each article title appears in the table of contents and the pdf bookmarks, but sections within the articles do not.

\documentclass{llncs}
\usepackage{hyperref}
\begin{document}
\tableofcontents
%
\title{Sheep}
\maketitle
\section{Black sheep}
\section{White sheep}
%
\title{Goats}
\maketitle
\end{document}