]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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
53 \score {
54   \new ChoirStaff {
55     \set Score.connectArpeggios = ##t
56     <<
57       \new Voice \relative c' {
58         <c e>2\arpeggio
59         <d f>2\arpeggio
60         <c e>1\arpeggio
61       }
62       \new Voice \relative c {
63         \clef bass
64         <c g'>2\arpeggio
65         <b g'>2\arpeggio
66         <c g'>1\arpeggio
67       }
68     >>
69   }
70   \layout {
71     \context {
72       \Score
73       \consists "Span_arpeggio_engraver"
74     }
75   }
76 }
77