Hervorheben einer Seite in einem Index

Hervorheben einer Seite in einem Index

Ich möchte einen Eintrag in einem Index hervorheben.

Wenn ich einen Index habe, der in einem Dokument mehrmals vorkommt, möchte ich einen dieser Einträge als Haupteintrag hervorheben.

Etwas wie

Mein Eintrag, 2, 4-5,10, 15

Wobei Seite 10 diehauptsächlicheins.

Gibt es einen einfachen Weg?

Bearbeiten

Ich verwende imakeidxmehrere Indizes. So etwas wie das hier

\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}

Aber ich bin offen für andere Optionen

Antwort1

Auf Ihrer Hauptseite:

\index[Persone]{My Entry|textbf}

druckt die Seitenzahl im Index fett, während auf anderen Seiten

\index[Persone]{My Entry} 

druckt eine normale Seitenzahl.

verwandte Informationen