Op donderdag 27 mei 2010 schreef northofscotland:

> I am typesetting a mediaeval trouvere song and want to add a drone to the
> midi but hide the somewhat redundant music in the printout.  Is there a
> simple way to do this, please?

That's easy, using two \score blocks, one for the printout and one for the 
midi, like this:

musicOne = { ... }
musicTwo = { ... }

\score {
  <<
    \new Staff \musicOne
  >>
  \layout { }
}

\score {
  <<
    \new Staff \musicOne
    \new Staff \musicTwo
  >>
  \midi { }
}


A \score { } block with a \midi {} but without a \layout {} will not print.

best regards,
Wilbert Berendsen

-- 
Frescobaldi, LilyPond editor for KDE: http://www.frescobaldi.org/
Nederlands LilyPond forum: http://www.lilypondforum.nl/

_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to