My index entries get rejected. I compile, and then in TexStudio do Tools > Commands > MakeIndex
I thought I did everything according to the documentation.
I had no problems using makeidx.
\documentclass{article}
\usepackage{splitidx}
\makeindex
\newindex[Berechnen]{rech}
\newindex[Graph]{gra}
\begin{document}
text
\newpage
text 1
\sindex[rech]{lord}
\newpage
text2\sindex[rech]{shawty}
\newpage
text3\sindex[gra]{leftist}
\printindex[rech]
\newpage
\printindex[gra]
\end{document}
Scanning input file buoch-gra.idx....done (1 entries accepted, 0 rejected).for the first index andScanning input file buoch-rech.idx....done (2 entries accepted, 0 rejected).for the second one. – egreg May 13 '17 at 16:57splitindex, notmakeindex. – egreg May 13 '17 at 17:06