]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/cluster-cross-staff.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / cluster-cross-staff.ly
index 9cc7ce6e0e1ae18792bbc40268b64c41bef651b1..994b8ddfb8c4abe5d9889e1deab5459389851d3c 100644 (file)
@@ -3,22 +3,20 @@
     texidoc = "Clusters can be written across staves."
 
 }
+\layout {
+  ragged-right= ##t
+}
 
-\version "2.2.0"
+\version "2.19.21"
 
-\score {
-\notes    \new PianoStaff <<
-    \context Staff = up     {
-       s1 *2
-       }
-       \context Staff = down <<
-           \apply #notes-to-clusters \relative c  { <c e>4 <f a> <b e> \change Staff = up <e a>
-                                                    <a d> <d g> }
+\new PianoStaff <<
+  \new Staff = "up"     {
+    s1 *2
+  }
+  \new Staff = "down" <<
+    \applyMusic #notes-to-clusters \relative  { <c e>4 <f a> <b e> \change Staff = up <e a>
+                                                 <a d> <d g> }
 
-           { \clef bass s1 * 2 }
-           >>
+    { \clef bass s1 * 2 }
+  >>
 >>
-    \paper {
-       raggedright= ##t
-    }
-}