Comment #3 on issue 4381 by [email protected]: recommend to \include articulate.ly just before the midi block
https://code.google.com/p/lilypond/issues/detail?id=4381

I forgot to add the \midi block in the example above, but the result is the same.

A better recommendation is using two score blocks, it makes sense including articulate just before the score block used for MIDI:

%%%

theMusic = \relative {
  c''1 \afterGrace d1 { c16^"these should be grace notes" d }
}


\score {
  \new Staff { \theMusic }
  \layout{}
}

\include "articulate.ly"

\score {
  \new Staff { \theMusic }
  \midi{}
}

%%%

This workaround worked in other cases but finding them in the archives is not easy.


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

Reply via email to