Tuplet bracket numbering problem

2002-06-07 Thread Carter Brey

Dear colleagues,

I'm running Lily version 1.5.58. I cannot seem to get rid of the little 
3's under each triplet beam in this excerpt:

\property Voice.tupletSpannerDuration = #(make-moment 1 8)
\property Voice.TupletBracket  \set #'tuplet-number-visibility = ##f
\times 2/3{[d'( )cis'' b'-.] [cis'( )b' a'-.] [b( )a' gis'-.] [bis( 
)gis' fis'-.]
[cis'\( d'\!dis'] [fis'\ e' ) \!cis'] [gis-.( a-. b-.] [cis'-. 
d'-. )e'-.] }

Did I mistype the tuplet bracket property somehow? Or has the 
nomenclature changed since 1.4?

Thanks very much.

-- 

+-+
|Carter Brey ([EMAIL PROTECTED])|
+-+
Homepage:
http://www.nyplive.org/music/orchestra/index.cfm?page=profilepersonNum=7
To have died once is enough.
-- Publius Vergilius Maro (Virgil)
  6:09pm  up 17 days, 20:03,  3 users,  load average: 0.11, 0.08, 0.07



___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user



Re: Tuplet bracket numbering problem

2002-06-07 Thread Mats Bengtsson

It seems that some benign developer has renamed the property
to number-visibility without even documenting the change in 
the ChangeLog and without including the change in convert-ly
or the example file input/regression/triplets.ly.
Likewise, the tuplet-bracket-visibility property has been renamed
to bracket-visibility.

  /Mats


 Dear colleagues,
 
 I'm running Lily version 1.5.58. I cannot seem to get rid of the little 
 3's under each triplet beam in this excerpt:
 
 \property Voice.tupletSpannerDuration = #(make-moment 1 8)
 \property Voice.TupletBracket  \set #'tuplet-number-visibility = ##f
 \times 2/3{[d'( )cis'' b'-.] [cis'( )b' a'-.] [b( )a' gis'-.] [bis( 
 )gis' fis'-.]
 [cis'\( d'\!dis'] [fis'\ e' ) \!cis'] [gis-.( a-. b-.] [cis'-. 
 d'-. )e'-.] }
 
 Did I mistype the tuplet bracket property somehow? Or has the 
 nomenclature changed since 1.4?
 
 Thanks very much.
 
 -- 
 
 +-+
 |Carter Brey ([EMAIL PROTECTED])|
 +-+
 Homepage:
 http://www.nyplive.org/music/orchestra/index.cfm?page=profilepersonNum=7
 To have died once is enough.
   -- Publius Vergilius Maro (Virgil)
   6:09pm  up 17 days, 20:03,  3 users,  load average: 0.11, 0.08, 0.07
 
 
 
 ___
 Lilypond-user mailing list
 [EMAIL PROTECTED]
 http://mail.gnu.org/mailman/listinfo/lilypond-user



___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user



Re: Tuplet bracket numbering problem

2002-06-07 Thread Han-Wen Nienhuys

[EMAIL PROTECTED] writes:
 It seems that some benign developer has renamed the property
 to number-visibility without even documenting the change in 
 the ChangeLog and without including the change in convert-ly
 or the example file input/regression/triplets.ly.
 Likewise, the tuplet-bracket-visibility property has been renamed
 to bracket-visibility.

Ehermm. A benign developer, who could that be :^)

I'll patch it up over here.


-- 

Han-Wen Nienhuys   |   [EMAIL PROTECTED]| http://www.cs.uu.nl/~hanwen/


___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user



Re: Tuplet bracket numbering problem

2002-06-07 Thread Carter Brey

Dear Gentlemen,

Alas, a correction using number-visibility elicits this error message:

warning: Not a grob name, 'tupletBracket'.

Has the grob also been renamed?

Carter (still swimming in little 3's)

Mats Bengtsson wrote:

It seems that some benign developer has renamed the property
to number-visibility without even documenting the change in 
the ChangeLog and without including the change in convert-ly
or the example file input/regression/triplets.ly.
Likewise, the tuplet-bracket-visibility property has been renamed
to bracket-visibility.

  /Mats


Dear colleagues,

I'm running Lily version 1.5.58. I cannot seem to get rid of the little 
3's under each triplet beam in this excerpt:

\property Voice.tupletSpannerDuration = #(make-moment 1 8)
\property Voice.TupletBracket  \set #'tuplet-number-visibility = ##f
\times 2/3{[d'( )cis'' b'-.] [cis'( )b' a'-.] [b( )a' gis'-.] [bis( 
)gis' fis'-.]
[cis'\( d'\!dis'] [fis'\ e' ) \!cis'] [gis-.( a-. b-.] [cis'-. 
d'-. )e'-.] }

Did I mistype the tuplet bracket property somehow? Or has the 
nomenclature changed since 1.4?

-- 

+-+
|Carter Brey ([EMAIL PROTECTED])|
+-+
Homepage:
http://www.nyplive.org/music/orchestra/index.cfm?page=profilepersonNum=7

  7:26pm  up 17 days, 21:20,  3 users,  load average: 0.07, 0.11, 0.09




___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user



Re: Tuplet bracket numbering problem

2002-06-07 Thread Mats Bengtsson

 Dear Gentlemen,
 
 Alas, a correction using number-visibility elicits this error message:
 
 warning: Not a grob name, 'tupletBracket'.
 
 Has the grob also been renamed?

No, but maybe you have done it, it should be called TupletBracket
and the name is case sensitive. A complete version of your example
can be found below.

  /Mats

\score{\notes{
\property Voice.tupletSpannerDuration = #(make-moment 1 8)
\property Voice.TupletBracket  \set #'number-visibility = ##f
\times 2/3{[d'16( )cis'' b'-.] [cis'( )b' a'-.] [b( )a' gis'-.] [bis( 
)gis' fis'-.]
[cis'\( d'\!dis'] [fis'\ e' ) \!cis'] [gis-.( a-. b-.] [cis'-. 
d'-. )e'-.] }
}}




___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user



Re: Tuplet bracket numbering problem

2002-06-07 Thread Carter Brey

Thanks, that fixed everything. How weird; I know the case was correct 
when I sent the initial email. Can't figure out how the capital T got 
changed. Anyway... thanks for your patient assistance.

CB (on tour in Cologne)

Mats Bengtsson wrote:

Dear Gentlemen,

Alas, a correction using number-visibility elicits this error message:

warning: Not a grob name, 'tupletBracket'.

Has the grob also been renamed?


No, but maybe you have done it, it should be called TupletBracket
and the name is case sensitive. A complete version of your example
can be found below.

  /Mats

\score{\notes{
\property Voice.tupletSpannerDuration = #(make-moment 1 8)
\property Voice.TupletBracket  \set #'number-visibility = ##f
\times 2/3{[d'16( )cis'' b'-.] [cis'( )b' a'-.] [b( )a' gis'-.] [bis( 
)gis' fis'-.]
[cis'\( d'\!dis'] [fis'\ e' ) \!cis'] [gis-.( a-. b-.] [cis'-. 
d'-. )e'-.] }
}}






-- 

+-+
|Carter Brey ([EMAIL PROTECTED])|
+-+
Homepage:
http://www.nyplive.org/music/orchestra/index.cfm?page=profilepersonNum=7
I have discovered that all human evil comes from this, man's being unable
to sit still in a room.
-- Blaise Pascal
  1:20am  up 18 days,  3:14,  3 users,  load average: 0.10, 0.16, 0.08




___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user