lilypond-user
[Top][All Lists]
Advanced

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

Re: breaking up joined triplets


From: Alexander Kobel
Subject: Re: breaking up joined triplets
Date: Sun, 29 Nov 2009 04:21:32 +0100
User-agent: Thunderbird 2.0.0.23 (X11/20090817)

Hugh Myers wrote:
In the following:

\version "2.13.7"
upper = {
  \stemDown
  \times 2/3 { e,8 e' b } \times 2/3 {gis8 e' b } \times 2/3 { b e b }
  \times 2/3 { e,8 e' b } \times 2/3 {gis8 e' b } \times 2/3 { b e b }
}
[...]
the triplets are connected by a bar--- how do I prevent this?


Hi, Hugh,

it's nothing to do with the triplets themselves. In time 3/4, the whole measure gets a common beam by default.
To change it, either use manual beams like
\times 2/3 { e,8[ e' b] } \times 2/3 {gis8[ e' b] } \times 2/3 { b[ e b] } %% The [ and ] are the interesting parts.
or
\overrideBeamSettings #'Voice #'(3 . 4) #'end #'((* . (1 1 1))) . %% Replace Voice by Staff or Score if you want the change to affect a larger range.

By the way, you can also use
  \set tupletSpannerDuration = #(ly:make-moment 1 4)
then you don't need to write all the tuplets separated, but you can just say
  \times 2/3 { e,8 e' b   gis8 e' b   b e b } .


Cheers,
Alexander




reply via email to

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