]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-cross-staff-arpeggios-in-other-contexts.ly
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / creating-cross-staff-arpeggios-in-other-contexts.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.48"
4
5 \header {
6   lsrtags = "expressive-marks"
7
8   texidoc = "
9 Cross-staff arpeggios can be created in contexts other than
10 @code{PianoStaff} if the @code{Span_arpeggio_engraver} is included in
11 the @code{Score} context. 
12
13 "
14   doctitle = "Creating cross-staff arpeggios in other contexts"
15 } % begin verbatim
16 \score {
17   \new StaffGroup {
18     \set Score.connectArpeggios = ##t
19     <<
20       \new Voice \relative c' {
21         <c e>2\arpeggio
22         <d f>2\arpeggio
23         <c e>1\arpeggio
24       }
25       \new Voice  \relative c {
26         \clef bass
27          <c g'>2\arpeggio
28          <b g'>2\arpeggio
29          <c g'>1\arpeggio
30       }
31     >>
32   }
33   \layout {
34     \context {
35       \Score
36       \consists "Span_arpeggio_engraver"
37     }
38   }
39 }