Hi, I'm thinking of generating guitar fret diagrams to drill note names for beginning guitar, and I've gotten this far:

Can anyone think of a way to put the fretboard inlay markers in there?  Either on the diagram, or as labels above or below the fret diagram in the right fret location?  dots on 3rd, 5th, 7th, 9th, double on the 12th.

(lilypond code below)

\version "2.16.00"
\include "english.ly"

\paper{
  indent=0\mm
  line-width=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  bookTitleMarkup = ##f
  scoreTitleMarkup = ##f
}

\score {
<<
  \new Staff \with {    
    \clef treble
    \remove Time_signature_engraver
    } 
    \transpose c c \relative fs' {  
        \override TextScript #'size = #'3.0

                                                                                                                                                                                  

a^\markup {
      \override #'(fret-diagram-details . (
                   (finger-code . in-dot)
                   (dot-label-font-mag . 0.6)                   
                   (orientation . landscape)
                   (xo-font-magnification . 0.4)
                   (fret-count . 12)                   
                   (xo-padding . 0.3))) {
\fret-diagram-verbose
  #'( (place-fret 2 10 "A" inverted) )

     

     }
}
    }  
>>

    \layout {
\context {
\Staff
      \remove Bar_engraver
    }
    }
\midi {
\context {
\Score \with
\settingsFrom { \tempo 4=180 }
    }
}
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to