lilypond-user
[Top][All Lists]
Advanced

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

Re: guitar inlays / labels


From: Gerard McConnell
Subject: Re: guitar inlays / labels
Date: Fri, 23 Nov 2012 12:24:09 +0000

If this sort of work is done just for your own students then the extremely easy and fast way to do it is by taking Lilypond's SVG output and editing it in Inkscape.  That will allow you to do ANY sort of graphics work (colors, pictures, etc.)  on your score with pinpoint accuracy.


On Fri, Nov 23, 2012 at 10:04 AM, Curt <address@hidden> wrote:
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
address@hidden
https://lists.gnu.org/mailman/listinfo/lilypond-user



reply via email to

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