]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-cross-staff-arpeggios-in-a-piano-staff.ly
Merge branch 'master' of /home/lilydev/git/lily/
[lilypond.git] / input / lsr / creating-cross-staff-arpeggios-in-a-piano-staff.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.46"
4
5 \header {
6   lsrtags = "expressive-marks"
7
8   texidoc = "
9 In a @code{PianoStaff}, it is possible to let an arpeggio cross between
10 the staves by setting the property @code{PianoStaff.connectArpeggios}.
11  
12
13 "
14   doctitle = "Creating cross-staff arpeggios in a piano staff"
15 } % begin verbatim
16 \relative c'' {
17
18 \new PianoStaff <<
19   \set PianoStaff.connectArpeggios = ##t
20   \new Staff {
21     <c e g c>\arpeggio
22     <g c e g>\arpeggio
23     <e g c e>\arpeggio
24     <c e g c>\arpeggio
25   }
26   \new Staff {
27     \clef bass
28     \repeat unfold 4 {
29       <c,, e g c>\arpeggio
30     }
31   }
32 >>
33
34 }