인덱스의 색상 항목

인덱스의 색상 항목

Makeindexoption-s를 사용하면 *.ist인덱스가 인쇄되지 않습니다. 옵션=은 무엇입니까 * mean? 색인 항목의 색상을 지정할 수 있는 명령이 있습니까? 나는 TexWorks와 함께 사용합니다 Miktex. 당신의 도움을 주셔서 감사합니다.

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

답변1

options=-s XXX.istmakeindex에 지정된 인덱스 스타일을 사용하도록 지시합니다 XXX.ist. 표준 파일이 아닌 경우 이를 제공해야 합니다. 각 인덱스에 대해 맞춤형 스타일을 지정하지 않으려면 옵션에서 이를 삭제하세요. 그러면 인덱스가 정상적으로 생성됩니다.

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

관련 정보