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