>>>>> "Walt" == Walt North <[email protected]> writes:
Walt> I need to create a simple 4 beat
Walt> click track into to a midi file. I'm sure I'm missing something
Walt> obvious.
Walt> /home/walt/waltnorth/Sheet
Walt> Music/Lilypond/tests/testdrum.ly:19:5: error: syntax error,
Walt> unexpected \midi
Midi needs to be inside a score block.
Something like this:
----
\version "2.24.4"
\book{
\score {
{
\new DrumStaff {
\drummode {
wbl4 wbl wbl wbl |
}
}
\new Staff <<
\new Voice {
\relative c' {
c4 c c c
}
}
>>
}
\midi{
\tempo 4=80
}
}
}