]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly
Doc-fr: typos in my last commits
[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 %% Translation of GIT committish: ae814f45737bd1bdaf65b413a4c37f70b84313b7
8   texidocfr = "
9 Il est possible de distribuer un arpège sur plusieurs portées d'un
10 système autre que le @code{PianoStaff} dès lors que vous incluez le
11 @code{Span_arpeggio_engraver} au contexte @code{Score}.
12
13 "
14   doctitlefr = "Arpège distribué pour un autre contexte que le piano"
15
16
17   lsrtags = "expressive-marks"
18
19 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
20   texidoces = "
21 Se pueden crear arpegios que se cruzan entre pentagramas dentro de
22 contextos distintos a @code{PianoStaff} si se incluye el grabador
23 @code{Span_arpeggio_engraver} en el contexto de @code{Score}.
24
25 "
26   doctitlees = "Creación de arpegios que se cruzan entre pentagramas dentro de otros contextos"
27
28 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
29  texidocde = "
30 In einem Klaviersystem (@code{PianoStaff}) ist es möglich, ein Arpeggio
31 zwischen beiden Systemen zu verbinden, indem die
32 @code{PianoStaff.connectArpeggios}-Eigenschaft gesetzt wird.
33
34
35 "
36   doctitlede = "Arpeggio zwischen Systemen in einem Klaviersystem erstellen"
37
38   texidoc = "
39 Cross-staff arpeggios can be created in contexts other than
40 @code{PianoStaff} if the @code{Span_arpeggio_engraver} is included in
41 the @code{Score} context.
42
43 "
44   doctitle = "Creating cross-staff arpeggios in other contexts"
45 } % begin verbatim
46
47 \score {
48   \new StaffGroup {
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