]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly
241a4a11608611cc6f3f0b623f848de9b21e3052
[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.39"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 Se pueden crear arpegios que se cruzan entre pentagramas dentro de
12 contextos distintos a @code{GrandStaff}, @code{PianoStaff} y
13 @code{StaffGroup} si se incluye el grabador
14 @code{Span_arpeggio_engraver} en el contexto de @code{Score}.
15
16 "
17   doctitlees = "Creación de arpegios que se cruzan entre pentagramas dentro de otros contextos"
18
19
20 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
21  texidocde = "
22 In einem Klaviersystem (@code{PianoStaff}) ist es möglich, ein Arpeggio
23 zwischen beiden Systemen zu verbinden, indem die
24 @code{PianoStaff.connectArpeggios}-Eigenschaft gesetzt wird.
25
26
27 "
28   doctitlede = "Arpeggio zwischen Systemen in einem Klaviersystem erstellen"
29
30 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
31   texidocfr = "
32 Il est possible de distribuer un arpège sur plusieurs portées d'un
33 système autre que le @code{PianoStaff} dès lors que vous incluez le
34 @code{Span_arpeggio_engraver} au contexte @code{Score}.
35
36 "
37   doctitlefr = "Arpège distribué pour un autre contexte que le piano"
38
39
40   texidoc = "
41 Cross-staff arpeggios can be created in contexts other than
42 @code{GrandStaff}, @code{PianoStaff} and @code{StaffGroup} if the
43 @code{Span_arpeggio_engraver} is included in the @code{Score} context.
44
45 "
46   doctitle = "Creating cross-staff arpeggios in other contexts"
47 } % begin verbatim
48
49 \score {
50   \new ChoirStaff {
51     \set Score.connectArpeggios = ##t
52     <<
53       \new Voice \relative c' {
54         <c e>2\arpeggio
55         <d f>2\arpeggio
56         <c e>1\arpeggio
57       }
58       \new Voice \relative c {
59         \clef bass
60         <c g'>2\arpeggio
61         <b g'>2\arpeggio
62         <c g'>1\arpeggio
63       }
64     >>
65   }
66   \layout {
67     \context {
68       \Score
69       \consists "Span_arpeggio_engraver"
70     }
71   }
72 }
73