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