On Sunday 06 November 2005 20.07, Jannik Jeppesen wrote:
> Hi
> is there some code, so i can repeat the midi sound, so it will go on and on
> til stopped?

I don't understand what you mean, but you may want to read about the
\repeat unfold
command in the manual.

> And. Is it possible to create 2 midi files from one document if there are 2
> drumstaff´s in the doc?

You can create two separate \score blocks, one for each drumstaff:
staffA = {...}
staffB = {...}
% this block creates paper output
\score {
<<
  \staffA
  \staffB
>>
\layout{}
}

%these blocks generate midi files.
\score {
  \staffA
\midi{..}
}

\score {
  \staffB
\midi{..}
}

-- 
Erik


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to