]> 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 f67fcbdbd9e7634989edd23001a6a2156d5f9f6a..7a5f51e993ac0eb25f13d0f29e83bab9b7becffc 100644 (file)
@@ -1,21 +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 {
-%% Translation of GIT committish: ae814f45737bd1bdaf65b413a4c37f70b84313b7
-  texidocfr = "
-Affecter le graveur @code{Span_arpeggio_engraver} au contexte de la
-portée (@code{Staff}) permet de distribuer un arpège sur plusieurs voix :
-
-"
-  doctitlefr = "Arpège distribué sur plusieurs voix"
-
-
   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
@@ -33,10 +24,18 @@ System gezogen werden, wenn der @code{Span_arpeggio_engraver} in den
 
 "
   doctitlede = "Arpeggios zwischen unterschiedlichen Stimmen erzeugen"
+%% Translation of GIT committish: ae814f45737bd1bdaf65b413a4c37f70b84313b7
+  texidocfr = "
+Affecter le graveur @code{Span_arpeggio_engraver} au contexte de la
+portée (@code{Staff}) permet de distribuer un arpège sur plusieurs voix :
+
+"
+  doctitlefr = "Arpège distribué 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:
 
 "
@@ -49,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 }
   >>
 }