> I still have a problem I'm not able to solve:
>
> How do I make lilypond reduce the spacing between staves so that more
> staves per page can be printed?
The following line in lilyponddefs.tex determines the spacing:
\def\interscoreline{\vskip 16pt}
The easiest way to get this into ly2dvi is to make a file
global.tex containing the single line:
\def\interscoreline{\vskip 10pt}
or whatever distance you want.
Then you add the following line in the \header field of your
.ly file:
latexheaders = "\input global";
/Mats