]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-cross-staff-arpeggios-in-a-piano-staff.ly
Doc-es: pre-merge update of texidoc committishes.
[lilypond.git] / input / lsr / creating-cross-staff-arpeggios-in-a-piano-staff.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "expressive-marks"
7
8   texidoces = "
9 Dentro de un @code{PianoStaff}, es posible hacer que un arpegio
10 cruce entre los pentagramas ajustando la propiedad
11 @code{PianoStaff.connectArpeggios}.
12  
13 "
14   doctitlees = "Crear arpegios que se cruzan entre pentagramas dentro de un sistema de piano"
15   
16 %% Translation of GIT committish :<6ce7f350682dfa99af97929be1dec6b9f1cbc01a>
17 texidocde = "
18 Arpeggio über mehrere Systeme können in anderen Kontexten als dem
19 @code{PianoStaff} erstellt werden, wenn der @code{Span_arpeggio_engraver}
20 in den @code{Score}-Kontext eingefügt wird.
21
22 "
23   doctitlede = "Arpeggio über mehrere Systeme in anderen Kontexten"
24
25   texidoc = "
26 In a @code{PianoStaff}, it is possible to let an arpeggio cross between
27 the staves by setting the property @code{PianoStaff.connectArpeggios}.
28  
29
30 "
31   doctitle = "Creating cross-staff arpeggios in a piano staff"
32 } % begin verbatim
33
34 \new PianoStaff \relative c'' <<
35   \set PianoStaff.connectArpeggios = ##t
36   \new Staff {
37     <c e g c>4\arpeggio
38     <g c e g>4\arpeggio
39     <e g c e>4\arpeggio
40     <c e g c>4\arpeggio
41   }
42   \new Staff {
43     \clef bass
44     \repeat unfold 4 {
45       <c,, e g c>4\arpeggio
46     }
47   }
48 >>