]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[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.16"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
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: d96023d8792c8af202c7cb8508010c0d3648899d
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: ae814f45737bd1bdaf65b413a4c37f70b84313b7
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