]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly
Doc-es: more updates of snippets.
[lilypond.git] / Documentation / snippets / creating-cross-staff-arpeggios-in-other-contexts.ly
index ccda701de70e4363c0551aa1930e02ab0ad41d12..790c712385a847e2887e357d9ddcff8026aeed49 100644 (file)
@@ -1,15 +1,16 @@
 %% 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 pueden crear arpegios que se cruzan entre pentagramas dentro de
-contextos distintos a @code{PianoStaff} si se incluye el grabador
+contextos distintos a @code{GrandStaff}, @code{PianoStaff} y
+@code{StaffGroup} si se incluye el grabador
 @code{Span_arpeggio_engraver} en el contexto de @code{Score}.
 
 "
@@ -36,15 +37,15 @@ système autre que le @code{PianoStaff} dès lors que vous incluez le
 
   texidoc = "
 Cross-staff arpeggios can be created in contexts other than
-@code{PianoStaff} if the @code{Span_arpeggio_engraver} is included in
-the @code{Score} context.
+@code{GrandStaff}, @code{PianoStaff} and @code{StaffGroup} if the
+@code{Span_arpeggio_engraver} is included in the @code{Score} context.
 
 "
   doctitle = "Creating cross-staff arpeggios in other contexts"
 } % begin verbatim
 
 \score {
-  \new StaffGroup {
+  \new ChoirStaff {
     \set Score.connectArpeggios = ##t
     <<
       \new Voice \relative c' {
@@ -52,11 +53,11 @@ the @code{Score} context.
         <d f>2\arpeggio
         <c e>1\arpeggio
       }
-      \new Voice  \relative c {
+      \new Voice \relative c {
         \clef bass
-         <c g'>2\arpeggio
-         <b g'>2\arpeggio
-         <c g'>1\arpeggio
+        <c g'>2\arpeggio
+        <b g'>2\arpeggio
+        <c g'>1\arpeggio
       }
     >>
   }