X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fpage-spacing.ly;h=2227b0fb1ec45b31217a5e82c15482fff9ad9f70;hb=97a0169312a260933246ab224e4f8b0969871dd5;hp=a08ca5902c2ec7102f447d6afecd92c5c5b8c21e;hpb=09dc4a148bc43eefe56559d71680ac8a05a50354;p=lilypond.git diff --git a/input/regression/page-spacing.ly b/input/regression/page-spacing.ly index a08ca5902c..2227b0fb1e 100644 --- a/input/regression/page-spacing.ly +++ b/input/regression/page-spacing.ly @@ -5,34 +5,32 @@ spacing of page layout can be adjusted. For technical reasons, @code{overrideProperty} has to be used for -setting properties on individual object. @code{\override} may still be +setting properties on individual object. @code{\\override} may still be used for global overrides. -By setting @code{annotatespacing}, we can see the effect of each property. +By setting @code{annotate-spacing}, we can see the effect of each property. " } -\version "2.7.32" +\version "2.19.21" #(set-global-staff-size 11) \book { \score { - \relative c'' \new PianoStaff << + \relative \new PianoStaff << \new Voice { - c1_"followed by default spacing"\break + c''1_"followed by default spacing"\break c\break \overrideProperty - #"Score.NonMusicalPaperColumn" - #'line-break-system-details + Score.NonMusicalPaperColumn.line-break-system-details #'((Y-extent . (-30 . 10))) c_"Big bounding box (property Y-extent)"\break \overrideProperty - #"Score.NonMusicalPaperColumn" - #'line-break-system-details + Score.NonMusicalPaperColumn.line-break-system-details #'((refpoint-Y-extent . (-37 . -10))) c_\markup { \column { @@ -40,24 +38,22 @@ By setting @code{annotatespacing}, we can see the effect of each property. "Stretchable space runs between refpoints" } } - + \break - + \overrideProperty - #"Score.NonMusicalPaperColumn" - #'line-break-system-details + Score.NonMusicalPaperColumn.line-break-system-details #'((next-padding . 10)) c_"Followed by padding, ie unstretchable space. (property next-padding)" \break \overrideProperty - #"Score.NonMusicalPaperColumn" - #'line-break-system-details + Score.NonMusicalPaperColumn.line-break-system-details #'((next-space . 20)) c_"Followed by stretchable space (property next-space)"\break c\break \overrideProperty - #"Score.NonMusicalPaperColumn" #'line-break-system-details - #'((bottom-space . 25.0)) + Score.NonMusicalPaperColumn.line-break-system-details + #'((bottom-space . 25.0)) c_"25 staff space to the bottom of the page. (property bottom-space)"\break @@ -68,12 +64,14 @@ By setting @code{annotatespacing}, we can see the effect of each property. \paper { ragged-last-bottom = ##f annotate-spacing = ##t - between-system-space = 1.0 + obsolete-between-system-space = 1.0 + system-system-spacing.basic-distance = #(/ obsolete-between-system-space staff-space) + score-system-spacing.basic-distance = #(/ obsolete-between-system-space staff-space) #(set! text-font-defaults (acons 'font-size 6 text-font-defaults) - + ) } }