]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.4"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20 texidocde = "
21 Ein Arpeggio kann zwischen Noten aus unterschidlichen Stimmen auf demselben
22 System gezogen werden, wenn der @code{Span_arpeggio_engraver} in den
23 @code{Staff}-Kontext verschoben wird:
24
25 "
26   doctitlede = "Arpeggios zwischen unterschiedlichen Stimmen erzeugen"
27 %% Translation of GIT committish: ae814f45737bd1bdaf65b413a4c37f70b84313b7
28   texidocfr = "
29 Affecter le graveur @code{Span_arpeggio_engraver} au contexte de la
30 portée (@code{Staff}) permet de distribuer un arpège sur plusieurs voix :
31
32 "
33   doctitlefr = "Arpège distribué sur plusieurs voix"
34
35
36   texidoc = "
37 An arpeggio can be drawn across notes in different voices on the same
38 staff if the @code{Span_arpeggio_engraver} is moved to the @code{Staff}
39 context:
40
41 "
42   doctitle = "Creating arpeggios across notes in different voices"
43 } % begin verbatim
44
45 \new Staff \with {
46   \consists "Span_arpeggio_engraver"
47 }
48 \relative c' {
49   \set Staff.connectArpeggios = ##t
50   <<
51     { <e' g>4\arpeggio <d f> <d f>2 } \\
52     { <d, f>2\arpeggio <g b>2 }
53   >>
54 }
55