1

The latex hyperref package makes a really nice, linked table of contents, named according to section name. However, the top level category is by default, the file name. It seems I should be able to change this to the actual title, but I'm not finding any information on how.

muckabout
  • 1,923
  • 1
  • 19
  • 31

1 Answers1

1

Are you sure this is not a 'feature' of your PDF reader? It might try to use the PDFs title (unset by default), which you can set like this:

\hypersetup{
    pdftitle = {The title},
    pdfauthor = {You}
}

You might also want to check out the TeX StackExchange.

Community
  • 1
  • 1
schot
  • 10,958
  • 2
  • 46
  • 71