Is there any way to (automagically) create pdf bookmarks for each "section" of the index? A "section" in the index is for each letter of the alphabet. Make sense?
Is there a way to do this?
Minimal Working Example:
\documentclass{article}
\usepackage{imakeidx}
\usepackage[colorlinks]{hyperref}
\makeindex
\title{An Example of an Article with an Index}
\begin{document}
\maketitle
Alligator\index{Alligator}
Bat\index{Bat}
Crocodile\index{Crocodile}
Dingo\index{Dingo}
Elephant\index{Elephant}
Frog\index{Frog}
Giraffe\index{Giraffe}
Horse\index{Horse}
Iguana\index{Iguana}
Jaguar\index{Jaguar}
Kangaroo\index{Kangaroo}
Lemur\index{Lemur}
Mongoose\index{Mongoose}
Newt\index{Newt}
Octopus\index{Octopus}
Penguin\index{Penguin}
Quail\index{Quail}
Rabbit\index{Rabbit}
Snake\index{Snake}
Turtle\index{Turtle}
Unicorn\index{Unicorn}
Velociraptor\index{Velociraptor}
Wildabeest\index{Wildabeest}
Xantus\index{Xantus}
Yak\index{Yak}
Zebra\index{Zebra}
\printindex
\end{document}
