%% 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.18.0" \header { lsrtags = "expressive-marks" texidoc = " Cross-staff arpeggios can be created in contexts other than @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 ChoirStaff { \set Score.connectArpeggios = ##t << \new Voice \relative c' { 2\arpeggio 2\arpeggio 1\arpeggio } \new Voice \relative c { \clef bass 2\arpeggio 2\arpeggio 1\arpeggio } >> } \layout { \context { \Score \consists "Span_arpeggio_engraver" } } }