]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly
Doc: 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.16"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
10   texidoces = "
11 Se pueden crear arpegios que se cruzan entre pentagramas dentro de
12 contextos distintos a @code{GrandStaff}, @code{PianoStaff} y
13 @code{StaffGroup} si se incluye el grabador
14 @code{Span_arpeggio_engraver} en el contexto de @code{Score}.
15
16 "
17   doctitlees = "Creación de arpegios que se cruzan entre pentagramas dentro de otros contextos"
18
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
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 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
29   texidocfr = "
30 Il est possible de distribuer un arpège sur plusieurs portées d'un
31 système autre que le @code{PianoStaff} dès lors que vous incluez le
32 @code{Span_arpeggio_engraver} au contexte @code{Score}.
33
34 "
35   doctitlefr = "Arpège distribué pour un autre contexte que le piano"
36
37
38   texidoc = "
39 Cross-staff arpeggios can be created in contexts other than
40 @code{GrandStaff}, @code{PianoStaff} and @code{StaffGroup} if the
41 @code{Span_arpeggio_engraver} is included in the @code{Score} context.
42
43 "
44   doctitle = "Creating cross-staff arpeggios in other contexts"
45 } % begin verbatim
46
47 \score {
48   \new ChoirStaff {
49     \set Score.connectArpeggios = ##t
50     <<
51       \new Voice \relative c' {
52         <c e>2\arpeggio
53         <d f>2\arpeggio
54         <c e>1\arpeggio
55       }
56       \new Voice \relative c {
57         \clef bass
58         <c g'>2\arpeggio
59         <b g'>2\arpeggio
60         <c g'>1\arpeggio
61       }
62     >>
63   }
64   \layout {
65     \context {
66       \Score
67       \consists "Span_arpeggio_engraver"
68     }
69   }
70 }
71