lilypond-user
[Top][All Lists]
Advanced

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

Re: triplets


From: Mats Bengtsson
Subject: Re: triplets
Date: Tue, 06 Dec 2005 20:48:30 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.6) Gecko/20050319

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 <address@hidden> 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
address@hidden


------------------------------------------------------------------------

_______________________________________________
lilypond-user mailing list
address@hidden
http://lists.gnu.org/mailman/listinfo/lilypond-user

--
=============================================
        Mats Bengtsson
        Signal Processing
        Signals, Sensors and Systems
        Royal Institute of Technology
        SE-100 44  STOCKHOLM
        Sweden
        Phone: (+46) 8 790 8463                         
        Fax:   (+46) 8 790 7260
        Email: address@hidden
        WWW: http://www.s3.kth.se/~mabe
=============================================




reply via email to

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