I have a book with a number of empty numbered chapter headings, and am using hyperref to generate bookmarks in my PDF index. I would like those bookmarks to include the word Chapter as well as the number. Consider this example:
\documentclass[a4paper, oneside, final, fontsize=12]{report}
\usepackage[bookmarks=true,colorlinks=true,linkcolor=black]{hyperref} % appearance of links
% toc and index formatting
\usepackage{titletoc}
\titlecontents{chapter}[0pt]
{}
{\chaptername\ \thecontentslabel\quad} % Numbered format
{} % Numberless format
{}
\hypersetup{bookmarksnumbered}
\begin{document}
\vbox{\tableofcontents}
\chapter{}
\chapter{}
\end{document}
The PDF index I would like to generate would contain:
Chapter 1 2
Chapter 2 3
What the above code snippet produces is:
1 2
2 3
I am thinking of something like titletoc but really any solution would be great!
