> from auto-plet-engraver.cc (1.1.47)
> prop = get_property ("tupletVisibility", 0);
>
> from plet-spanner.cc:
> /* Property values:
> 0 show nothing
> 1 show number
> 2 show (number and bracket)-if-no-beam
> 3 show number, and bracket-if-no-beam
> 4 show number, and bracket
> */
>
> in my \paper block:
> \translator{\VoiceContext tupletVisibility=0; \remove Tuplet_engraver;}
>
> in my output (so many times it buries real errors):
> K007.ly:119:27: warning: No one to print a tuplet start bracket:
> [c''16 d'' ees'' f'']\times
> 2/3{[g''16 f'' ees'']}|
>
> (All my notes are at Thread level.)
> Any solution?
You get this warning, since you explicitly removed the
Tuplet_engraver. It suffices to just set tupletVisibility=0.
I hope you have found that the documentation is also in the
Reference Manual, not only in the source code. Among others
you can find a list of all available properties (the manual
was updated some week ago, so it should be fairly complete).
> "the LLY_SYMBOLS are something different."
Should be "LY_SYMBOLS"! Again, I would first look in the
Reference Manual to find out about properties.
The barsize property does not have any effect at the moment.
(The get_bar_size() method in the StaffBar class redefines
that in Bar.) As Han-Wen indicated, a good solution would
automatically follow the number of staff lines but should
also be able to handle percussion staffs.
/Mats