2012/11/27 Thomas Morley <thomasmorle...@googlemail.com>:
> 2012/11/26 Martin Neubauer <mrtn...@gmail.com>:
>> Hi,
>>
>> You can always use explicit beaming:
>
> Hi Martin,
>
> thanks for your reply.
>
> I know about "explicit beaming".
>
> I should have asked more precise:
>
> How to use automatic beaming as described in:
>
> NR 1.2.4 Beams
> Setting automatic beam behavior
> http://lilypond.org/doc/v2.17/Documentation/notation-big-page#setting-automatic-beam-behavior
>
> Setting baseMoment and beatStructure as shown in my initial mail will
> change beaming of { a8 a a a }, too. So, this can't be the solution.
> `beamExceptions´ should be it.
> But I couldn't figure out which values to use.
>
>
> Thanks,
>   Harm

In 2.12.3 it was possible to use
#(override-auto-beam-setting '(end 1 24 2 4) 1 8)
In a code like

\version "2.12.3"

\new Staff {
        \time 2/4
        #(override-auto-beam-setting '(end 1 24 2 4) 1 8)

        a8 a a a |
        a16 a a a a a a a |
        a32 a a a
        a a a a
        a8  a16. a32 |
        a8  a16. a32
        a32 a a a
        a a a a |
}

the attached 2.12.3-png was returned.

2.17.6, trying \set beamExceptions like:

\version "2.17.6"

%#(set-global-staff-size 18)

\new Staff {
        \time 2/4
        \set beamExceptions =
           #'((end . (
                         ((1 . 8) . (2 4))
                         ((1 . 16) . (4))
                         ((1 . 32) . (4 4 4 4)))))
        a8 a a a
        |
        a16 a a a a a a a
        |
        a32 a a a
        a a a a
        a8  a16. a32
        |
        a8  a16. a32
        a32 a a a
        a a a a
        |
}

returns the output of the 2.17.6-png.

Is there no way to do with 2.17.6 what was possible with 2.12.3?

If there's none, I'll report a bug.


Cheers,
  Harm

<<attachment: beaming-2-12-3.png>>

<<attachment: beaming-2-17-6.png>>

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

Reply via email to