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