X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcreating-cross-staff-arpeggios-in-other-contexts.ly;h=87beb1f21fd8de2e9bfe9a58514359bbb3504f7d;hb=65aaa35a119053e92a608fbedceb20762787d21b;hp=796923bd811341bec7d22ab059975e22c21d237b;hpb=c6444231d15708adc5560e2735fe980d04dd138d;p=lilypond.git diff --git a/Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly b/Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly index 796923bd81..87beb1f21f 100644 --- a/Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly +++ b/Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly @@ -1,40 +1,25 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.di.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% %% This file is in the public domain. -\version "2.13.1" +\version "2.18.0" \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca - texidoces = " -Se pueden crear arpegios que se cruzan entre pentagramas dentro de -contextos distintos a @code{PianoStaff} 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 - texidocde = " -In einem Klaviersystem (@code{PianoStaff}) ist es möglich, ein Arpeggio -zwischen beiden Systemen zu verbinden, indem die -@code{PianoStaff.connectArpeggios}-Eigenschaft gesetzt wird. - - -" - doctitlede = "Arpeggio zwischen Systemen in einem Klaviersystem erstellen" - 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' { @@ -42,11 +27,11 @@ the @code{Score} context. 2\arpeggio 1\arpeggio } - \new Voice \relative c { + \new Voice \relative c { \clef bass - 2\arpeggio - 2\arpeggio - 1\arpeggio + 2\arpeggio + 2\arpeggio + 1\arpeggio } >> } @@ -57,4 +42,3 @@ the @code{Score} context. } } } -