On 2/27/2012 7:36 AM, Janek Warchoł wrote:
On Mon, Feb 27, 2012 at 1:02 AM, Carl Sorensen<c_soren...@byu.edu>  wrote:
On 2/26/12 2:10 AM, "David Bobroff"<bobr...@centrum.is>  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

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

Reply via email to