MakeIndex, Nomenclature, Glossaries and Acronyms ⇒ PDF Bookmarking the index
PDF Bookmarking the index
I'm a bit new here to LaTeX so I may be a bit naive in my description of the issue, but here goes:
Working on a 'book' style document where the major divisions are organized by parts.
When typesetting my LaTeX document, the \printindex command (I believe) automatically generates a pdf bookmark for the index. However, when viewing the resultant .pdf in Adobe the bookmark is nested in preceding part's bookmark. This results in a misleading organization as I'd like the index bookmark to be on the same 'level' of hierarchy as the parts. Is there anyway to 'separate' the index from the preceding part?
Related question: is there a way to bookmark the individual letter headings in the index? (Bookmark for the "A's," "B's," etc.?
Any advice would be extremely helpful and appreciated.
Thank you
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
PDF Bookmarking the index
The hyperref package will probably fix your first problem.
Follow howtoTeX on twitter
PDF Bookmarking the index
Code: Select all
\documentclass[11pt]{book}
\usepackage{makeidx}
\usepackage[pdftex,colorlinks=true, pdfstartview=FitV, linkcolor=blue, citecolor=blue,
urlcolor=blue,plainpages=false]{hyperref}
\usepackage{pdfcolmk}
\usepackage{graphicx}
\makeindex
\begin{document}
\part{Apples}
Apples are good
\index{Apple}
\part{Bananas}
Bananas are too
\index{Banana}
\chapter{Green Bananas}
Green ones are young
\index{Green}
\addcontentsline{toc}{part}{Index}
\printindex
\end{document}
Re: PDF Bookmarking the index
see http://tex.stackexchange.com/questions/ ... st-section