]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/tuplet-bracket-cross-staff.ly
Merge commit 'origin/dev/jneeman' into systems-per-page
[lilypond.git] / input / regression / tuplet-bracket-cross-staff.ly
index 58c43219858fa926607d06bb9cdbfedf55380f59..346287177ab6f56b60bb821c241085e6d5af55a6 100644 (file)
@@ -1,5 +1,14 @@
-\version "2.11.16"
-\paper { ragged-right = ##t }
+\version "2.12.0"
+
+\paper {
+  ragged-right = ##t
+}
+
+\header {
+  texidoc = "Cross-staff tuplets are drawn correctly,
+even across multiple staves."
+}
+
 \layout {
   \context {
     \Score
 }
 
 voice = {
-  \times 2/3 { b8 \change Staff=RH c' d' }
-  \times 2/3 { d' c' \change Staff=LH b }
+  \times 2/3 { b8 \change Staff=I c' d' }
+  \times 2/3 { d' c' \change Staff=II b }
+  \times 2/3 { \change Staff=III c,
+               \change Staff=II b
+               \change Staff=I c' }
+  \times 2/3 { c'[ \change Staff=II b] c }
 }
 
 \score {
   \new PianoStaff
   <<
-    \new Staff = "RH" { s4 s4 s4 }
-    \new Staff = "LH" { \clef bass \voice }
+    \new Staff = "I" { s1 }
+    \new Staff = "II" { \clef bass \voice }
+    \new Staff = "III" { \clef bass s1 }
   >>
-}
\ No newline at end of file
+}