I use imakeidx which is great except for the fact that it is not clear enough what numbers are page numbers and what the rest.
Here is the example:
It is hard to distinguish that 88 is page number and 1 Kön 8, 12 index entry.
Is there a way to make all index entries bold by default and add colon after index entry? Like this:
1 Kön 8, 12: 88
I presume that this can be done with renewing \index command but I am not sure how.
Here is my MWE:
\documentclass[a4paper,11pt]{scrbook}
\usepackage[utf8]{inputenc}%
\usepackage[T1]{fontenc}%
\usepackage[ngerman]{babel}
\usepackage{blindtext}
\usepackage[nonewpage]{imakeidx}% MULTIPLE INDICES
\indexsetup{level=\section*,toclevel=section,headers={Stellenregister}{\indexname}}%
\makeindex[name=band1-bibelstellen,title=Bibelstellen, intoc, options= -s untitled.ist]
\makeindex[name=band1-themen,title=Themen, intoc, options= -s untitled.ist]
\makeindex[name=band1-personen,title=Personen, intoc, options= -s untitled.ist]
\begin{document}
\blindtext
\blindtext\index[band1-bibelstellen]{1 Kön 8,12}
\blindtext\index[band1-themen]{Epiph.!haer.!8, 16}
\blindtext\index[band1-personen]{Arius!Anhänger!Eusebius}
\addcontentsline{toc}{chapter}{Alex. Al.!ep. encycl.!1, 12}
\printindex[band1-bibelstellen]
\printindex[band1-themen]
\printindex[band1-personen]
\end{document}

imakeidxitself -- you would get the same 'error' withmakeidx-- it's caused by the way of information is given to\indexor using a different.istfile for the index – Nov 22 '17 at 12:38imakeidxso that is why I mentioned it. – stx932 Nov 22 '17 at 12:41untitled.ist? – egreg Nov 22 '17 at 17:34