]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/preset-extent.ly
Fix #362 (2)
[lilypond.git] / input / test / preset-extent.ly
index 76f7b2d979f6e4898accf2b79336ef26b9fce41b..797e7f64b9784771cd204331178c2dcc0f97549d 100644 (file)
@@ -1,25 +1,24 @@
-\version "2.1.21"
+\version "2.10.0"
 \header { texidoc = "
 
 @cindex Preset Extent
 
-
-Grob extents may be hard coded using grob properties.
-The lyrics in this example have extent (-10,10) which is why they are
-spaced so widely.
+The object may be extended to larger sized by overriding their properties.
+The lyrics in this example have an extent of @code{(-10,10)}, which is why 
+they are spaced so widely.
 
 "
 
 }
 
 \score {
-    \context Lyrics \lyrics {
+    \context Lyrics \lyricmode {
        foo --
        
-       \property Lyrics . LyricText \set #'X-extent = #'(-10.0 . 10.0)
+       \override LyricText  #'X-extent = #'(-10.0 . 10.0)
  bar baz
        }
-    \paper { raggedright = ##t}
+    \layout { ragged-right = ##t}
 }