]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/feathered-beam.ly
* lily/staff-symbol-referencer.cc (get_position): emergency
[lilypond.git] / input / test / feathered-beam.ly
index d0bfd39e9a70dd64fa1e57a533132fbc0150bb98..ef3c1341461506aaf7e749b58cd1406de11ee908 100644 (file)
@@ -5,16 +5,22 @@ beams: manually make two beams overlap. This uses tuplets to
 condense the spacing."
 
     }
+\paper { raggedright = ##t }
 
-\score {
-      \relative c' {
-       \context Voice {  << { \stemUp \once \override Voice.Beam #'positions = #'(0 . 0.5)
-                              \once \override Voice.TupletBracket #'number-visibility = ##f 
-                              \times 1/2 { c8[ c c c c c c c]} } \\
-                            { \stemUp \once \override Voice.Beam #'positions = #'(0 . -0.5) 
-                              \once \override Voice.TupletBracket #'number-visibility = ##f 
-                              \times 1/2 { c[ c c c c c c c] }} >> } r2
-    } 
-    \paper { raggedright = ##t }
+\relative \new Staff <<
+    \new Voice
+    {
+       \stemUp
+       \once \override Voice.Beam #'positions = #'(0 . 0.5)
+       \once \override Voice.TupletBracket #'number-visibility = ##f 
+       \times 1/2 { c8[ c c c c c c c]
+                }
+    }
+    \new Voice {
+       \stemUp
+       \once \override Voice.Beam #'positions = #'(0 . -0.5) 
+       \once \override Voice.TupletBracket #'number-visibility = ##f 
+       \times 1/2 { c[ c c c c c c c] }
+    }
+>>
 
-}