Gostaria de destacar uma entrada em um índice.
Se eu tiver um índice que aparece diversas vezes em um documento gostaria de destacar uma dessas entradas como a principal.
Algo como
Minha entrada, 2, 4-5,10, 15
Onde a página 10 é aprincipalum.
Existe uma maneira fácil?
Editar
Estou usando imakeidx
com vários índices. Algo assim
\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}
Mas estou aberto a outras opções
Responder1
Na sua página principal:
\index[Persone]{My Entry|textbf}
imprimirá o número da página no índice em negrito, enquanto nas outras páginas
\index[Persone]{My Entry}
imprimirá um número de página normal.