]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-multiple-cross-staff.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / beam-multiple-cross-staff.ly
1 \version "2.19.21"
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     \voiceTwo
18     c8[ c16 \change Staff = SB \voiceOne c16 ]
19     \oneVoice
20     f[ g \change Staff = SA a c] 
21   }
22   \new Staff = SB \relative {
23     \clef bass
24     b8[ b16 \voiceOne b,,16 ]
25
26     g'4\rest
27     b,8[ b16 \voiceTwo b''16 b ]
28   }
29   
30 >>
31
32