]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly
Merge branch 'master' of git://git.savannah.gnu.org/lilypond.git
[lilypond.git] / Documentation / snippets / creating-cross-staff-arpeggios-in-other-contexts.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
13   texidoces = "
14 Se pueden crear arpegios que se cruzan entre pentagramas dentro de
15 contextos distintos a @code{GrandStaff}, @code{PianoStaff} y
16 @code{StaffGroup} si se incluye el grabador
17 @code{Span_arpeggio_engraver} en el contexto de @code{Score}.
18
19 "
20   doctitlees = "Creación de arpegios que se cruzan entre pentagramas dentro de otros contextos"
21
22
23 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
24  texidocde = "
25 In einem Klaviersystem (@code{PianoStaff}) ist es möglich, ein Arpeggio
26 zwischen beiden Systemen zu verbinden, indem die
27 @code{PianoStaff.connectArpeggios}-Eigenschaft gesetzt wird.
28
29
30 "
31   doctitlede = "Arpeggio zwischen Systemen in einem Klaviersystem erstellen"
32
33 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
34   texidocfr = "
35 Il est possible de distribuer un arpège sur plusieurs portées d'un
36 système autre que le @code{PianoStaff} dès lors que vous incluez le
37 @code{Span_arpeggio_engraver} au contexte @code{Score}.
38
39 "
40   doctitlefr = "Arpège distribué pour un autre contexte que le piano"
41
42
43   texidoc = "
44 Cross-staff arpeggios can be created in contexts other than
45 @code{GrandStaff}, @code{PianoStaff} and @code{StaffGroup} if the
46 @code{Span_arpeggio_engraver} is included in the @code{Score} context.
47
48 "
49   doctitle = "Creating cross-staff arpeggios in other contexts"
50 } % begin verbatim
51
52 \score {
53   \new ChoirStaff {
54     \set Score.connectArpeggios = ##t
55     <<
56       \new Voice \relative c' {
57         <c e>2\arpeggio
58         <d f>2\arpeggio
59         <c e>1\arpeggio
60       }
61       \new Voice \relative c {
62         \clef bass
63         <c g'>2\arpeggio
64         <b g'>2\arpeggio
65         <c g'>1\arpeggio
66       }
67     >>
68   }
69   \layout {
70     \context {
71       \Score
72       \consists "Span_arpeggio_engraver"
73     }
74   }
75 }
76