]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/beam-position.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / beam-position.ly
index eca2ccf9bb157eaeaa63d6cac6e2fd5ebcbee06e..6c6b53a73d27143066ba55f3da0d812c733f741e 100644 (file)
@@ -1,28 +1,27 @@
-\version "1.5.68"
+
+\version "2.19.21"
 \header{
-texidoc="
-Beams should always reach the middle staff line.  The second beam
-counting from the note head side, should never be lower than the
-second staff line.  This does not hold for grace note beams.
-Override with @code{noStemExtend}.
-"
+
+  texidoc=" Beams on ledgered notes should always reach the middle staff
+line.  The second beam, counting from the note head side, should never
+be lower than the second staff line.  This does not hold for grace
+note beams.  Override with @code{no-stem-extend}.  "
+
 }
 
+\layout {
+  ragged-right = ##t
+}  
+
 
-\score { 
-  \context Voice \notes\relative c {
-    [f8 f]  [f64 f] 
-    \grace { 
-      [f8 e8] 
-      \property Voice.Stem \override #'no-stem-extend = ##f
-      [f8 e8] 
-      \property Voice.Stem \revert #'no-stem-extend
-    }
-       [f8 f]
-       
+\context Voice \relative {
+  f8[ f]   f64[ f] 
+  \grace { 
+    f8[ e8] 
+    \override Stem.no-stem-extend = ##f
+    f8[ e8] 
+    \revert Stem.no-stem-extend
   }
-  \paper {
-    linewidth=-1.0
-  }  
-  \midi { }
+  f8[ f]
+  
 }