bug-lilypond
[Top][All Lists]
Advanced

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

No Midi Sound With Short Polyphonic Percussion Notation


From: Raphael Frey
Subject: No Midi Sound With Short Polyphonic Percussion Notation
Date: Fri, 4 Nov 2011 22:26:16 +0100

Hey there!

There are at least three ways to enter polyphonic percussion music (see 
examples below). However the first (easiest) approach does not produce any Midi 
output in polyphonic parts.

% first example - no midi output starting from bar 2
\version "2.14.2"
\score {
  \new DrumStaff <<
    \drummode {
      bd4 sn4 bd4 sn4
      << {
        \repeat unfold 16 hh16
      } \\ {
        bd4 sn4 bd4 sn4
      } >>
    }
  >>
  \midi { }
  \layout { }
}


% second example - no problem here

\version "2.14.2"
\score {
  \new DrumStaff
    \new DrumVoice {
      \drummode {
        bd4 sn4 bd4 sn4
        <<
          {
            \voiceOne
            \repeat unfold 16 hh16
          }
          \new DrumVoice {
            \voiceTwo
            bd4 sn4 bd4 sn4
          }
        >>
      }
    }
  \midi { }
  \layout { }
}


% third example - no problem here
\version "2.14.2"
\score {
  \new DrumStaff <<
    \new DrumVoice {
      \drummode {
        \oneVoice
        bd4 sn4 bd4 sn4 
        \voiceOne
        \repeat unfold 16 hh16
      }
    }
    \new DrumVoice {
      \drummode {
        \voiceTwo
        s1 bd4 sn4 bd4 sn4
      }
    }
  >>
  \midi { }
  \layout { }
}




reply via email to

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