Rob Torop <rob.to...@gmail.com> writes:

> I have a bunch of repeated things like this
>
>            d f \mark \markup \italic \magnify #0.7 "(tenor & trp.)"  r16
>
> where I put a little instruction over the melody
>
> I'd like to have a little function to call instead of \mark \markup \italic
> \magnify #0.7 "blah", with the "blah" as a parameter.
>
> So I tried this
>
> #(define-markup-command  (instruct layout props text )    (markup?)
>    (intepret-markup layout  props
>        #{
>             \markup \italic \magnify #0.7 #text
>        #}))
>
> and then put this in my code
>
> d f \mark \instruct "(tenor & trp.)"  r16
>
>
> But it doesn't like it!

d f \mark \markup \instruct ...

> I am sure this is very easy, and maybe I should be using a music-function
> instead of the markup command definition.

Music function sounds like a good idea.

-- 
David Kastrup

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

Reply via email to