David Raleigh Arnold wrote:

> So how do I set up a banjo 5th string now?  
>  
> g'/1 =  ----5--------
>         ------------
>         ----------
>          -----------
> g'/5 =   ---0----- 
> 
> gis'/1 =     ----6---------
>             ---------------
>              -------------
>             -------------
> gis'/5 =     ----6----- 

So iiuc what you need is to add 5 to the fret if you are on the 5th 
string, and not at fret 0?

This would need some scheme hacking, but

\property TabStaff.tablatureFormat =
#(lambda (string tuning pitch)
    (let ((num (string->number (fret-number-tablature-format
                               string tuning pitch))))
      (number->string (if (and (= 5 string) (> num 0)) (+ 5 num) num))
    )
  )

does it.

The auto-string-selector would not work correctly, but I don't suppose 
you would use it anyway.

-Rune



_______________________________________________
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user

Reply via email to