I have an index of symbols made using makeindex:
\documentclass{article}
\usepackage{makeidx}
\makeindex
\begin{document}
Text
\index{sin@$\sin$} % just some examples of index entries
\index{cos@$\cos$}
\index{tan@$\tan$}
\index{greek.a@$\alpha$} % symbols with greek letters
\index{greek.b@$\beta_{x,y}$}
\index{(@$(a)_n$} % an entry with a bracket
\printindex
\end{document}
I would like to have a letter group (subdivision) of the index for each Greek letter. (I understand I would have to specify another key and greek.a isn't going to work.) But not just for Greek letters. I also want to organize the entries under the symbols heading, for example gather those that involve round brackets ().
Question: How can I add custom letter groups to an index? (It doesn't need to be with makeindex.)
\makeindex? Otherwise, I get no index at all. – cfr May 28 '18 at 02:35