Выделение страницы в индексе

Выделение страницы в индексе

Я хотел бы выделить одну запись в индексе.

Если у меня есть индекс, который встречается в документе несколько раз, я хотел бы выделить одну из этих записей как основную.

Что-то вроде

Моя запись, 2, 4-5,10, 15

Где страница 10 находитсяосновнойодин.

Есть ли простой способ?

Редактировать

Я использую 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} 

напечатает обычный номер страницы.

Связанный контент