lilypond-user
[Top][All Lists]
Advanced

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

Re: beam-problem


From: Thomas Morley
Subject: Re: beam-problem
Date: Sat, 1 Dec 2012 00:41:33 +0100

2012/11/27 Thomas Morley <address@hidden>:
> 2012/11/26 Martin Neubauer <address@hidden>:
>> 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
Description: PNG image

Attachment: beaming-2-17-6.png
Description: PNG image


reply via email to

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