Date: 13 Dec 2005 21:13:57 GMT
From: [EMAIL PROTECTED] (Raphael Manfredi)
Subject: Re: triplets
To: lilypond-user@gnu.org
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="iso-8859-1"

Quoting jutta <[EMAIL PROTECTED]> 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



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

Reply via email to