Skip to content

Fret diagrams for chords, scales or licks

We have now covered 4 of the examples I plan to review on how to get music images into blogs and documents.

[jbox vgradient=”#d8d8d8|#ffffff”]This is Part 3 in my series Musical Snippets for Sharing.[/jbox]
The examples are:

  1. Put the guitar tab of a C major scale into HTML for a blog.
  2. Create a high quality image of the tab which can be put anywhere.
  3. Create a high quality image of the tab + standard notation.
  4. Create the standard notation of a C major scale (not tab) and an image for embedding.
  5. Create a chord diagram of a C major guitar chord played as a bar at the third fret.
  6. Create a finger diagram of the note positions for a C major scale placed in the cAged position on the guitar.

This post will cover the last two examples – fret diagrams.

Anyone who plays a fretted instrument has encountered chord diagrams. Chord diagrams visually illustrate where to put your fingers on the frets. Although the same information is conveyed by TAB, the chord diagram is closer to a picture of how to play the chord. In fact, some books of chords just show photographs of someone playing each chord.

The 6th example I want to cover is a scale diagram. It could be a “lick” diagram. It shows all the finger positions that will be used to play a scale or lick or other short piece – usually only a bar or two in length. It is different from a chord diagram only because each string may show more than one finger position. It conveys less information than the TAB for the same lick because the diagram does not show the sequence the notes are played in. It is used less frequently than chord diagrams but might still be useful as supplemental information to playing a lick with unusual or difficult finger positions.

I like scale/lick diagrams as a supplement to TAB or standard notation because they prepare me for what is coming. Where do my fingers go next? The diagrams show me.

Methods to create fret diagrams.

Use TuxGuitar to create and save chord diagrams.

Most tab creation software allows you to create chord diagrams and insert the diagrams above the music notation and tab. TuxGuitar is typical with a chord library of chord forms you can choose from. However, you can also just enter the finger positions on the chord diagram.

TuxGuitar chord library

You can capture what’s displayed on the screen and crop it to just the diagram then insert the image where you need it. You could capture the small diagrams in the library as well as the large diagram you’ve selected or edits. Easy but not the highest resolution.

You can also display chords along with tab and notation and could create images by any of the method discussed in the previous article. Examples are shown below. However, if you’re trying to build a chord reference for beginners, this probably isn’t what you wanted.

Screen Print Preview Edited Lilypond Export
tg-chord-in-tab-screen tg-chord-in-tab-print-preview tg-chord-in-tab-export-to-ly

Use chord diagram software such as QwikChord3.

QwikChord3 is a free Windows software program made specifically for creating fret diagrams. It can create scale diagrams as well as standard chord diagrams. It can try to tell you what chord you’ve entered. You can specify the number of strings and the tuning so it is useful for banjos, mandolins, ukuleles as well as for open and alternate tunings for guitar.

QwikChord Options Chord Entry with Toolbox

QwikChord Options showing selection of Chord or Scale mode

You can save your diagrams by clicking on the “To Fav” button and then export them to a graphic file by clicking on the “Save” button. When saving you can specify the size of the image created.

Exported Chord Diagram Exported Scale Diagram Notes and Text
Gmaj7 exported image E maj scale diagram exported G Scale

There are a lot of options including different symbols and colors that can be used on the diagram from the toolbox. One of my favorite toolbox options is the use the one labeled “A#”. Choose that then click on any string/fret and the name of the note will be entered. You can also right click and enter any text you like, as I did for root in the G scale image.

Create diagrams with graphics software.

You can create fret and scale diagrams with a graphics program. Bitmap software such as GIMP, Paint.net or PhotoShop could be used or a vector based program such as Inkscape. Either way, having layers gives you flexibility to label diagrams different ways.

The hardest part of using a graphic program is you must first create a blank diagram of the fretboard. But once you have that done, you can use it as a template for everything else.

Here’s some hints on using layers.

  • Make each chord or scale diagram a new layer.
  • You can make alternate ways of showing the same chord or scale by putting finger positions as closed circles in one layer, note names in the chord/scale in another layer and scale degrees in another.
  • Hide layers you don’t want for any particular image. Be sure to save the diagram with all the layers in the file format the software uses instead of a graphics format.

Paint.net diagram with layers saved as .PDN format

Use Lilypond notation software directly.

I’m not going to kid you. Attempting to learn Lilypond so you can make chord or scale diagrams isn’t easy. I’m going to show you some cool things I’ve discovered and which you can copy and modify as needed. But Lilypond is complex. You can do much more than I’m showing but even I wouldn’t try.

One of the things I’ve found people asking about on the web is whether you can do scale diagrams in Lilypond and I’ve seen some people conclude you can’t. That is not true. Once you’ve learned to make a chord diagram, a scale diagram is easy. Lilypond does not prevent you from putting multiple finger positions on the same string when you create diagrams from scratch.

Here’s some example Lilypond markup. You can copy/paste this into a plain text file with a .ly extension and compile it with the commands or batch file I provided in the previous post.

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

 \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
      "          " % space inserted to space the diagrams
      \fret-diagram #"s:3;f:1;5-4-2;4-3-1;4-6-4;3-5-3;"
	  "          "
      \fret-diagram #"s:3;f:2;6-3-2;5-2-1;4-o;3-o;2-o;1-3-3;"
	  % f:2 shows fingers beneath the strings
	  % 4-o indicates 4th string is played open
     }

