]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplet-bracket-cross-staff.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / tuplet-bracket-cross-staff.ly
1 \version "2.11.51"
2
3 \paper {
4   ragged-right = ##t
5 }
6
7 \header {
8   texidoc = "Cross-staff tuplets are drawn correctly,
9 even across multiple staves."
10 }
11
12 \layout {
13   \context {
14     \Score
15     \override TupletBracket #'bracket-visibility = ##t
16   }
17 }
18
19 voice = {
20   \times 2/3 { b8 \change Staff=I c' d' }
21   \times 2/3 { d' c' \change Staff=II b }
22   \times 2/3 { \change Staff=III c,
23                \change Staff=II b
24                \change Staff=I c' }
25   \times 2/3 { c'[ \change Staff=II b] c }
26 }
27
28 \score {
29   \new PianoStaff
30   <<
31     \new Staff = "I" { s1 }
32     \new Staff = "II" { \clef bass \voice }
33     \new Staff = "III" { \clef bass s1 }
34   >>
35 }