[Tex/LaTex] Bookmark Title Page

bookmarks

Does anyone know how to hyperref the title page of a pdf file? I mean I want my title to appear as the highest level in the bookmaks and the sections will be the next level etc so that the bookmark will look like a tree with branches. Only the sections appear at the moment and stand on their own. Thank you.

Best Answer

I usually do this:

\begin{document}

\makeatletter
\pdfbookmark[0]{\@title}{title}
\makeatother

\maketitle

This uses the title defined by the \title command but you can use something else (then the \makeatletter and \makeatother are not needed).

Related Question