]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly
LSR: Update.
[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
20 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
21 texidocde = "
22 Ein Arpeggio kann zwischen Noten aus unterschidlichen 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   texidoc = "
30 An arpeggio can be drawn across notes in different voices on the same
31 staff if the @code{Span_arpeggio_engraver} is moved to the @code{Staff}
32 context:
33
34 "
35   doctitle = "Creating arpeggios across notes in different voices"
36 } % begin verbatim
37
38 \new Staff \with {
39   \consists "Span_arpeggio_engraver"
40 }
41 \relative c' {
42   \set Staff.connectArpeggios = ##t
43   <<
44     { <e' g>4\arpeggio <d f> <d f>2 } \\
45     { <d, f>2\arpeggio <g b>2 }
46   >>
47 }
48