]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/beam-position.ly
Merge branch 'hwn' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / regression / beam-position.ly
index 1215a416d540fda10766dc2fdf3575dd437c09f7..40a7cb50b47da5a8973086e0a882bfd433058065 100644 (file)
@@ -1,29 +1,27 @@
 
-\version "2.1.30"
+\version "2.10.0"
 \header{
 
-texidoc=" Beams on ledgered notes should always reach the middle staff
+  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] 
-      \override Stem  #'no-stem-extend = ##f
-       f8[ e8] 
-      \revert Stem #'no-stem-extend
-    }
-        f8[ f]
-       
+
+\context Voice \relative c {
+  f8[ f]   f64[ f] 
+  \grace { 
+    f8[ e8] 
+    \override Stem  #'no-stem-extend = ##f
+    f8[ e8] 
+    \revert Stem #'no-stem-extend
   }
-  \paper {
-    raggedright = ##t
-  }  
-  \midi { }
+  f8[ f]
+  
 }