lilypond-user
[Top][All Lists]
Advanced

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

Re: looking for script to color noteheads on handbell music


From: Jay Anderson
Subject: Re: looking for script to color noteheads on handbell music
Date: Fri, 11 Sep 2009 19:06:54 -0700

On Fri, Sep 11, 2009 at 11:26 AM, René Brandenburger
<address@hidden> wrote:
> hi,
>
> have a look at
> http://lilypond.org/doc/v2.13/input/lsr/lilypond-snippets/Pitches#Coloring-notes-depending-on-their-pitch
>

Don't forget to modify the pitch-equals? function to check for octave
also (since it sounds like that really what you want):
#(define (pitch-equals? p1 p2)
  (and
    (= (ly:pitch-alteration p1) (ly:pitch-alteration p2))
    (= (ly:pitch-octave p1) (ly:pitch-octave p2))
    (= (ly:pitch-notename p1) (ly:pitch-notename p2))))

And look at the ly:make-pitch function to figure out how it works:
<http://lilypond.org/doc/v2.13/Documentation/user/lilypond/Scheme-functions#Scheme-functions>.

Also the snippet should work fine in or out of a \relative section.

-----Jay




reply via email to

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