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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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