I'm busy with a songbook, containing approx 150 songs (each in a section) and I want to put them all in alphabetical order in the index.
One option is to put after each section an \index-command with a unique entry, see code.
Code: Select all
\documentclass{article}
\usepackage{makeidx}
\makeindex
\begin{document}
\section*{First song} \index{First song}
la la la la
\section*{Second song} \index{Second song}
la li la lo
\printindex
\end{document}
Thanks in advance
Boersma