]> git.donarmstrong.com Git - lilypond.git/blob - input/test/preset-extent.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / test / preset-extent.ly
1 \version "2.1.26"
2 \header { texidoc = "
3
4 @cindex Preset Extent
5
6
7 Grob extents may be hard coded using grob properties.
8 The lyrics in this example have extent (-10,10) which is why they are
9 spaced so widely.
10
11 "
12
13 }
14
15 \score {
16     \context Lyrics \lyrics {
17         foo --
18         
19         \override LyricText  #'X-extent = #'(-10.0 . 10.0)
20  bar baz
21         }
22     \paper { raggedright = ##t}
23 }
24     
25