]> git.donarmstrong.com Git - lilypond.git/blob - input/test/vertical-extent.ly
21d989a969d2285e54d9bd848fc8e577b65356df
[lilypond.git] / input / test / vertical-extent.ly
1 \version "2.1.26"
2 % TODO: huh?  what's this file about?  -gp
3
4 \header { texidoc = "
5 Vertical extents may increased by setting @code{minimumVerticalExtent}, 
6 @code{extraVerticalExtent}, and @code{verticalExtent}. In this example,
7 @code{verticalExtent} is increased.
8 " }
9
10 \score {
11   \notes  <<
12     \new Staff {
13       \set Staff.verticalExtent = #'(-15.0 . 0.0)
14       \clef alto
15       c1
16     }
17     \new Staff {
18       \set Staff.verticalExtent = #'(-0.0 . 15.0)
19       \clef alto
20       g1
21     }
22   >>
23   \paper{
24       raggedright = ##t
25   }
26 }
27