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