bug-lilypond
[Top][All Lists]
Advanced

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

Re: complex-beam


From: David Bobroff
Subject: Re: complex-beam
Date: Mon, 27 Feb 2012 14:51:04 +0000
User-agent: Mozilla/5.0 (Windows NT 5.1; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2

On 2/27/2012 7:36 AM, Janek Warchoł wrote:
On Mon, Feb 27, 2012 at 1:02 AM, Carl Sorensen<address@hidden>  wrote:
On 2/26/12 2:10 AM, "David Bobroff"<address@hidden>  wrote:

I'm looking for a way to achieve this beaming pattern:

http://notendur.centrum.is/~bobroff/lily/complex-beam.png

Can LilyPond do this?  I suspect I'll have to use a combination of
subdivideBeams and stemRightBeamCount/stemLeftBeamCount.  Is there a
known solution?
Lilypond does not currently do "second-level" beam subdivisions.

Please add this as a feature request.  I have been looking for a good
example of what it means to have multiple subdivision.
Meanwhile you can take inspiration from this snippet - maybe it'll help you:

\relative c'' {
   c32[ c

        %% WARNING: #'beaming is written, so this
        %% property can not be shared between objects. Always use
        %%  \once.
        %%

        \once \override Stem
        #'beaming = #(cons (list   1 2) (list 0 2 4))
        c
        \once \override Stem
        #'beaming = #(cons (list 0 2 4) (list 0 1 4))
        c c c]
}

HTH,
Janek

Wow,

That's interesting, Janek. Maybe I can use that in the future. I ended up using subdivideBeams and stemRightBeamCount/stemLeftBeamCount. I did that before seeing this.

-David



reply via email to

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