]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly
Doc-es: remove last snippets from the lsr directory.
[lilypond.git] / Documentation / snippets / creating-arpeggios-across-notes-in-different-voices.ly
index c55417827de9ea45a1999e8de3e48ce888288252..7a5f51e993ac0eb25f13d0f29e83bab9b7becffc 100644 (file)
@@ -1,12 +1,12 @@
 %% Do not edit this file; it is automatically
 %% generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.13.4"
+\version "2.13.10"
 
 \header {
   lsrtags = "expressive-marks"
 
-%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
+%% Translation of GIT committish: 4385ed4cc738e164a95798862580b4b86703356f
   texidoces = "
 Se puede trazar un símbolo de arpegio entre notas de distintas
 voces que están sobre el mismo pentagrama si el grabador
@@ -35,7 +35,7 @@ portée (@code{Staff}) permet de distribuer un arpège sur plusieurs voix :
 
   texidoc = "
 An arpeggio can be drawn across notes in different voices on the same
-staff if the @code{Span_arpeggio_engraver} is moved to the @code{Staff}
+staff if the @code{Span_arpeggio_engraver} is added to the @code{Staff}
 context:
 
 "
@@ -48,7 +48,8 @@ context:
 \relative c' {
   \set Staff.connectArpeggios = ##t
   <<
-    { <e' g>4\arpeggio <d f> <d f>2 } \\
+    { <e' g>4\arpeggio <d f> <d f>2 }
+    \\
     { <d, f>2\arpeggio <g b>2 }
   >>
 }