I'm building a song book with the songs package from songs.sourceforge.net and I'm trying to create topical indexes for songs. The small indexes consume an entire page each. I'd like to squeeze them so they don't take up a whole page.
Here's an MWE:
\documentclass[12pt,twoside,titlepage]{article}
\usepackage[top=0.7in, bottom=0.7in, left=1in, right=1in]{geometry}
\usepackage{times}
\title{My MWE}
\usepackage[lyric]{songs}
\newindex{titleidx}{titleidx}
\newauthorindex{authoridx}{authoridx}
\newindex{mytopic}{mytopicidx}
\begin{document}
\songcolumns{1}
\showindex{Title Index}{titleidx}
\showindex{Author Index}{authoridx}
\showindex{My Topic}{mytopic}
\songsection{}
\begin{songs}{titleidx,authoridx}
\beginsong{Just some song}[
by={me},
cr={},
li={}]
\indextitleentry[mytopic]{\songtitle}
\endsong
\end{songs}
\end{document}
