From 9cc0cbef69c4227127371f6d8e65946ed6a8889f Mon Sep 17 00:00:00 2001 From: Maximilian Albert Date: Fri, 21 Nov 2008 10:43:05 +0100 Subject: [PATCH] Examples for vertical spacing: Reduce number of measures per line so that they don't break due to the short line length --- Documentation/user/spacing.itely | 42 +++++++++++++++++++------------------- 1 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Documentation/user/spacing.itely b/Documentation/user/spacing.itely index baabf80..349eabd 100644 --- a/Documentation/user/spacing.itely +++ b/Documentation/user/spacing.itely @@ -1507,14 +1507,14 @@ by looking at an example that includes no overrides at all. \new Score << \new Staff << \new Voice { - s1 * 6 \break - s1 * 6 \break - s1 * 6 \break + s1 * 5 \break + s1 * 5 \break + s1 * 5 \break } - \new Voice { \repeat unfold 18 { c'4 c'4 c'4 c'4 } } + \new Voice { \repeat unfold 15 { c'4 c'4 c'4 c'4 } } >> \new Staff { - \repeat unfold 18 { d'4 d'4 d'4 d'4 } + \repeat unfold 15 { d'4 d'4 d'4 d'4 } } >> @end lilypond @@ -1536,18 +1536,18 @@ attribute of the @code{NonMusicalPaperColumn} grob: \new Voice { \overrideProperty #"Score.NonMusicalPaperColumn" #'line-break-system-details #'((Y-offset . 0)) - s1 * 6 \break + s1 * 5 \break \overrideProperty #"Score.NonMusicalPaperColumn" #'line-break-system-details #'((Y-offset . 40)) - s1 * 6 \break + s1 * 5 \break \overrideProperty #"Score.NonMusicalPaperColumn" #'line-break-system-details #'((Y-offset . 80)) - s1 * 6 \break + s1 * 5 \break } - \new Voice { \repeat unfold 18 { c'4 c'4 c'4 c'4 } } + \new Voice { \repeat unfold 15 { c'4 c'4 c'4 c'4 } } >> \new Staff { - \repeat unfold 18 { d'4 d'4 d'4 d'4 } + \repeat unfold 15 { d'4 d'4 d'4 d'4 } } >> @end lilypond @@ -1569,20 +1569,20 @@ subproperty of @code{line-break-system-details}. \overrideProperty #"Score.NonMusicalPaperColumn" #'line-break-system-details #'((Y-offset . 20) (alignment-offsets . (0 -15))) - s1 * 6 \break + s1 * 5 \break \overrideProperty #"Score.NonMusicalPaperColumn" #'line-break-system-details #'((Y-offset . 60) (alignment-offsets . (0 -15))) - s1 * 6 \break + s1 * 5 \break \overrideProperty #"Score.NonMusicalPaperColumn" #'line-break-system-details #'((Y-offset . 100) (alignment-offsets . (0 -15))) - s1 * 6 \break + s1 * 5 \break } - \new Voice { \repeat unfold 18 { c'4 c'4 c'4 c'4 } } + \new Voice { \repeat unfold 15 { c'4 c'4 c'4 c'4 } } >> \new Staff { - \repeat unfold 18 { d'4 d'4 d'4 d'4 } + \repeat unfold 15 { d'4 d'4 d'4 d'4 } } >> @end lilypond @@ -1604,24 +1604,24 @@ specifies the vertical positioning of staves but not of staff groups. \overrideProperty #"Score.NonMusicalPaperColumn" #'line-break-system-details #'((Y-offset . 0) (alignment-offsets . (0 -30 -40))) - s1 * 6 \break + s1 * 5 \break \overrideProperty #"Score.NonMusicalPaperColumn" #'line-break-system-details #'((Y-offset . 60) (alignment-offsets . (0 -10 -20))) - s1 * 6 \break + s1 * 5 \break \overrideProperty #"Score.NonMusicalPaperColumn" #'line-break-system-details #'((Y-offset . 100) (alignment-offsets . (0 -10, -40))) - s1 * 6 \break + s1 * 5 \break } - \new Voice { \repeat unfold 18 { c'4 c'4 c'4 c'4 } } + \new Voice { \repeat unfold 15 { c'4 c'4 c'4 c'4 } } >> \new StaffGroup << \new Staff { - \repeat unfold 18 { d'4 d'4 d'4 d'4 } + \repeat unfold 15 { d'4 d'4 d'4 d'4 } } \new Staff { - \repeat unfold 18 { e'4 e'4 e'4 e'4 } + \repeat unfold 15 { e'4 e'4 e'4 e'4 } } >> >> -- 1.5.4.3