On Thu, Mar 13, 2025 at 3:47 PM Eric C <[email protected]> wrote:
> Hello, I'm trying to place a short text with a chord symbol. I can work
> around this by attaching the text to a note, but that's not my goal. Here's
> an exemple what I'm trying to do:
>
> CMaj7
>
> x 3 5 4 5 x
>
> This text represents the fingering of the CMaj7 at the 3rd fret of the
> guitar.
>
>
> It would be great to be able to have annotations in the boxes of a
> harmonic grid.
>
>
> I searched the manual and found nothing. Many thanks for your help.
>
> Eric
>
Do you want actual fretboards? LilyPond can do that:
%%%
\version "2.24.4"
\include "predefined-guitar-fretboards.ly"
myChords = \chordmode {
a fis:m d e b:m
}
\score {
<<
\new ChordNames { \myChords }
\new FretBoards { \myChords }
>>
}
%%%
--
Knute Snortum