]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-arpeggios-across-notes-in-different-voices.ly
a8af67298420766f8277620272973c9275b83254
[lilypond.git] / input / lsr / creating-arpeggios-across-notes-in-different-voices.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "expressive-marks"
7
8 %% Translation of GIT committish: dff50e8e1d3134657a6b6203b9c93826dc4cef65
9   texidoces = "
10 Se puede trazar un símbolo de arpegio entre notas de distintas
11 voces que están sobre el mismo pentagrama si el grabador
12 @code{Span_arpeggio_engraver} se traslada al contexto de
13 @code{Staff} context:
14
15 "
16   doctitlees = "Crear arpegios entre notas de voces distintas"
17   
18 %% Translation of GIT committish: 6ce7f350682dfa99af97929be1dec6b9f1cbc01a
19 texidocde = "
20 Ein Arpeggio kann zwischen Noten aus unterschidlichen Stimmen auf demselben
21 System gezogen werden, wenn der @code{Span_arpeggio_engraver} in den 
22 @code{Staff}-Kontext verschoben wird:
23
24 "
25   doctitlede = "Arpeggios zwischen unterschiedlichen Stimmen erzeugen"
26
27   texidoc = "
28 An arpeggio can be drawn across notes in different voices on the same
29 staff if the @code{Span_arpeggio_engraver} is moved to the @code{Staff}
30 context: 
31
32 "
33   doctitle = "Creating arpeggios across notes in different voices"
34 } % begin verbatim
35
36 \new Staff \with {
37   \consists "Span_arpeggio_engraver"
38 }
39 \relative c' {
40   \set Staff.connectArpeggios = ##t
41   <<
42     { <e' g>4\arpeggio <d f> <d f>2 } \\
43     { <d, f>2\arpeggio <g b>2 }
44   >>
45 }
46