lilypond-user
[Top][All Lists]
Advanced

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

Re: lilypond-user Digest, Vol 37, Issue 39


From: Magnus Lewis-Smith
Subject: Re: lilypond-user Digest, Vol 37, Issue 39
Date: Thu, 15 Dec 2005 09:25:39 +1300
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.2) Gecko/20030708



Date: 13 Dec 2005 21:13:57 GMT
From: address@hidden (Raphael Manfredi)
Subject: Re: triplets
To: address@hidden
Message-ID: <address@hidden>
Content-Type: text/plain; charset="iso-8859-1"

Quoting jutta <address@hidden> from ml.lilypond.users:
:Hi,
:I would like to "switch" the figures 3 above the triplets "off", but only from :the second measure on. Is there anybody who can just mal me the code?

I'm using (in lilypond 2.6.3):

        \set Voice.tupletNumberFormatFunction = #'()

to remove the tuplet indication after the first measure.  Just put
this instruction after the notes of the first bar and you're done.

Raphael

Blimey.  How would you go about turning them back on again?
(I'm not saying that's wrong -- if it works for you that is arguably the only thing that really counts)

How about this?

{
  \times 2/3 { a8 a a }  % triplets with figure '3'
  \override TupletBracket #'number-visibility = ##f
  \times 2/3 { a8 a a }  % triplets WITHOUT figure '3'
  \revert TupletBracket #'number-visibility
  \times 2/3 { a8 a a }  % triplets with figure '3'
}

There's also  #'bracket-visibility  which you might want to adjust similarly

Magnus





reply via email to

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