Me gustaría resaltar una entrada en un índice.
Si tengo un índice que aparece varias veces en un documento, me gustaría resaltar una de estas entradas como principal.
Algo como
Mi entrada, 2, 4-5,10, 15
Donde la página 10 es laprincipaluno.
hay una manera fácil?
Editar
Lo estoy usando imakeidx
con varios índices. Algo como esto
\documentclass[a4paper,10pt,twoside,twocolumn,openany,justified,nomultitoc,bookmarksopen=true]{dndbook}
% nomultitoc is needed if the list of figures is not displayed
% the multitoc package need the lof,lot,loc options (and from version to version it seems not to work)
\usepackage[toc,lot,lof]{multitoc}
\usepackage[]{imakeidx}
\makeindex[name=Persone,title=Persone e mostri,intoc]
\makeindex[name=Luoghi,title=Luoghi,intoc]
\makeindex[name=Oggetti,title=Oggetti,intoc]
\indexsetup{noclearpage}
\begin{document}
Bla bla\index[Persone]{My Entry} bla bla
% [...]
Bla bla\index[Persone]{My Entry} bla bla
% to correct the PDF links
\phantomsection
\printindex[Persone]
% to correct the PDF links
\phantomsection
\printindex[Oggetti]
% to correct the PDF links
\phantomsection
\printindex[Luoghi]
\end{document}
Pero estoy abierto a otras opciones.
Respuesta1
En su página principal:
\index[Persone]{My Entry|textbf}
imprimirá el número de página en el índice en negrita, mientras que en otras páginas
\index[Persone]{My Entry}
imprimirá un número de página normal.