]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly
Docs: update snippets locally
[lilypond.git] / Documentation / snippets / creating-cross-staff-arpeggios-in-other-contexts.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Se pueden crear arpegios que se cruzan entre pentagramas dentro de
12 contextos distintos a @code{PianoStaff} si se incluye el grabador
13 @code{Span_arpeggio_engraver} en el contexto de @code{Score}.
14
15 "
16   doctitlees = "Creación de arpegios que se cruzan entre pentagramas dentro de otros contextos"
17
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19  texidocde = "
20 In einem Klaviersystem (@code{PianoStaff}) ist es möglich, ein Arpeggio
21 zwischen beiden Systemen zu verbinden, indem die
22 @code{PianoStaff.connectArpeggios}-Eigenschaft gesetzt wird.
23
24
25 "
26   doctitlede = "Arpeggio zwischen Systemen in einem Klaviersystem erstellen"
27
28   texidoc = "
29 Cross-staff arpeggios can be created in contexts other than
30 @code{PianoStaff} if the @code{Span_arpeggio_engraver} is included in
31 the @code{Score} context.
32
33 "
34   doctitle = "Creating cross-staff arpeggios in other contexts"
35 } % begin verbatim
36
37 \score {
38   \new StaffGroup {
39     \set Score.connectArpeggios = ##t
40     <<
41       \new Voice \relative c' {
42         <c e>2\arpeggio
43         <d f>2\arpeggio
44         <c e>1\arpeggio
45       }
46       \new Voice  \relative c {
47         \clef bass
48          <c g'>2\arpeggio
49          <b g'>2\arpeggio
50          <c g'>1\arpeggio
51       }
52     >>
53   }
54   \layout {
55     \context {
56       \Score
57       \consists "Span_arpeggio_engraver"
58     }
59   }
60 }
61