Creating fingering charts with diagrams from the Fingering Diagram Builder

My Fingering Diagram Builder has been around for a little over five years now. I was careful to name it the Fingering Diagram Builder instead of the Fingering Chart Builder because it is a tool for creating individual diagrams, not for assembling them into comprehensive fingering charts. But the difference can be a little confusing, so I get frequent questions from users who complain that they can’t figure out how to create and download a “chart” with multiple fingerings on it.

The reason I didn’t try to build a complete system for creating fingering charts is that I assumed users would have widely-varying needs, and would do better to assemble charts using some other kind of software. Here are a few examples of how that might be done, using music notation software, using a word processor, and using a text editor to create HTML code (such as for a website). All the software I’m using here is free to download on Windows, Mac OS, and Linux, but whatever free or commercial programs you are already using probably have similar features. You’re on your own to work out the details (and feel free to share them in the comments if you are feeling helpful).

Creating a fingering chart in music notation software

I am using MuseScore here, but commercial software like Finale and Sibelius and other free software like LilyPond could be used in similar ways.

First I set up a musical “score” with the notes for the chart. I used whole notes, separated by double bar lines, but that’s up to you.

MuseScore setup

Next I created my fingering diagrams in the FDB. I sized the diagrams “tiny” with “thick” lines.

Adding the diagrams to the score is very simple in MuseScore—I just dragged the downloaded diagrams from my file manager right onto the score. If I drag the diagram and hover it on top of a note, that note gets highlighted. Then I can release the diagram and it attaches to the note.

musescore-drop

Initially the diagrams are placed right on top of the note. I selected the diagrams and used the Inspector panel to give them a horizontal offset of -2.5sp and a vertical offset of -10.5 sp, which moved them above the staff, more or less centered above the noteheads. I adjusted the A and tenor B-flat fingerings’ horizontal offsets a bit more to make them look just right.

Here is the finished product, a small chart with a few bassoon fingerings:

bassoon-fingering-chart-sample

Creating a fingering chart in word processing software

I am using LibreOffice Writer, but something like Microsoft Word or Apple Pages would work just as well.

First I opened a new document and inserted a table. My table has three rows and seven columns.
writer-table

Then I dragged the downloaded diagrams from my file manager into the bottom row of the table.

writer-diagrams

I merged some cells together, dragged in some images of notes on staves, and added some text.

writer-complete

A few more little tweaks and here is the finished chart:

clarinet-fingering-chart-sample

Creating an HTML fingering chart in text editing software

This code be used in any text editor or HTML source editor, and of course similar results could be accomplished with a visual/WYSIWYG editor. I’m not showing complete code here, just the most relevant parts.

I started with a framework for a table that I could use to show a note with two alternate fingerings. (This is a flute fingering chart with horizontally-oriented diagrams. For an instrument with vertically-oriented diagrams, you may want to rearrange things a bit.)

<table>
  <tr>
    <th rowspan=2><!— note image here —></th>
    <td><!— first fingering image here —></td>
    <td><!— first fingering text here —></td>
  </tr>
  <tr>
    <td><!— second fingering image here —></td>
    <td><!— second fingering text here —></td>
  </tr>
</table>

Then I plugged in <img> tags and text:

<table>
  <tr>
    <th rowspan=2><img src="images/f-sharp-note.png" /></th>
    <td><img src="images/f-sharp-standard.png"</td>
    <td>Standard</td>
  </tr>
  <tr>
    <td><img src="images/f-sharp-trill.png"</td>
    <td>Trill from E</td>
  </tr>
</table>

I duplicated that code for additional notes. Since this is a sample alternate/trill fingering chart, each note has at least two fingerings. For notes with more fingerings, I added <tr>s and changed the rowspan values accordingly.

I also added a little CSS to spruce things up:

<style>
  table {
    display: inline-block; /* make tables wrap gracefully depending on screen width */
    margin: 1em; /* put some space between tables for legibility/clarity */
  }
  th img {
    max-width: 8em; /* manage size of note images */
  }
</style>

Here is the result:

flute-fingering-chart-sample

I hope that sparks a few ideas for you if you are considering putting together a fingering chart. If you have other methods or tips, please share in the comments section!

Endurance and breath support

Physical endurance can be an issue for woodwind players, most often manifesting as fatigue in the muscles of the embouchure. But in most cases I think tired facial muscles are a symptom of a more fundamental problem.

Practicing and the two-minute rule

David Allen’s well-known book Getting Things Done is always within arm’s reach at my desk. I find its concepts and techniques valuable for managing my time and productivity. I don’t consciously use a lot of “GTD” ideas in my practicing, since practicing seems to me like a thing that is never “done.” (If any of you are … Read more

Favorite blog posts, December 2015

Hand-picked high-quality woodwind-related blog posts from around the web, December 2015 edition.

Pedagogical recipes

When conflicts exist between one school of thought and another, in some cases that is because one or both sides is incorrect. In other cases the problem is a communication failure: both sides are applying the same techniques in the same way, but describing them poorly (or at least differently). But I think there are other cases where the difference can be attributed to what I think of as different “recipes.”

Student-selected online woodwind pedagogy articles

To be clear, I’m a lover of libraries, and for me there’s no question that there are tremendously valuable resources there that are not available online (yet?). But it seemed like time to experiment with embracing an online approach to the assignment.

Favorite blog posts, November 2015

Hand-picked high-quality woodwind-related blog posts from around the web, November 2015 edition.

Interview: Sarah Cosano, woodwind player and more

Sarah Cosano is a busy working woodwind player (among other things). I initially reached out to Sarah about doing an interview because I was interested in her experiences with playing on cruise ships, but it turns out her musical experiences are quite varied. In 2000, Sarah was an MTNA National Competition winner, a featured performer on the … Read more

Selecting alternate fingerings

When several fingerings are available for a note, how do you choose the “right” one for a situation? Here are some criteria you might use in that decision.