]> git.donarmstrong.com Git - lilypond.git/commitdiff
Extra test case in x-staff tuplet brackets
authorJoe Neeman <joeneeman@gmail.com>
Wed, 7 Feb 2007 12:46:42 +0000 (14:46 +0200)
committerJoe Neeman <joeneeman@gmail.com>
Wed, 7 Feb 2007 12:46:42 +0000 (14:46 +0200)
input/regression/tuplet-bracket-cross-staff.ly

index 58c43219858fa926607d06bb9cdbfedf55380f59..506e25efdc6013ad20f4899ed624e8068cfc985d 100644 (file)
@@ -1,5 +1,14 @@
 \version "2.11.16"
-\paper { ragged-right = ##t }
+
+\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' }
 }
 
 \score {
   \new PianoStaff
   <<
-    \new Staff = "RH" { s4 s4 s4 }
-    \new Staff = "LH" { \clef bass \voice }
+    \new Staff = "I" { s4 s4 s4 }
+    \new Staff = "II" { \clef bass \voice }
+    \new Staff = "III" { \clef bass s4 s4 s4 }
   >>
-}
\ No newline at end of file
+}