]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/beam-multiple-cross-staff.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / beam-multiple-cross-staff.ly
index a627df8d32919e431eb5f89d3390851bbb7ff8ad..7827e3d723ecdf35d647fff5e67873e14a4d9240 100644 (file)
@@ -1,28 +1,32 @@
+\version "2.16.0"
 \header {
 
-    texidoc = "Kneed beams (often happens with cross-staff beams)
+  texidoc = "Kneed beams (often happens with cross-staff beams)
 should look good when there are multiple beams: all the beams should
-go on continuously at the staff change. Stems in both staffs reach up
+go on continuously at the staff change. Stems in both staves reach up
 to the last beam.
 "
 }
 
-\score { \notes
-        \context PianoStaff \relative c' <
-            \context Staff = SA {
-                \stemDown
-                [c8 c16 \translator Staff = SB \stemUp c16 ]
-                \stemBoth
-                [f g \translator Staff = SA a c] 
-                              }
-            \context Staff = SB \relative c' {
-\clef bass
-                [b8 b16 \stemUp b,,16 ]
+\layout {
+  ragged-right= ##t
+}
+
+\context PianoStaff \relative c' <<
+  \new Staff = SA {
+    \stemDown
+    c8[ c16 \change Staff = SB \stemUp c16 ]
+    \stemNeutral
+    f[ g \change Staff = SA a c] 
+  }
+  \new Staff = SB \relative c' {
+    \clef bass
+    b8[ b16 \stemUp b,,16 ]
+
+    g'4\rest
+    b,8[ b16 \stemDown b''16 b ]
+  }
+  
+>>
 
-                g'4\rest
-                [b,8 b16 \stemDown b''16 b ]
-            }       
-            
-            >
 
-}