]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly
e1cc74e9a139ba1941d52a809fd358a6637db268
[lilypond.git] / Documentation / snippets / creating-arpeggios-across-notes-in-different-voices.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.39"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 Se puede trazar un símbolo de arpegio entre notas de distintas
12 voces que están sobre el mismo pentagrama si el grabador
13 @code{Span_arpeggio_engraver} se traslada al contexto de
14 @code{Staff} context:
15
16 "
17   doctitlees = "Crear arpegios entre notas de voces distintas"
18
19
20 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
21 texidocde = "
22 Ein Arpeggio kann zwischen Noten aus unterschiedlichen Stimmen auf demselben
23 System gezogen werden, wenn der @code{Span_arpeggio_engraver} in den
24 @code{Staff}-Kontext verschoben wird:
25
26 "
27   doctitlede = "Arpeggios zwischen unterschiedlichen Stimmen erzeugen"
28
29 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
30   texidocfr = "
31 Affecter le graveur @code{Span_arpeggio_engraver} au contexte de la
32 portée (@code{Staff}) permet de distribuer un arpège sur plusieurs voix :
33
34 "
35   doctitlefr = "Arpège distribué sur plusieurs voix"
36
37
38   texidoc = "
39 An arpeggio can be drawn across notes in different voices on the same
40 staff if the @code{Span_arpeggio_engraver} is added to the @code{Staff}
41 context:
42
43 "
44   doctitle = "Creating arpeggios across notes in different voices"
45 } % begin verbatim
46
47 \new Staff \with {
48   \consists "Span_arpeggio_engraver"
49 }
50 \relative c' {
51   \set Staff.connectArpeggios = ##t
52   <<
53     { <e' g>4\arpeggio <d f> <d f>2 }
54     \\
55     { <d, f>2\arpeggio <g b>2 }
56   >>
57 }
58