]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-a-piano-staff.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.4"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19 texidocde = "
20 Arpeggio über mehrere Systeme können in anderen Kontexten als dem
21 @code{PianoStaff} erstellt werden, wenn der @code{Span_arpeggio_engraver}
22 in den @code{Score}-Kontext eingefügt wird.
23
24 "
25   doctitlede = "Arpeggio über mehrere Systeme in anderen Kontexten"
26 %% Translation of GIT committish: ae814f45737bd1bdaf65b413a4c37f70b84313b7
27   texidocfr = "
28 Dans une double portée pour piano (@code{PianoStaff}), un arpège peut
29 s'étendre sur les deux portées grâce à la propriété 
30 @code{PianoStaff.connectArpeggios}.
31
32 "
33   doctitlefr = "Arpège distribué sur une partition pour piano"
34
35
36   texidoc = "
37 In a @code{PianoStaff}, it is possible to let an arpeggio cross between
38 the staves by setting the property @code{PianoStaff.connectArpeggios}.
39
40
41 "
42   doctitle = "Creating cross-staff arpeggios in a piano staff"
43 } % begin verbatim
44
45 \new PianoStaff \relative c'' <<
46   \set PianoStaff.connectArpeggios = ##t
47   \new Staff {
48     <c e g c>4\arpeggio
49     <g c e g>4\arpeggio
50     <e g c e>4\arpeggio
51     <c e g c>4\arpeggio
52   }
53   \new Staff {
54     \clef bass
55     \repeat unfold 4 {
56       <c,, e g c>4\arpeggio
57     }
58   }
59 >>
60