]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-spacing-nonstaff-lines-header-padding.ly
b98ec7eea5d27199a46291194fc930f47c70852d
[lilypond.git] / input / regression / page-spacing-nonstaff-lines-header-padding.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "Padding from the header and footer is measured to the
5 first non-staff line, whether or not it is spaceable."
6 }
7
8 #(set-default-paper-size "a6")
9
10 \book {
11   \paper {
12     top-system-spacing = #'((basic-distance . 1) (padding . 10))
13     last-bottom-spacing = #'((basic-distance . 1) (padding . 10))
14     annotate-spacing = ##t
15     ragged-last-bottom = ##f
16   }
17
18   \score {
19     <<
20       \new Lyrics \with { \override VerticalAxisGroup #'staff-affinity = #DOWN } \lyricmode { foo }
21       \new Lyrics \with { \override VerticalAxisGroup #'staff-affinity = #DOWN } \lyricmode { foo }
22       \new Lyrics \with { \override VerticalAxisGroup #'staff-affinity = #DOWN } \lyricmode { foo }
23       \new Lyrics \with { \override VerticalAxisGroup #'staff-affinity = #DOWN } \lyricmode { foo }
24       \new Staff { c'1 }
25       \new Staff { c'1 }
26       \new Lyrics \lyricmode { foo }
27       \new Lyrics \lyricmode { foo }
28       \new Lyrics \lyricmode { foo }
29       \new Lyrics \lyricmode { foo }
30     >>
31   }
32 }