The docs you want to refer to this for would be: http://lilypond.org/doc/v2.24/Documentation/notation/flexible-vertical-spacing-paper-variables#list-of-flexible-vertical-spacing-paper-variables
Specifically, you want the system-system-spacing The docs explain in fair detail how those settings get used, but basically you'll set this in the \paper block. Something like: \paper { system-system-spacing.basic-distance = #8 } On Thu, Feb 9, 2023 at 2:18 PM <mi...@orbelanet.com> wrote: > > Hi everyone, > > Just a easy question: > > How can we further separate the different lines that make up a score? > > I mean a score for a single melodic instrument. Sometimes I find the > music too close together, and I wish I could change the default spacing. > > \version "2.24.0" > violin = \relative { > a b c d a b c d a b c d a b c d | \break > % This space is I want to change > a b c d a b c d a b c d a b c d | \break > % This space is I want to change > a b c d a b c d a b c d a b c d | \break > ....... > } > > \score { > \new Staff { > \new Voice { > \violin > } > } > \layout { > } > } > > > I haven't found anything in the documentation about it, it only refers > to staff groups. > > Thanks in avance! > > >