]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-cross-staff-arpeggios-in-other-contexts.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "expressive-marks"
7
8   texidoces = "
9 Se pueden crear arpegios que se cruzan entre pentagramas dentro de
10 contextos distintos a @code{PianoStaff} si se incluye el grabador
11 @code{Span_arpeggio_engraver} en el contexto de @code{Score}.
12
13 "
14   doctitlees = "Creación de arpegios que se cruzan entre pentagramas dentro de otros contextos"
15
16   texidoc = "
17 Cross-staff arpeggios can be created in contexts other than
18 @code{PianoStaff} if the @code{Span_arpeggio_engraver} is included in
19 the @code{Score} context. 
20
21 "
22   doctitle = "Creating cross-staff arpeggios in other contexts"
23 } % begin verbatim
24 \score {
25   \new StaffGroup {
26     \set Score.connectArpeggios = ##t
27     <<
28       \new Voice \relative c' {
29         <c e>2\arpeggio
30         <d f>2\arpeggio
31         <c e>1\arpeggio
32       }
33       \new Voice  \relative c {
34         \clef bass
35          <c g'>2\arpeggio
36          <b g'>2\arpeggio
37          <c g'>1\arpeggio
38       }
39     >>
40   }
41   \layout {
42     \context {
43       \Score
44       \consists "Span_arpeggio_engraver"
45     }
46   }
47 }