Hi Brent,
You can put the paper bloc in a bookpart, e.g.:
\version "2.20.0"
music = { \repeat unfold 100 s1 }
\book {
\bookpart {
\score { \music }
\header { piece = \markup\bold\fontsize #5 \fill-line { "15" } }
\paper { system-system-spacing.basic-distance = 15 }
}
\bookpart {
\score { \music }
\header { piece = \markup\bold\fontsize #5 \fill-line { "20" } }
\paper { system-system-spacing.basic-distance = 20 }
}
\bookpart {
\score { \music }
\header { piece = \markup\bold\fontsize #5 \fill-line { "30" } }
\paper { system-system-spacing.basic-distance = 30 }
}
}
HTH,
Cheers,
Pierre
Le ven. 1 mai 2020 à 05:32, Brent Annable <[email protected]> a écrit :
> Hi all,
>
> I'm currently putting a whole bunch of separate pieces together into one
> document, and occasionally I want to manually adjust the distance between
> systems in one piece without affecting the spacing in the others. Because
> of the file structure I've chosen, I can't include any top-level
> instructions in \paper blocks without affecting all the other pieces in the
> document. Is there a way of including an instruction within a \score block
> (or below), or some other way to help adjust between-system spacing?
>
> Regards,
>
> Brent.
>