Nick Payne <[email protected]> writes:
> If I override Fingering settings to change the style of the numerals
> used for fingering, as in the example below, I find that \finger
> inside a markup still uses the default fingering characters for the
> numerals.
>
> Is this expected behaviour, or a bug? If expected behaviour, how can I
> change the fingering numerals for the trill to match those used on
> ordinary fingering?
>
> %===================================
> \version "2.17.20"
>
> \relative f'' {
> \override Fingering.font-encoding = #'latin1
> \override Fingering.font-size = #-2
> \override Fingering.font-series = #'bold
>
> <g-4> <f-2> f^\trill^\markup { \finger "4242" }
> }
> %===================================
Pretty much expected behavior. Overriding the settings for a
"Fingering" grob won't affect a "TextScript" grob. And grob overrides
are not relevant for general text layout defaults.
Try
\version "2.17.20"
\relative f'' {
\override Fingering.font-encoding = #'latin1
\override Fingering.font-size = #-2
\override Fingering.font-series = #'bold
<g-4> <f-2> f^\trill^\markup { \fontsize #-2 \bold "4242" }
}
--
David Kastrup
_______________________________________________
bug-lilypond mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-lilypond