From: Joe Neeman Date: Wed, 7 Feb 2007 12:46:42 +0000 (+0200) Subject: Extra test case in x-staff tuplet brackets X-Git-Tag: release/2.11.18-1~5^2~6^2~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=44a24d19c3c580fd67d31e606f65ee2274d950a0;p=lilypond.git Extra test case in x-staff tuplet brackets --- diff --git a/input/regression/tuplet-bracket-cross-staff.ly b/input/regression/tuplet-bracket-cross-staff.ly index 58c4321985..506e25efdc 100644 --- a/input/regression/tuplet-bracket-cross-staff.ly +++ b/input/regression/tuplet-bracket-cross-staff.ly @@ -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 @@ -8,14 +17,18 @@ } 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 +}