]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-cross-staff-arpeggios-in-other-contexts.ly
Merge branch 'stable'
[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.12.0"
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 %% Translation of GIT committish :<6ce7f350682dfa99af97929be1dec6b9f1cbc01a>
17  texidocde = "
18 In einem Klaviersystem (@code{PianoStaff}) ist es möglich, ein Arpeggio
19 zwischen beiden Systemen zu verbinden, indem die
20 @code{PianoStaff.connectArpeggios}-Eigenschaft gesetzt wird.
21  
22
23 "
24   doctitlede = "Arpeggio zwischen Systemen in einem Klaviersystem erstellen"
25
26   texidoc = "
27 Cross-staff arpeggios can be created in contexts other than
28 @code{PianoStaff} if the @code{Span_arpeggio_engraver} is included in
29 the @code{Score} context. 
30
31 "
32   doctitle = "Creating cross-staff arpeggios in other contexts"
33 } % begin verbatim
34
35 \score {
36   \new StaffGroup {
37     \set Score.connectArpeggios = ##t
38     <<
39       \new Voice \relative c' {
40         <c e>2\arpeggio
41         <d f>2\arpeggio
42         <c e>1\arpeggio
43       }
44       \new Voice  \relative c {
45         \clef bass
46          <c g'>2\arpeggio
47          <b g'>2\arpeggio
48          <c g'>1\arpeggio
49       }
50     >>
51   }
52   \layout {
53     \context {
54       \Score
55       \consists "Span_arpeggio_engraver"
56     }
57   }
58 }