X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fpage-spacing.ly;h=2227b0fb1ec45b31217a5e82c15482fff9ad9f70;hb=5d84bfad4626892bcffd05adcced53c8a2329047;hp=6dccbccf7521a840ca7fc174a2926cec014a1b9e;hpb=39dd20959c8b3a143cfe41138a5c62749da54079;p=lilypond.git diff --git a/input/regression/page-spacing.ly b/input/regression/page-spacing.ly index 6dccbccf75..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.13" +\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 @@ -66,14 +62,16 @@ By setting @code{annotatespacing}, we can see the effect of each property. >> } \paper { - raggedlastbottom = ##f - annotatespacing = ##t - betweensystemspace = 1.0 + ragged-last-bottom = ##f + annotate-spacing = ##t + 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) - + ) } }