Einträge eines Index einfärben

Einträge eines Index einfärben

Makeindexmit Option-s *.istwerden die Indizes nicht gedruckt. Was bedeuten Optionen= * mean? Gibt es einen Befehl, mit dem ich die Einträge des Indexes einfärben kann? Ich verwende TexWorksmit Miktex. Danke für Ihre Hilfe.

\documentclass{book}
\usepackage{imakeidx}

\makeindex[name=one,title=Index One, intoc, options= -s one.ist]
%\makeindex[name=one,title=Index One, intoc]
\makeindex[name=four,title=Index Four, intoc, options= -s four.ist]
%\makeindex[name=four,title=Index Four]
\makeindex[name=six,title=Index Six, intoc, options= -s six.ist]
%\makeindex[name=six,title=Index Six]

\usepackage[hangindent=0pt,subindent=0pt,subsubindent=0pt]{idxlayout}

\begin{document}

Some text.

\index[one]{Acts of the Avocados!2:2}
\index[one]{Acts of the Avocados!5:5}
\index[one]{Acts of the Avocados!3:3}
\index[one]{Acts of the Avocados!5:5}
\index[one]{Acts of the Avocados!6:6}
\index[one]{Acts of the Avocados!7:7}
\index[one]{Acts of the Avocados!8:8}
\index[one]{Romaines!3:3}
\index[one]{Romaines!4:4}
\index[one]{Romaines!5:5}
\index[four]{Aristotle!Metaphysalis!205c}
\index[four]{Aristotle!Metaphysalis!306d}
\index[four]{Plato!Tomatoes!407e}
\index[four]{Cicero!Lettuce!115}
\index[six]{Bananerges}
\index[six]{Appleadorus}
\index[six]{Plato}
\index[six]{Plato!\textit{Potatoes}!144a}
\index[six]{Plato!\textit{Potatoes}!166d}

\printindex[one]
\printindex[four]
\idxlayout{itemlayout=abshang} 
\printindex[six]
\end{document}

Antwort1

options=-s XXX.istweist an makeindex, den in angegebenen Indexstil zu verwenden XXX.ist. Sofern es sich nicht um eine Standarddatei handelt, müssen Sie sie angeben. Wenn Sie nicht für jeden Index maßgeschneiderte Stile angeben möchten, lassen Sie dies einfach aus den Optionen weg. Die Indizes werden dann problemlos erstellt.

\makeindex[name=one,title=Index One, intoc]%, options= -s one.ist]% or supply style in file one.ist
\makeindex[name=four,title=Index Four, intoc]%, options= -s four.ist]
\makeindex[name=six,title=Index Six, intoc]%, options= -s six.ist]

verwandte Informationen