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