]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-a-piano-staff.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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
51 \new PianoStaff \relative c'' <<
52   \set PianoStaff.connectArpeggios = ##t
53   \new Staff {
54     <c e g c>4\arpeggio
55     <g c e g>4\arpeggio
56     <e g c e>4\arpeggio
57     <c e g c>4\arpeggio
58   }
59   \new Staff {
60     \clef bass
61     \repeat unfold 4 {
62       <c,, e g c>4\arpeggio
63     }
64   }
65 >>
66