Here’s the output produced from the above code.

scale  and chord diagrams from Lilypond

7 thoughts on “Fret diagrams for chords, scales or licks”

    1. I took a look at your post over at lilypond but saw nothing obvious that could help you. I congratulate you on the attempt at using lilypond this way. It should be doable. But here are some points to keep in mind.

      1st, I wrote that post nearly 3 years ago. Lilypond has evolved. Maybe there’s an easier way. If so, I don’t know it.

      2nd, I wrote the following in the post: “I’m not going to kid you. Attempting to learn Lilypond so you can make chord or scale diagrams isn’t easy. … You can do much more than I’m showing but even I wouldn’t try.” I haven’t used Lilypond for some time. I wish I could help but I use other software for the purpose.

      Which brings me to the last thing – I recently reviewed software I currently use that will accomplish at least part of what you want. It still might not solve all your problems but it should get the diagram better than your example. See Fret Diagram Software – Update 2014. Good luck no matter how you proceed. I regret I’m not more help.

  1. Hi Dan. I came across this post from 2014. I’m looking for simple software to make a page of chord diagrams for my arrangements of songs. I would like to indicate fingering (what finger goes where) in addition to shape (like picture shown above), fret, whether to play open string (“O”) or not play a string (“X”), and have it auto-populate the name of the chord (which I might know how to play but not know what it’s called). Perhaps you would click on blank chord diagrams to populate notes, maybe right-click to indicate fingering, etc. Any recommendations for 2020? Thanks!

    1. Thanks for asking. I should update that post. I recommend Neck Diagrams. It is available for both Windows and Mac. It doesn’t name the chord for you which I find better than Guitar Pro and other apps that automatically gives the chord a name I disagree with. But you can configure the diagrams to automatically insert either the note names for each played string, the intervals, or both. You should be able to name the chord from that, as long as you have designated the root note on the diagram. See Fret Diagram Software – Update 2014

  2. Hi Dan, do you know where i can get a full copy of QwikChord3. Website is gone. Free copy is very restricted. Unable to buy full copy. Regards, Noel Smyth

    1. I do not know where to find QickChord3. Things change, apps are discontinued, new ones take their place. I wrote this article 10 years ago. I wrote an update in 2014 but that is still about 7 years out of date. I need to update again. But for now, I’ll recommend two apps. The first costs money but I think it is worth it. The product is Neck Diagrams. The second is a web app that you can use for free from a browser. It is ChordPic. I hope one of those works for your needs.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

%d