]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-cross-staff-arpeggios-in-other-contexts.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[lilypond.git] / input / lsr / creating-cross-staff-arpeggios-in-other-contexts.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 Se pueden crear arpegios que se cruzan entre pentagramas dentro de
11 contextos distintos a @code{PianoStaff} si se incluye el grabador
12 @code{Span_arpeggio_engraver} en el contexto de @code{Score}.
13
14 "
15   doctitlees = "Creación de arpegios que se cruzan entre pentagramas dentro de otros contextos"
16   
17 %% Translation of GIT committish: 6ce7f350682dfa99af97929be1dec6b9f1cbc01a
18  texidocde = "
19 In einem Klaviersystem (@code{PianoStaff}) ist es möglich, ein Arpeggio
20 zwischen beiden Systemen zu verbinden, indem die
21 @code{PianoStaff.connectArpeggios}-Eigenschaft gesetzt wird.
22  
23
24 "
25   doctitlede = "Arpeggio zwischen Systemen in einem Klaviersystem erstellen"
26
27   texidoc = "
28 Cross-staff arpeggios can be created in contexts other than
29 @code{PianoStaff} if the @code{Span_arpeggio_engraver} is included in
30 the @code{Score} context. 
31
32 "
33   doctitle = "Creating cross-staff arpeggios in other contexts"
34 } % begin verbatim
35
36 \score {
37   \new StaffGroup {
38     \set Score.connectArpeggios = ##t
39     <<
40       \new Voice \relative c' {
41         <c e>2\arpeggio
42         <d f>2\arpeggio
43         <c e>1\arpeggio
44       }
45       \new Voice  \relative c {
46         \clef bass
47          <c g'>2\arpeggio
48          <b g'>2\arpeggio
49          <c g'>1\arpeggio
50       }
51     >>
52   }
53   \layout {
54     \context {
55       \Score
56       \consists "Span_arpeggio_engraver"
57     }
58   }
59 }
60