]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly
Docs: update LSR
[lilypond.git] / Documentation / snippets / creating-cross-staff-arpeggios-in-other-contexts.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 Se pueden crear arpegios que se cruzan entre pentagramas dentro de
12 contextos distintos a @code{PianoStaff} si se incluye el grabador
13 @code{Span_arpeggio_engraver} en el contexto de @code{Score}.
14
15 "
16   doctitlees = "Creación de arpegios que se cruzan entre pentagramas dentro de otros contextos"
17
18
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20  texidocde = "
21 In einem Klaviersystem (@code{PianoStaff}) ist es möglich, ein Arpeggio
22 zwischen beiden Systemen zu verbinden, indem die
23 @code{PianoStaff.connectArpeggios}-Eigenschaft gesetzt wird.
24
25
26 "
27   doctitlede = "Arpeggio zwischen Systemen in einem Klaviersystem erstellen"
28
29 %% Translation of GIT committish: ae814f45737bd1bdaf65b413a4c37f70b84313b7
30   texidocfr = "
31 Il est possible de distribuer un arpège sur plusieurs portées d'un
32 système autre que le @code{PianoStaff} dès lors que vous incluez le
33 @code{Span_arpeggio_engraver} au contexte @code{Score}.
34
35 "
36   doctitlefr = "Arpège distribué pour un autre contexte que le piano"
37
38
39   texidoc = "
40 Cross-staff arpeggios can be created in contexts other than
41 @code{PianoStaff} if the @code{Span_arpeggio_engraver} is included in
42 the @code{Score} context. 
43
44 "
45   doctitle = "Creating cross-staff arpeggios in other contexts"
46 } % begin verbatim
47
48 \score {
49   \new StaffGroup {
50     \set Score.connectArpeggios = ##t
51     <<
52       \new Voice \relative c' {
53         <c e>2\arpeggio
54         <d f>2\arpeggio
55         <c e>1\arpeggio
56       }
57       \new Voice  \relative c {
58         \clef bass
59          <c g'>2\arpeggio
60          <b g'>2\arpeggio
61          <c g'>1\arpeggio
62       }
63     >>
64   }
65   \layout {
66     \context {
67       \Score
68       \consists "Span_arpeggio_engraver"
69     }
70   }
71 }
72