Woodwind doubling recital program, Northwestern University, 1950

A new Internet friend shared this gem with me (click for slightly larger):

If you know these pieces (I’m familiar with all but the Howden—anybody know this one?), you know that this is a very impressive program. None of these are filler pieces, and the Mozart and the Ibert strike me as particularly large and challenging.

I like the use of the understated term “instrumentalist” here. And I’m glad that smoking in the recital hall is no longer an issue.

I asked the person who sent me this, a member of Mr. Tootelian’s family, if it would be all right if I shared this with my readers. Mr. Tootelian, now retired, kindly gave his consent.

Update, August 2012: I was saddened to hear from Mr. Tootelian’s family about his passing last month. No doubt he has gone on to a place where the reeds are always good. Rest in peace. —BP

Similar Posts

  • Switching between clarinets: tone production

    Switching between any two instruments, even two closely-related ones, is a challenging prospect. You must practice for many hours to do it well. But often people switching between clarinets (such as between B-flat clarinet and bass clarinet) are making larger changes than necessary.

    The fundamental concepts in clarinet tone production are breath support, voicing, and embouchure. These should remain basically the same whether you are playing the largest or smallest members of the clarinet family.

    Breath support should, in all cases, be powerful and constant. Voicing, even on low clarinets, should be high (think “cold air”). You may find the lower clarinets are somewhat more forgiving of lower voicings, and even that some pleasing effects can be achieved. But a consistently high voicing across the clarinet family pays off in intonation, evenness of tone, and ease of response.

    Embouchures must adapt, but really only to accommodate different sizes of mouthpiece. In general, the larger the instrument and mouthpiece, the more mouthpiece you will take into your mouth. However, this amount can vary even between two B-flat clarinet mouthpieces. To find the correct position for each of your mouthpieces, insert a piece of paper between the mouthpiece and reed. Where the paper stops is approximately the place where your lip should contact the reed.

    Beware advice suggesting that larger clarinets use a “looser” embouchure. Embouchures for all clarinets should be airtight, but not tight.

    The angle of the embouchure is also important. Clarinet mouthpieces of any size are best played at a relatively steep angle (compared to, say, a saxophone or oboe), around 30 degrees from vertical. Some larger clarinets, depending on their neck curves, seem to lend themselves to a more-horizontal angle. But bringing the bottom end of the clarinet closer to you helps to achieve a more optimal position.

    Fingerings are mostly the same for members of the clarinet family, but there are some exceptions and adaptions. Advancing players should consult a good fingering chart (such as Stefanie Gardner’s bass clarinet chart) for differences. (Or even better, get a private teacher.) Note in Dr. Gardner’s chart some differences from B-flat clarinet: the use of the left hand index finger vent for C-sharp6 through G6, and the special fingerings for the extra keywork for notes below E3, if available on your instrument.

    Happy practicing!

  • 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!

  • Improvisation and doubling

    An important factor in improvising fluently (such as in a jazz context) is a collection of vocabulary. Broadly defined, this could include rote-memorized “licks” plus all kinds of other material: scale- or arpeggio-oriented patterns, for example. With improvisation, you don’t have the luxury of practicing your solo note-for-note; instead you have to develop a large pool of available material, and learn it so well that you can mix and match it on the fly.

    Photo, fantail media
    Photo, fantail media

    If you double on multiple instruments, the vocabulary pool isn’t really portable. You can bring your improvisational ideas with you from instrument to instrument, but you won’t be able to execute them smoothly unless you have put in the practice hours on each instrument separately. If you are doubling, say, saxophone and flute, you might find that the fingerings are similar enough that you can make a few things work, but it’s too easy to paint yourself into a corner, or to catch yourself using “close enough” fingerings that really aren’t, or to play with unsatisfactory tone or intonation. To do it right, and have the colors of multiple instrumental voices available to you as an improviser, treat each instrument like it’s your only one.

  • When there’s no place to breathe

    When you’re working on a new piece and there’s no place to breathe:

    • Re-examine. Are you sure there’s no place? Tonal wind-instrument music usually has phrases. To find them might take some careful analysis, or maybe listening to a recording to check out someone else’s solutions. Once you know where the phrases end, you may be able to take a little extra time to breathe in those spots without it sounding disruptive.
    • Practice. With some effort and repetition, you may be able to play longer phrases than you thought. Make sure you’re really taking a full breath—the inhalation should feel pretty physical, much more so than “normal” (tidal) breathing.
    • Edit thoughtfully. If the music was written originally for, say, piano or a string instrument (or if it’s just written by a less-experienced wind composer), it may not have good built-in breaths. Where absolutely necessary, consider breaking a slur, reducing the dynamic level, boosting the tempo, or making some other minor adaptation. Mark it in, so you’re in the habit of breaking with the composer’s intent only after serious deliberation.
    • Be quick. Sometimes a very small, very short breath is all you need to finish out a phrase strong. Find a reasonable musical place to insert one, and mark it in such a way that you will remember not to take too much time for it.
    • Consider circular breathing. It’s a challenge but not impossible for someone playing at a reasonably advanced level. But be careful: don’t use it an excuse to avoid the issue of phrasing. Plus, it’s not very comfortable to circular-breathe for extended periods, for you or your audience. (Audiences often breathe with you!) Use this as a last resort or when specifically requested by the composer.

  • Ask yourself these questions before becoming a woodwind doubler

    For me, there was a point in my education and career when I decided that I was a woodwind doubler, or at least that I was going to be one. Prior to that decision, I had really identified as a saxophonist, or maybe a saxophonist who doubled a little on the side.

    If you are thinking that serious woodwind doubling—committing to playing several instruments at the highest possible level—might be your thing, then I suggest you ask yourself these questions:

    • Am I willing to commit major practice time to each instrument?
    • Am I willing to accept a slower rate of improvement and/or more extensive practice routine than I would if I remained committed to a single instrument?
    • Am I willing to sacrifice or at least postpone some high-level performance goals on my primary instrument in order to devote time to my secondary instruments?
    • Do I have the resources and/or financial discipline to accumulate the necessary high-quality instruments and other equipment?
    • Do I have the guts to perform on instruments that aren’t my strongest one(s)?
    • Am I genuinely interested in and motivated by each of the instruments I intend to play?
    Photo, stonelucifer
    Photo, stonelucifer

    If you answered “no” to one or more, then you might be happier and more successful maintaining a single “primary” instrument, and taking a more casual approach to doubling. Or you may not have fully come to terms yet with the realities of woodwind doubling. Playing any one instrument well requires non-trivial investment of time and money, and very little of that can be truly recycled for a second instrument: if it takes you 10,000 practice hours to achieve your goals on your first instrument, expect to take another 10,000 to achieve the same goals on another.

    There are of course many advantages to woodwind doubling, which I won’t rehash in depth here other than to list a few: more and/or different employment opportunities, expanded musical experiences, and, for some, great fun. But it’s not for everyone (probably not for most people). If your answer is “yes” to each of the questions above, then carve out some extra practice time, start saving your pennies, and clear your calendar for some new opportunities.

  • Woodwind doubling for flutists

    Here is a cleaned-up version of my lecture notes from a presentation on woodwind doubling I gave last week at the Mid-South Flute Festival:

    Woodwind doubling for flutists

    • What is doubling?
      • Primary-to-secondary doubling: Playing multiple instruments within a family, such as flute (primary), piccolo (secondary), and alto flute (secondary)
      • Primary-to-primary doubling: Playing instruments from different families, such as flute (primary), clarinet (primary), and saxophone (primary) [The idea of primary-to-secondary or primary-to-primary doubling comes from a web article by Mary AllyeB Purtle.]
    • Why double?
      • More (and more varied) gigs. Also, doublers can sometimes get bonus pay.
      • More teaching opportunities
      • Larger network
      • Fun; expanded horizons
    • Flute with non-flute woodwinds
      • Doubling opportunities in musical theater, backing up singers, jazz big bands (requires strong saxophone). With strong enough skills on secondary instruments, gigs on those instruments become a possibility. Employers often value musicianship over virtuosity.
      • The flutist’s advantage: flute and especially piccolo are often weak spots for woodwind doublers. A strong, soloistic flutist with at least basic reed skills can be a hot commodity.
      • For maximum pre-existing gig opportunities, add alto saxophone first, then clarinet. Convincing swing style is also helpful. For create-your-own opportunities, any combination can work!
      • To do multiple-instrument teaching really well, you need to play all of your teaching instruments well! To do this at a lower level, you will at least need to be familiar with current/respected pedagogical literature, a variety of repertoire (including method books, etudes, and solos), a variety of excellent recordings, and a variety of equipment options.
    • Flute with other flute-like instruments
      • Doubling opportunities in situations that increasingly call for “other” flutes: recent musical theater, studio recording, even recent orchestral music. Check out my dissertation on this topic.
      • “World” transverse flutes: bansuri, dizi, “Irish” flute. Also non-tradition-linked bamboo, wooden, or plastic flutes
      • Historical transverse flutes (baroque, etc.)
      • Fipple flutes: recorders, pennywhistle (tinwhistle)
      • Endblown flutes: quena, shakuhachi, panflutes (Romanian, South American)
    • Getting started
      • Be a beginner (but an informed beginner). Get a good teacher. Buy quality instruments within your price range. Do thorough work from good method books. Give yourself all the advantages you wish you had had when you started the flute.
      • Work out a practice schedule that reflects your priorities. If you are juggling a lot of instruments, it may not make sense to practice each one each day, but do practice each one at least a few days in a row to get some momentum.
      • What to practice? If your goal is maximum gig employability, prioritize intonation, rhythm, tone, and sight reading. Practice scales, arpeggios, and other technical drills in all keys, through the full range of the instrument. (Musicals are notorious for “singer” keys and unforgiving tessituras!) Begin working methodically through time-tested etude and technique books. Start learning the easier standard repertoire if that suits your goals.
    • Will doubling hurt my flute playing?
      • Some flutists believe that doubling can damage your embouchure. Realistically, if reed playing is leaving your embouchure swollen, numb, or sore, you need to reexamine your reed-playing approach. Embouchure muscles are agile, flexible, and accustomed to doing varied tasks: playing the flute, eating, speaking, facial expressions. If your tone production on all instruments is based on solid principles, embouchure is not an issue.
      • The real issue: doubling diverts time, money, and mental energy away from flute playing. Committing to “serious” doubling means committing to less time with the flute.

One Comment

  1. I studied with Bob Tootelian in 1956-57, and he was a very impressive guy. He was the #1 woodwind doubler in Chicago for many years and played all the big touring shows that came through Chicago.

    I went to his apartment in Rogers Park several times for oboe and oboe reed making lessons, and was blown away by his collection of woodwinds. He had a whole room full of them — every flute, double reed, clarinet and saxophone imaginable. I had never even seen many of them before.

    And he played and taught all of them at a very high professional level. Never met anyone since quite like him. He inspired me to pursue doubling, even though I was often discouraged by my music teachers because it was going to “wreck my lip”. I now have a room full of woodwinds, similar to what I saw back then at Bob’s apartment.

    Great memories. Rest in peace “Toot”.

Leave a Reply

Your email address will not be published. Required fields are marked *

Comments that take a negative or confrontational tone are subject to email and name verification before being approved. In other words: no anonymous trolls allowed—take responsibility for your words.

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