lilypond-user
[Top][All Lists]
Advanced

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

Re: beam settings


From: Trevor Daniels
Subject: Re: beam settings
Date: Mon, 22 Dec 2008 16:03:57 -0000


Herbert Liechti wrote Re: beam settings


Reinhold Kainhofer schrieb:


You're almost there...

> Seems that the brackets are required for achieving the
> desired behavior.

Actually, no. What is needed is a correct value for the beatGrouping
;-) You
don't want 3 eighth notes to be beamed together, do you? You want the
beams to
be broken after EACH eighth note. So the correct value is to set beat
Grouping
to #'(1 1 1 1 1 1 ), which tells lilypond to beam together all
subdivisions of
an eighth note, but don't beam across eighth note boundaries.

So, your complete example would be:
\transpose c  c'' {
  \clef treble
  \time 6/8
  \repeat volta 2 {
     \set Score.beatGrouping = #'(1 1 1 1 1 1)
     \times 2/3 { bes16 g es }
     \override TupletNumber #'stencil = ##f
     \repeat unfold 5 { \times 2/3 { bes16 g es } } |
     \repeat unfold 6 { \times 2/3 { bes16 as es }  } |
  }
}

Cheers,
Reinhold

Reinhold

I tried this code but it is not working even after upgrading
to version 2.11.65. Resulting picture is

dings


Reinhold's short example works here, but I see from your
attached jpg that you've incorporated it in some more
extensive code.  Perhaps if you post that code on the list
we could see what has gone wrong.

Trevor





reply via email to

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