lilypond-user
[Top][All Lists]
Advanced

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

Re: Auto beaming question


From: Joe Neeman
Subject: Re: Auto beaming question
Date: Tue, 07 Feb 2006 12:44:40 +1100
User-agent: Mozilla Thunderbird 1.0.7 (X11/20051121)



- groups of sixteenth and thirty-second notes. These should also be beamed per beat, e.g. three sixteenths and two thirty-seconds.

    #(override-auto-beam-setting '(end 1 32 * *) 1 4)
    #(override-auto-beam-setting '(end 1 32 * *) 2 4)
    #(override-auto-beam-setting '(end 1 32 * *) 3 4)

The sixteenth note triplets are beamed correctly, but the groups with thirty-second notes are beamed incorrectly. Can anyone tell me which auto-beaming commands to use? Thanks!

The problem is that the default auto-beaming (as defined in scm/auto-beam.scm) has the following settings:
#(override-auto-beam-setting '(end 1 32 4 4) 1 8)
#(override-auto-beam-setting '(end 1 32 4 4) 1 4)
#(override-auto-beam-setting '(end 1 32 4 4) 3 8)
#(override-auto-beam-setting '(end 1 32 4 4) 5 8)
#(override-auto-beam-setting '(end 1 32 4 4) 3 4)
#(override-auto-beam-setting '(end 1 32 4 4) 7 8)

So in order to get the behaviour you want, you need to _remove_ rules, not add them:
#(revert-auto-beam-settings '(end 1 32 4 4) 1 8)
#(revert-auto-beam-settings '(end 1 32 4 4) 3 8)
.. and so on

Joe




reply via email to

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