]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplet-bracket-cross-staff.ly
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / regression / tuplet-bracket-cross-staff.ly
1 \version "2.11.16"
2 \paper { ragged-right = ##t }
3 \layout {
4   \context {
5     \Score
6     \override TupletBracket #'bracket-visibility = ##t
7   }
8 }
9
10 voice = {
11   \times 2/3 { b8 \change Staff=RH c' d' }
12   \times 2/3 { d' c' \change Staff=LH b }
13 }
14
15 \score {
16   \new PianoStaff
17   <<
18     \new Staff = "RH" { s4 s4 s4 }
19     \new Staff = "LH" { \clef bass \voice }
20   >>
21 }