lilypond-user
[Top][All Lists]
Advanced

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

Re: complex-beam


From: Janek Warchoł
Subject: Re: complex-beam
Date: Mon, 27 Feb 2012 08:36:25 +0100

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



reply via email to

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