Nick Payne <nick.pa...@internode.on.net> 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
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to