]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-multiple-cross-staff.ly
Merge branch 'stable/2.16' into staging
[lilypond.git] / input / regression / beam-multiple-cross-staff.ly
1 \version "2.16.0"
2 \header {
3
4   texidoc = "Kneed beams (often happens with cross-staff beams)
5 should look good when there are multiple beams: all the beams should
6 go on continuously at the staff change. Stems in both staves reach up
7 to the last beam.
8 "
9 }
10
11 \layout {
12   ragged-right= ##t
13 }
14
15 \context PianoStaff \relative c' <<
16   \new Staff = SA {
17     \stemDown
18     c8[ c16 \change Staff = SB \stemUp c16 ]
19     \stemNeutral
20     f[ g \change Staff = SA a c] 
21   }
22   \new Staff = SB \relative c' {
23     \clef bass
24     b8[ b16 \stemUp b,,16 ]
25
26     g'4\rest
27     b,8[ b16 \stemDown b''16 b ]
28   }
29   
30 >>
31
32