]> git.donarmstrong.com Git - lilypond.git/blob - input/test/vertical-extent.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[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 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       \set Staff.verticalExtent = #'(-15.0 . 0.0)
15       \clef alto
16       c1
17     }
18     \new Staff {
19       \set Staff.verticalExtent = #'(-0.0 . 15.0)
20       \clef alto
21       g1
22     }
23   >>
24   \paper{
25       raggedright = ##t
26   }
27 }
28