我想突出顯示索引中的一個條目。
如果我有一個索引在文件中多次出現,我想突出顯示其中一個條目作為主要條目。
就像是
我的條目,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}
將列印正常頁碼。