BB <bb-543...@telecolumbus.net> writes:

> \markup
> \override #'(fret-diagram-details . (
> (number-type . arabic)
> (finger-code . in-dot))) {
> \fret-diagram #"s:3;f:1;6-3-2;5-2-1;5-5-4;4-4-3;"
> % percent sign is for comments
> % s:3 tells lilypond to make diagram 3x normal size
> % f:1 is to show finger #'s in circle on fret
> % 6-3-2 is sixth string - third fret - 2nd finger
> \fret-diagram #"s:3;f:1;5-4-2;4-3-1;4-6-4;3-5-3;"
> }
>
> I try to put root, I, III V etc into the circles instead of the arabic 
> numbers. I screened the manual - no hit. I did a google search - no hit. 
> I found no documentation for (number-type . arabic) either - might propably 
> switch to characters? 
>
>
> (number-type . ascii) is working but does not display ascii characters? 
>
> Is there an easy way? 

\version "2.19.33"

\markup
  \override #'(size . 5)
  \override #'(fret-diagram-details . ((finger-code . in-dot)))
  \fill-line {
      \fret-diagram-verbose #`(
        (place-fret 5 3 "I")
        (place-fret 4 2 "III")
        (place-fret 3 0 "V")
      )
    }

HTH
Patrick

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to