lilypond-user
[Top][All Lists]
Advanced

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

Re: Remove all occurrencies of "0" fingerings


From: Thomas Morley
Subject: Re: Remove all occurrencies of "0" fingerings
Date: Tue, 8 Aug 2017 13:00:18 +0200

2017-08-08 12:47 GMT+02:00 David Kastrup <address@hidden>:

>
> You can do this by using
[...]

Nice one. I always forget about 'grob-transformer'. Missing bracket, tho'

\score {
  \new Staff \with {
    \override Fingering.text =
    #(grob-transformer 'text
      (lambda (grob default)
       (if (string= "0" default)
""
default)))
} %% <--------------
  { \music }
}

Cheers,
  Harm



reply via email to

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