lilypond-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Voice switching étude


From: Dan Eble
Subject: Voice switching étude
Date: Wed, 10 Dec 2014 23:52:43 -0500

Here’s a trick: routing music to different voices without using the 
Part_combine_iterator.  Instead, it uses the same infrastructure as for staff 
switching.

\version "2.19.15"

\layout {
  \context {
    \name "X"
    \type "Engraver_group"
  }
  \context {
    \Voice
    \accepts "X"
  }
}

one = \relative { b'4 b b b }
two = \relative { b'4 b f f }

% TODO: Derive oneChanges and twoChanges from the result of
% determine-split-list.
oneChanges = \relative { }
twoChanges = \relative { s2 \change Voice = "1" }

\score {
  <<
    \new X << \oneChanges \one >>
  \\
    \new X << \twoChanges \two >>
  >>
}

% Note that if the change commands follow the notes, the changes do
% not happen at the intended moment.
\score {
  \new Staff \with { instrumentName = "wrong" } <<
    \new X << \one \oneChanges >>
  \\
    \new X << \two \twoChanges >>
  >>
}
— 
Dan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]