]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/cluster-cross-staff.ly
c55590051b7ec88f269fab1a34f10c2ddc48c09c
[lilypond.git] / input / regression / cluster-cross-staff.ly
1 \header {
2
3     texidoc = "Clusters can be written across staves."
4
5 }
6
7 \version "2.6.0"
8
9 \score {
10     \new PianoStaff <<
11     \context Staff = "up"     {
12         s1 *2
13         }
14         \context Staff = "down" <<
15             \applymusic #notes-to-clusters \relative c  { <c e>4 <f a> <b e> \change Staff = up <e a>
16                                                      <a d> <d g> }
17
18             { \clef bass s1 * 2 }
19             >>
20 >>
21     \layout {
22         raggedright= ##t
23     }
24 }