Trevor Bac(a wrote:

%%% EX 2: CROSS-STAFF WITH DOUBLE STEM %%%

\version "2.11.29"

\new PianoStaff <<
   \new Staff = RH {
      \time 4/8
      c''8 [
      c''8
      \change Staff = LH
      <<
         { e'8 }
         \new Voice {
            \once \override Stem #'direction = #down
Here you could just as well have used a
\stemDown or a \voiceTwo command. There's no need for a \once, since the
temporary Voice context will be deleted directly when there's no more music
in it.
            e'8
         }
      >>
      \change Staff = RH
      c''8 ]
   }
   \new Staff = LH {
      s2
   }
%%% END EX 2 %%%

/Mats


_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to