- 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


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

Reply via email to