Hi,
I'm reopening this topic because CeoN asks the same question I'd like to ask:
how do I get the PDF viewer to display the front page and the TOC in the bookmarks panel?
My mwe will display this (adobe reader 9 on Linux):

- adobe.png (8.77 KiB) Viewed 12313 times
Edit by localghost: No external links! Attachments go onto the forum server.
You see the top of the bookmarks panel with at the top the tables, figures and abbreviations page followed by some chapters. I am looking for a way to show bookmarks for the title page and the toc as well.
Is this possible?
My mwe:
Code: Select all
\documentclass[a4paper,10pt]{report}
\usepackage[english]{babel}
\usepackage{hyperref}
\hypersetup{
colorlinks=false,
linkcolor=black,
citecolor=black,
filecolor=black,
pagecolor=black,
urlcolor=blue,
bookmarks=true,
pdfborder={0 0 0 0},
pdftitle={sometitle},
pdfauthor={me},
pdfkeywords={somekeywords},
pdfdisplaydoctitle=true,
pdftoolbar=true,
pdfmenubar=true,
pdfstartview=X Y Z
}
\begin{document}
% title page
\pagestyle{empty} % no page numbering
\begin{titlepage}
\begin{center}
\begin{minipage}{1\textwidth}
some titlepage stuff
\end{minipage}
\end{center}
\end{titlepage}
% followed by one blank page!
\clearpage\mbox{}\clearpage
\begin{abstract}
[Abstract]
\end{abstract}
\pagestyle{plain} % pagenumbering
\setcounter{page}{4} % start at page 4 - titlepage is page 1
% this is how I include lists of figures, tables and abbreviations on one page that has a record in the toc without a chapter number
\tableofcontents
\clearpage
\addcontentsline{toc}{chapter}{Tables, figures and abbreviations}
\renewcommand{\listtablename}{Tables}
\renewcommand{\listfigurename}{Figures}
\renewcommand{\nomname}{Abbreviations}
\begingroup
\let\clearpage\relax % for report class!
\listoftables
\listoffigures
\printnomenclature[2.5cm]
\endgroup
\chapter{Introduction}
Some text...
\chapter{Methods}
Some text...
\chapter{Results}
Some text...
\end{document}
Additional packages I use (you never know if they influence anything...):
geometry, titlesec, tocloft (with titles option), graphicx, wrapfig, subfig, sidecap, multicol, mdwlist.