Hi Greg,
How do I reduce the vertical spacing between two rows of chord names?
For LilyPond, these are just systems of music (just happening to contain only chords). So, the \paper variable system-system-spacing is what we need.
To kill of any distance, use
\paper {
system-system-spacing =
#'((basic-distance . 0)
(minimum-distance . 0)
(padding . 0)
(stretchability . 0))
}
Probably you'll want to replace some of those zeroes by positive values :-).
Lukas
