]> git.donarmstrong.com Git - lilypond.git/blob - input/test/preset-extent.ly
Fix #362 (2)
[lilypond.git] / input / test / preset-extent.ly
1 \version "2.10.0"
2 \header { texidoc = "
3
4 @cindex Preset Extent
5
6 The object may be extended to larger sized by overriding their properties.
7 The lyrics in this example have an extent of @code{(-10,10)}, which is why 
8 they are spaced so widely.
9
10 "
11
12 }
13
14 \score {
15     \context Lyrics \lyricmode {
16         foo --
17         
18         \override LyricText  #'X-extent = #'(-10.0 . 10.0)
19  bar baz
20         }
21     \layout { ragged-right = ##t}
22 }
23     
24