LSR: Update.
[lilypond.git] / input / lsr / creating-cross-staff-arpeggios-in-other-contexts.ly
blob9abf71e669db8fcce6d7f5cc9f5046be74d0402d
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"
5 \header {
6 lsrtags = "expressive-marks"
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.
14 doctitle = "Creating cross-staff arpeggios in other contexts"
15 } % begin verbatim
16 \score {
17 \new StaffGroup {
18 \set Score.connectArpeggios = ##t
20 \new Voice \relative c' {
21 <c e>2\arpeggio
22 <d f>2\arpeggio
23 <c e>1\arpeggio
25 \new Voice \relative c {
26 \clef bass
27 <c g'>2\arpeggio
28 <b g'>2\arpeggio
29 <c g'>1\arpeggio
33 \layout {
34 \context {
35 \Score
36 \consists "Span_arpeggio_engraver"