]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/stem-extend.ly
LSR: adding new files.
[lilypond.git] / input / test / stem-extend.ly
index b3e7297c7ae47a8c0bd8c5afd1004101284b547d..ab3864b2f6952ade25179015260eba97f7640cd5 100644 (file)
@@ -1,26 +1,26 @@
-#(ly:set-option 'old-relative)
-\version "1.9.4"
+\version "2.10.0"
 
 \header { texidoc = "@cindex Stem Extend
-You can stop LilyPond from extending stems to the center line. "
+Extending stems to the center line may be prevented using @code{no-stem-extend}.
+"
 }
 
 \score { 
-  \context Voice \notes\relative c {
+  \context Voice \relative c {
        \context Staff <<
                \new Voice { 
                        f2 f8 g a b 
-                       \property Voice.Stem \set #'no-stem-extend = ##t
+                       \override Stem  #'no-stem-extend = ##t
                        f2 f8 g a b
                }
                \new Voice { 
                        c''2 c8 b a g
-                       \property Voice.Stem \set #'no-stem-extend = ##t
+                       \override Stem  #'no-stem-extend = ##t
                        c2 c8 b a g
                }
        >>
        
   }
-  \paper { raggedright = ##t}  
+  \layout { ragged-right = ##t}  
 }