インデックス内のページを強調表示する

インデックス内のページを強調表示する

インデックス内の 1 つのエントリを強調表示したいと思います。

ドキュメント内に複数回出現するインデックスがある場合、これらのエントリの 1 つをメインのエントリとして強調表示したいと思います。

何かのようなもの

私のエントリー、2、4-5、10、15

10ページ目は主要1つ。

簡単な方法はありますか?

編集

私はいくつかのインデックスを使用していますimakeidx。こんな感じです

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

しかし、私は他の選択肢も検討しています

答え1

メインページで:

\index[Persone]{My Entry|textbf}

索引のページ番号は太字で印刷されますが、他のページでは

\index[Persone]{My Entry} 

通常のページ番号を印刷します。

関連情報