I am trying to get the PDF output of my thesis with bookmarks using hyperref package. I am able to get the sections and subsections displayed in bookmark however the chapter is not displayed. How can I get the chapter title displayed in this PDF output?
\documentclass[12pt]{report}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\usepackage{uncc-thesis}
\usepackage{subfig}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{graphicx,epstopdf}
\usepackage{rotating}
\usepackage{float}
\usepackage{color}
\usepackage[numbers, square, comma, sort&compress]{natbib}
\bibpunct{[}{]}{,\!}{n}{}{;}
\usepackage[breaklinks=true, bookmarks=true, pdftoolbar=true, linktocpage=true,colorlinks=true,citecolor=blue]{hyperref}
\usepackage{setspace}
\usepackage{tocloft}
\usepackage[font=small,format=plain,labelfont=bf,textfont=it]{caption}
\begin{document}
\pdfbookmark[0]{Abstract}{abstract}
\begin{abstract}
This is the abstract.
\end{abstract}
\pdfbookmark[0]{Dedication}{dedication}
\dedication
Here is the dedication.
\pagebreak{}
\pdfbookmark[0]{Acknowledgements}{acknowledgements}
\acknowledgments
Here is the acknowledgement.
\begin{singlespace}
\clearpage
\phantomsection
\tableofcontents
\label{toc}
\clearpage
\phantomsection
\listoftables
\label{lot}
\clearpage
\phantomsection
\listoffigures
\label{lof}
\end{singlespace}
\pagebreak{}
\pdfbookmark[0]{List of Abbreviations}{listofabbreviations}
\listofabbreviations
\input{List-of-Abbreviations}
\pagebreak{}
\pdfbookmark[0]{List of Symbols}{listofsymbols}
\listofsymbols
\input{List-of-Symbols}
\include{Chapter_One}
\include{Chapter_Two}
\include{Chapter_Three}
%\include{Chapter-Four}
%\include{Chapter-Five}
\bibliographystyle{ieeetr}
\bibliography{PhDThesis_Bibtex_Final} % References file
\end{document}
Chapter_Onecontaining a chapter and some sections et voila, I get the chapter title in the bookmarks list. I suggest you remove stuff from your preamble until the bookmarks appear. This way you'll immediately find the reason. – Stephan Lehmke Apr 11 '12 at 20:50