Why isn't this the default?
Would it be possible to add those rules to auto-beam.scm?
Frédéric
Mats Bengtsson wrote:
A better solution is to tell LilyPond to automatically beam the
triplets this way, see "8.6.2 Setting automatic beam behavior" for
more details. For Jutta's example, just add
#(override-auto-beam-setting '(end 1 12 3 4) 1 4)
#(override-auto-beam-setting '(end 1 12 3 4) 2 4)
before the triplets start.
Also, to save some typing, I would recommend to read about the
tupletSpannerDuration property in the section on Tuplets.
The resulting example could then look something like:
\version "2.6.0"
{
\time 3/4
\key g \major
#(override-auto-beam-setting '(end 1 12 3 4) 1 4)
#(override-auto-beam-setting '(end 1 12 3 4) 2 4)
\set tupletSpannerDuration = #(ly:make-moment 1 4)
\times 2/3 { b''8 b' g' b''8 b' g' b''8 b' g' }
}
/Mats
Trevor Bača wrote:
On 12/6/05, jutta <[EMAIL PROTECTED]> wrote:
Hi,
I need some help with triplets. I want to have 3 triplets in one
measure. Each
triplet consists of bbg (example below). So each triplet should be
beamed
individually. But: what happens is that all 3 triplets are connected
by one
lang beam. What can I do?
Try
{
\time 3/4
\key g \major
\times 2/3 { b''8[ b' g'] }
\times 2/3 { b''8[ b' g'] }
\times 2/3 { b''8[ b' g'] }
}
with the [ and ] brackets to specify start- and stop-beaming by hand.
--
Trevor Bača
[EMAIL PROTECTED]
------------------------------------------------------------------------
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user