]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/fretted-strings.itely
7e2d18725b57cbc90dae0092e3b4ff6b354d6d8d
[lilypond.git] / Documentation / notation / fretted-strings.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  For details, see the Contributors'
7     Guide, node Updating translation committishes..
8 @end ignore
9
10 @c \version "2.19.21"
11
12 @node Fretted string instruments
13 @section Fretted string instruments
14
15 @lilypondfile[quote]{fretted-headword.ly}
16
17 This section discusses several aspects of music notation that are unique
18 to fretted string instruments.
19
20 @cindex tablature
21 @cindex tablature, guitar
22 @cindex tablature, banjo
23 @cindex guitar tablature
24 @cindex banjo tablature
25
26 @menu
27 * Common notation for fretted strings::
28 * Guitar::
29 * Banjo::
30 @end menu
31
32 @node Common notation for fretted strings
33 @subsection Common notation for fretted strings
34
35 This section discusses common notation that is unique
36 to fretted string instruments.
37
38 @menu
39 * References for fretted strings::
40 * String number indications::
41 * Default tablatures::
42 * Custom tablatures::
43 * Fret diagram markups::
44 * Predefined fret diagrams::
45 * Automatic fret diagrams::
46 * Right-hand fingerings::
47 @end menu
48
49 @node References for fretted strings
50 @unnumberedsubsubsec References for fretted strings
51
52 Music for fretted string instruments is normally notated on
53 a single staff, either in traditional music notation or in
54 tablature.  Sometimes the two types are combined, and it is
55 especially common in popular music to use chord diagrams above
56 a staff of traditional notation.  The guitar and the banjo are
57 transposing instruments, sounding an octave lower than written.
58 Scores for these instruments should use the @code{"treble_8"} clef
59 (or @code{\transposition c} to get correct MIDI output).
60 Some other elements pertinent to fretted string instruments
61 are covered elsewhere:
62
63 @itemize
64 @item Fingerings are indicated as shown in
65 @ref{Fingering instructions}.
66
67 @item Instructions for @notation{Laissez vibrer} ties
68 as well as ties on arpeggios and tremolos can be found in
69 @ref{Ties}.
70
71 @item Instructions for handling multiple voices can be found
72 in @ref{Collision resolution}.
73
74 @item Instructions for indicating harmonics can be found in
75 @ref{Harmonics}.
76
77 @end itemize
78
79 @seealso
80 Notation Reference:
81 @ref{Fingering instructions},
82 @ref{Ties},
83 @ref{Collision resolution},
84 @ref{Instrument names},
85 @ref{Writing music in parallel},
86 @ref{Arpeggio},
87 @ref{List of articulations},
88 @ref{Clef},
89 @ref{Instrument transpositions}.
90
91
92 @node String number indications
93 @unnumberedsubsubsec String number indications
94
95 @cindex string numbers
96 @cindex string vs. fingering numbers
97 @cindex fingering vs. string numbers
98
99 The string on which a note should be played may be indicated by
100 appending @code{\@var{number}} to a note.
101
102 @lilypond[verbatim,quote,fragment]
103 \clef "treble_8"
104 c4\5 e\4 g2\3
105 <c\5 e\4 g\3>1
106 @end lilypond
107
108 When fingerings and string indications are used together, their
109 placement can be controlled by the order in which the two items appear
110 in the code @emph{only} if they appear inside of an explicit chord:
111 applied to whole chords or single notes @emph{outside} of chords,
112 fingerings are placed using a different mechanism.
113
114 @lilypond[verbatim,quote,fragment]
115 \clef "treble_8"
116 g4\3-0
117 g-0\3
118 <g\3-0>
119 <g-0\3>
120 @end lilypond
121
122 String numbers may also, as is customary with unfretted strings,
123 be printed in Roman numerals and placed below the staff rather
124 than above.
125
126 @lilypond[verbatim,quote,fragment]
127 \clef "treble_8"
128 c'2\2
129 a\3
130 \romanStringNumbers
131 c'\2
132 \set stringNumberOrientations = #'(down)
133 a\3
134 \arabicStringNumbers
135 g1\4
136 @end lilypond
137
138 @snippets
139
140 @lilypondfile[verbatim,quote,texidoc,doctitle]
141 {controlling-the-placement-of-chord-fingerings.ly}
142
143 @lilypondfile[verbatim,quote,texidoc,doctitle]
144 {allowing-fingerings-to-be-printed-inside-the-staff.ly}
145
146 @predefined
147 @code{\arabicStringNumbers},
148 @code{\romanStringNumbers}.
149 @endpredefined
150
151 @seealso
152 Notation Reference:
153 @ref{Fingering instructions}.
154
155 Snippets:
156 @rlsr{Fretted strings}.
157
158 Internals Reference:
159 @rinternals{StringNumber},
160 @rinternals{Fingering}.
161
162
163 @node Default tablatures
164 @unnumberedsubsubsec Default tablatures
165
166 @cindex tablatures, basic
167 @cindex tablatures, default
168
169 @funindex TabStaff
170 @funindex TabVoice
171
172 Music for plucked string instruments is frequently notated using a
173 finger/touch notation or tablature.  In contrast to traditional
174 notation pitches are not denoted with note heads, but by numbers (or
175 letter-like symbols in historical intavolatura).  The staff lines
176 in tablature indicate the string on which the note is to be played,
177 and a number placed on a staff line indicated the fret at which
178 the corresponding string is to be pressed.
179 Notes that are to be played simultaneously are vertically aligned.
180
181 By default, string 1 is the highest string, and corresponds to the top
182 line on the @code{TabStaff}.  The tuning of the @code{TabStaff}
183 strings defaults to the
184 standard guitar tuning (with 6 strings).  The notes are printed as
185 tablature, by using @code{TabStaff} and @code{TabVoice} contexts.  A
186 calligraphic tablature clef is added automatically.
187
188 @lilypond[quote,ragged-right,verbatim]
189 \new TabStaff \relative {
190   a,8 a' <c e> a
191   d,8 a' <d f> a
192 }
193 @end lilypond
194
195 Default tablatures do not contain any symbols for tone duration nor any
196 other musical symbols such as e.g. expressive marks.
197
198 @lilypond[quote,ragged-right,verbatim]
199 symbols = {
200   \time 3/4
201   c4-.^"Allegro" d( e)
202   f4-.\f g a^\fermata
203   \mark \default
204   c8_.\<\( c16 c~ 2\!
205   c'2.\prall\)
206 }
207
208 \score {
209   <<
210     \new Staff { \clef "G_8" \symbols }
211     \new TabStaff { \symbols }
212   >>
213 }
214 @end lilypond
215
216 @funindex \tabFullNotation
217
218 If all musical symbols used in traditional notation should also show up
219 in tablature one has to apply the command @code{\tabFullNotation} in a
220 @code{TabStaff}-context.  Please bear in mind that half notes are
221 double-stemmed in tablature in order to distinguish them from quarter
222 notes.
223
224 @lilypond[quote,ragged-right,verbatim]
225 symbols = {
226   \time 3/4
227   c4-.^"Allegro" d( e)
228   f4-.\f g a^\fermata
229   \mark \default
230   c8_.\<\( c16 c~ 2\!
231   c'2.\prall\)
232 }
233
234 \score {
235   \new TabStaff {
236     \tabFullNotation
237     \symbols
238   }
239 }
240 @end lilypond
241
242 @cindex fret
243
244 @funindex minimumFret
245 @funindex restrainOpenStrings
246
247 By default pitches are assigned to the lowest playing position on the
248 fret-board (first position).  Open strings are automatically preferred.
249 If you would like a certain pitch to be played on a specific string you
250 can add a string number indication to the pitch name.  If you don't want
251 to have string number indications appear in traditional notation, you
252 can override the respective stencil.  Usually it will be more
253 comfortable to define the playing position by using the value of
254 @code{minimumFret}.  The default value for minimumFret is 0.
255
256 Even when @code{minimumFret} is set, open strings are used whenever
257 possible.  This behaviour can be changed by setting @code{restrainOpenStrings}
258 to @code{#t}.
259
260 @lilypond[quote,ragged-right,verbatim]
261 \layout { \omit Voice.StringNumber }
262 \new StaffGroup <<
263    \new Staff \relative {
264      \clef "treble_8"
265      \time 2/4
266      c16 d e f g4
267      c,16\5 d\5 e\4 f\4 g4\4
268      c,16 d e f g4
269    }
270    \new TabStaff \relative {
271      c16 d e f g4
272      c,16\5 d\5 e\4 f\4 g4\4
273      \set TabStaff.minimumFret = #5
274      \set TabStaff.restrainOpenStrings = ##t
275      c,16 d e f g4
276    }
277 >>
278 @end lilypond
279
280 @funindex \tabChordRepeats
281 @funindex \chordRepeats
282 @cindex chord, repetition
283 @cindex repetition, using @code{q}
284 @cindex @code{q}, chord repetition
285
286 Chord constructs can be repeated by the chord repetition symbol
287 @code{q}.  In combination with tabulatures, its behavior of removing
288 string and finger numbers alongside with other events is cumbersome, so
289 you'll want to run
290 @example
291 \chordRepeats #'(string-number-event fingering-event)
292 @end example
293 explicitly on music expressions in tabulature using @ref{Chord
294 repetition}.  This particular command is so common that it is available
295 as @code{\tabChordRepeats}.
296
297 @lilypond[quote,verbatim]
298 guitar = \relative {
299   r8 <gis-2 cis-3 b-0>~ q4 q8~ 8 q4
300 }
301
302 \new StaffGroup <<
303   \new Staff {
304     \clef "treble_8"
305     \guitar
306   }
307   \new TabStaff {
308     \tabChordRepeats \guitar
309   }
310 >>
311 @end lilypond
312
313 Ties over a line break are parenthesized by default.  The same holds for
314 the second alternative of a repeat.
315
316 @lilypond[quote,ragged-right,verbatim]
317 ties = \relative {
318   \repeat volta 2 {
319     e'2. f4~
320     2 g2~
321   }
322   \alternative {
323      { g4 f2. }
324      { g4\repeatTie c,2. }
325   }
326   b1~
327   \break
328   b1
329   \bar "|."
330 }
331
332 \score {
333   <<
334     \new StaffGroup  <<
335       \new Staff {
336         \clef "treble_8"
337         \ties
338       }
339       \new TabStaff {
340         \ties
341       }
342     >>
343   >>
344   \layout {
345   indent = #0
346   ragged-right = ##t
347   }
348 }
349 @end lilypond
350
351 @funindex \hideSplitTiedTabNotes
352
353 The command @code{\hideSplitTiedTabNotes} cancels the behavior of
354 engraving fret numbers in parentheses:
355
356 @lilypond[quote,ragged-right,verbatim]
357 ties = \relative {
358   \repeat volta 2 {
359     e'2. f4~
360     2 g2~ }
361   \alternative {
362     { g4 f2. }
363     { g4\repeatTie c,2. }
364   }
365   b1~
366   \break
367   b1
368   \bar "|."
369 }
370
371 \score {
372   <<
373     \new StaffGroup  <<
374       \new Staff {
375         \clef "treble_8"
376         \ties
377       }
378       \new TabStaff {
379       \hideSplitTiedTabNotes
380         \ties
381       }
382     >>
383   >>
384   \layout {
385   indent = #0
386   ragged-right = ##t
387   }
388 }
389 @end lilypond
390
391 @cindex harmonic indications in tablature notation
392 @cindex tablature and harmonic indications
393 @funindex \harmonic
394 @funindex \harmonicByFret
395 @funindex \harmonicByRatio
396
397 Harmonic indications can be added to tablature notation as sounding
398 pitches:
399
400 @lilypond[verbatim,quote]
401 \layout { \omit Voice.StringNumber }
402 firstHarmonic = {
403   d'4\4\harmonic
404   g'4\3\harmonic
405   b'2\2\harmonic
406 }
407 \score {
408   <<
409     \new Staff {
410       \clef "treble_8"
411       \firstHarmonic
412     }
413     \new TabStaff { \firstHarmonic }
414   >>
415 }
416 @end lilypond
417
418 Note that the command @code{\harmonic} must always be attached to single
419 notes (possibly inside of a chord) instead of whole chords.
420 It only makes sense for open-string harmonics
421 in the 12th fret. All other harmonics should be calculated by LilyPond.
422 This can be achieved by indicating the fret where a finger of the
423 fretting hand should touch a string.
424
425 @lilypond[verbatim,quote]
426 fretHarmonics = {
427   \harmonicByFret #5 d16\4
428   \harmonicByFret #4 d16\4
429   \harmonicByFret #3 d8\4
430   \harmonicByFret #5 <g\3 b\2>2.
431 }
432 \score {
433   <<
434     \new Staff {
435       \clef "treble_8"
436       \fretHarmonics
437     }
438     \new TabStaff { \fretHarmonics }
439   >>
440 }
441 @end lilypond
442
443 Alternatively, harmonics can be computed by defining the ratio of
444 string lengths above and below the harmonic fingering.
445
446 @lilypond[verbatim,quote]
447 ratioHarmonics = {
448   \harmonicByRatio #1/2 <g\3 b\2 e'\1>4
449   \harmonicByRatio #1/3 <g\3 b\2 e'\1>4
450   \harmonicByRatio #1/4 { g8\3 b8\2 e'4\1 }
451 }
452 \score {
453   <<
454     \new Staff {
455       \clef "treble_8"
456       \ratioHarmonics
457     }
458     \new TabStaff { \ratioHarmonics }
459   >>
460 }
461 @end lilypond
462
463 @snippets
464 @lilypondfile[verbatim,quote,texidoc,doctitle]
465 {stem-and-beam-behavior-in-tablature.ly}
466
467 @lilypondfile[verbatim,quote,texidoc,doctitle]
468 {polyphony-in-tablature.ly}
469
470 @lilypondfile[verbatim,quote,texidoc,doctitle]
471 {open-string-harmonics-in-tablature.ly}
472
473 @lilypondfile[verbatim,quote,texidoc,doctitle]
474 {fretted-string-harmonics-in-tablature.ly}
475
476 @cindex slides in tablature notation
477 @cindex tablature and slides
478
479 @lilypondfile[verbatim,quote,texidoc,doctitle]
480 {slides-in-tablature.ly}
481
482 @cindex chord glissandi
483
484 @lilypondfile[verbatim,quote,texidoc,doctitle]
485 {chord-glissando-in-tablature.ly}
486
487 @cindex hammer on
488 @cindex pull off
489
490 @lilypondfile[verbatim,quote,texidoc,doctitle]
491 {hammer-on-and-pull-off.ly}
492
493 @lilypondfile[verbatim,quote,texidoc,doctitle]
494 {hammer-on-and-pull-off-using-voices.ly}
495
496 @lilypondfile[verbatim,quote,texidoc,doctitle]
497 {hammer-on-and-pull-off-using-chords.ly}
498
499 @seealso
500 Notation Reference:
501 @ref{Chord repetition},
502 @ref{Glissando},
503 @ref{Harmonics},
504 @ref{Stems},
505 @ref{Written-out repeats}.
506
507 Snippets:
508 @rlsr{Fretted strings}.
509
510 Internals Reference:
511 @rinternals{TabNoteHead},
512 @rinternals{TabStaff},
513 @rinternals{TabVoice},
514 @rinternals{Beam}.
515
516 @knownissues
517 Chords are not handled in a special way, and hence the automatic
518 string selector may easily select the same string for two notes in
519 a chord.
520
521 In order to handle @code{\partcombine}, a @code{TabStaff} must use
522 specially-created voices:
523
524 @lilypond[quote,ragged-right,verbatim]
525 melodia = \partcombine { e4 g g g } { e4 e e e }
526 <<
527   \new TabStaff <<
528     \new TabVoice = "one" s1
529     \new TabVoice = "two" s1
530     \new TabVoice = "shared" s1
531     \new TabVoice = "solo" s1
532     { \melodia }
533   >>
534 >>
535 @end lilypond
536
537 Guitar special effects are limited to harmonics and slides.
538
539
540 @node Custom tablatures
541 @unnumberedsubsubsec Custom tablatures
542
543 @cindex tablatures, custom
544 @cindex tablature, banjo
545 @cindex tablature, mandolin
546 @cindex tablature, guitar
547 @cindex tablature, bass guitar
548 @cindex tablature, ukulele
549 @cindex tablature, predefined string tunings
550 @cindex fretted instruments, predefined string tunings
551 @cindex predefined string tunings for fretted instruments
552 @cindex tablature, violin
553 @cindex tablature, viola
554 @cindex tablature, cello
555 @cindex tablature, bass
556 @cindex tablature, double bass
557
558 @funindex stringTunings
559
560 LilyPond tablature automatically calculates the fret for
561 a note based on the string to which the note is assigned.
562 In order to do this, the tuning of the strings must be
563 specified.  The tuning of the strings is given in the
564 @code{stringTunings} property.
565
566 LilyPond comes with predefined string tunings for banjo, mandolin,
567 guitar, bass guitar, ukulele, violin, viola, cello, and double bass.
568 LilyPond automatically sets
569 the correct transposition for predefined tunings.  The following
570 example is for bass guitar, which sounds an octave lower than
571 written.
572
573 @lilypond[quote,ragged-right,verbatim]
574 <<
575   \new Voice \with {
576     \omit StringNumber
577   } {
578     \clef "bass_8"
579     \relative {
580       c,4 d e f
581     }
582   }
583   \new TabStaff \with {
584     stringTunings = #bass-tuning
585   } {
586     \relative {
587       c,4 d e f
588     }
589   }
590 >>
591 @end lilypond
592
593 The default string tuning is @code{guitar-tuning}, which
594 is the standard EADGBE tuning.  Some other predefined tunings are
595 @code{guitar-open-g-tuning}, @code{mandolin-tuning} and
596 @code{banjo-open-g-tuning}.  The predefined string tunings
597 are found in @file{ly/string-tunings-init.ly}.
598
599 @funindex stringTuning
600 @funindex \stringTuning
601 @cindex tablature, custom string tunings
602 @cindex custom string tunings
603
604 Any desired string tuning can be created.  The
605 @code{\stringTuning} function can be
606 used to define a string tuning which can be used
607 to set @code{stringTunings} for the current context.
608
609 Its argument is a chord construct
610 defining the pitches of each string in the tuning.
611 The chord construct must be in absolute octave mode,
612 see @ref{Absolute octave entry}.  The string
613 with the highest number (generally the lowest string) must
614 come first in the chord.  For example, we can
615 define a string tuning for a four-string instrument with pitches
616 of @code{a''},  @code{d''},  @code{g'}, and @code{c'}:
617
618 @lilypond[quote,verbatim]
619
620 mynotes = {
621   c'4 e' g' c'' |
622   e''4 g'' b'' c'''
623 }
624
625 <<
626   \new Staff {
627     \clef treble
628     \mynotes
629   }
630   \new TabStaff {
631     \set Staff.stringTunings = \stringTuning <c' g' d'' a''>
632     \mynotes
633   }
634 >>
635 @end lilypond
636
637 The @code{stringTunings} property is also used by
638 @code{FretBoards} to calculate automatic fret diagrams.
639
640 String tunings are used as part of the hash key
641 for predefined fret diagrams
642 (see @ref{Predefined fret diagrams}).
643
644 The previous example could also be written as follows:
645
646 @lilypond[quote,verbatim]
647 custom-tuning = \stringTuning <c' g' d'' a''>
648
649 mynotes = {
650   c'4 e' g' c'' |
651   e''4 g'' b'' c'''
652 }
653
654 <<
655   \new Staff {
656     \clef treble
657     \mynotes
658   }
659   \new TabStaff {
660     \set TabStaff.stringTunings = #custom-tuning
661     \mynotes
662   }
663 >>
664 @end lilypond
665
666 Internally, a string tuning is a Scheme list of string pitches,
667 one for each string, ordered by string number from 1 to N,
668 where string 1 is at the top of the tablature staff and
669 string N is at the bottom.  This ordinarily results in ordering
670 from highest pitch to lowest pitch, but some instruments
671 (e.g. ukulele) do not have strings ordered by pitch.
672
673 A string pitch in a string tuning list is a LilyPond pitch
674 object.  Pitch objects are created with the Scheme function
675 @code{ly:make-pitch} (see @ref{Scheme functions}).
676
677 @code{\stringTuning} creates such an object from chord input.
678
679 LilyPond automatically calculates the number of lines in the
680 @code{TabStaff} and the number of strings in an automatically
681 calculated @code{FretBoard} as the number of elements
682 in @code{stringTunings}.
683
684 To let all TabStaff contexts use the same custom tuning by default,
685 you can use
686
687 @example
688 \layout @{
689   \context @{
690     \TabStaff
691     stringTunings = \stringTuning <c' g' d'' a''>
692   @}
693 @}
694 @end example
695
696
697 @cindex moderntab clef
698 @cindex clef, moderntab
699 @cindex clef, tab
700 @cindex tab clef
701
702 A modern tab clef can also be used.
703
704 @lilypond[quote,ragged-right,verbatim]
705 \new TabStaff {
706   \clef moderntab
707   <a, e a>1
708   \break
709   \clef tab
710   <a, e a>1
711 }
712 @end lilypond
713
714 The modern tab clef supports tablatures from 4 to 7 strings.
715
716 @seealso
717 Notation Reference:
718 @ref{Absolute octave entry},
719 @ref{Predefined fret diagrams},
720 @ref{Scheme functions}.
721
722 Installed Files:
723 @file{ly/string-tunings-init.ly},
724 @file{scm/tablature.scm}.
725
726 Snippets:
727 @rlsr{Fretted strings}.
728
729 Internals Reference:
730 @rinternals{Tab_note_heads_engraver}.
731
732 @knownissues
733 Automatic tablature calculations do not work properly in most
734 cases for instruments where string pitches do not vary
735 monotonically with string number, such as ukuleles.
736
737
738 @node Fret diagram markups
739 @unnumberedsubsubsec Fret diagram markups
740
741 @cindex fret diagrams
742 @cindex chord diagrams
743 @cindex diagrams, fret
744 @cindex diagrams, chord for fretted instruments
745 @cindex fret diagrams, custom
746 @cindex custom fret diagrams
747
748 Fret diagrams can be added to music as a markup to the desired
749 note.  The markup contains information about the desired fret
750 diagram.  There are three different fret-diagram markup
751 interfaces: standard, terse, and verbose.  The three interfaces
752 produce equivalent markups, but have varying amounts of
753 information in the markup string.  Details about the
754 syntax of the different markup strings used to define
755 fret diagrams are found at @ref{Instrument Specific Markup}.
756
757 The standard fret diagram markup string indicates the string
758 number and the fret number for each dot to be placed on the string.
759 In addition, open and unplayed (muted) strings can be indicated.
760
761 @lilypond[quote, verbatim]
762 <<
763   \new ChordNames {
764     \chordmode {
765       c1 d:m
766     }
767   }
768   \new Staff {
769     \clef "treble_8"
770     <c e g c' e'>1^\markup {
771       \fret-diagram #"6-x;5-3;4-2;3-o;2-1;1-o;"
772     }
773     <d a d' f'>1^\markup {
774       \fret-diagram #"6-x;5-x;4-o;3-2;2-3;1-1;"
775     }
776   }
777 >>
778 @end lilypond
779
780 @cindex barre indications
781
782 Barre indications can be added to the diagram from
783 the fret-diagram markup string.
784
785 @lilypond[quote, verbatim]
786 <<
787   \new ChordNames {
788      \chordmode {
789        f1 g
790      }
791   }
792   \new Staff {
793     \clef "treble_8"
794     <f, c f a c' f'>1^\markup {
795       \fret-diagram #"c:6-1-1;6-1;5-3;4-3;3-2;2-1;1-1;"
796     }
797     <g, d g b d' g'>1^\markup {
798       \fret-diagram #"c:6-1-3;6-3;5-5;4-5;3-4;2-3;1-3;"
799     }
800   }
801 >>
802 @end lilypond
803
804 @cindex fret-diagram markup
805 @cindex ukulele
806
807 @funindex fret-diagram
808 @funindex \fret-diagram
809
810 The size of the fret diagram, and the number of frets in the diagram
811 can be changed in the fret-diagram markup string.
812
813 @lilypond[quote, verbatim]
814 <<
815   \new ChordNames {
816      \chordmode {
817        f1 g
818      }
819   }
820   \new Staff {
821     \clef "treble_8"
822     <f, c f a c' f'>1^\markup {
823       \fret-diagram #"s:1.5;c:6-1-1;6-1;5-3;4-3;3-2;2-1;1-1;"
824     }
825     <g, b, d g b g'>1^\markup {
826       \fret-diagram #"h:6;6-3;5-2;4-o;3-o;2-o;1-3;"
827     }
828   }
829 >>
830 @end lilypond
831
832 The number of strings in a fret diagram can be changed to accommodate
833 different instruments such as banjos and ukuleles with the fret-diagram
834 markup string.
835
836 @lilypond[quote, verbatim]
837 <<
838   \new ChordNames {
839     \chordmode {
840       a1
841     }
842   }
843   \new Staff {
844     % An 'A' chord for ukulele
845     a'1^\markup {
846       \fret-diagram #"w:4;4-2-2;3-1-1;2-o;1-o;"
847     }
848   }
849 >>
850 @end lilypond
851
852 Fingering indications can be added, and the location of fingering labels
853 can be controlled by the fret-diagram markup string.
854
855 @lilypond[quote, verbatim]
856 <<
857   \new ChordNames {
858     \chordmode {
859       c1 d:m
860     }
861   }
862   \new Staff {
863     \clef "treble_8"
864     <c e g c' e'>1^\markup {
865       \fret-diagram #"f:1;6-x;5-3-3;4-2-2;3-o;2-1-1;1-o;"
866     }
867     <d a d' f'>1^\markup {
868       \fret-diagram #"f:2;6-x;5-x;4-o;3-2-2;2-3-3;1-1-1;"
869     }
870   }
871 >>
872 @end lilypond
873
874 Dot radius and dot position can be controlled with the fret-diagram
875 markup string.
876
877 @lilypond[quote, verbatim]
878 <<
879   \new ChordNames {
880     \chordmode {
881       c1 d:m
882     }
883   }
884   \new Staff {
885     \clef "treble_8"
886     <c e g c' e'>1^\markup {
887       \fret-diagram #"d:0.35;6-x;5-3;4-2;3-o;2-1;1-o;"
888     }
889     <d a d' f'>1^\markup {
890       \fret-diagram #"p:0.2;6-x;5-x;4-o;3-2;2-3;1-1;"
891     }
892   }
893 >>
894 @end lilypond
895
896 @cindex fret-diagram-terse markup
897
898 @funindex fret-diagram-terse
899 @funindex \fret-diagram-terse
900
901 The fret-diagram-terse markup string omits string numbers; the string
902 number is implied by the presence of semicolons.  There is one semicolon
903 for each string in the diagram.  The first semicolon corresponds to the
904 highest string number and the last semicolon corresponds to the first string.
905 Mute strings, open strings, and fret numbers can be indicated.
906
907 @lilypond[quote, verbatim]
908 <<
909   \new ChordNames {
910     \chordmode {
911       c1 d:m
912     }
913   }
914   \new Staff {
915     \clef "treble_8"
916     <c e g c' e'>1^\markup {
917       \fret-diagram-terse #"x;3;2;o;1;o;"
918     }
919     <d a d' f'>1^\markup {
920       \fret-diagram-terse #"x;x;o;2;3;1;"
921     }
922   }
923 >>
924 @end lilypond
925
926 Barre indicators can be included in the fret-diagram-terse markup string.
927
928 @lilypond[quote, verbatim]
929 <<
930   \new ChordNames {
931     \chordmode {
932       f1 g
933     }
934   }
935   \new Staff {
936     \clef "treble_8"
937     <f, c f a c' f'>1^\markup {
938       \fret-diagram-terse #"1-(;3;3;2;1;1-);"
939     }
940     <g, d g b d' g'>1^\markup {
941       \fret-diagram-terse #"3-(;5;5;4;3;3-);"
942     }
943   }
944 >>
945 @end lilypond
946
947 Fingering indications can be included in the fret-diagram-terse markup string.
948
949 @c Need to use override to enable fingerings to show this -- can we do so?
950 @lilypond[quote, verbatim]
951 <<
952   \new ChordNames {
953     \chordmode {
954       c1 d:m
955     }
956   }
957   \new Staff {
958     \override Voice.TextScript.fret-diagram-details.finger-code = #'below-string
959     \clef "treble_8"
960     <c e g c' e'>1^\markup {
961       \fret-diagram-terse #"x;3-3;2-2;o;1-1;o;"
962     }
963     <d a d' f'>1^\markup {
964       \fret-diagram-terse #"x;x;o;2-2;3-3;1-1;"
965     }
966   }
967 >>
968 @end lilypond
969
970 Other fret diagram properties must be adjusted using
971 @code{\override} when using the fret-diagram-terse markup.
972
973 @cindex fret-diagram-verbose markup
974 @cindex capo
975
976 @funindex fret-diagram-verbose
977 @funindex \fret-diagram-verbose
978
979 The fret-diagram-verbose markup string is in the format of a Scheme list.  Each
980 element of the list indicates an item to be placed on the fret diagram.
981
982 @lilypond[quote, verbatim]
983 <<
984     \new ChordNames {
985       \chordmode {
986         c1 d:m
987       }
988     }
989   \new Staff {
990     \clef "treble_8"
991     <c e g c' e'>1^\markup {
992       \fret-diagram-verbose #'(
993         (mute 6)
994         (place-fret 5 3)
995         (place-fret 4 2)
996         (open 3)
997         (place-fret 2 1)
998         (open 1)
999       )
1000     }
1001     <d a d' f'>1^\markup {
1002       \fret-diagram-verbose #'(
1003         (mute 6)
1004         (mute 5)
1005         (open 4)
1006         (place-fret 3 2)
1007         (place-fret 2 3)
1008         (place-fret 1 1)
1009       )
1010     }
1011   }
1012 >>
1013 @end lilypond
1014
1015 Fingering indications and barres can be included in a
1016 fret-diagram-verbose markup string.  Unique to the
1017 fret-diagram-verbose interface is a capo indication that
1018 can be placed on the fret diagram.  The capo indication is
1019 a thick bar that covers all strings.  The fret with the
1020 capo will be the lowest fret in the fret diagram.
1021
1022 Fingering indication dots can be colored as well as parenthesized;
1023 the parenthesis's color can also be altered independently.
1024
1025 Markups can be placed into the dots as well.
1026
1027 @c \override is necessary to make fingering visible
1028 @lilypond[quote, verbatim]
1029 <<
1030     \new ChordNames {
1031       \chordmode {
1032         f1 g c c b
1033       }
1034     }
1035   \new Staff {
1036     \clef "treble_8"
1037     \override Voice.TextScript.fret-diagram-details.finger-code = #'below-string
1038     <f, c f a c' f'>1^\markup {
1039       \fret-diagram-verbose #'(
1040         (place-fret 6 1)
1041         (place-fret 5 3)
1042         (place-fret 4 3)
1043         (place-fret 3 2)
1044         (place-fret 2 1)
1045         (place-fret 1 1)
1046         (barre 6 1 1)
1047       )
1048     }
1049     <g, b, d g b g'>1^\markup {
1050       \fret-diagram-verbose #'(
1051         (place-fret 6 3 2)
1052         (place-fret 5 2 1)
1053         (open 4)
1054         (open 3)
1055         (open 2)
1056         (place-fret 1 3 3)
1057       )
1058     }
1059     <c g c' e' g'>1^\markup {
1060       \fret-diagram-verbose #'(
1061         (capo 3)
1062         (mute 6)
1063         (place-fret 4 5 1)
1064         (place-fret 3 5 2)
1065         (place-fret 2 5 3)
1066       )
1067     }
1068     \override Voice.TextScript.size = 1.4
1069     <c g c' e' g'>1^\markup {
1070       \fret-diagram-verbose #'(
1071         (place-fret 6 3 1 red parenthesized default-paren-color)
1072         (place-fret 5 3 1 inverted)
1073         (place-fret 4 5 2 blue parenthesized)
1074         (place-fret 3 5 3 blue)
1075         (place-fret 2 5 4 blue)
1076         (place-fret 1 3 1 inverted)
1077       )
1078     }
1079     \override Voice.TextScript.size = 1.5
1080     <b, fis b dis' fis'>1^\markup {
1081       \override #'(fret-diagram-details . ((finger-code . in-dot)))
1082       \fret-diagram-verbose #`(
1083         (place-fret 5 2 1)
1084         (place-fret 4 4 "fis" red)
1085         (place-fret 3 4 "b" red)
1086         (place-fret
1087           2 4
1088           ,#{ \markup
1089                 \concat {
1090                   \vcenter "d"
1091                   \fontsize #-5
1092                   \musicglyph #"accidentals.sharp"} #}
1093           red)
1094         (place-fret 1 2 1)
1095       )
1096     }
1097   }
1098 >>
1099 @end lilypond
1100
1101 All other fret diagram properties must be adjusted using
1102 @code{\override} when using the fret-diagram-verbose markup.
1103
1104 @ignore
1105 The following example shows the three fret-diagram markup
1106 interfaces, along with examples of common tweaks.  For example,
1107 the size of the verbose fret diagram is reduced to 0.75, and the
1108 finger indications are specified to appear below the diagram.  The
1109 terse diagram includes tweaks to specify placement of finger code
1110 and color of dots.
1111
1112 @lilypond[verbatim,ragged-right,quote]
1113 \new Voice {
1114   \clef "treble_8"
1115   d4^\markup {
1116     \fret-diagram #"6-x;5-x;4-o;3-2;2-3;1-2;"
1117   }
1118   d4 d d
1119   fis^\markup {
1120     \override #'(size . 0.75) {
1121       \override #'(finger-code . below-string) {
1122         \fret-diagram-verbose #'((place-fret 6 2 1) (barre 6 1 2)
1123                                  (place-fret 5 4 3)
1124                                  (place-fret 4 4 4)
1125                                  (place-fret 3 3 2)
1126                                  (place-fret 2 2 1)
1127                                  (place-fret 1 2 1))
1128       }
1129     }
1130   }
1131   fis4 fis fis
1132   c^\markup {
1133     \override #'(dot-radius . 0.35) {
1134       \override #'(finger-code . in-dot) {
1135         \override #'(dot-color . white) {
1136           \fret-diagram-terse #"x;3-1-(;5-2;5-3;5-4;3-1-);"
1137         }
1138       }
1139     }
1140   }
1141   c4 c c
1142 }
1143 @end lilypond
1144 @end ignore
1145
1146 @cindex customized fret diagram
1147 @cindex fret diagram, customized
1148 @cindex diagram, fret, customized
1149
1150 @funindex fret-diagram-interface
1151
1152 The graphical layout of a fret diagram can be customized according to
1153 user preference through the properties of the
1154 @code{fret-diagram-interface}. Details are found at
1155 @rinternals{fret-diagram-interface}.  For a fret diagram
1156 markup, the interface properties belong to @code{Voice.TextScript}.
1157
1158 @snippets
1159
1160 @lilypondfile[verbatim,quote,texidoc,doctitle]
1161 {changing-fret-orientations.ly}
1162
1163 @lilypondfile[verbatim,quote,texidoc,doctitle]
1164 {customizing-markup-fret-diagrams.ly}
1165
1166 @seealso
1167 Notation Reference:
1168 @ref{Instrument Specific Markup}.
1169
1170 Snippets:
1171 @rlsr{Fretted strings}.
1172
1173 Internals Reference:
1174 @rinternals{fret-diagram-interface}.
1175
1176
1177 @node Predefined fret diagrams
1178 @unnumberedsubsubsec Predefined fret diagrams
1179
1180 @cindex fret diagrams
1181 @cindex fret diagrams, ukulele
1182 @cindex fret diagrams, mandolin
1183 @cindex chord diagrams
1184
1185 @funindex FretBoards
1186 @funindex stringTunings
1187
1188 Fret diagrams can be displayed using the @code{FretBoards} context.  By
1189 default, the @code{FretBoards} context will display fret diagrams that
1190 are stored in a lookup table:
1191
1192 @lilypond[verbatim, ragged-right, quote]
1193 \include "predefined-guitar-fretboards.ly"
1194 \new FretBoards {
1195   \chordmode {
1196     c1 d
1197   }
1198 }
1199 @end lilypond
1200
1201 The default predefined fret diagrams are contained in the file
1202 @file{predefined-guitar-fretboards.ly}.  Fret diagrams are
1203 stored based on the pitches of a chord and the value of
1204 @code{stringTunings} that is currently in use.
1205 @file{predefined-guitar-fretboards.ly} contains predefined
1206 fret diagrams only for @code{guitar-tuning}.  Predefined fret
1207 diagrams can be added for other instruments or other tunings
1208 by following the examples found in
1209 @file{predefined-guitar-fretboards.ly}.
1210
1211 Fret diagrams for the ukulele are contained in the file @*
1212 @file{predefined-ukulele-fretboards.ly}.
1213
1214 @lilypond[verbatim, ragged-right, quote]
1215 \include "predefined-ukulele-fretboards.ly"
1216
1217 myChords = \chordmode { a1 a:m a:aug }
1218
1219 \new ChordNames {
1220   \myChords
1221 }
1222
1223 \new FretBoards {
1224   \set Staff.stringTunings = #ukulele-tuning
1225   \myChords
1226 }
1227 @end lilypond
1228
1229 Fret diagrams for the mandolin are contained in the file @*
1230 @file{predefined-mandolin-fretboards.ly}.
1231
1232 @lilypond[verbatim, ragged-right, quote]
1233 \include "predefined-mandolin-fretboards.ly"
1234
1235 myChords = \chordmode { c1 c:m7.5- c:aug }
1236
1237 \new ChordNames {
1238   \myChords
1239 }
1240
1241 \new FretBoards {
1242   \set Staff.stringTunings = #mandolin-tuning
1243   \myChords
1244 }
1245 @end lilypond
1246
1247 Chord pitches can be entered
1248 either as simultaneous music or using chord mode (see
1249 @ref{Chord mode overview}).
1250
1251 @lilypond[verbatim, ragged-right,quote]
1252 \include "predefined-guitar-fretboards.ly"
1253 \new FretBoards {
1254   \chordmode { c1 }
1255   <c' e' g'>1
1256 }
1257 @end lilypond
1258
1259 @cindex chord names with fret diagrams
1260 @cindex fret diagrams with chord names
1261
1262 @funindex ChordNames
1263 @funindex chordmode
1264 @funindex \chordmode
1265
1266 It is common that both chord names and fret diagrams are displayed together.
1267 This is achieved by putting a @code{ChordNames} context in parallel with
1268 a @code{FretBoards} context and giving both contexts the same music.
1269
1270 @lilypond[verbatim, ragged-right, quote]
1271 \include "predefined-guitar-fretboards.ly"
1272 mychords = \chordmode{
1273   c1 f g
1274 }
1275
1276 <<
1277   \new ChordNames {
1278     \mychords
1279   }
1280   \new FretBoards {
1281     \mychords
1282   }
1283 >>
1284 @end lilypond
1285
1286 @cindex transposing fret diagrams
1287 @cindex fret diagrams, transposing
1288 @cindex diagrams, fret, transposing
1289
1290 Predefined fret diagrams are transposable, as long as a diagram for the
1291 transposed chord is stored in the fret diagram table.
1292
1293 @lilypond[verbatim, ragged-right, quote]
1294 \include "predefined-guitar-fretboards.ly"
1295 mychords = \chordmode{
1296   c1 f g
1297 }
1298
1299 mychordlist = {
1300   \mychords
1301   \transpose c e { \mychords }
1302 }
1303 <<
1304   \new ChordNames {
1305     \mychordlist
1306   }
1307   \new FretBoards {
1308     \mychordlist
1309   }
1310 >>
1311 @end lilypond
1312
1313
1314 The predefined fret diagram table for guitar contains eight chords (major, minor,
1315 augmented, diminished, dominant seventh, major seventh, minor seventh, dominant ninth)
1316 for each of 17 keys.
1317 The predefined fret diagram table for ukulele contains these chords
1318 plus an additional three chords (major sixth, suspended second, and
1319 suspended fourth).
1320 A complete list of the predefined fret diagrams is
1321 shown in @ref{Predefined fretboard diagrams}.  If there is no entry in
1322 the table for a chord, the FretBoards engraver will calculate a
1323 fret-diagram using the automatic fret diagram functionality described in
1324 @ref{Automatic fret diagrams}.
1325
1326 @lilypond[verbatim, ragged-right, quote]
1327 \include "predefined-guitar-fretboards.ly"
1328 mychords = \chordmode{
1329   c1 c:maj9
1330 }
1331
1332 <<
1333   \new ChordNames {
1334     \mychords
1335   }
1336   \new FretBoards {
1337     \mychords
1338   }
1339 >>
1340 @end lilypond
1341
1342 @cindex fret diagrams, adding custom
1343 @cindex custom fret diagrams, adding
1344 @cindex adding custom fret diagrams
1345
1346 Fret diagrams can be added to the fret diagram table.  To add a diagram,
1347 you must specify the hash table for the diagram, the chord for the
1348 diagram, the tuning to be used, and
1349 a definition for the diagram.  Normally, the hash table will be
1350 @var{default-fret-table}.  The diagram definition can be either a
1351 fret-diagram-terse definition string or a fret-diagram-verbose
1352 marking list.
1353
1354 @lilypond[verbatim, ragged-right, quote]
1355 \include "predefined-guitar-fretboards.ly"
1356
1357 \storePredefinedDiagram #default-fret-table
1358                         \chordmode { c:maj9 }
1359                         #guitar-tuning
1360                         #"x;3-2;o;o;o;o;"
1361
1362 mychords = \chordmode {
1363   c1 c:maj9
1364 }
1365
1366 <<
1367   \new ChordNames {
1368     \mychords
1369   }
1370   \new FretBoards {
1371     \mychords
1372   }
1373 >>
1374 @end lilypond
1375
1376 Different fret diagrams for the same chord name can be stored using different
1377 octaves of pitches.  The different octave should be at least two octaves
1378 above or below the default octave, because the octaves above and  below the
1379 default octave are used for transposing fretboards.
1380
1381 @lilypond[verbatim, ragged-right, quote]
1382 \include "predefined-guitar-fretboards.ly"
1383
1384 \storePredefinedDiagram #default-fret-table
1385                         \chordmode { c'' }
1386                         #guitar-tuning
1387                         #(offset-fret 2 (chord-shape 'bes guitar-tuning))
1388
1389 mychords = \chordmode {
1390   c1 c''
1391 }
1392
1393 <<
1394   \new ChordNames {
1395     \mychords
1396   }
1397   \new FretBoards {
1398     \mychords
1399   }
1400 >>
1401 @end lilypond
1402
1403 @cindex fretted instruments, chord shapes
1404 @cindex chord shapes for fretted instruments
1405
1406 @funindex \addChordShape
1407 @funindex addChordShape
1408 @funindex storePredefinedDiagram
1409 @funindex \storePredefinedDiagram
1410
1411 In addition to fret diagrams, LilyPond stores an internal list of chord
1412 shapes.  The chord shapes are fret diagrams that can be shifted along
1413 the neck to different positions to provide different chords.  Chord
1414 shapes can be added to the internal list and then used to define
1415 predefined fret diagrams.  Because they can be moved to various
1416 positions on the neck, chord shapes will normally not contain
1417 any open strings.  Like fret diagrams, chord shapes can be
1418 entered as either fret-diagram-terse strings or fret-diagram-verbose
1419 marking lists.
1420
1421 @lilypond[verbatim, ragged-right, quote]
1422 \include "predefined-guitar-fretboards.ly"
1423
1424 % Add a new chord shape
1425
1426 \addChordShape #'powerf #guitar-tuning #"1-1;3-3;3-4;x;x;x;"
1427
1428 % add some new chords based on the power chord shape
1429
1430 \storePredefinedDiagram #default-fret-table
1431                         \chordmode { f'' }
1432                         #guitar-tuning
1433                         #(chord-shape 'powerf guitar-tuning)
1434 \storePredefinedDiagram #default-fret-table
1435                         \chordmode { g'' }
1436                         #guitar-tuning
1437                         #(offset-fret 2 (chord-shape 'powerf guitar-tuning))
1438
1439 mychords = \chordmode{
1440   f1 f'' g g''
1441 }
1442
1443 <<
1444   \new ChordNames {
1445     \mychords
1446   }
1447   \new FretBoards {
1448     \mychords
1449   }
1450 >>
1451 @end lilypond
1452
1453 The graphical layout of a fret diagram can be customized according to
1454 user preference through the properties of the
1455 @code{fret-diagram-interface}. Details are found at
1456 @rinternals{fret-diagram-interface}.  For a predefined fret diagram,
1457 the interface properties belong to @code{FretBoards.FretBoard}.
1458
1459 @snippets
1460
1461 @lilypondfile[verbatim,quote,texidoc,doctitle]
1462 {customizing-fretboard-fret-diagrams.ly}
1463
1464 @lilypondfile[verbatim,quote,texidoc,doctitle]
1465 {defining-predefined-fretboards-for-other-instruments.ly}
1466
1467 @lilypondfile[verbatim,quote,texidoc,doctitle,ragged-right]
1468 {chordchanges-for-fretboards.ly}
1469
1470 @lilypondfile[verbatim,quote,texidoc,doctitle]
1471 {fretboards-alternate-tables.ly}
1472
1473 @seealso
1474 Notation Reference:
1475 @ref{Custom tablatures},
1476 @ref{Automatic fret diagrams},
1477 @ref{Chord mode overview},
1478 @ref{Predefined fretboard diagrams}.
1479
1480 Installed Files:
1481 @file{ly/predefined-guitar-fretboards.ly}, @*
1482 @file{ly/predefined-guitar-ninth-fretboards.ly}, @*
1483 @file{ly/predefined-ukulele-fretboards.ly}, @*
1484 @file{ly/predefined-mandolin-fretboards.ly}.
1485
1486 Snippets:
1487 @rlsr{Fretted strings}.
1488
1489 Internals Reference:
1490 @rinternals {fret-diagram-interface}.
1491
1492
1493 @node Automatic fret diagrams
1494 @unnumberedsubsubsec Automatic fret diagrams
1495
1496 @cindex fret diagrams, automatic
1497 @cindex chord diagrams, automatic
1498 @cindex automatic fret diagrams
1499 @cindex automatic chord diagrams
1500
1501 Fret diagrams can be automatically created from entered notes using the
1502 @code{FretBoards} context.  If no predefined diagram is available for
1503 the entered notes in the active @code{stringTunings}, this context
1504 calculates strings and frets that can be used to play the notes.
1505
1506 @lilypond[quote,ragged-right,verbatim]
1507 <<
1508   \new ChordNames {
1509     \chordmode {
1510       f1 g
1511     }
1512   }
1513   \new FretBoards {
1514     <f, c f a c' f'>1
1515     <g,\6 b, d g b g'>1
1516   }
1517   \new Staff {
1518     \clef "treble_8"
1519     <f, c f a c' f'>1
1520     <g, b, d g b' g'>1
1521   }
1522 >>
1523 @end lilypond
1524
1525 @funindex predefinedFretboardsOff
1526 @funindex \predefinedFretboardsOff
1527 @funindex predefinedFretboardsOn
1528 @funindex \predefinedFretboardsOn
1529
1530 As no predefined diagrams are loaded by default, automatic calculation
1531 of fret diagrams is the default behavior.  Once default diagrams are
1532 loaded, automatic calculation can be enabled and disabled with predefined
1533 commands:
1534
1535 @lilypond[quote,ragged-right,verbatim]
1536
1537 \storePredefinedDiagram #default-fret-table
1538                         <c e g c' e'>
1539                         #guitar-tuning
1540                         #"x;3-1-(;5-2;5-3;5-4;3-1-1-);"
1541 <<
1542   \new ChordNames {
1543     \chordmode {
1544       c1 c c
1545     }
1546   }
1547   \new FretBoards {
1548     <c e g c' e'>1
1549     \predefinedFretboardsOff
1550     <c e g c' e'>1
1551     \predefinedFretboardsOn
1552     <c e g c' e'>1
1553   }
1554   \new Staff {
1555     \clef "treble_8"
1556     <c e g c' e'>1
1557     <c e g c' e'>1
1558     <c e g c' e'>1
1559   }
1560 >>
1561 @end lilypond
1562
1563
1564
1565 Sometimes the fretboard calculator will be unable to find
1566 an acceptable diagram.  This can often be remedied by
1567 manually assigning a note to a string.  In many cases, only one
1568 note need be manually placed on a string; the rest of
1569 the notes will then be placed appropriately by the
1570 @code{FretBoards} context.
1571
1572 @cindex fret diagrams, adding fingerings
1573 @cindex fingerings, adding to fret diagrams
1574
1575 Fingerings can be added to FretBoard fret diagrams.
1576
1577 @lilypond[quote, verbatim]
1578 <<
1579   \new ChordNames {
1580     \chordmode {
1581       c1 d:m
1582     }
1583   }
1584   \new FretBoards {
1585     <c-3 e-2 g c'-1 e'>1
1586     <d a-2 d'-3 f'-1>1
1587   }
1588   \new Staff {
1589     \clef "treble_8"
1590     <c e g c' e'>1
1591     <d a d' f'>1
1592   }
1593 >>
1594 @end lilypond
1595
1596 @funindex minimumFret
1597
1598 The minimum fret to be used in calculating strings and frets for
1599 the FretBoard context can be set with the @code{minimumFret}
1600 property.
1601
1602 @lilypond[quote, verbatim]
1603 <<
1604   \new ChordNames {
1605     \chordmode {
1606       d1:m d:m
1607     }
1608   }
1609   \new FretBoards {
1610     <d a d' f'>1
1611     \set FretBoards.minimumFret = #5
1612     <d a d' f'>1
1613   }
1614   \new Staff {
1615     \clef "treble_8"
1616     <d a d' f'>1
1617     <d a d' f'>1
1618   }
1619 >>
1620 @end lilypond
1621
1622 The strings and frets for the @code{FretBoards} context depend
1623 on the @code{stringTunings} property, which has the same meaning
1624 as in the TabStaff context.  See @ref{Custom tablatures} for
1625 information on the @code{stringTunings} property.
1626
1627 The graphical layout of a fret diagram can be customized according to
1628 user preference through the properties of the
1629 @code{fret-diagram-interface}. Details are found at
1630 @rinternals{fret-diagram-interface}.  For a @code{FretBoards} fret
1631 diagram, the interface properties belong to
1632 @code{FretBoards.FretBoard}.
1633
1634
1635 @predefined
1636 @code{\predefinedFretboardsOff},
1637 @code{\predefinedFretboardsOn}.
1638 @endpredefined
1639
1640 @seealso
1641 Notation Reference:
1642 @ref{Custom tablatures}.
1643
1644 Snippets:
1645 @rlsr{Fretted strings}.
1646
1647 Internals Reference:
1648 @rinternals {fret-diagram-interface}.
1649
1650 @knownissues
1651 Automatic fretboard calculations do not work properly for instruments
1652 with non-monotonic tunings.
1653
1654
1655 @node Right-hand fingerings
1656 @unnumberedsubsubsec Right-hand fingerings
1657
1658 @cindex fretted instruments, right hand fingerings
1659 @cindex fingerings, right hand for fretted instruments
1660 @cindex right hand fingerings for fretted instruments
1661
1662 @funindex rightHandFinger
1663 @funindex \rightHandFinger
1664
1665 Right-hand fingerings @var{p-i-m-a} must be entered using
1666 @code{\rightHandFinger} followed by a number.
1667
1668 @warning{If the number is entered in Scheme notation, remember to append
1669 a space before following it with a closing @code{>} or similar.}
1670
1671 @lilypond[quote,verbatim,fragment]
1672 \clef "treble_8"
1673 c4\rightHandFinger #1
1674 e\rightHandFinger #2
1675 g\rightHandFinger #3
1676 c'\rightHandFinger #4
1677 <c\rightHandFinger #1 e\rightHandFinger #2
1678  g\rightHandFinger #3 c'\rightHandFinger #4 >1
1679 @end lilypond
1680
1681 For convenience, you can abbreviate @code{\rightHandFinger} to something
1682 short, for example @code{RH},
1683
1684 @example
1685 RH=#rightHandFinger
1686 @end example
1687
1688
1689 @snippets
1690
1691 @lilypondfile[verbatim,quote,texidoc,doctitle]
1692 {placement-of-right-hand-fingerings.ly}
1693
1694 @lilypondfile[verbatim,quote,texidoc,doctitle]
1695 {fingerings,-string-indications,-and-right-hand-fingerings.ly}
1696
1697 @seealso
1698 Snippets:
1699 @rlsr{Fretted strings}.
1700
1701 Internals Reference:
1702 @rinternals{StrokeFinger}.
1703
1704
1705 @node Guitar
1706 @subsection Guitar
1707
1708 Most of the notational issues associated with guitar music are
1709 covered sufficiently in the general fretted strings section, but there
1710 are a few more worth covering here.  Occasionally users want to
1711 create songbook-type documents having only lyrics with chord
1712 indications above them.  Since LilyPond is a music typesetter,
1713 it is not recommended for documents that have no music notation
1714 in them.  A better alternative is a word processor, text editor,
1715 or, for experienced users, a typesetter like GuitarTeX.
1716
1717 @menu
1718 * Indicating position and barring::
1719 * Indicating harmonics and dampened notes::
1720 * Indicating power chords::
1721 @end menu
1722
1723 @node Indicating position and barring
1724 @unnumberedsubsubsec Indicating position and barring
1725
1726 @cindex indicating position and barring for fretted instruments
1727 @cindex fretted instruments, indicating position and barring
1728
1729 This example demonstrates how to include guitar position and
1730 barring indications.
1731
1732 @lilypond[quote,ragged-right,verbatim,fragment]
1733 \relative {
1734   \clef "treble_8"
1735   b,16 d g b e
1736   \textSpannerDown
1737   \override TextSpanner.bound-details.left.text = #"XII "
1738   g16\startTextSpan
1739   b16 e g e b g\stopTextSpan
1740   e16 b g d
1741 }
1742 @end lilypond
1743
1744 @seealso
1745 Notation Reference:
1746 @ref{Text spanners}.
1747
1748 Snippets:
1749 @rlsr{Fretted strings},
1750 @rlsr{Expressive marks}.
1751
1752
1753 @node Indicating harmonics and dampened notes
1754 @unnumberedsubsubsec Indicating harmonics and dampened notes
1755
1756 @cindex fretted instruments, dampened notes
1757 @cindex fretted instruments, harmonics
1758 @cindex dampened notes on fretted instruments
1759 @cindex harmonics on fretted instruments
1760
1761 Special note heads can be used to indicate dampened notes or
1762 harmonics.  Harmonics are normally further explained with a
1763 text markup.
1764
1765 @lilypond[quote,ragged-right,verbatim]
1766 \relative {
1767   \clef "treble_8"
1768   \override Staff.NoteHead.style = #'harmonic-mixed
1769   d'^\markup { \italic { \fontsize #-2 { "harm. 12" }}} <g b>1
1770 }
1771 @end lilypond
1772
1773 Dampened notes (also called @notation{dead notes}) are supported
1774 within normal and tablature staves:
1775
1776 @lilypond[quote,ragged-right,verbatim]
1777 music = \relative {
1778   < a\3 \deadNote c\2 a'\1 >4
1779   < b\3 \deadNote d\2 b'\1 >
1780   < c\3 \deadNote e\2 c'\1 >
1781   \deadNotesOn
1782   \tuplet 3/2 { g8 b e }
1783   \deadNotesOff
1784   < a,\3 c\2 e\1 >1
1785 }
1786 \new StaffGroup <<
1787   \new Staff {
1788     \clef "treble_8"
1789     \music
1790   }
1791   \new TabStaff {
1792     \music
1793   }
1794 >>
1795 @end lilypond
1796
1797 Another playing technique (especially used on electric guitars) is
1798 called @notation{palm mute}.  The string is hereby partly muted by the
1799 palm of the striking hand (hence the name).  Lilypond supports
1800 the notation of palm mute-style notes by changing the note head to a
1801 triangle shape.
1802
1803 @lilypond[quote,ragged-right,verbatim]
1804 \new Voice { % Warning: explicit Voice instantiation is
1805              %    required to have palmMuteOff work properly
1806              %    when palmMuteOn comes at the beginning of
1807              %    the piece.
1808   \relative c, {
1809     \clef "G_8"
1810     \palmMuteOn
1811     e8^\markup { \musicglyph #"noteheads.u2do"  = palm mute }
1812     < e b' e > e
1813     \palmMuteOff
1814     e e  \palmMute e e e |
1815     e8 \palmMute { e e e } e e e e |
1816     < \palmMute e b' e >8 \palmMute { e e e } < \palmMute e b' e >2
1817   }
1818 }
1819 @end lilypond
1820
1821 @seealso
1822 Snippets:
1823 @rlsr{Fretted strings}.
1824
1825 Notation Reference:
1826 @ref{Special note heads},
1827 @ref{Note head styles}.
1828
1829
1830 @node Indicating power chords
1831 @unnumberedsubsubsec Indicating power chords
1832
1833 @funindex powerChords
1834 @funindex \powerChords
1835
1836 @cindex power chords
1837 @cindex chords, power
1838
1839 Power chords and their symbols can be engraved in chord mode or as chord
1840 constructs:
1841
1842 @lilypond[quote,ragged-right,verbatim]
1843 ChordsAndSymbols = {
1844   \chordmode {
1845     \powerChords
1846     e,,1:1.5
1847     a,,1:1.5.8
1848     \set minimumFret = #8
1849     c,1:1.5
1850     f,1:1.5.8
1851   }
1852   \set minimumFret = #5
1853   <a, e>1
1854   <g d' g'>1
1855 }
1856 \score {
1857   <<
1858     \new ChordNames {
1859     \ChordsAndSymbols
1860     }
1861     \new Staff {
1862       \clef "treble_8"
1863       \ChordsAndSymbols
1864     }
1865     \new TabStaff {
1866       \ChordsAndSymbols
1867     }
1868   >>
1869 }
1870 @end lilypond
1871
1872 Power chord symbols are automatically switched off as soon as one of the
1873 other common chord modifier is used:
1874
1875 @lilypond[quote,ragged-right,verbatim]
1876 mixedChords = \chordmode {
1877   c,1
1878   \powerChords
1879   b,,1:1.5
1880   fis,,1:1.5.8
1881   g,,1:m
1882 }
1883 \score {
1884   <<
1885     \new ChordNames {
1886       \mixedChords
1887     }
1888     \new Staff {
1889       \clef "treble_8"
1890       \mixedChords
1891     }
1892     \new TabStaff {
1893       \mixedChords
1894     }
1895   >>
1896 }
1897 @end lilypond
1898
1899 @seealso
1900 Music Glossary:
1901 @rglos{power chord}.
1902
1903 Notation Reference:
1904 @ref{Extended and altered chords},
1905 @ref{Printing chord names}.
1906
1907 Snippets:
1908 @rlsr{Fretted strings}.
1909
1910
1911 @node Banjo
1912 @subsection Banjo
1913
1914 @menu
1915 * Banjo tablatures::
1916 @end menu
1917
1918 @node Banjo tablatures
1919 @unnumberedsubsubsec Banjo tablatures
1920
1921 @cindex banjo tablatures
1922 @cindex tablature, banjo
1923
1924 LilyPond has basic support for the five-string banjo.  When making tablatures
1925 for five-string banjo, use the banjo tablature format function to get
1926 correct fret numbers for the fifth string:
1927
1928 @c due to crazy intervals of banjo music, absolute pitch is recommended
1929
1930 @lilypond[quote,ragged-right,verbatim]
1931 music = {
1932   g8 d' g'\5 a b g e d' |
1933   g4 d''8\5 b' a'\2 g'\5 e'\2 d' |
1934   g4
1935 }
1936
1937 <<
1938   \new Staff \with { \omit StringNumber }
1939   { \clef "treble_8"  \music }
1940   \new TabStaff \with {
1941     tablatureFormat = #fret-number-tablature-format-banjo
1942     stringTunings = #banjo-open-g-tuning
1943   }
1944   { \music }
1945 >>
1946 @end lilypond
1947
1948 @cindex banjo tunings
1949 @cindex tunings, banjo
1950
1951 @funindex banjo-c-tuning
1952 @funindex banjo-modal-tuning
1953 @funindex banjo-open-d-tuning
1954 @funindex banjo-open-dm-tuning
1955 @funindex four-string-banjo
1956
1957 A number of common tunings for the five-string banjo are predefined:
1958 @code{banjo-c-tuning} (gCGBD), @code{banjo-modal-tuning} (gDGCD),
1959 @code{banjo-open-d-tuning} (aDF#AD) and @code{banjo-open-dm-tuning}
1960 (aDFAD).
1961
1962 These may be converted to four-string tunings using the
1963 @code{four-string-banjo} function:
1964
1965 @example
1966 \set TabStaff.stringTunings = #(four-string-banjo banjo-c-tuning)
1967 @end example
1968
1969 @seealso
1970 Installed Files:
1971 @file{ly/string-tunings-init.ly}.
1972
1973 Snippets:
1974 @rlsr{Fretted strings}.