Is it possible to compute a \lyricsto before running further processing?

2017-03-12 Thread caagr98
There are several types of postprocessing that break \lyricsto's auto-alignment*. Is there some way to tell the `\lyricsto` to align its syllables to the correct position so further processing won't affect it? (I'm guessing no, because if it was possible, it'd be the default.) * A few

Re: Composing music functions

2017-03-12 Thread Thomas Morley
2017-03-12 22:46 GMT+01:00 Morten Lemvigh : > Hi, > > I'm trying to create some tools for setting choir pieces. I have run against > a problem where I have a music function that needs the result of another > music function. That other function uses a Lilypond code block,

Re: Composing music functions

2017-03-12 Thread caagr98
You can't call music functions directly from Scheme code. You have to either wrap the call in #{ #} or use `ly:music-function-extract` to extract the procedure itself and call that. (In general, `Wrong type to apply` means you're trying to call something that isn't a procedure.) On 03/12/17

Composing music functions

2017-03-12 Thread Morten Lemvigh
Hi, I'm trying to create some tools for setting choir pieces. I have run against a problem where I have a music function that needs the result of another music function. That other function uses a Lilypond code block, so it takes both parser and location. For reasons I don't understand, I cannot