]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-a-piano-staff.ly
Doc build: use separate argument for extension and new Example macro.
[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 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
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
27   texidoc = "
28 In a @code{PianoStaff}, it is possible to let an arpeggio cross between
29 the staves by setting the property @code{PianoStaff.connectArpeggios}.
30
31
32 "
33   doctitle = "Creating cross-staff arpeggios in a piano staff"
34 } % begin verbatim
35
36 \new PianoStaff \relative c'' <<
37   \set PianoStaff.connectArpeggios = ##t
38   \new Staff {
39     <c e g c>4\arpeggio
40     <g c e g>4\arpeggio
41     <e g c e>4\arpeggio
42     <c e g c>4\arpeggio
43   }
44   \new Staff {
45     \clef bass
46     \repeat unfold 4 {
47       <c,, e g c>4\arpeggio
48     }
49   }
50 >>
51