bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Changing fingering numerals


From: David Kastrup
Subject: Re: Changing fingering numerals
Date: Wed, 26 Jun 2013 14:27:27 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

Nick Payne <address@hidden> 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]