]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/tuplet-bracket-cross-staff.ly
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / regression / tuplet-bracket-cross-staff.ly
index 58c43219858fa926607d06bb9cdbfedf55380f59..d06d3cfb04e7f2f3b9d9c37cdfe457c6c3db61ff 100644 (file)
@@ -1,5 +1,14 @@
-\version "2.11.16"
-\paper { ragged-right = ##t }
+\version "2.11.51"
+
+\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
+}