lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Woodwind Fingerings


From: Neil Puttock
Subject: Re: Woodwind Fingerings
Date: Tue, 13 Apr 2010 00:16:04 +0100

On 12 April 2010 23:59, Bernardo Barros <address@hidden> wrote:
> I followed your instructions, I have now another kind of error, but it
> still doesn't work.

You're nearly there. :)

>
> I DID:
>
> #(define-markup-command (woodfing layout props fingers)
>                                (list?)
> "Woodwind fingerings."
> (interpret-markup layout props
>
> (markup
>                   #:line (#:override  (baseline-skip . 1.5)

As I mentioned previously, you must add a quote before the pair in
each override:

(#:override '(baseline-skip . 1.5)

>                      #:draw-circle
>                      0.5
>                      0.1
>                      (forth fingers)

typo:

(fourth fingers)

>     c'^\woodfing #'(##t ##t ##t ##t ##t ##t)

A markup command must be preceded by \markup:

c'^\markup \woodfing

A list of booleans:

#'(#t #t #t #t #t #f)

Regards,
Neil




reply via email to

[Prev in Thread] Current Thread [Next in Thread]