]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-arpeggios-across-notes-in-different-voices.ly
Merge commit 'origin' into beamlets2
[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.12.0"
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 %% Translation of GIT committish :<6ce7f350682dfa99af97929be1dec6b9f1cbc01a>
18 texidocde = "
19 Ein Arpeggio kann zwischen Noten aus unterschidlichen Stimmen auf demselben
20 System gezogen werden, wenn der @code{Span_arpeggio_engraver} in den 
21 @code{Staff}-Kontext verschoben wird:
22
23 "
24   doctitlede = "Arpeggios zwischen unterschiedlichen Stimmen erzeugen"
25
26   texidoc = "
27 An arpeggio can be drawn across notes in different voices on the same
28 staff if the @code{Span_arpeggio_engraver} is moved to the @code{Staff}
29 context: 
30
31 "
32   doctitle = "Creating arpeggios across notes in different voices"
33 } % begin verbatim
34
35 \new Staff \with {
36   \consists "Span_arpeggio_engraver"
37 }
38 \relative c' {
39   \set Staff.connectArpeggios = ##t
40   <<
41     { <e' g>4\arpeggio <d f> <d f>2 } \\
42     { <d, f>2\arpeggio <g b>2 }
43   >>
44 }