]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-cross-staff-arpeggios-in-a-piano-staff.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[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 %% Translation of GIT committish: dff50e8e1d3134657a6b6203b9c93826dc4cef65
9   texidoces = "
10 Dentro de un @code{PianoStaff}, es posible hacer que un arpegio
11 cruce entre los pentagramas ajustando la propiedad
12 @code{PianoStaff.connectArpeggios}.
13  
14 "
15   doctitlees = "Crear arpegios que se cruzan entre pentagramas dentro de un sistema de piano"
16   
17 %% Translation of GIT committish: 6ce7f350682dfa99af97929be1dec6b9f1cbc01a
18 texidocde = "
19 Arpeggio über mehrere Systeme können in anderen Kontexten als dem
20 @code{PianoStaff} erstellt werden, wenn der @code{Span_arpeggio_engraver}
21 in den @code{Score}-Kontext eingefügt wird.
22
23 "
24   doctitlede = "Arpeggio über mehrere Systeme in anderen Kontexten"
25
26   texidoc = "
27 In a @code{PianoStaff}, it is possible to let an arpeggio cross between
28 the staves by setting the property @code{PianoStaff.connectArpeggios}.
29  
30
31 "
32   doctitle = "Creating cross-staff arpeggios in a piano staff"
33 } % begin verbatim
34
35 \new PianoStaff \relative c'' <<
36   \set PianoStaff.connectArpeggios = ##t
37   \new Staff {
38     <c e g c>4\arpeggio
39     <g c e g>4\arpeggio
40     <e g c e>4\arpeggio
41     <c e g c>4\arpeggio
42   }
43   \new Staff {
44     \clef bass
45     \repeat unfold 4 {
46       <c,, e g c>4\arpeggio
47     }
48   }
49 >>
50