2001-11-28 - Representation of lyrics with compo Any section of the form (lyrics ...) inside a compo script corresponds to a
lyrics section to be printed on the score. Each syllabe or word is represented
by an elementary note including some text as a string, just like for example
:
(lyrics ("I'm")("sin-")("ging")("in")("the")("rain"))
But to have the text printed under a staff, one have to associate it to the
corresponding voice, simply by setting properly the voice property at the lyrics
note level :
(lyrics :treble ("I'm")("sin-")("ging")("in")("the")("rain"))
Hence by synchronizing this expression with some other expression at the treble
voice containing notes, you will have each part of text printed under each note
at the same position... |