]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / creating-cross-staff-arpeggios-in-other-contexts.ly
index 2ab7b7edb4dda4dee1dcb5f865160acab3ef9ed2..83b7a9e162523087a8032dcbbabc79c3aa10162a 100644 (file)
@@ -1,31 +1,23 @@
 %% 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.39"
 
 \header {
-%% Translation of GIT committish: ae814f45737bd1bdaf65b413a4c37f70b84313b7
-  texidocfr = "
-Il est possible de distribuer un arpège sur plusieurs portées d'un
-système autre que le @code{PianoStaff} dès lors que vous incluez le
-@code{Span_arpeggio_engraver} au contexte @code{Score}.
-
-"
-  doctitlefr = "Arpège distribué pour un autre contexte que le piano"
-
-
   lsrtags = "expressive-marks"
 
-%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
+%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
   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}.
 
 "
   doctitlees = "Creación de arpegios que se cruzan entre pentagramas dentro de otros contextos"
 
-%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
+
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
  texidocde = "
 In einem Klaviersystem (@code{PianoStaff}) ist es möglich, ein Arpeggio
 zwischen beiden Systemen zu verbinden, indem die
@@ -35,17 +27,27 @@ zwischen beiden Systemen zu verbinden, indem die
 "
   doctitlede = "Arpeggio zwischen Systemen in einem Klaviersystem erstellen"
 
+%% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
+  texidocfr = "
+Il est possible de distribuer un arpège sur plusieurs portées d'un
+système autre que le @code{PianoStaff} dès lors que vous incluez le
+@code{Span_arpeggio_engraver} au contexte @code{Score}.
+
+"
+  doctitlefr = "Arpège distribué pour un autre contexte que le piano"
+
+
   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' {
@@ -53,11 +55,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
       }
     >>
   }