]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-a-piano-staff.ly
Doc: Update LSR.
[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.16"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
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