]> 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
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20 texidocde = "
21 Arpeggio über mehrere Systeme können in anderen Kontexten als dem
22 @code{PianoStaff} erstellt werden, wenn der @code{Span_arpeggio_engraver}
23 in den @code{Score}-Kontext eingefügt wird.
24
25 "
26   doctitlede = "Arpeggio über mehrere Systeme in anderen Kontexten"
27
28   texidoc = "
29 In a @code{PianoStaff}, it is possible to let an arpeggio cross between
30 the staves by setting the property @code{PianoStaff.connectArpeggios}.
31
32
33 "
34   doctitle = "Creating cross-staff arpeggios in a piano staff"
35 } % begin verbatim
36
37 \new PianoStaff \relative c'' <<
38   \set PianoStaff.connectArpeggios = ##t
39   \new Staff {
40     <c e g c>4\arpeggio
41     <g c e g>4\arpeggio
42     <e g c e>4\arpeggio
43     <c e g c>4\arpeggio
44   }
45   \new Staff {
46     \clef bass
47     \repeat unfold 4 {
48       <c,, e g c>4\arpeggio
49     }
50   }
51 >>
52