]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-arpeggios-across-notes-in-different-voices.ly
Merge master into nested-bookparts
[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.11.62"
4
5 \header {
6   lsrtags = "expressive-marks"
7
8   texidoces = "
9 Se puede trazar un símbolo de arpegio entre notas de distintas
10 voces que están sobre el mismo pentagrama si el grabador
11 @code{Span_arpeggio_engraver} se traslada al contexto de
12 @code{Staff} context:
13
14 "
15   doctitlees = "Crear arpegios entre notas de voces distintas"
16
17   texidoc = "
18 An arpeggio can be drawn across notes in different voices on the same
19 staff if the @code{Span_arpeggio_engraver} is moved to the @code{Staff}
20 context: 
21
22 "
23   doctitle = "Creating arpeggios across notes in different voices"
24 } % begin verbatim
25 \new Staff \with {
26   \consists "Span_arpeggio_engraver"
27 }
28 \relative c' {
29   \set Staff.connectArpeggios = ##t
30   <<
31     { <e' g>4\arpeggio <d f> <d f>2 } \\
32     { <d, f>2\arpeggio <g b>2 }
33   >>
34 }