]> git.donarmstrong.com Git - lilypond.git/blob - input/test/vertical-extent.ly
* scripts/convert-ly.py (FatalConversionError.figures_replace):
[lilypond.git] / input / test / vertical-extent.ly
1 \version "1.9.4"
2 % TODO: huh?  what's this file about?  -gp
3
4 \header { texidoc = "
5 Vertical extents may be overriden by
6 minimumVerticalExtent, extraVerticalExtent, and  verticalExtent. These are
7 normal property values, and are written into the grob when the
8 associated context finishes, so using it in \property works.
9 " }
10
11 \score {
12   \notes  <<
13     \new Staff {
14       \property Staff.verticalExtent = #'(-15.0 . 0.0)
15       \clef alto
16       c1
17     }
18     \new Staff {
19       \property Staff.verticalExtent = #'(-0.0 . 15.0)
20       \clef alto
21       g1
22     }
23   >>
24   \paper{
25       raggedright = ##t
26   }
27 }
28