]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-cross-staff-arpeggios-in-a-piano-staff.ly
Merge commit 'csorensen/fret-diagram-details'
[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.49"
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 \new PianoStaff \relative c'' <<
17   \set PianoStaff.connectArpeggios = ##t
18   \new Staff {
19     <c e g c>4\arpeggio
20     <g c e g>4\arpeggio
21     <e g c e>4\arpeggio
22     <c e g c>4\arpeggio
23   }
24   \new Staff {
25     \clef bass
26     \repeat unfold 4 {
27       <c,, e g c>4\arpeggio
28     }
29   }
30 >>