]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-a-piano-staff.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / creating-cross-staff-arpeggios-in-a-piano-staff.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
13   texidoces = "
14 Dentro de un @code{PianoStaff}, es posible hacer que un arpegio
15 cruce entre los pentagramas ajustando la propiedad
16 @code{PianoStaff.connectArpeggios}.
17
18 "
19   doctitlees = "Crear arpegios que se cruzan entre pentagramas dentro de un sistema de piano"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23 texidocde = "
24 Arpeggio über mehrere Systeme können in anderen Kontexten als dem
25 @code{PianoStaff} erstellt werden, wenn der @code{Span_arpeggio_engraver}
26 in den @code{Score}-Kontext eingefügt wird.
27
28 "
29   doctitlede = "Arpeggio über mehrere Systeme in anderen Kontexten"
30
31 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
32   texidocfr = "
33 Dans une double portée pour piano (@code{PianoStaff}), un arpège peut
34 s'étendre sur les deux portées grâce à la propriété
35 @code{PianoStaff.connectArpeggios}.
36
37 "
38   doctitlefr = "Arpège distribué sur une partition pour piano"
39
40
41   texidoc = "
42 In a @code{PianoStaff}, it is possible to let an arpeggio cross between
43 the staves by setting the property @code{PianoStaff.connectArpeggios}.
44
45
46 "
47   doctitle = "Creating cross-staff arpeggios in a piano staff"
48 } % begin verbatim
49
50 \new PianoStaff \relative c'' <<
51   \set PianoStaff.connectArpeggios = ##t
52   \new Staff {
53     <c e g c>4\arpeggio
54     <g c e g>4\arpeggio
55     <e g c e>4\arpeggio
56     <c e g c>4\arpeggio
57   }
58   \new Staff {
59     \clef bass
60     \repeat unfold 4 {
61       <c,, e g c>4\arpeggio
62     }
63   }
64 >>
65