lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Can system-system spacing be altered within a \score block?


From: Pierre Perol-Schneider
Subject: Re: Can system-system spacing be altered within a \score block?
Date: Fri, 1 May 2020 08:09:14 +0200

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 <address@hidden> 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.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]