]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-a-piano-staff.ly
44f450cf845f707d70120ba84bf5b0fcf1518935
[lilypond.git] / Documentation / snippets / creating-cross-staff-arpeggios-in-a-piano-staff.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 Dentro de un @code{PianoStaff}, es posible hacer que un arpegio
12 cruce entre los pentagramas ajustando la propiedad
13 @code{PianoStaff.connectArpeggios}.
14
15 "
16   doctitlees = "Crear arpegios que se cruzan entre pentagramas dentro de un sistema de piano"
17
18
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20 texidocde = "
21 Arpeggio über mehrere Systeme können in anderen Kontexten als dem
22 @code{PianoStaff} erstellt werden, wenn der @code{Span_arpeggio_engraver}
23 in den @code{Score}-Kontext eingefügt wird.
24
25 "
26   doctitlede = "Arpeggio über mehrere Systeme in anderen Kontexten"
27
28 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
29   texidocfr = "
30 Dans une double portée pour piano (@code{PianoStaff}), un arpège peut
31 s'étendre sur les deux portées grâce à la propriété
32 @code{PianoStaff.connectArpeggios}.
33
34 "
35   doctitlefr = "Arpège distribué sur une partition pour piano"
36
37
38   texidoc = "
39 In a @code{PianoStaff}, it is possible to let an arpeggio cross between
40 the staves by setting the property @code{PianoStaff.connectArpeggios}.
41
42
43 "
44   doctitle = "Creating cross-staff arpeggios in a piano staff"
45 } % begin verbatim
46
47 \new PianoStaff \relative c'' <<
48   \set PianoStaff.connectArpeggios = ##t
49   \new Staff {
50     <c e g c>4\arpeggio
51     <g c e g>4\arpeggio
52     <e g c e>4\arpeggio
53     <c e g c>4\arpeggio
54   }
55   \new Staff {
56     \clef bass
57     \repeat unfold 4 {
58       <c,, e g c>4\arpeggio
59     }
60   }
61 >>
62