]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/instrument-notation.itely
* Documentation/user/instrument-notation.itely: Bugfix: yet some
[lilypond.git] / Documentation / user / instrument-notation.itely
1 @c -*- coding: latin-1; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
3
4 @c A menu is needed before every deeper *section nesting of @node's; run 
5 @c     M-x texinfo-all-menus-update
6 @c to automatically fill in these menus before saving changes
7
8 @node Instrument-specific notation
9 @chapter Instrument-specific notation
10
11 This chapter explains how to use notation for specific instruments.
12
13 @menu
14 * Piano music::                 
15 * Chord names::                 
16 * Vocal music::                 
17 * Rhythmic music::              
18 * Tablatures::                  
19 * Ancient notation::            
20 * Other instrument specific notation::  
21 @end menu
22
23
24
25 @node Piano music
26 @section Piano music
27
28 Piano staves are two normal staves coupled with a brace.  The staves
29 are largely independent, but sometimes voices can cross between the
30 two staves.  The same notation is also used for harps and other key
31 @c Is this `harp' or `harpsichord'?
32 @c    both.  -gp
33 instruments.  The @internalsref{PianoStaff} is especially built to
34 handle this cross-staffing behavior.  In this section we discuss the
35 @internalsref{PianoStaff} and some other pianistic peculiarities.
36
37
38 @menu
39 * Automatic staff changes::     
40 * Manual staff switches::       
41 * Pedals::                      
42 * Staff switch lines::          
43 * Cross staff stems::           
44 @end menu
45
46 @refbugs
47
48 Dynamics are not centered, but workarounds do exist.  See the
49 ``piano centered dynamics'' template in @ref{Piano templates}.
50
51 @cindex cross staff stem
52 @cindex stem, cross staff
53 @cindex distance between staves in piano music
54
55 The distance between the two staves is the same for all systems in the
56 score.  It is possible to override this per system, but it does require
57 an arcane command incantation.  See
58 @inputfileref{input/@/test,piano@/-staff@/-distance@/.ly}.
59
60
61 @node Automatic staff changes
62 @subsection Automatic staff changes
63 @cindex Automatic staff changes
64
65 Voices can be made to switch automatically between the top and the bottom
66 staff.  The syntax for this is
67
68 @quotation
69 @example
70 \autochange @dots{}@var{music}@dots{}
71 @end example
72 @end quotation
73
74 @noindent
75 This will create two staves inside the current PianoStaff, called
76 @code{up} and @code{down}.  The lower staff will be in bass clef by
77 default.
78
79 A @code{\relative} section that is outside of @code{\autochange} has
80 no effect on the pitches of @var{music}, so, if necessary, put
81 @code{\relative} inside @code{\autochange} like
82
83 @quotation
84 @example
85 \autochange \relative @dots{} @dots{}
86 @end example
87 @end quotation
88
89
90 The autochanger switches on basis of the pitch (middle C is the turning
91 point), and it looks ahead skipping over rests to switch in
92 advance.  Here is a practical example
93
94 @lilypond[quote,verbatim,raggedright]
95 \context PianoStaff
96   \autochange \relative c'
97   {
98     g4 a b c d r4 a g
99   }
100 @end lilypond
101
102
103 @seealso
104
105 In this manual: @ref{Manual staff switches}.
106
107 Program reference: @internalsref{AutoChangeMusic}.
108
109
110
111 @refbugs
112
113 The staff switches may not end up in optimal places.  For high
114 quality output, staff switches should be specified manually.
115
116
117 @code{\autochange} cannot be inside @code{\times}.
118
119 Internally, the @code{\partcombine} interprets both arguments as
120 @code{Voice}s named @code{one} and @code{two}, and then decides when
121 the parts can be combined.  Consequently, if the arguments switch to
122 differently named @internalsref{Voice} contexts, the events in those
123 will be ignored.
124
125
126 @node Manual staff switches
127 @subsection Manual staff switches
128
129 @cindex manual staff switches
130 @cindex staff switch, manual
131
132 Voices can be switched between staves manually, using the command
133 @example
134 \change Staff = @var{staffname} @var{music}
135 @end example
136
137 @noindent
138 The string @var{staffname} is the name of the staff.  It switches the
139 current voice from its current staff to the Staff called
140 @var{staffname}.  Typically @var{staffname} is @code{"up"} or
141 @code{"down"}.  The @context{Staff} referred to must already exist, so
142 usually the setup for a score will start with a setup of the staves,
143
144 @example
145 <<
146   \context Staff = up @{
147     \skip 1 * 10  % @emph{keep staff alive}
148     @}
149   \context Staff = down @{
150     \skip 1 * 10  % @emph{idem}
151     @}
152 >>
153 @end example
154
155
156 and the @context{Voice} is inserted afterwards
157
158 @example
159 \context Staff = down
160   \new Voice @{ @dots{} \change Staff = up @dots{} @}
161 @end example
162
163
164 @node Pedals
165 @subsection Pedals
166 @cindex Pedals
167
168 Pianos have pedals that alter the way sound is produced.  Generally, a
169 piano has three pedals, sustain, una corda, and sostenuto.
170
171
172 Piano pedal instruction can be expressed by attaching
173 @code{\sustainDown}, @code{\sustainUp}, @code{\unaCorda},
174 @code{\treCorde}, @code{\sostenutoDown} and @code{\sostenutoUp} to a
175 note or chord
176
177 @lilypond[quote,raggedright,fragment,verbatim]
178 c'4\sustainDown c'4\sustainUp
179 @end lilypond
180
181 What is printed can be modified by setting @code{pedal@var{X}Strings},
182 where @var{X} is one of the pedal types: @code{Sustain},
183 @code{Sostenuto} or @code{UnaCorda}.  Refer to
184 @internalsref{SustainPedal} in the program reference for more
185 information.
186
187 Pedals can also be indicated by a sequence of brackets, by setting the
188 @code{pedalSustainStyle} property to bracket objects
189
190 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
191 \set Staff.pedalSustainStyle = #'bracket
192 c\sustainDown d e
193 b\sustainUp\sustainDown
194 b g \sustainUp a \sustainDown \bar "|."
195 @end lilypond
196
197 A third style of pedal notation is a mixture of text and brackets,
198 obtained by setting the @code{pedalSustainStyle} property to
199 @code{mixed}
200
201 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
202 \set Staff.pedalSustainStyle = #'mixed
203 c\sustainDown d e
204 b\sustainUp\sustainDown
205 b g \sustainUp a \sustainDown \bar "|."
206 @end lilypond
207
208 The default `*Ped.' style for sustain and damper pedals corresponds to
209 style @code{#'text}.  The sostenuto pedal uses @code{mixed} style by
210 default.
211
212 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
213 c\sostenutoDown d e c, f g a\sostenutoUp
214 @end lilypond
215
216 For fine-tuning the appearance of a pedal bracket, the properties
217 @code{edge-width}, @code{edge-height}, and @code{shorten-pair} of
218 @code{PianoPedalBracket} objects (see
219 @internalsref{PianoPedalBracket} in the Program reference) can be
220 modified.  For example, the bracket may be extended to the right edge
221 of the note head
222
223 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
224 \override Staff.PianoPedalBracket #'shorten-pair = #'(0 . -1.0)
225 c\sostenutoDown d e c, f g a\sostenutoUp
226 @end lilypond
227
228 @node Staff switch lines
229 @subsection Staff switch lines
230
231
232 @cindex follow voice
233 @cindex staff switching
234 @cindex cross staff
235
236 @cindex @code{followVoice}
237
238 Whenever a voice switches to another staff, a line connecting the notes
239 can be printed automatically.  This is switched on by setting
240 @code{followVoice} to true
241
242 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
243 \context PianoStaff <<
244   \set followVoice = ##t
245   \context Staff \context Voice {
246     c1
247     \change Staff=two
248     b2 a
249   }
250  \context Staff=two { \clef bass \skip 1*2 }
251 >>
252 @end lilypond
253
254 @seealso
255
256 Program reference: @internalsref{VoiceFollower}.
257
258 @refcommands
259
260 @cindex @code{\showStaffSwitch}
261 @code{\showStaffSwitch},
262 @cindex @code{\hideStaffSwitch}
263 @code{\hideStaffSwitch}.
264
265
266 @node Cross staff stems
267 @subsection Cross staff stems
268
269 Chords that cross staves may be produced by increasing the length
270 of the stem in the lower staff, so it reaches the stem in the upper
271 staff, or vice versa.
272
273 @lilypond[raggedright,verbatim,quote]
274 stemExtend = \once \override Stem #'length = #22
275 noFlag = \once \override Stem #'flag-style = #'no-flag
276 \context PianoStaff <<
277   \new Staff {
278     \stemDown \stemExtend
279     f'4
280     \stemExtend \noFlag
281     f'8
282   }
283   \new Staff {
284     \clef bass
285     a4 a8
286   }
287 >>
288 @end lilypond
289
290
291 @node Chord names
292 @section Chord names
293
294 @menu
295 * Introducing chord names::     
296 * Chords mode::                 
297 * Printing chord names::        
298 @end menu
299
300
301 @c  awkward name; awkward section name.
302 @c  still, the Basic "chords" seems like a good name...  :(
303 @node Introducing chord names
304 @subsection Introducing chord names
305 @cindex chord names
306
307 LilyPond has support for printing chord names.  Chords may be entered
308 in musical chord notation, i.e., @code{< .. >}, but they can also be
309 entered by name.  Internally, the chords are represented as a set of
310 pitches, so they can be transposed
311
312
313 @lilypond[quote,raggedright,verbatim,raggedright]
314 twoWays = \transpose c c' {
315   \chordmode {
316     c1 f:sus4 bes/f
317   }
318   <c e g>
319   <f bes c'>
320   <f bes d'>
321 }
322
323 << \context ChordNames \twoWays
324    \context Voice \twoWays >>
325 @end lilypond
326
327 This example also shows that the chord printing routines do not try to
328 be intelligent.  The last chord (@code{f bes d}) is not interpreted as
329 an inversion.
330
331
332 @node Chords mode
333 @subsection Chords mode
334 @cindex Chords mode
335
336 In chord mode sets of pitches (chords) are entered with normal note
337 names.  A chord is entered by the root, which is entered like a
338 normal pitch
339
340 @lilypond[quote,raggedright,fragment,verbatim]
341 \chordmode { es4. d8 c2 }
342 @end lilypond
343
344 @noindent
345 The mode is introduced by the keyword @code{\chordmode}.
346
347 @cindex chord entry
348 @cindex chord mode
349
350 Other chords may be entered by suffixing a colon and introducing a
351 modifier (which may include a number if desired)
352 @lilypond[quote,fragment,verbatim]
353 \chordmode { e1:m e1:7 e1:m7 }
354 @end lilypond
355 The first number following the root is taken to be the `type' of the
356 chord, thirds are added to the root until it reaches the specified
357 number
358 @lilypond[quote,fragment,verbatim]
359 \chordmode { c:3 c:5 c:6 c:7 c:8 c:9 c:10 c:11 }
360 @end lilypond
361
362 @cindex root of chord
363 @cindex additions, in chords
364 @cindex removals, in chords
365
366 More complex chords may also be constructed adding separate steps
367 to a chord.  Additions are added after the number following
368 the colon and are separated by dots
369 @lilypond[quote,verbatim,fragment]
370 \chordmode { c:5.6 c:3.7.8 c:3.6.13 }
371 @end lilypond
372 Chord steps can be altered by suffixing a @code{-} or @code{+} sign
373 to the number
374 @lilypond[quote,verbatim,fragment]
375 \chordmode { c:7+ c:5+.3- c:3-.5-.7- }
376 @end lilypond
377 Removals are specified similarly and are introduced by a caret.  They
378 must come after the additions
379 @lilypond[quote,verbatim,fragment]
380 \chordmode { c^3 c:7^5 c:9^3.5 }
381 @end lilypond
382
383 Modifiers can be used to change pitches.  The following modifiers are
384 supported
385
386 @table @code
387 @item m
388 The minor chord.  This modifier lowers the 3rd and (if present) the 7th step.
389
390 @item dim
391 The diminished chord.  This modifier lowers the 3rd, 5th and (if present)
392 the 7th step.
393
394 @item aug
395 The augmented chord.  This modifier raises the 5th step.
396
397 @item maj
398 The major 7th chord.  This modifier raises the 7th step if present.
399
400 @item sus
401 The suspended 4th or 2nd.  This modifier removes the 3rd
402 step.  Append either @code{2} or @code{4} to add the 2nd or 4th step to
403 the chord.
404 @end table
405
406 Modifiers can be mixed with additions
407 @lilypond[quote,verbatim,fragment]
408   \chordmode { c:sus4 c:7sus4 c:dim7 c:m6 }
409 @end lilypond
410
411 @cindex modifiers, in chords.
412 @cindex @code{aug}
413 @cindex @code{dim}
414 @cindex @code{maj}
415 @cindex @code{sus}
416 @cindex @code{m}
417
418 Since an unaltered 11 does not sound good when combined with an
419 unaltered 3, the 11 is removed in this case (unless it is added
420 explicitly)
421 @lilypond[quote,raggedright,fragment,verbatim]
422 \chordmode { c:13 c:13.11 c:m13 }
423 @end lilypond
424
425 @cindex @code{/}
426
427 An inversion (putting one pitch of the chord on the bottom), as well
428 as bass notes, can be specified by appending
429 @code{/}@var{pitch} to the chord
430 @lilypond[quote,raggedright,fragment,verbatim]
431 \chordmode { c1 c/g c/f }
432 @end lilypond
433 @cindex @code{/+}
434
435 A bass note can be added instead transposed out of the chord,
436 by using @code{/+}@var{pitch}.
437
438 @lilypond[quote,raggedright,fragment,verbatim]
439 \chordmode { c1 c/+g c/+f }
440 @end lilypond
441
442 Chords is a mode similar to @code{\lyricmode}, etc.  Most
443 of the commands continue to work, for example, @code{r} and
444 @code{\skip} can be used to insert rests and spaces, and property
445 commands may be used to change various settings.
446
447
448
449 @refbugs
450
451 Each step can only be present in a chord once.  The following
452 simply produces the augmented chord, since @code{5+} is interpreted
453 last
454 @cindex clusters
455 @lilypond[quote,raggedright,verbatim,fragment]
456 \chordmode { c:5.5-.5+ }
457 @end lilypond
458
459
460 @node Printing chord names
461 @subsection Printing chord names
462
463 @cindex printing chord names
464 @cindex chord names
465 @cindex chords
466
467 For displaying printed chord names, use the @internalsref{ChordNames} context.
468 The chords may be entered either using the notation
469 described above, or directly using @code{<} and @code{>}
470
471 @lilypond[quote,verbatim,raggedright]
472 harmonies = {
473   \chordmode {a1 b c} <d' f' a'> <e' g' b'>
474 }
475 <<
476   \context ChordNames \harmonies
477   \context Staff \harmonies
478 >>
479 @end lilypond
480
481 You can make the chord changes stand out by setting
482 @internalsref{ChordNames}.@code{chordChanges} to true.  This will only
483 display chord names when there is a change in the chords scheme and at
484 the start of a new line
485
486 @lilypond[quote,verbatim,raggedright]
487 harmonies = \chordmode {
488   c1:m c:m \break c:m c:m d
489 }
490 <<
491   \context ChordNames {
492     \set chordChanges = ##t
493     \harmonies }
494   \context Staff \transpose c c' \harmonies
495 >>
496 @end lilypond
497
498 The previous examples all show chords over a staff.  This is not
499 necessary.  Chords may also be printed separately.  It may be necessary
500 to add @internalsref{Volta_engraver} and @internalsref{Bar_engraver}
501 for showing repeats.
502
503 @lilypond[raggedright,verbatim]
504 \new ChordNames \with {
505   \override BarLine #'bar-size = #4
506   voltaOnThisStaff = ##t
507   \consists Bar_engraver
508   \consists "Volta_engraver"
509 }
510 \repeat volta 2 \chordmode {
511   f1:maj f:7 bes:7
512   c:maj
513 } \alternative {
514   es e
515 }
516 @end lilypond
517
518
519 The default chord name layout is a system for Jazz music, proposed by
520 Klaus Ignatzek (see @ref{Literature list}).  It can be tuned through the
521 following properties
522
523 @table @code
524 @cindex @code{chordNameExceptions}
525 @item chordNameExceptions
526 This is a list that contains the chords that have special formatting.
527
528 The exceptions list should be encoded as
529 @example
530 @{ <c f g bes>1 \markup @{ \super "7" "wahh" @} @}
531 @end example
532
533 To get this information into @code{chordNameExceptions} takes a little
534 manoeuvring.  The following code transforms @code{chExceptionMusic}
535 (which is a sequential music) into a list of exceptions.
536 @example
537 (sequential-music-to-chord-exceptions chExceptionMusic #t)
538 @end example
539 Then,
540 @example
541 (append
542  (sequential-music-to-chord-exceptions chExceptionMusic #t)
543  ignatzekExceptions)
544 @end example
545 adds the new exceptions to the default ones, which are defined in
546 @file{ly/@/chord@/-modifier@/-init@/.ly}.
547
548 For an example of tuning this property, see also
549 @inputfileref{input/@/regression,chord@/-name@/-exceptions@/.ly}.
550 @cindex exceptions, chord names.
551
552
553 @cindex @code{majorSevenSymbol}
554 @item majorSevenSymbol
555 This property contains the markup object used for the 7th step, when
556 it is major.  Predefined options are @code{whiteTriangleMarkup} and
557 @code{blackTriangleMarkup}.  See
558 @inputfileref{input/@/regression,chord@/-name@/-major7@/.ly} for an example.
559
560 @cindex @code{chordNameSeparator}
561 @item chordNameSeparator
562 Different parts of a chord name are normally separated by a
563 slash.  By setting @code{chordNameSeparator}, you can specify other
564 separators, e.g.,
565 @lilypond[quote,raggedright,fragment,verbatim]
566 \context ChordNames \chordmode {
567   c:7sus4
568   \set chordNameSeparator
569     = \markup { \typewriter "|" }
570   c:7sus4
571 }
572 @end lilypond
573
574 @cindex @code{chordRootNamer}
575 @item chordRootNamer
576 The root of a chord is usually printed as a letter with an optional
577 alteration.  The transformation from pitch to letter is done by this
578 function.  Special note names (for example, the German ``H'' for a
579 B-chord) can be produced by storing a new function in this property.
580
581 @cindex @code{chordNoteNamer}
582 @item chordNoteNamer
583 The default is to print single pitch, e.g., the bass note, using the
584 @code{chordRootNamer}.  The @code{chordNoteNamer} property can be set
585 to a specialized function to change this behavior.  For example, the
586 base can be printed in lower case.
587
588 @end table
589
590 The predefined variables @code{\germanChords},
591 @code{\semiGermanChords} set these variables.  The effect is
592 demonstrated here,
593
594 @lilypondfile[raggedright]{chord-names-german.ly}
595
596 There are also two other chord name schemes implemented: an alternate
597 Jazz chord notation, and a systematic scheme called Banter chords.  The
598 alternate Jazz notation is also shown on the chart in @ref{Chord name
599 chart}.  Turning on these styles is described in the input file
600 @inputfileref{input/@/test,chord@/-names@/-jazz@/.ly}.
601
602 @cindex Banter
603 @cindex jazz chords
604 @cindex chords, jazz
605
606
607 @refcommands
608
609 @cindex @code{\germanChords}
610 @code{\germanChords},
611 @cindex @code{\semiGermanChords}
612 @code{\semiGermanChords}.
613
614
615
616
617 @seealso
618
619 Examples: @inputfileref{input/@/regression,chord@/-name@/-major7@/.ly},
620 @inputfileref{input/@/regression,chord@/-name@/-exceptions@/.ly},
621 @inputfileref{input/@/test,chord@/-names@/-jazz@/.ly}.
622
623
624 Init files: @file{scm/@/chords@/-ignatzek@/.scm}, and
625 @file{scm/@/chord@/-entry@/.scm}.
626
627
628 @refbugs
629
630 Chord names are determined solely from the list of pitches.  Chord
631 inversions are not identified, and neither are added bass notes.  This
632 may result in strange chord names when chords are entered with the
633 @code{< .. >} syntax.
634
635
636 @node Vocal music
637 @section Vocal music
638
639 There are three different issues when printing vocal music
640
641 @itemize @bullet
642 @item
643 Song texts must be entered as text, not notes.  For example, the
644 input@tie{}@code{d} should be interpreted as a one letter syllable, not the
645 note@tie{}D.
646
647 @item
648 Song texts must be printed as text, not as notes.
649
650 @item
651 Song texts must be aligned with the notes of their melody.
652 @end itemize
653
654 The simplest solution for printing music uses the @code{\addlyrics}
655 function to solve all these problems at once.  However, these
656 three functions can be controlled separately, which is necessary
657 for complex vocal music.
658
659
660 @menu
661 * Setting simple songs::        
662 * Entering lyrics::             
663 * Hyphens and extenders::       
664 * The Lyrics context::          
665 * Flexibility in alignment::    
666 * More stanzas::                
667 * Ambitus::                     
668 * Other vocal issues::          
669 @end menu
670
671 @node Setting simple songs
672 @subsection Setting simple songs
673
674 The easiest way to add lyrics to a melody is to append
675 @cindex \addlyrics
676 @example
677 \addlyrics @{ @var{the lyrics} @}
678 @end example
679
680 @noindent
681 to a melody.  Here is an example,
682
683 @lilypond[raggedright,verbatim,fragment,quote]
684 \time 3/4
685 \relative { c2 e4 g2. }
686 \addlyrics { play the game }
687 @end lilypond
688
689 More stanzas can be added by adding more
690 @code{\addlyrics} sections
691
692 @lilypond[raggedright,verbatim,fragment,quote]
693 \time 3/4
694 \relative { c2 e4 g2. }
695 \addlyrics { play the game }
696 \addlyrics { speel het spel }
697 \addlyrics { joue le jeu }
698 @end lilypond
699
700 @c TODO - this isn't such a great place for this note, but I can't
701 @c  find a better place without rearranging a lot of lyric stuff.
702 @c  It's yet another thing to look at post-3.0.
703
704 The @code{\addlyrics} command is actually just a convienient way
705 to write a more complicated LilyPond structure that sets up the
706 lyrics.  You should use @code{\addlyrics} unless you need to do
707 fancy things, in which case you should investigate
708 @code{\lyricsto} or @code{\lyricmode}.
709
710 @example
711 @{ MUSIC @}
712 \addlyrics @{ LYRICS @}
713 @end example
714
715 @noindent
716 is the same as
717
718 @example
719 \context Voice = blah @{ music @}
720 \lyricsto "blah" \new lyrics @{ LYRICS @}
721 @end example
722
723 @refbugs
724
725 @code{\addlyrics} cannot handle polyphony.
726
727
728 @node Entering lyrics
729 @subsection Entering lyrics
730
731
732 @cindex lyrics
733 @cindex @code{\lyricmode}
734 @cindex punctuation
735
736 Lyrics are entered in a special input mode.  This mode is introduced
737 by the keyword @code{\lyricmode}, or by using @code{addlyrics} or
738 @code{lyricsto}.  In this mode you can enter lyrics,
739 with punctuation and accents, and the input @code{d} is not parsed as
740 a pitch, but rather as a one letter syllable.  Syllables are entered
741 like notes, but with pitches replaced by text.  For example,
742 @example
743 \lyricmode @{ Twin-4 kle4 twin- kle litt- le star2 @}
744 @end example
745
746
747 A word lyrics mode begins with an alphabetic character, and ends with
748 any space or digit.  The following characters can be any character
749 that is not a digit or white space.  One important consequence of this
750 is that a word can end with @code{@}}.  The following example is
751 usually a mistake in the input file.  The syllable includes a @code{@}}, so the
752 opening brace is not balanced
753 @example
754 \lyricmode @{ twinkle@}
755 @end example
756
757 @cindex @code{\property}, in @code{\lyricmode}
758 @noindent
759 Similarly, a period which follows an alphabetic sequence is included in
760 the resulting string.  As a consequence, spaces must be inserted around
761 property commands
762 @example
763 \override Score . LyricText #'font-shape = #'italic
764 @end example
765
766 @cindex @code{_}
767 @cindex spaces, in lyrics
768 @cindex quotes, in lyrics
769
770 Any @code{_} character that appears in an unquoted word is converted
771 to a space.  This provides a mechanism for introducing spaces into words
772 without using quotes.  Quoted words can also be used in Lyrics mode to
773 specify words that cannot be written with the above rules.  The
774 following example incorporates double quotes
775
776 @example
777 \lyricmode @{ He said: "\"Let" my peo ple "go\"" @}
778 @end example
779
780 This example is slightly academic, since it gives better looking
781 results using single quotes, @code{``} and @code{''}
782 @example
783 \lyricmode @{ He said: ``Let my peo ple go'' @}
784 @end example
785
786
787 The full definition of a word start in Lyrics mode is somewhat more
788 complex.
789
790 A word in Lyrics mode begins with: an alphabetic character, @code{_},
791 @code{?}, @code{!}, @code{:}, @code{'}, the control characters @code{^A}
792 through @code{^F}, @code{^Q} through @code{^W}, @code{^Y}, @code{^^},
793 any 8-bit character with ASCII code over 127, or a two-character
794 combination of a backslash followed by one of @code{`}, @code{'},
795 @code{"}, or @code{^}.
796
797
798
799 @seealso
800
801 Program reference: events @internalsref{LyricEvent}, and
802 @internalsref{LyricText}.
803
804 @refbugs
805
806 The definition of lyrics mode is too complex.
807
808 @node Hyphens and extenders
809 @subsection Hyphens and extenders
810
811 @cindex hyphens
812
813 Centered hyphens are entered as `@code{-}@code{-}' between syllables.
814 The hyphen will have variable length depending on the space between
815 the syllables and it will be centered between the syllables.
816
817 @cindex melisma
818 @cindex extender
819
820 When a lyric is sung over many notes (this is called a melisma), this is
821 indicated with a horizontal line centered between a syllable and the
822 next one.  Such a line is called an extender line, and it is entered as
823 @code{__}.
824
825 @ignore
826 FIXME: check that this compiles and displays correctly.  I don't want
827 to commit this part blindly.
828
829 In tighly engraved music, hyphens can be removed.  In some languages
830 (e.g. German and Hungarian), hyphens should not disappear, since
831 spelling depends on hyphenation.  For that purpose, hyphens can be
832 forced to remain by overriding @code{minimum-length} of
833 the @code{LyricHyphen} grob.
834
835 (code from 2.2)
836 \score {
837 <<    \notes \new Staff \relative c'' { \time 1/4 c16[ c c  c]
838 \time 1/4
839 c16[ c c c]
840 \time 1/4
841 c16[ c c c]
842
843 }
844     \lyrics \new Lyrics \with {
845         % Otherwise lyrics are so far apart that hyphens don't disappear
846         \override SeparationItem #'padding = #0.0
847         }{ bla -- bla -- bla -- bla --
848            bla -- bla -- bla -- bla --
849
850            \override LyricHyphen  #'minimum-length = #0.7
851            \override LyricHyphen  #'spacing-procedure =
852                   #Hyphen_spanner::set_spacing_rods
853
854            bla -- bla -- bla -- bla 
855        }>>
856     \paper   {
857         indent = 0.0 \cm
858         linewidth = 3.4 \cm
859
860         \context {
861             \StaffContext \remove "Time_signature_engraver"
862         }
863         
864     }
865       
866 }
867 @end ignore
868
869
870 @seealso
871
872 Program reference: @internalsref{HyphenEvent},
873 @internalsref{ExtenderEvent}, @internalsref{LyricHyphen}, and
874 @internalsref{LyricExtender}
875
876
877
878 @node The Lyrics context
879 @subsection The Lyrics context
880
881
882 Lyrics are printed by interpreting them in a @internalsref{Lyrics} context
883 @example
884 \context Lyrics \lyricmode @dots{}
885 @end example
886
887 @cindex automatic syllable durations
888 @cindex @code{\lyricsto}
889 @cindex lyrics and melodies
890
891 This will place the lyrics according to the durations that were
892 entered.  The lyrics can also be aligned under a given melody
893 automatically.  In this case, it is no longer necessary to enter the
894 correct duration for each syllable.  This is achieved by combining the
895 melody and the lyrics with the @code{\lyricsto} expression
896 @example
897 \lyricsto @var{name} \new Lyrics @dots{}
898 @end example
899
900 This aligns the lyrics to the
901 notes of the @internalsref{Voice} context called @var{name}, which has
902 to exist.  Therefore, normally the @code{Voice} is specified first, and
903 then the lyrics are specified with @code{\lyricsto}.  The command
904 @code{\lyricsto} switches to @code{\lyricmode} mode automatically, so the
905 @code{\lyricmode} keyword may be omitted.
906
907 For different or more complex orderings, the best way is to setup the
908 hierarchy of staves and lyrics first, e.g.,
909 @example
910 \context ChoirStaff <<
911   \context Lyrics = sopranoLyrics @{ s1 @}
912   \context Voice = soprano @{ @emph{music} @}
913   \context Lyrics = tenorLyrics @{ s1 @}
914   \context Voice = tenor @{ @emph{music} @}
915 >>
916 @end example
917 and then combine the appropriate melodies and lyric lines
918 @example
919 \lyricsto "soprano" \context Lyrics = sopranoLyrics
920   @emph{the lyrics}
921 @end example
922
923 @noindent
924 The final input would resemble
925
926 @example
927 <<\context ChoirStaff << @emph{setup the music} >>
928   \lyricsto "soprano" @emph{etc}
929   \lyricsto "alto" @emph{etc}
930   @emph{etc}
931 >>
932 @end example
933
934
935 The @code{\lyricsto} command detects melismata: it only puts one
936 syllable under a tied or slurred group of notes.  If you want to force
937 an unslurred group of notes to be a melisma, insert @code{\melisma}
938 after the first note of the group, and @code{\melismaEnd} after the
939 last one, e.g.,
940
941 @lilypond[quote,relative=2,raggedright,fragment,verbatim]
942 <<
943   \context Voice = "lala" {
944     \time 3/4
945     f4 g8
946     \melisma
947     f e f
948     \melismaEnd
949     e2
950   }
951   \lyricsto "lala" \new Lyrics {
952     la di __ daah
953   }
954 >>
955 @end lilypond
956
957 In addition, notes are considered a melisma if they are manually
958 beamed, and automatic beaming (see @ref{Setting automatic beam
959 behavior}) is switched off.
960
961 @ignore
962
963 @c nonformation:
964
965 The criteria for deciding melismata can
966 be tuned with the property @code{melismaBusyProperties}.  See
967 @internalsref{Melisma_translator} in the program reference for more
968 information.
969
970 @end ignore
971
972 Lyrics can also be entered without @code{\lyricsto}.  In this case the
973 duration of each syllable must be entered explicitly, for example,
974
975 @example
976 play2 the4 game2.
977 sink2 or4 swim2.
978 @end example
979
980 The alignment to a melody can be specified with the
981 @code{associatedVoice} property,
982
983 @example
984 \set associatedVoice = #"lala"
985 @end example
986
987 @noindent
988 The value of the property (here: @code{"lala"}) should be the name of
989 a @internalsref{Voice} context.  Without this setting, extender lines
990 will not be formatted properly.
991
992 Here is an example demonstrating manual lyric durations,
993
994 @lilypond[relative=1,raggedright,verbatim,fragment,quote]
995 << \context Voice = melody {
996      \time 3/4
997      c2 e4 g2.
998   }
999   \new Lyrics \lyricmode {
1000     \set associatedVoice = #"melody"
1001     play2 the4 game2.
1002   } >>
1003 @end lilypond
1004
1005 @cindex SATB
1006 @cindex choral score
1007
1008 A complete example of a SATB score setup is in section
1009 @ref{Vocal ensembles}.
1010
1011
1012 @refcommands
1013
1014 @code{\melisma}, @code{\melismaEnd}
1015 @cindex @code{\melismaEnd}
1016 @cindex @code{\melisma}
1017
1018 @seealso
1019
1020 Program reference: @internalsref{LyricCombineMusic},
1021 @internalsref{Lyrics}, @internalsref{Melisma_translator}.
1022
1023
1024 @inputfileref{input/@/regression,lyric@/-combine@/-new@/.ly}.
1025 @c TODO: make separate section for melismata
1026
1027 @refbugs
1028
1029 Melismata are not detected automatically, and extender lines must be
1030 inserted by hand.
1031
1032
1033 @c TODO: document \new Staff << Voice \lyricsto >> bug
1034
1035 @node Flexibility in alignment
1036 @subsection Flexibility in alignment
1037
1038
1039 Often, different stanzas of one song are put to one melody in slightly
1040 differing ways.  Such variations can still be captured with
1041 @code{\lyricsto}.
1042
1043 One possibility is that the text has a melisma in one stanza, but
1044 multiple syllables in another one.  One solution is to make the faster
1045 voice ignore the melisma.  This is done by setting
1046 @code{ignoreMelismata} in the Lyrics context.
1047
1048 There has one tricky aspect.  The setting for @code{ignoreMelismata}
1049 must be set one syllable @emph{before} the non-melismatic syllable
1050 in the text, as shown here,
1051
1052 @lilypond[verbatim,raggedright,quote]
1053 <<
1054   \relative \context Voice = "lahlah" {
1055     \set Staff.autoBeaming = ##f
1056     c4
1057     \slurDotted
1058     f8.[( g16])
1059     a4
1060   }
1061   \new Lyrics \lyricsto "lahlah" {
1062     more slow -- ly
1063   }
1064   \new Lyrics \lyricsto "lahlah" {
1065     \set ignoreMelismata = ##t % applies to "fas"
1066     go fas -- ter
1067     \unset ignoreMelismata
1068     still
1069   }
1070 >>
1071 @end lilypond
1072
1073
1074 The @code{ignoreMelismata} applies to the syllable ``fas'', so it
1075 should be entered before ``go''.
1076
1077 The reverse is also possible: making a lyric line slower than the
1078 standard.  This can be achieved by insert @code{\skip}s into the
1079 lyrics.  For every @code{\skip}, the text will be delayed another note.
1080 For example,
1081
1082 @lilypond[verbatim,raggedright,quote]
1083 \relative { c c g' }
1084 \addlyrics {
1085   twin -- \skip 4
1086   kle
1087 }
1088 @end lilypond
1089
1090 More complex variations in text underlay are possible.  It is possible
1091 to switch the melody for a line of lyrics during the text.  This is
1092 done by setting the @code{associatedVoice} property.  In the example
1093
1094 @lilypond[raggedright,quote]
1095 <<
1096   \relative \context Voice = "lahlah" {
1097     \set Staff.autoBeaming = ##f
1098     c4
1099     <<
1100       \context Voice = alternative {
1101         \voiceOne
1102         \times 2/3 {
1103           % show associations clearly.
1104           \override NoteColumn #'force-hshift = #-3
1105           f8 f g
1106         }
1107       }
1108       {
1109         \voiceTwo
1110         f8.[ g16]
1111         \oneVoice
1112       } >>
1113     a8( b) c
1114   }
1115   \new Lyrics \lyricsto "lahlah" {
1116     Ju -- ras -- sic Park
1117   }
1118   \new Lyrics \lyricsto "lahlah" {
1119     % Tricky: need to set associatedVoice
1120     % one syllable too soon!
1121     \set associatedVoice = alternative % applies to "ran"
1122     Ty --
1123     ran --
1124     no --
1125     \set associatedVoice = lahlah % applies to "rus"
1126     sau -- rus Rex
1127   } >>
1128 @end lilypond
1129
1130 @noindent
1131 the text for the first stanza is set to a melody called ``lahlah'',
1132
1133 @example
1134 \new Lyrics \lyricsto "lahlah" @{
1135   Ju -- ras -- sic Park
1136 @}
1137 @end example
1138
1139
1140 The second stanza initially is set to the @code{lahlah} context, but
1141 for the syllable ``ran'', it switches to a different melody.
1142 This is achieved with
1143 @example
1144 \set associatedVoice = alternative
1145 @end example
1146
1147 @noindent
1148 Here, @code{alternative} is the name of the @code{Voice} context
1149 containing the triplet.
1150
1151 Again, the command must be one syllable too early, before ``Ty'' in
1152 this case.
1153
1154 @example
1155 \new Lyrics \lyricsto "lahlah" @{
1156   \set associatedVoice = alternative % applies to "ran"
1157   Ty --
1158   ran --
1159   no --
1160   \set associatedVoice = lahlah % applies to "rus"
1161   sau -- rus Rex
1162 @}
1163 @end example
1164
1165 @noindent
1166 The underlay is switched back to the starting situation by assigning
1167 @code{lahlah} to @code{associatedVoice}.
1168
1169
1170
1171
1172 @node More stanzas
1173 @subsection More stanzas
1174
1175 @cindex phrasing, in lyrics
1176
1177
1178 @cindex stanza number
1179 @cindex singer's names
1180 @cindex name of singer
1181
1182 Stanza numbers can be added by setting @code{stanza}, e.g.,
1183
1184 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
1185 \new Voice {
1186   \time 3/4 g2 e4 a2 f4 g2.
1187 } \addlyrics {
1188   \set stanza = "1. "
1189   Hi, my name is Bert.
1190 } \addlyrics {
1191   \set stanza = "2. "
1192   Oh, che -- ri, je t'aime
1193 }
1194 @end lilypond
1195
1196 These numbers are put just before the start of first syllable.
1197
1198 Names of singers can also be added.  They are printed at the start of
1199 the line, just like instrument names.  They are created by setting
1200 @code{vocalName}.  A short version may be entered as @code{vocNam}.
1201
1202
1203 @lilypond[fragment,raggedright,quote,verbatim,relative=2]
1204 \new Voice {
1205   \time 3/4 g2 e4 a2 f4 g2.
1206 } \addlyrics {
1207   \set vocalName = "Bert "
1208   Hi, my name is Bert.
1209 } \addlyrics {
1210   \set vocalName = "Ernie "
1211   Oh, che -- ri, je t'aime
1212 }
1213 @end lilypond
1214
1215 @seealso
1216
1217 Program reference: Layout objects @internalsref{LyricText} and
1218 @internalsref{VocalName}.  Music expressions
1219 @internalsref{LyricEvent}.
1220
1221
1222
1223 @node Ambitus
1224 @subsection Ambitus
1225 @cindex ambitus
1226
1227 The term @emph{ambitus} denotes a range of pitches for a given voice
1228 in a part of music.  It may also denote the pitch range that a musical
1229 instrument is capable of playing.  Ambits are printed on vocal parts,
1230 so performers can easily determine it meets their capabilities.
1231
1232 Ambits are denoted at the beginning of a piece near the initial clef.
1233 The range is graphically specified by two note heads that represent the
1234 minimum and maximum pitch.  To print such ambits, add the
1235 @internalsref{Ambitus_engraver} to the @internalsref{Voice} context,
1236 for example,
1237
1238 @example
1239 \layout @{
1240   \context @{
1241     \Voice
1242     \consists Ambitus_engraver
1243   @}
1244 @}
1245 @end example
1246
1247 This results in the following output
1248
1249 @lilypond[quote,raggedright]
1250 \layout {
1251   \context {
1252     \Staff
1253     \consists Ambitus_engraver
1254   }
1255 }
1256
1257 \relative \new Staff {
1258   as'' c e2 cis,2
1259 }
1260 @end lilypond
1261
1262 If you have multiple voices in a single staff and you want a single
1263 ambitus per staff rather than per each voice, add the
1264 @internalsref{Ambitus_engraver} to the @internalsref{Staff} context
1265 rather than to the @internalsref{Voice} context.  Here is an example,
1266
1267 @lilypond[verbatim,raggedright,quote]
1268 \new Staff \with {
1269   \consists "Ambitus_engraver"
1270 }
1271 <<
1272   \new Voice \with {
1273     \remove "Ambitus_engraver"
1274   } \relative c'' {
1275     \override Ambitus #'X-offset-callbacks
1276       = #(list (lambda (grob axis) -1.0))
1277     \voiceOne
1278     c4 a d e f2
1279   }
1280   \new Voice \with {
1281     \remove "Ambitus_engraver"
1282   } \relative c' {
1283     \voiceTwo
1284     es4 f g as b2
1285   }
1286 >>
1287 @end lilypond
1288
1289 @noindent
1290 This example uses one advanced feature,
1291
1292 @example
1293 \override Ambitus #'X-offset-callbacks
1294   = #(list (lambda (grob axis) -1.0))
1295 @end example
1296
1297 @noindent
1298 This code moves the ambitus to the left.  The same effect could have
1299 been achieved with @code{extra-offset}, but then the formatting system
1300 would not reserve space for the moved object.
1301
1302 @seealso
1303
1304 Program reference: @internalsref{Ambitus},
1305 @internalsref{AmbitusLine}, @internalsref{AmbitusNoteHead},
1306 @internalsref{AmbitusAccidental}.
1307
1308 Examples: @inputfileref{input/@/regression,ambitus@/.ly}.
1309
1310 @refbugs
1311
1312 There is no collision handling in the case of multiple per-voice
1313 ambitus.
1314
1315 @node Other vocal issues
1316 @subsection Other vocal issue
1317
1318 @ignore
1319 yeah, I'm giving up somewhat by stuffing a bunch of things in
1320 here.  But at least they're in the manual now; it's easier to
1321 move them around in the manual once they're already here.
1322
1323 Besides, if users complain about everything stuffed in here, I
1324 can ask them for specific instructions about where to move these
1325 examples, and that might get them more involved in the docs.  -gp
1326 @end ignore
1327
1328 You can display alternate (or divisi) lyrics by naming voice
1329 contexts and attaching lyrics to those specific contexts.
1330
1331 @lilypond[verbatim,raggedright,quote]
1332 \score{ <<
1333   \context Voice = "melody" {
1334     \relative c' {
1335       c4
1336       <<
1337         { \voiceOne c8 e }
1338         \context Voice = splitpart { \voiceTwo c4 }
1339       >>
1340       \oneVoice c4 c | c
1341     }
1342   }
1343   \new Lyrics \lyricsto "melody" { we shall not o- ver- come }
1344   \new Lyrics \lyricsto "splitpart" { shall }
1345 >> }
1346 @end lilypond
1347
1348
1349 You can use this trick to display different lyrics for a repeated
1350 section.
1351
1352 @lilypond[verbatim,raggedright,quote]
1353 \score{ <<
1354   \context Voice = melody \relative c' {
1355     c2 e | g e | c1 |
1356     \context Voice = verse \repeat volta 2 {c4 d e f | g1 | }
1357     a2 b | c1}
1358   \lyricsto melody  \context Lyrics = mainlyrics \lyricmode {
1359     do mi sol mi do
1360     la si do }
1361   \lyricsto verse \context Lyrics = mainlyrics \lyricmode {
1362    do re mi fa sol }
1363   \lyricsto verse \context Lyrics = repeatlyrics \lyricmode {
1364    dodo rere mimi fafa solsol }
1365 >>
1366 }
1367 @end lilypond
1368
1369
1370 To notate ``parlato'' (spoken without pitch but still with
1371 rhythm) sections, 
1372
1373 @lilypond[raggedright,verbatim,quote,fragment,relative=2]
1374 c4 d
1375 \override NoteHead #'style = #'cross
1376 e f
1377 \revert NoteHead #'style
1378 e d
1379 @end lilypond
1380
1381
1382 @node Rhythmic music
1383 @section Rhythmic music
1384
1385 Rhythmic music is primarily used for percussion and drum notation, but it can
1386 also be used to show the rhythms of melodies.
1387
1388 @menu
1389 * Showing melody rhythms::      
1390 * Entering percussion::         
1391 * Percussion staves::           
1392 @end menu
1393
1394
1395 @node Showing melody rhythms
1396 @subsection Showing melody rhythms
1397
1398 Sometimes you might want to show only the rhythm of a melody.  This
1399 can be done with the rhythmic staff.  All pitches of notes on such a
1400 staff are squashed, and the staff itself has a single line
1401
1402 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
1403 \context RhythmicStaff {
1404   \time 4/4
1405   c4 e8 f g2 | r4 g r2 | g1:32 | r1 |
1406 }
1407 @end lilypond
1408
1409 @seealso
1410
1411 Program reference: @internalsref{RhythmicStaff}.
1412
1413 Examples: @inputfileref{input/@/regression,rhythmic@/-staff@/.ly}.
1414
1415
1416 @node Entering percussion
1417 @subsection Entering percussion
1418
1419 @cindex percussion
1420 @cindex drums
1421
1422
1423 Percussion notes may be entered in @code{\drummode} mode, which is
1424 similar to the standard mode for entering notes.  Each piece of
1425 percussion has a full name and an abbreviated name, and both can be used
1426 in input files
1427
1428 @lilypond[quote,raggedright,verbatim]
1429 \drums {
1430   hihat hh bassdrum bd
1431 }
1432 @end lilypond
1433
1434 The complete list of drum names is in the init file
1435 @file{ly/@/drumpitch@/-init@/.ly}.
1436 @c TODO: properly document this.
1437
1438 @seealso
1439
1440 Program reference: @internalsref{DrumNoteEvent}.
1441
1442 @node Percussion staves
1443 @subsection Percussion staves
1444 @cindex percussion
1445 @cindex drums
1446
1447 A percussion part for more than one instrument typically uses a
1448 multiline staff where each position in the staff refers to one piece
1449 of percussion.
1450
1451
1452 To typeset the music, the notes must be interpreted in a
1453 @internalsref{DrumStaff} and @internalsref{DrumVoice} contexts
1454
1455 @lilypond[quote,raggedright,verbatim]
1456 up = \drummode { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
1457 down = \drummode { bassdrum4 snare8 bd r bd sn4 }
1458   \new DrumStaff <<
1459     \new DrumVoice { \voiceOne \up }
1460     \new DrumVoice { \voiceTwo \down }
1461   >>
1462 @end lilypond
1463
1464 The above example shows verbose polyphonic notation.  The short
1465 polyphonic notation, described in @ref{Polyphony}, can also be used if
1466 the @internalsref{DrumVoices} are instantiated by hand first.  For example,
1467
1468 @lilypond[quote,raggedright,fragment,verbatim]
1469 \new DrumStaff <<
1470   \context DrumVoice = "1" { s1 *2 }
1471   \context DrumVoice = "2" { s1 *2 }
1472   \drummode {
1473     bd4 sn4 bd4 sn4
1474     <<
1475       { \repeat unfold 16 hh16 }
1476       \\
1477       { bd4 sn4 bd4 sn4 }
1478     >>
1479   }
1480 >>
1481 @end lilypond
1482
1483
1484 There are also other layout possibilities.  To use these, set the
1485 property @code{drumStyleTable} in context @internalsref{DrumVoice}.
1486 The following variables have been predefined
1487
1488 @table @code
1489 @item drums-style
1490 This is the default.  It typesets a typical drum kit on a five-line staff
1491
1492 @lilypond[quote,linewidth=10.0\cm]
1493 nam = \lyricmode {
1494   cymc cyms cymr hh hhc hho hhho hhp
1495   cb hc bd sn ss tomh tommh tomml toml tomfh tomfl }
1496 mus = \drummode {
1497   cymc cyms cymr hh hhc hho hhho hhp \break
1498   cb hc bd sn ss tomh tommh tomml toml tomfh tomfl s16 }
1499 \score {
1500   << \new DrumStaff \with {
1501        \remove Bar_engraver
1502        \remove Time_signature_engraver
1503        \override Stem #'transparent = ##t
1504        \override Stem #'Y-extent-callback = ##f
1505        minimumVerticalExtent = #'(-4.0 . 5.0)
1506      } \mus
1507      \context Lyrics \nam
1508   >>
1509   \layout {
1510     \context {
1511       \Score
1512       \override LyricText #'font-family = #'typewriter
1513       \override BarNumber #'transparent =##T
1514     }
1515   }
1516 }
1517 @end lilypond
1518
1519 The drum scheme supports six different toms.  When there are fewer toms,
1520 simply select the toms that produce the desired result, i.e., to get toms
1521 on the three middle lines you use @code{tommh}, @code{tomml}, and
1522 @code{tomfh}.
1523
1524 @item timbales-style
1525 This typesets timbales on a two line staff
1526
1527 @lilypond[quote,raggedright]
1528 nam = \lyricmode { timh ssh timl ssl cb }
1529 mus = \drummode { timh ssh timl ssl cb s16 }
1530
1531 <<
1532   \context DrumStaff \with {
1533     \remove Bar_engraver
1534     \remove Time_signature_engraver
1535     \override Stem #'transparent = ##t
1536     \override Stem #'Y-extent-callback = ##f
1537     \override StaffSymbol #'line-count = #2
1538     \override StaffSymbol #'staff-space = #2
1539     minimumVerticalExtent = #'(-3.0 . 4.0)
1540     drumStyleTable = #timbales-style
1541   } \mus
1542   \context Lyrics {
1543     \override LyricText #'font-family = #'typewriter
1544     \nam
1545   }
1546 >>
1547 @end lilypond
1548
1549 @item congas-style
1550 This typesets congas on a two line staff
1551
1552 @lilypond[quote,raggedright]
1553 nam = \lyricmode { cgh cgho cghm ssh cgl cglo cglm ssl }
1554 mus = \drummode { cgh cgho cghm ssh cgl cglo cglm ssl s16 }
1555
1556 <<
1557   \context DrumStaff \with {
1558     \remove Bar_engraver
1559     \remove Time_signature_engraver
1560     drumStyleTable = #congas-style
1561     \override StaffSymbol #'line-count = #2
1562
1563     %% this sucks; it will lengthen stems.
1564     \override StaffSymbol #'staff-space = #2
1565     \override Stem #'transparent = ##t
1566     \override Stem #'Y-extent-callback = ##f
1567   } \mus
1568   \context Lyrics {
1569     \override LyricText #'font-family = #'typewriter
1570     \nam
1571   }
1572 >>
1573 @end lilypond
1574
1575 @item bongos-style
1576 This typesets bongos on a two line staff
1577
1578 @lilypond[quote,raggedright]
1579 nam = \lyricmode { boh boho bohm ssh bol bolo bolm ssl }
1580 mus = \drummode { boh boho bohm ssh bol bolo bolm ssl s16 }
1581
1582 <<
1583   \context DrumStaff\with {
1584     \remove Bar_engraver
1585     \remove Time_signature_engraver
1586     \override StaffSymbol #'line-count = #2
1587     drumStyleTable = #bongos-style
1588
1589     %% this sucks; it will lengthen stems.
1590     \override StaffSymbol #'staff-space = #2
1591     \override Stem #'transparent = ##t
1592     \override Stem #'Y-extent-callback = ##f
1593   } \mus
1594   \context Lyrics {
1595     \override LyricText #'font-family = #'typewriter
1596     \nam
1597   }
1598 >>
1599 @end lilypond
1600
1601 @item percussion-style
1602 To typeset all kinds of simple percussion on one line staves.
1603
1604 @lilypond[quote,raggedright]
1605 nam = \lyricmode { tri trio trim gui guis guil cb cl tamb cab mar hc }
1606 mus = \drummode { tri trio trim gui guis guil cb cl tamb cab mar hc s16 }
1607
1608 <<
1609   \context DrumStaff\with{
1610     \remove Bar_engraver
1611     drumStyleTable = #percussion-style
1612     \override StaffSymbol #'line-count = #1
1613     \remove Time_signature_engraver
1614     \override Stem #'transparent = ##t
1615     \override Stem #'Y-extent-callback = ##f
1616   } \mus
1617   \context Lyrics {
1618     \override LyricText #'font-family = #'typewriter
1619     \nam
1620   }
1621 >>
1622 @end lilypond
1623 @end table
1624
1625 If you do not like any of the predefined lists you can define your own
1626 list at the top of your file
1627
1628 @lilypond[quote,raggedright,verbatim]
1629 #(define mydrums '(
1630          (bassdrum     default   #f         -1)
1631          (snare        default   #f         0)
1632          (hihat        cross     #f         1)
1633          (pedalhihat   xcircle   "stopped"  2)
1634          (lowtom       diamond   #f         3)))
1635 up = \drummode { hh8 hh hh hh hhp4 hhp }
1636 down = \drummode { bd4 sn bd toml8 toml }
1637
1638 \new DrumStaff <<
1639   \set DrumStaff.drumStyleTable = #(alist->hash-table mydrums)
1640   \new DrumVoice { \voiceOne \up }
1641   \new DrumVoice { \voiceTwo \down }
1642 >>
1643 @end lilypond
1644
1645
1646 @seealso
1647
1648 Init files: @file{ly/@/drumpitch@/-init@/.ly}.
1649
1650 Program reference: @internalsref{DrumStaff}, @internalsref{DrumVoice}.
1651
1652 @refbugs
1653
1654 Because general MIDI does not contain rim shots, the sidestick is used
1655 for this purpose instead.
1656
1657
1658
1659
1660 @node Tablatures
1661 @section Tablatures
1662
1663 @cindex tablature
1664 @cindex guitar tablature
1665
1666 Tablature notation is used for notating music for plucked string
1667 instruments.  Pitches are not denoted with note heads, but by
1668 indicating on which string and fret a note must be played.  LilyPond
1669 offers limited support for tablature.
1670
1671 @menu
1672 * Tablatures basic::            
1673 * Non-guitar tablatures::       
1674 * Fret diagrams::               
1675 @end menu
1676
1677 @node Tablatures basic
1678 @subsection Tablatures basic
1679 @cindex Tablatures basic
1680
1681 The string number associated to a note is given as a backslash
1682 followed by a number, e.g., @code{c4\3} for a C quarter on the third
1683 string.  By default, string 1 is the highest one, and the tuning
1684 defaults to the standard guitar tuning (with 6 strings).  The notes
1685 are printed as tablature, by using @internalsref{TabStaff} and
1686 @internalsref{TabVoice} contexts
1687
1688 @lilypond[quote,raggedright,fragment,verbatim]
1689 \context TabStaff {
1690   a,4\5 c'\2 a\3 e'\1
1691   e\4 c'\2 a\3 e'\1
1692 }
1693 @end lilypond
1694
1695 @cindex @code{minimumFret}
1696 @cindex fret
1697
1698 When no string is specified, the first string that does not give a
1699 fret number less than @code{minimumFret} is selected.  The default
1700 value for @code{minimumFret} is 0
1701
1702
1703 @example
1704 e16 fis gis a b4
1705 \set TabStaff.minimumFret = #8
1706 e16 fis gis a b4
1707 @end example
1708 @lilypond[quote,raggedright]
1709 frag = {
1710   \key e \major
1711   e16 fis gis a b4
1712   \set TabStaff.minimumFret = #8
1713   e16 fis gis a b4
1714 }
1715   \context StaffGroup <<
1716     \context Staff { \clef "G_8" \frag }
1717     \context TabStaff { \frag }
1718   >>
1719 @end lilypond
1720
1721 @seealso
1722
1723 Program reference: @internalsref{TabStaff}, @internalsref{TabVoice}, and
1724 @internalsref{StringNumberEvent}.
1725
1726 @refbugs
1727
1728 Chords are not handled in a special way, and hence the automatic
1729 string selector may easily select the same string to two notes in a
1730 chord.
1731
1732
1733 @node Non-guitar tablatures
1734 @subsection Non-guitar tablatures
1735 @cindex Non-guitar tablatures
1736
1737 You can change the number of strings, by setting the number of lines
1738 in the @internalsref{TabStaff}.
1739
1740 You can change the tuning of the strings.  A string tuning is given as
1741 a Scheme list with one integer number for each string, the number
1742 being the pitch (measured in semitones relative to middle C) of an
1743 open string.  The numbers specified for @code{stringTuning} are the
1744 numbers of semitones to subtract or add, starting the specified pitch
1745 by default middle C, in string order.  In the next example,
1746 @code{stringTunings} is set for the pitches e, a, d, and g
1747
1748 @lilypond[quote,raggedright,fragment,verbatim]
1749 \context TabStaff <<
1750   \set TabStaff.stringTunings = #'(-5 -10 -15 -20)
1751   {
1752     a,4 c' a e' e c' a e'
1753   }
1754 >>
1755 @end lilypond
1756
1757 @refbugs
1758
1759 No guitar special effects have been implemented.
1760
1761 @seealso
1762
1763 Program reference: @internalsref{Tab_note_heads_engraver}.
1764
1765
1766 @node Fret diagrams
1767 @subsection Fret diagrams
1768 @cindex fret diagrams
1769 @cindex chord diagrams
1770
1771 Fret diagrams can be added to music as a markup to the desired note.  The
1772 markup contains information about the desired fret diagram, as shown in the
1773 following example
1774
1775 @lilypond[verbatim, raggedright, quote]
1776 \context Voice {
1777   d' ^\markup \fret-diagram #"6-x;5-x;4-o;3-2;2-3;1-2;"
1778   d' d' d'
1779   fis' ^\markup \override #'(size . 0.75) {
1780     \override #'(finger-code . below-string) {
1781       \fret-diagram-verbose #'((place-fret 6 2 1) (barre 6 1 2)
1782                                (place-fret 5 4 3) (place-fret 4 4 4)
1783                                (place-fret 3 3 2) (place-fret 2 2 1)
1784                                (place-fret 1 2 1))
1785     }
1786   }
1787   fis' fis' fis'
1788   c' ^\markup \override #'(dot-radius . 0.35) {
1789     \override #'(finger-code . in-dot) {
1790       \override #'(dot-color . white) {
1791         \fret-diagram-terse #"x;3-1-(;5-2;5-3;5-4;3-1-);"
1792       }
1793     }
1794   }
1795   c' c' c'
1796 }
1797 @end lilypond
1798
1799
1800 There are three different fret-diagram markup interfaces: standard, terse,
1801 and verbose.  The three interfaces produce equivalent markups, but have
1802 varying amounts of information in the markup string.  Details about the
1803 markup interfaces are found at @ref{Overview of text markup commands}.
1804
1805 You can set a number of graphical properties according to your preference.
1806 Details about the property interface to fret diagrams are found at
1807 @internalsref{fret-diagram-interface}.
1808
1809
1810 @seealso
1811
1812 Examples: @inputfileref{input/@/test,fret@/-diagram@/.ly}
1813
1814
1815
1816 @node Ancient notation
1817 @section Ancient notation
1818
1819 @cindex Vaticana, Editio
1820 @cindex Medicaea, Editio
1821 @cindex hufnagel
1822 @cindex Petrucci
1823 @cindex mensural
1824
1825 Support for ancient notation includes features for mensural notation
1826 and Gregorian Chant notation.  There is also limited support for
1827 figured bass notation.
1828
1829 Many graphical objects provide a @code{style} property, see
1830 @itemize @bullet
1831 @item
1832 @ref{Ancient note heads},
1833 @item
1834 @ref{Ancient accidentals},
1835 @item
1836 @ref{Ancient rests},
1837 @item
1838 @ref{Ancient clefs},
1839 @item
1840 @ref{Ancient flags},
1841 @item
1842 @ref{Ancient time signatures}.
1843 @end itemize
1844
1845 By manipulating such a grob property, the typographical appearance of
1846 the affected graphical objects can be accommodated for a specific
1847 notation flavor without the need for introducing any new notational
1848 concept.
1849
1850 In addition to the standard articulation signs described in section
1851 @ref{Articulations}, specific articulation signs for ancient notation
1852 are provided.
1853
1854 @itemize @bullet
1855 @item
1856 @ref{Ancient articulations}
1857 @end itemize
1858
1859 Other aspects of ancient notation can not that easily be expressed
1860 in terms of just changing a style property of a graphical object or
1861 adding articulation signs.  Some notational concepts are introduced
1862 specifically for ancient notation,
1863
1864 @itemize @bullet
1865 @item
1866 @ref{Custodes},
1867 @item
1868 @ref{Divisiones},
1869 @item
1870 @ref{Ligatures}.
1871 @end itemize
1872
1873 If this all is too much of documentation for you, and you just want to
1874 dive into typesetting without worrying too much about the details on
1875 how to customize a context, you may have a look at the predefined
1876 contexts.  Use them to set up predefined style-specific voice and
1877 staff contexts, and directly go ahead with the note entry,
1878
1879 @itemize @bullet
1880 @item
1881 @ref{Gregorian Chant contexts},
1882 @item
1883 @ref{Mensural contexts}.
1884 @end itemize
1885
1886 There is limited support for figured bass notation which came
1887 up during the baroque period.
1888
1889 @itemize @bullet
1890 @item
1891 @ref{Figured bass}
1892 @end itemize
1893
1894 Here are all suptopics at a glance:
1895
1896 @menu
1897 * Ancient note heads::          
1898 * Ancient accidentals::         
1899 * Ancient rests::               
1900 * Ancient clefs::               
1901 * Ancient flags::               
1902 * Ancient time signatures::     
1903 * Ancient articulations::       
1904 * Custodes::                    
1905 * Divisiones::                  
1906 * Ligatures::                   
1907 * Gregorian Chant contexts::    
1908 * Mensural contexts::           
1909 * Figured bass::                
1910 @end menu
1911
1912
1913 @node Ancient note heads
1914 @subsection Ancient note heads
1915
1916 @cindex note heads
1917
1918
1919 For ancient notation, a note head style other than the @code{default}
1920 style may be chosen.  This is accomplished by setting the @code{style}
1921 property of the @internalsref{NoteHead} object to @code{baroque},
1922 @code{neomensural} or @code{mensural}.  The @code{baroque} style
1923 differs from the @code{default} style only in using a square shape
1924 for @code{\breve} note heads.  The @code{neomensural} style differs from
1925 the @code{baroque} style in that it uses rhomboidal heads for whole notes
1926 and all smaller durations.  Stems are centered on the note heads.
1927 This style is particularly useful when transcribing mensural music,
1928 e.g., for the incipit.  The @code{mensural} style finally produces note
1929 heads that mimic the look of note heads in historic printings of the
1930 16th century.
1931
1932 The following example demonstrates the @code{neomensural} style
1933
1934 @lilypond[quote,fragment,raggedright,verbatim]
1935 \set Score.skipBars = ##t
1936 \override NoteHead #'style = #'neomensural
1937 a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
1938 @end lilypond
1939
1940 When typesetting a piece in Gregorian Chant notation, the
1941 @internalsref{Gregorian_ligature_engraver} will automatically select
1942 the proper note heads, so there is no need to explicitly set the
1943 note head style.  Still, the note head style can be set, e.g., to
1944 @code{vaticana_punctum} to produce punctum neumes.  Similarly, a
1945 @internalsref{Mensural_ligature_engraver} is used to automatically
1946 assemble mensural ligatures.  See @ref{Ligatures} for how ligature
1947 engravers work.
1948
1949 @seealso
1950
1951 Examples: @inputfileref{input/@/regression,note@/-head@/-style@/.ly} gives an
1952 overview over all available note head styles.
1953
1954
1955 @node Ancient accidentals
1956 @subsection Ancient accidentals
1957
1958 @cindex accidentals
1959
1960
1961 Use the @code{style} property of grob @internalsref{Accidental} to
1962 select ancient accidentals.   Supported styles are
1963 @code{mensural}, @code{vaticana}, @code{hufnagel}, and @code{medicaea}.
1964
1965 @lilypond[quote,raggedright,staffsize=26]
1966 \score {
1967 {
1968   \fatText
1969   s^\markup {
1970     \column {
1971       "vaticana"
1972       \line { " " \musicglyph #"accidentals.vaticana-1"
1973         " " \musicglyph #"accidentals.vaticana0" }
1974     }
1975     \column {
1976       "medicaea"
1977       \line { " " \musicglyph #"accidentals.medicaea-1" }
1978     }
1979     \column {
1980       "hufnagel"
1981       \line { " " \musicglyph #"accidentals.hufnagel-1" }
1982     }
1983     \column {
1984       "mensural"
1985       \line { " " \musicglyph #"accidentals.mensural-1"
1986         " " \musicglyph #"accidentals.mensural1" }
1987     }
1988   }
1989 }
1990 \layout {
1991   interscoreline = 1
1992   \context { \Score \remove "Bar_number_engraver" }
1993   \context { \Staff
1994       \remove "Clef_engraver"
1995       \remove "Key_engraver"
1996       \remove "Time_signature_engraver"
1997       \remove "Staff_symbol_engraver"
1998       minimumVerticalExtent = ##f
1999     }
2000   }
2001 }
2002 @end lilypond
2003
2004 As shown, not all accidentals are supported by each style.  When
2005 trying to access an unsupported accidental, LilyPond will switch to a
2006 different style, as demonstrated in
2007 @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
2008
2009 Similarly to local accidentals, the style of the key signature can be
2010 controlled by the @code{style} property of the
2011 @internalsref{KeySignature} grob.
2012
2013 @seealso
2014
2015 In this manual: @ref{Pitches}, @ref{Cautionary accidentals} and
2016 @ref{Automatic accidentals} give a general introduction of the use of
2017 accidentals.  @ref{Key signature} gives a general introduction of
2018 the use of key signatures.
2019
2020 Program reference: @internalsref{KeySignature}.
2021
2022 Examples: @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
2023
2024 @node Ancient rests
2025 @subsection Ancient rests
2026
2027 @cindex rests
2028
2029
2030 Use the @code{style} property of grob @internalsref{Rest} to select
2031 ancient rests.   Supported styles are @code{classical},
2032 @code{neomensural}, and @code{mensural}.  @code{classical} differs
2033 from the @code{default} style only in that the quarter rest looks like
2034 a horizontally mirrored 8th rest.  The @code{neomensural} style suits
2035 well for, e.g., the incipit of a transcribed mensural piece of music.
2036 The @code{mensural} style finally mimics the appearance of rests as
2037 in historic prints of the 16th century.
2038
2039 The following example demonstrates the @code{neomensural} style
2040
2041 @lilypond[quote,fragment,raggedright,verbatim]
2042 \set Score.skipBars = ##t
2043 \override Rest #'style = #'neomensural
2044 r\longa r\breve r1 r2 r4 r8 r16
2045 @end lilypond
2046
2047 There are no 32th and 64th rests specifically for the mensural or
2048 neo-mensural style.  Instead, the rests from the default style will be
2049 taken.  See @inputfileref{input/@/test,rests@/.ly} for a chart of all
2050 rests.
2051
2052 There are no rests in Gregorian Chant notation; instead, it uses
2053 @ref{Divisiones}.
2054
2055 @seealso
2056
2057 In this manual: @ref{Rests} gives a general introduction into the use of rests.
2058
2059
2060 @node Ancient clefs
2061 @subsection Ancient clefs
2062
2063 @cindex clefs
2064
2065
2066 LilyPond supports a variety of clefs, many of them ancient.
2067
2068 The following table shows all ancient clefs that are supported via the
2069 @code{\clef} command.  Some of the clefs use the same glyph, but
2070 differ only with respect to the line they are printed on.  In such
2071 cases, a trailing number in the name is used to enumerate these clefs.
2072 Still, you can manually force a clef glyph to be typeset on an
2073 arbitrary line, as described in @ref{Clef}.  The note printed to the
2074 right side of each clef in the example column denotes the @code{c'}
2075 with respect to that clef.
2076
2077 @multitable @columnfractions .4 .4 .2
2078 @item
2079 @b{Description}
2080 @tab
2081 @b{Supported Clefs}
2082 @tab
2083 @b{Example}
2084
2085 @item
2086 modern style mensural C clef
2087 @tab
2088 @code{neomensural-c1}, @code{neomensural-c2},@*
2089 @code{neomensural-c3}, @code{neomensural-c4}
2090 @tab
2091 @lilypond[fragment,relative=1,notime]
2092   \clef "neomensural-c2" c
2093 @end lilypond
2094
2095 @item
2096 petrucci style mensural C clefs, for use on different staff lines
2097 (the examples show the 2nd staff line C clef)
2098 @tab
2099 @code{petrucci-c1}, @code{petrucci-c2},@*
2100 @code{petrucci-c3}, @code{petrucci-c4},@*
2101 @code{petrucci-c5}
2102 @tab
2103 @lilypond[fragment,relative=1,notime]
2104   \clef "petrucci-c2"
2105   \override NoteHead #'style = #'mensural
2106   c
2107 @end lilypond
2108
2109 @item
2110 petrucci style mensural F clef
2111 @tab
2112 @code{petrucci-f}
2113 @tab
2114 @lilypond[fragment,relative=1,notime]
2115   \clef "petrucci-f"
2116   \override NoteHead #'style = #'mensural
2117   c
2118 @end lilypond
2119
2120 @item
2121 petrucci style mensural G clef
2122 @tab
2123 @code{petrucci-g}
2124 @tab
2125 @lilypond[fragment,relative=1,notime]
2126   \clef "petrucci-g"
2127   \override NoteHead #'style = #'mensural
2128   c
2129 @end lilypond
2130
2131 @item
2132 historic style mensural C clef
2133 @tab
2134 @code{mensural-c1}, @code{mensural-c2},@*
2135 @code{mensural-c3}, @code{mensural-c4}
2136 @tab
2137 @lilypond[fragment,relative=1,notime]
2138   \clef "mensural-c2"
2139   \override NoteHead #'style = #'mensural
2140   c
2141 @end lilypond
2142
2143 @item
2144 historic style mensural F clef
2145 @tab
2146 @code{mensural-f}
2147 @tab
2148 @lilypond[fragment,relative=1,notime]
2149   \clef "mensural-f"
2150   \override NoteHead #'style = #'mensural
2151   c
2152 @end lilypond
2153
2154 @item
2155 historic style mensural G clef
2156 @tab
2157 @code{mensural-g}
2158 @tab
2159 @lilypond[fragment,relative=1,notime]
2160   \clef "mensural-g"
2161   \override NoteHead #'style = #'mensural
2162   c
2163 @end lilypond
2164
2165 @item
2166 Editio Vaticana style do clef
2167 @tab
2168 @code{vaticana-do1}, @code{vaticana-do2},@*
2169 @code{vaticana-do3}
2170 @tab
2171 @lilypond[fragment,relative=1,notime]
2172   \override Staff.StaffSymbol #'line-count = #4
2173   \override Staff.StaffSymbol #'color = #red
2174   \override Staff.LedgerLineSpanner #'color = #red
2175   \override Voice.Stem #'transparent = ##t
2176   \override NoteHead #'style = #'vaticana.punctum
2177   \clef "vaticana-do2"
2178   c
2179 @end lilypond
2180
2181 @item
2182 Editio Vaticana style fa clef
2183 @tab
2184 @code{vaticana-fa1}, @code{vaticana-fa2}
2185 @tab
2186 @lilypond[fragment,relative=1,notime]
2187   \override Staff.StaffSymbol #'line-count = #4
2188   \override Staff.StaffSymbol #'color = #red
2189   \override Staff.LedgerLineSpanner #'color = #red
2190   \override Voice.Stem #'transparent = ##t
2191   \override NoteHead #'style = #'vaticana.punctum
2192   \clef "vaticana-fa2"
2193   c
2194 @end lilypond
2195
2196 @item
2197 Editio Medicaea style do clef
2198 @tab
2199 @code{medicaea-do1}, @code{medicaea-do2},@*
2200 @code{medicaea-do3}
2201 @tab
2202 @lilypond[fragment,relative=1,notime]
2203   \override Staff.StaffSymbol #'line-count = #4
2204   \override Staff.StaffSymbol #'color = #red
2205   \override Staff.LedgerLineSpanner #'color = #red
2206   \override Voice.Stem #'transparent = ##t
2207   \override NoteHead #'style = #'medicaea.punctum
2208   \clef "medicaea-do2"
2209   c
2210 @end lilypond
2211
2212 @item
2213 Editio Medicaea style fa clef
2214 @tab
2215 @code{medicaea-fa1}, @code{medicaea-fa2}
2216 @tab
2217 @lilypond[fragment,relative=1,notime]
2218   \override Staff.StaffSymbol #'line-count = #4
2219   \override Staff.StaffSymbol #'color = #red
2220   \override Staff.LedgerLineSpanner #'color = #red
2221   \override Voice.Stem #'transparent = ##t
2222   \override NoteHead #'style = #'medicaea.punctum
2223   \clef "medicaea-fa2"
2224   c
2225 @end lilypond
2226
2227 @item
2228 historic style hufnagel do clef
2229 @tab
2230 @code{hufnagel-do1}, @code{hufnagel-do2},@*
2231 @code{hufnagel-do3}
2232 @tab
2233 @lilypond[fragment,relative=1,notime]
2234   \override Staff.StaffSymbol #'line-count = #4
2235   \override Staff.StaffSymbol #'color = #red
2236   \override Staff.LedgerLineSpanner #'color = #red
2237   \override Voice.Stem #'transparent = ##t
2238   \override NoteHead #'style = #'hufnagel.punctum
2239   \clef "hufnagel-do2"
2240   c
2241 @end lilypond
2242
2243 @item
2244 historic style hufnagel fa clef
2245 @tab
2246 @code{hufnagel-fa1}, @code{hufnagel-fa2}
2247 @tab
2248 @lilypond[fragment,relative=1,notime]
2249   \override Staff.StaffSymbol #'line-count = #4
2250   \override Staff.StaffSymbol #'color = #red
2251   \override Staff.LedgerLineSpanner #'color = #red
2252   \override Voice.Stem #'transparent = ##t
2253   \override NoteHead #'style = #'hufnagel.punctum
2254   \clef "hufnagel-fa2"
2255   c
2256 @end lilypond
2257
2258 @item
2259 historic style hufnagel combined do/fa clef
2260 @tab
2261 @code{hufnagel-do-fa}
2262 @tab
2263 @lilypond[fragment,relative=1,notime]
2264   \override Staff.StaffSymbol #'color = #red
2265   \override Staff.LedgerLineSpanner #'color = #red
2266   \override Voice.Stem #'transparent = ##t
2267   \override NoteHead #'style = #'hufnagel.punctum
2268   \clef "hufnagel-do-fa"
2269   c
2270 @end lilypond
2271 @end multitable
2272
2273
2274
2275 @emph{Modern style} means ``as is typeset in contemporary editions of
2276 transcribed mensural music''.
2277
2278 @emph{Petrucci style} means ``inspired by printings published by the
2279 famous engraver Petrucci (1466-1539)''.
2280
2281 @emph{Historic style} means ``as was typeset or written in historic
2282 editions (other than those of Petrucci)''.
2283
2284 @emph{Editio XXX style} means ``as is/was printed in Editio XXX''.
2285
2286 Petrucci used C clefs with differently balanced left-side vertical
2287 beams, depending on which staff line it is printed.
2288
2289 @seealso
2290
2291 In this manual: see @ref{Clef}.
2292
2293 @refbugs
2294
2295 The mensural g clef is mapped to the Petrucci g clef.
2296
2297
2298
2299 @node Ancient flags
2300 @subsection Ancient flags
2301
2302 @cindex flags
2303
2304
2305 Use the @code{flag-style} property of grob @internalsref{Stem} to
2306 select ancient flags.  Besides the @code{default} flag style,
2307 only the @code{mensural} style is supported
2308
2309 @lilypond[quote,fragment,raggedright,verbatim]
2310 \override Stem #'flag-style = #'mensural
2311 \override Stem #'thickness = #1.0
2312 \override NoteHead #'style = #'mensural
2313 \autoBeamOff
2314 c'8 d'8 e'8 f'8 c'16 d'16 e'16 f'16 c'32 d'32 e'32 f'32 s8
2315 c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
2316 @end lilypond
2317
2318 Note that the innermost flare of each mensural flag always is
2319 vertically aligned with a staff line.
2320
2321 There is no particular flag style for neo-mensural notation.  Hence,
2322 when typesetting the incipit of a transcribed piece of mensural
2323 music, the default flag style should be used.  There are no flags in
2324 Gregorian Chant notation.
2325
2326 @refbugs
2327
2328 The attachment of ancient flags to stems is slightly off due to a
2329 change in early 2.3.x.
2330
2331 Vertically aligning each flag with a staff line assumes that stems
2332 always end either exactly on or exactly in the middle between two
2333 staff lines.  This may not always be true when using advanced layout
2334 features of classical notation (which however are typically out of
2335 scope for mensural notation).
2336
2337 @node Ancient time signatures
2338 @subsection Ancient time signatures
2339
2340 @cindex time signatures
2341
2342
2343 There is limited support for mensural time signatures.   The
2344 glyphs are hard-wired to particular time fractions.  In other words,
2345 to get a particular mensural signature glyph with the @code{\time n/m}
2346 command, @code{n} and @code{m} have to be chosen according to the
2347 following table
2348
2349 @lilypond[quote,raggedright]
2350 \layout {
2351   indent = 0.0
2352   \context {
2353     \Staff
2354     \remove Staff_symbol_engraver
2355     \remove Clef_engraver
2356     \remove Time_signature_engraver
2357   }
2358 }
2359 {
2360   \set Score.timing = ##f
2361   \set Score.barAlways = ##t
2362   s_\markup { "\\time 4/4" }
2363   ^\markup { "       " \musicglyph #"timesig.neomensural44" }
2364   s
2365   s_\markup { "\\time 2/2" }
2366   ^\markup { "       " \musicglyph #"timesig.neomensural22" }
2367   s
2368   s_\markup { "\\time 6/4" }
2369   ^\markup { "       " \musicglyph #"timesig.neomensural64" }
2370   s
2371   s_\markup { "\\time 6/8" }
2372   ^\markup { "       " \musicglyph #"timesig.neomensural68" }
2373   \break
2374   s_\markup { "\\time 3/2" }
2375   ^\markup { "       " \musicglyph #"timesig.neomensural32" }
2376   s
2377   s_\markup { "\\time 3/4" }
2378   ^\markup { "       " \musicglyph #"timesig.neomensural34" }
2379   s
2380   s_\markup { "\\time 9/4" }
2381   ^\markup { "       " \musicglyph #"timesig.neomensural94" }
2382   s
2383   s_\markup { "\\time 9/8" }
2384   ^\markup { "       " \musicglyph #"timesig.neomensural98" }
2385   \break
2386   s_\markup { "\\time 4/8" }
2387   ^\markup { "       " \musicglyph #"timesig.neomensural48" }
2388   s
2389   s_\markup { "\\time 2/4" }
2390   ^\markup { "       " \musicglyph #"timesig.neomensural24" }
2391 }
2392 @end lilypond
2393
2394 Use the @code{style} property of grob @internalsref{TimeSignature} to
2395 select ancient time signatures.  Supported styles are
2396 @code{neomensural} and @code{mensural}.  The above table uses the
2397 @code{neomensural} style.  This style is appropriate for the
2398 incipit of transcriptions of mensural pieces.  The @code{mensural}
2399 style mimics the look of historical printings of the 16th century.
2400
2401 The following examples show the differences in style,
2402
2403 @lilypond[raggedright,fragment,relative=1,quote]
2404 {
2405   \fatText
2406
2407   \time 2/2
2408   c1^\markup { \hspace #-2.0 \typewriter default }
2409
2410   \override Staff.TimeSignature #'style = #'numbered
2411   \time 2/2
2412   c1^\markup { \hspace #-2.0 \typewriter numbered }
2413
2414   \override Staff.TimeSignature #'style = #'mensural
2415   \time 2/2
2416   c1^\markup { \hspace #-2.0 \typewriter mensural }
2417
2418   \override Staff.TimeSignature #'style = #'neomensural
2419   \time 2/2
2420   c1^\markup { \hspace #-2.0 \typewriter neomensural }
2421   \override Staff.TimeSignature #'style = #'single-digit
2422   \time 2/2
2423   c1^\markup { \hspace #-2.0 \typewriter single-digit }
2424 }
2425 @end lilypond
2426
2427 @seealso
2428
2429 This manual: @ref{Time signature} gives a general introduction to
2430 the use of time signatures.
2431
2432 @refbugs
2433
2434 Ratios of note durations do not change with the time signature.  For
2435 example, the ratio of 1 brevis = 3 semibrevis (tempus perfectum) must
2436 be made by hand, by setting
2437
2438 @example
2439 breveTP = #(ly:make-duration -1 0 3 2)
2440 @dots{}
2441 @{ c\breveTP f1 @}
2442 @end example
2443
2444 @noindent
2445 This sets @code{breveTP} to 3/2 times 2 = 3 times a whole note.
2446
2447 The @code{old6/8alt} symbol (an alternate symbol for 6/8) is not
2448 addressable with @code{\time}.  Use a @code{\markup} instead
2449
2450 @node Ancient articulations
2451 @subsection Ancient articulations
2452
2453 @cindex articulations
2454
2455 In addition to the standard articulation signs described in section
2456 @ref{Articulations}, articulation signs for ancient notation are
2457 provided.  These are specifically designed for use with notation in
2458 Editio Vaticana style.
2459
2460 @lilypond[quote,raggedright,verbatim]
2461 \include "gregorian-init.ly"
2462 \score {
2463   \context VaticanaVoice {
2464     \override Staff.StaffSymbol #'color = #red
2465     \override TextScript #'font-family = #'typewriter
2466     \override TextScript #'font-shape = #'upright
2467     \override Script #'padding = #-0.1
2468     a4\ictus_"ictus" s1
2469     a4\circulus_"circulus" s1
2470     a4\semicirculus_"semicirculus" s1 s
2471     a4\accentus_"accentus" s1
2472     \[ a4_"episem" \episemInitium \pes b \flexa a \episemFinis \]
2473   }
2474 }
2475 @end lilypond
2476
2477 @refbugs
2478
2479 Some articulations are vertically placed too closely to the
2480 correpsonding note heads.
2481
2482 @node Custodes
2483 @subsection Custodes
2484
2485 @cindex custos
2486 @cindex custodes
2487
2488 A @emph{custos} (plural: @emph{custodes}; Latin word for `guard') is a
2489 symbol that appears at the end of a staff.  It anticipates the pitch
2490 of the first note(s) of the following line thus helping the performer
2491 to manage line breaks during performance.
2492
2493 Custodes were frequently used in music notation until the 17th
2494 century.  Nowadays, they have survived only in a few particular forms
2495 of musical notation such as contemporary editions of Gregorian chant
2496 like the @emph{editio vaticana}.  There are different custos glyphs
2497 used in different flavors of notational style.
2498
2499 For typesetting custodes, just put a @internalsref{Custos_engraver} into the
2500 @internalsref{Staff} context when declaring the @code{\layout} block,
2501 as shown in the following example
2502
2503 @example
2504 \layout @{
2505   \context @{
2506     \Staff
2507     \consists Custos_engraver
2508     Custos \override #'style = #'mensural
2509   @}
2510 @}
2511 @end example
2512
2513 The result looks like this
2514
2515 @lilypond[quote,raggedright]
2516 \score {
2517 {
2518   a'1
2519   \override Staff.Custos #'style = #'mensural
2520   \break
2521   g'
2522 }
2523 \layout {
2524   \context { \Staff \consists Custos_engraver }
2525   }
2526 }
2527 @end lilypond
2528
2529 The custos glyph is selected by the @code{style} property.  The styles
2530 supported are @code{vaticana}, @code{medicaea}, @code{hufnagel}, and
2531 @code{mensural}.  They are demonstrated in the following fragment
2532
2533 @lilypond[quote,raggedright,fragment]
2534 \new Lyrics \lyricmode {
2535   \markup { \column {
2536     \typewriter "vaticana"
2537     \line { " " \musicglyph #"custodes.vaticana.u0" }
2538   } }
2539   \markup { \column {
2540     \typewriter "medicaea"
2541     \line { " " \musicglyph #"custodes.medicaea.u0" }
2542   }}
2543   \markup { \column {
2544     \typewriter "hufnagel"
2545     \line { " " \musicglyph #"custodes.hufnagel.u0" }
2546   }}
2547   \markup { \column {
2548     \typewriter "mensural"
2549     \line { " " \musicglyph #"custodes.mensural.u0" }
2550   }}
2551 }
2552 @end lilypond
2553
2554 @seealso
2555
2556 Program reference: @internalsref{Custos}.
2557
2558 Examples: @inputfileref{input/@/regression,custos@/.ly}.
2559
2560
2561 @node Divisiones
2562 @subsection Divisiones
2563
2564 @cindex divisio
2565 @cindex divisiones
2566 @cindex finalis
2567
2568 A @emph{divisio} (plural: @emph{divisiones}; Latin word for
2569 `division') is a staff context symbol that is used to structure
2570 Gregorian music into phrases and sections.  The musical meaning of
2571 @emph{divisio minima}, @emph{divisio maior}, and @emph{divisio maxima}
2572 can be characterized as short, medium, and long pause, somewhat like
2573 the breathmarks from @ref{Breath marks}.  The @emph{finalis} sign not
2574 only marks the end of a chant, but is also frequently used within a
2575 single antiphonal/responsorial chant to mark the end of each section.
2576
2577
2578 To use divisiones, include the file @file{gregorian@/-init@/.ly}.  It
2579 contains definitions that you can apply by just inserting
2580 @code{\divisioMinima}, @code{\divisioMaior}, @code{\divisioMaxima},
2581 and @code{\finalis} at proper places in the input.  Some editions use
2582 @emph{virgula} or @emph{caesura} instead of divisio minima.
2583 Therefore, @file{gregorian@/-init@/.ly} also defines @code{\virgula} and
2584 @code{\caesura}
2585
2586 @lilypondfile[quote,raggedright]{divisiones.ly}
2587
2588 @refcommands
2589
2590 @cindex @code{\virgula}
2591 @code{\virgula},
2592 @cindex @code{\caesura}
2593 @code{\caesura},
2594 @cindex @code{\divisioMinima}
2595 @code{\divisioMinima},
2596 @cindex @code{\divisioMaior}
2597 @code{\divisioMaior},
2598 @cindex @code{\divisioMaxima}
2599 @code{\divisioMaxima},
2600 @cindex @code{\finalis}
2601 @code{\finalis}.
2602
2603 @seealso
2604
2605 In this manual: @ref{Breath marks}.
2606
2607 Program reference: @internalsref{BreathingSign}, @internalsref{BreathingSignEvent}.
2608
2609 Examples: @inputfileref{input/@/test,divisiones@/.ly}.
2610
2611 @node Ligatures
2612 @subsection Ligatures
2613
2614 @cindex Ligatures
2615
2616 @c TODO: Should double check if I recalled things correctly when I wrote
2617 @c down the following paragraph by heart.
2618
2619 A ligature is a graphical symbol that represents at least two distinct
2620 notes.  Ligatures originally appeared in the manuscripts of Gregorian
2621 chant notation to denote ascending or descending sequences of notes.
2622
2623 Ligatures are entered by enclosing them in @code{\[} and @code{\]}.
2624 Some ligature styles may need additional input syntax specific for
2625 this particular type of ligature.  By default, the
2626 @internalsref{LigatureBracket} engraver just puts a square bracket
2627 above the ligature
2628
2629 @lilypond[quote,raggedright,verbatim]
2630 \transpose c c' {
2631   \[ g c a f d' \]
2632   a g f
2633   \[ e f a g \]
2634 }
2635 @end lilypond
2636
2637 To select a specific style of ligatures, a proper ligature engraver
2638 has to be added to the @internalsref{Voice} context, as explained in
2639 the following subsections.   Only white mensural ligatures
2640 are supported with certain limitations.
2641
2642
2643
2644 @refbugs
2645
2646 Ligatures need special spacing that has not yet been implemented.  As
2647 a result, there is too much space between ligatures most of the time,
2648 and line breaking often is unsatisfactory.  Also, lyrics do not
2649 correctly align with ligatures.
2650
2651 Accidentals must not be printed within a ligature, but instead need to
2652 be collected and printed in front of it.
2653
2654 Augmentum dots within ligatures are not handled correctly.
2655
2656
2657 @menu
2658 * White mensural ligatures::    
2659 * Gregorian square neumes ligatures::  
2660 @end menu
2661
2662 @node White mensural ligatures
2663 @subsubsection White mensural ligatures
2664
2665 @cindex Mensural ligatures
2666 @cindex White mensural ligatures
2667
2668 There is limited support for white mensural ligatures.
2669
2670 To engrave white mensural ligatures, in the layout block put the
2671 @internalsref{Mensural_ligature_engraver} into the
2672 @internalsref{Voice} context, and remove the
2673 @internalsref{Ligature_bracket_engraver}, like this
2674
2675 @example
2676 \layout @{
2677   \context @{
2678     \Voice
2679     \remove Ligature_bracket_engraver
2680     \consists Mensural_ligature_engraver
2681   @}
2682 @}
2683 @end example
2684
2685 There is no additional input language to describe the shape of a
2686 white mensural ligature.  The shape is rather determined solely from
2687 the pitch and duration of the enclosed notes.  While this approach may
2688 take a new user a while to get accustomed to, it has the great advantage
2689 that the full musical information of the ligature is known internally.
2690 This is not only required for correct MIDI output, but also allows for
2691 automatic transcription of the ligatures.
2692
2693 For example,
2694
2695 @example
2696 \set Score.timing = ##f
2697 \set Score.defaultBarType = "empty"
2698 \override NoteHead #'style = #'neomensural
2699 \override Staff.TimeSignature #'style = #'neomensural
2700 \clef "petrucci-g"
2701 \[ g\longa c\breve a\breve f\breve d'\longa \]
2702 s4
2703 \[ e1 f1 a\breve g\longa \]
2704 @end example
2705 @lilypond[quote,raggedright]
2706 \score {
2707   \transpose c c' {
2708     \set Score.timing = ##f
2709     \set Score.defaultBarType = "empty"
2710     \override NoteHead #'style = #'neomensural
2711     \override Staff.TimeSignature #'style = #'neomensural
2712     \clef "petrucci-g"
2713     \[ g\longa c\breve a\breve f\breve d'\longa \]
2714     s4
2715     \[ e1 f1 a\breve g\longa \]
2716   }
2717   \layout {
2718     \context {
2719       \Voice
2720       \remove Ligature_bracket_engraver
2721       \consists Mensural_ligature_engraver
2722     }
2723   }
2724 }
2725 @end lilypond
2726
2727 Without replacing @internalsref{Ligature_bracket_engraver} with
2728 @internalsref{Mensural_ligature_engraver}, the same music transcribes
2729 to the following
2730
2731 @lilypond[quote,raggedright]
2732 \transpose c c' {
2733   \set Score.timing = ##f
2734   \set Score.defaultBarType = "empty"
2735   \override NoteHead #'style = #'neomensural
2736   \override Staff.TimeSignature #'style = #'neomensural
2737   \clef "petrucci-g"
2738   \[ g\longa c\breve a\breve f\breve d'\longa \]
2739   s4
2740   \[ e1 f1 a\breve g\longa \]
2741 }
2742 @end lilypond
2743
2744 @refbugs
2745
2746 The implementation is experimental.  It may output strange warnings,
2747 incorrect results, and might even crash on more complex ligatures.
2748
2749 @node Gregorian square neumes ligatures
2750 @subsubsection Gregorian square neumes ligatures
2751
2752 @cindex Square neumes ligatures
2753 @cindex Gregorian square neumes ligatures
2754
2755 There is limited support for Gregorian square neumes notation
2756 (following the style of the Editio Vaticana).  Core ligatures can
2757 already be typeset, but essential issues for serious typesetting are
2758 still lacking, such as (among others) horizontal alignment of multiple
2759 ligatures, lyrics alignment and proper handling of accidentals.
2760
2761
2762 The following table contains the extended neumes table of the 2nd
2763 volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
2764 1983 by the monks of Solesmes.
2765
2766 @multitable @columnfractions .4 .2 .2 .2
2767
2768 @item
2769 @b{Neuma aut@*
2770 Neumarum Elementa}
2771 @tab
2772 @b{Figurae@*
2773 Rectae}
2774 @tab
2775 @b{Figurae@*
2776 Liquescentes@*
2777 Auctae}
2778 @tab
2779 @b{Figurae@*
2780 Liquescentes@*
2781 Deminutae}
2782
2783 @c TODO: \layout block is identical in all of the below examples.
2784 @c Therefore, it should somehow be included rather than duplicated all
2785 @c the time. --jr
2786
2787 @c why not make identifiers in ly/engraver-init.ly? --hwn
2788
2789 @c Because it's just used to typeset plain notes without
2790 @c a staff for demonstration purposes rather than something
2791 @c special of Gregorian chant notation. --jr
2792
2793 @item
2794 @code{1. Punctum}
2795 @tab
2796 @lilypond[staffsize=26,linewidth=1.5\cm]
2797 \include "gregorian-init.ly"
2798 \score {
2799   \transpose c c' {
2800     % Punctum
2801     \[ b \]
2802     \noBreak s^\markup {"a"} \noBreak
2803
2804     % Punctum Inclinatum
2805     \[ \inclinatum b \]
2806     \noBreak s^\markup {"b"}
2807   }
2808 \layout { \neumeDemoLayout }}
2809 @end lilypond
2810 @tab
2811 @lilypond[staffsize=26,linewidth=2.5\cm]
2812 \include "gregorian-init.ly"
2813 \score {
2814   \transpose c c' {
2815     % Punctum Auctum Ascendens
2816     \[ \auctum \ascendens b \]
2817     \noBreak s^\markup {"c"} \noBreak
2818
2819     % Punctum Auctum Descendens
2820     \[ \auctum \descendens b \]
2821     \noBreak s^\markup {"d"} \noBreak
2822
2823     % Punctum Inclinatum Auctum
2824     \[ \inclinatum \auctum b \]
2825     \noBreak s^\markup {"e"}
2826   }
2827 \layout { \neumeDemoLayout }}
2828 @end lilypond
2829 @tab
2830 @lilypond[staffsize=26,linewidth=1.0\cm]
2831 \include "gregorian-init.ly"
2832 \score {
2833   \transpose c c' {
2834     % Punctum Inclinatum Parvum
2835     \[ \inclinatum \deminutum b \]
2836     \noBreak s^\markup {"f"}
2837   }
2838 \layout { \neumeDemoLayout }}
2839 @end lilypond
2840
2841 @item
2842 @code{2. Virga}
2843 @tab
2844 @lilypond[staffsize=26,linewidth=1.0\cm]
2845 \include "gregorian-init.ly"
2846 \score {
2847   \transpose c c' {
2848     % Virga
2849     \[ \virga b \]
2850     \noBreak s^\markup {"g"}
2851   }
2852 \layout { \neumeDemoLayout }}
2853 @end lilypond
2854 @tab
2855 @tab
2856
2857 @item
2858 @code{3. Apostropha vel Stropha}
2859 @tab
2860 @lilypond[staffsize=26,linewidth=1.0\cm]
2861 \include "gregorian-init.ly"
2862 \score {
2863   \transpose c c' {
2864     % Stropha
2865     \[ \stropha b \]
2866     \noBreak s^\markup {"h"}
2867   }
2868 \layout { \neumeDemoLayout }}
2869 @end lilypond
2870 @tab
2871 @lilypond[staffsize=26,linewidth=1.0\cm]
2872 \include "gregorian-init.ly"
2873 \score {
2874   \transpose c c' {
2875     % Stropha Aucta
2876     \[ \stropha \auctum b \]
2877     \noBreak s^\markup {"i"}
2878   }
2879 \layout { \neumeDemoLayout }}
2880 @end lilypond
2881 @tab
2882
2883 @item
2884 @code{4. Oriscus}
2885 @tab
2886 @lilypond[staffsize=26,linewidth=1.0\cm]
2887 \include "gregorian-init.ly"
2888 \score {
2889   \transpose c c' {
2890     % Oriscus
2891     \[ \oriscus b \]
2892     \noBreak s^\markup {"j"}
2893   }
2894 \layout { \neumeDemoLayout }}
2895 @end lilypond
2896 @tab
2897 @tab
2898
2899 @item
2900 @code{5. Clivis vel Flexa}
2901 @tab
2902 @lilypond[staffsize=26,linewidth=1.0\cm]
2903 \include "gregorian-init.ly"
2904 \score {
2905   \transpose c c' {
2906     % Clivis vel Flexa
2907     \[ b \flexa g \]
2908     s^\markup {"k"}
2909   }
2910 \layout { \neumeDemoLayout }}
2911 @end lilypond
2912 @tab
2913 @lilypond[staffsize=26,linewidth=2.0\cm]
2914 \include "gregorian-init.ly"
2915 \score {
2916   \transpose c c' {
2917     % Clivis Aucta Descendens
2918     \[ b \flexa \auctum \descendens g \]
2919     \noBreak s^\markup {"l"} \noBreak
2920
2921     % Clivis Aucta Ascendens
2922     \[ b \flexa \auctum \ascendens g \]
2923     \noBreak s^\markup {"m"}
2924   }
2925 \layout { \neumeDemoLayout }}
2926 @end lilypond
2927 @tab
2928 @lilypond[staffsize=26,linewidth=1.0\cm]
2929 \include "gregorian-init.ly"
2930 \score {
2931   \transpose c c' {
2932     % Cephalicus
2933     \[ b \flexa \deminutum g \]
2934     s^\markup {"n"}
2935   }
2936 \layout { \neumeDemoLayout }}
2937 @end lilypond
2938
2939 @item
2940 @code{6. Podatus vel Pes}
2941 @tab
2942 @lilypond[staffsize=26,linewidth=1.0\cm]
2943 \include "gregorian-init.ly"
2944 \score {
2945   \transpose c c' {
2946     % Podatus vel Pes
2947     \[ g \pes b \]
2948     s^\markup {"o"}
2949   }
2950 \layout { \neumeDemoLayout }}
2951 @end lilypond
2952 @tab
2953 @lilypond[staffsize=26,linewidth=2.0\cm]
2954 \include "gregorian-init.ly"
2955 \score {
2956   \transpose c c' {
2957     % Pes Auctus Descendens
2958     \[ g \pes \auctum \descendens b \]
2959     \noBreak s^\markup {"p"} \noBreak
2960
2961     % Pes Auctus Ascendens
2962     \[ g \pes \auctum \ascendens b \]
2963     \noBreak s^\markup {"q"}
2964   }
2965 \layout { \neumeDemoLayout }}
2966 @end lilypond
2967 @tab
2968 @lilypond[staffsize=26,linewidth=1.0\cm]
2969 \include "gregorian-init.ly"
2970 \score {
2971   \transpose c c' {
2972     % Epiphonus
2973     \[ g \pes \deminutum b \]
2974     s^\markup {"r"}
2975   }
2976 \layout { \neumeDemoLayout }}
2977 @end lilypond
2978
2979 @item
2980 @code{7. Pes Quassus}
2981 @tab
2982 @lilypond[staffsize=26,linewidth=1.0\cm]
2983 \include "gregorian-init.ly"
2984 \score {
2985   \transpose c c' {
2986     % Pes Quassus
2987     \[ \oriscus g \pes \virga b \]
2988     s^\markup {"s"}
2989   }
2990 \layout { \neumeDemoLayout }}
2991 @end lilypond
2992 @tab
2993 @lilypond[staffsize=26,linewidth=1.0\cm]
2994 \include "gregorian-init.ly"
2995 \score {
2996   \transpose c c' {
2997     % Pes Quassus Auctus Descendens
2998     \[ \oriscus g \pes \auctum \descendens b \]
2999     s^\markup {"t"}
3000   }
3001 \layout { \neumeDemoLayout }}
3002 @end lilypond
3003 @tab
3004
3005 @item
3006 @code{8. Quilisma Pes}
3007 @tab
3008 @lilypond[staffsize=26,linewidth=1.0\cm]
3009 \include "gregorian-init.ly"
3010 \score {
3011   \transpose c c' {
3012     % Quilisma Pes
3013     \[ \quilisma g \pes b \]
3014     s^\markup {"u"}
3015   }
3016 \layout { \neumeDemoLayout }}
3017 @end lilypond
3018 @tab
3019 @lilypond[staffsize=26,linewidth=1.0\cm]
3020 \include "gregorian-init.ly"
3021 \score {
3022   \transpose c c' {
3023     % Quilisma Pes Auctus Descendens
3024     \[ \quilisma g \pes \auctum \descendens b \]
3025     s^\markup {"v"}
3026   }
3027 \layout { \neumeDemoLayout }}
3028 @end lilypond
3029 @tab
3030
3031 @item
3032 @code{9. Podatus Initio Debilis}
3033 @tab
3034 @lilypond[staffsize=26,linewidth=1.0\cm]
3035 \include "gregorian-init.ly"
3036 \score {
3037   \transpose c c' {
3038     % Pes Initio Debilis
3039     \[ \deminutum g \pes b \]
3040     s^\markup {"w"}
3041   }
3042 \layout { \neumeDemoLayout }}
3043 @end lilypond
3044 @tab
3045 @lilypond[staffsize=26,linewidth=1.0\cm]
3046 \include "gregorian-init.ly"
3047 \score {
3048   \transpose c c' {
3049     % Pes Auctus Descendens Initio Debilis
3050     \[ \deminutum g \pes \auctum \descendens b \]
3051     s^\markup {"x"}
3052   }
3053 \layout { \neumeDemoLayout }}
3054 @end lilypond
3055 @tab
3056
3057 @item
3058 @code{10. Torculus}
3059 @tab
3060 @lilypond[staffsize=26,linewidth=1.0\cm]
3061 \include "gregorian-init.ly"
3062 \score {
3063   \transpose c c' {
3064     % Torculus
3065     \[ a \pes b \flexa g \]
3066     s^\markup {"y"}
3067   }
3068 \layout { \neumeDemoLayout }}
3069 @end lilypond
3070 @tab
3071 @lilypond[staffsize=26,linewidth=1.0\cm]
3072 \include "gregorian-init.ly"
3073 \score {
3074   \transpose c c' {
3075     % Torculus Auctus Descendens
3076     \[ a \pes b \flexa \auctum \descendens g \]
3077     s^\markup {"z"}
3078   }
3079 \layout { \neumeDemoLayout }}
3080 @end lilypond
3081 @tab
3082 @lilypond[staffsize=26,linewidth=1.0\cm]
3083 \include "gregorian-init.ly"
3084 \score {
3085   \transpose c c' {
3086     % Torculus Deminutus
3087     \[ a \pes b \flexa \deminutum g \]
3088     s^\markup {"A"}
3089   }
3090 \layout { \neumeDemoLayout }}
3091 @end lilypond
3092
3093 @item
3094 @code{11. Torculus Initio Debilis}
3095 @tab
3096 @lilypond[staffsize=26,linewidth=1.0\cm]
3097 \include "gregorian-init.ly"
3098 \score {
3099   \transpose c c' {
3100     % Torculus Initio Debilis
3101     \[ \deminutum a \pes b \flexa g \]
3102     s^\markup {"B"}
3103   }
3104 \layout { \neumeDemoLayout }}
3105 @end lilypond
3106 @tab
3107 @lilypond[staffsize=26,linewidth=1.0\cm]
3108 \include "gregorian-init.ly"
3109 \score {
3110   \transpose c c' {
3111     % Torculus Auctus Descendens Initio Debilis
3112     \[ \deminutum a \pes b \flexa \auctum \descendens g \]
3113     s^\markup {"C"}
3114   }
3115 \layout { \neumeDemoLayout }}
3116 @end lilypond
3117 @tab
3118 @lilypond[staffsize=26,linewidth=1.0\cm]
3119 \include "gregorian-init.ly"
3120 \score {
3121   \transpose c c' {
3122     % Torculus Deminutus Initio Debilis
3123     \[ \deminutum a \pes b \flexa \deminutum g \]
3124     s^\markup {"D"}
3125   }
3126 \layout { \neumeDemoLayout }}
3127 @end lilypond
3128
3129 @item
3130 @code{12. Porrectus}
3131 @tab
3132 @lilypond[staffsize=26,linewidth=1.0\cm]
3133 \include "gregorian-init.ly"
3134 \score {
3135   \transpose c c' {
3136     % Porrectus
3137     \[ a \flexa g \pes b \]
3138     s^\markup {"E"}
3139   }
3140 \layout { \neumeDemoLayout }}
3141 @end lilypond
3142 @tab
3143 @lilypond[staffsize=26,linewidth=1.0\cm]
3144 \include "gregorian-init.ly"
3145 \score {
3146   \transpose c c' {
3147     % Porrectus Auctus Descendens
3148     \[ a \flexa g \pes \auctum \descendens b \]
3149     s^\markup {"F"}
3150   }
3151 \layout { \neumeDemoLayout }}
3152 @end lilypond
3153 @tab
3154 @lilypond[staffsize=26,linewidth=1.0\cm]
3155 \include "gregorian-init.ly"
3156 \score {
3157   \transpose c c' {
3158     % Porrectus Deminutus
3159     \[ a \flexa g \pes \deminutum b \]
3160     s^\markup {"G"}
3161   }
3162 \layout { \neumeDemoLayout }}
3163 @end lilypond
3164
3165 @item
3166 @code{13. Climacus}
3167 @tab
3168 @lilypond[staffsize=26,linewidth=1.0\cm]
3169 \include "gregorian-init.ly"
3170 \score {
3171   \transpose c c' {
3172     % Climacus
3173     \[ \virga b \inclinatum a \inclinatum g \]
3174     s^\markup {"H"}
3175   }
3176   \layout { \neumeDemoLayout }
3177 }
3178 @end lilypond
3179 @tab
3180 @lilypond[staffsize=26,linewidth=1.0\cm]
3181 \include "gregorian-init.ly"
3182 \score {
3183   \transpose c c' {
3184     % Climacus Auctus
3185     \[ \virga b \inclinatum a \inclinatum \auctum g \]
3186     s^\markup {"I"}
3187   }
3188 \layout { \neumeDemoLayout }}
3189 @end lilypond
3190 @tab
3191 @lilypond[staffsize=26,linewidth=1.0\cm]
3192 \include "gregorian-init.ly"
3193 \score {
3194   \transpose c c' {
3195     % Climacus Deminutus
3196     \[ \virga b \inclinatum a \inclinatum \deminutum g \]
3197     s^\markup {"J"}
3198   }
3199 \layout { \neumeDemoLayout }}
3200 @end lilypond
3201
3202 @item
3203 @code{14. Scandicus}
3204 @tab
3205 @lilypond[staffsize=26,linewidth=1.0\cm]
3206 \include "gregorian-init.ly"
3207 \score {
3208   \transpose c c' {
3209     % Scandicus
3210     \[ g \pes a \virga b \]
3211     s^\markup {"K"}
3212   }
3213 \layout { \neumeDemoLayout }}
3214 @end lilypond
3215 @tab
3216 @lilypond[staffsize=26,linewidth=1.0\cm]
3217 \include "gregorian-init.ly"
3218 \score {
3219   \transpose c c' {
3220     % Scandicus Auctus Descendens
3221     \[ g \pes a \pes \auctum \descendens b \]
3222     s^\markup {"L"}
3223   }
3224 \layout { \neumeDemoLayout }}
3225 @end lilypond
3226 @tab
3227 @lilypond[staffsize=26,linewidth=1.0\cm]
3228 \include "gregorian-init.ly"
3229 \score {
3230   \transpose c c' {
3231     % Scandicus Deminutus
3232     \[ g \pes a \pes \deminutum b \]
3233     s^\markup {"M"}
3234   }
3235 \layout { \neumeDemoLayout }}
3236 @end lilypond
3237
3238 @item
3239 @code{15. Salicus}
3240 @tab
3241 @lilypond[staffsize=26,linewidth=1.0\cm]
3242 \include "gregorian-init.ly"
3243 \score {
3244   \transpose c c' {
3245     % Salicus
3246     \[ g \oriscus a \pes \virga b \]
3247     s^\markup {"N"}
3248   }
3249 \layout { \neumeDemoLayout }}
3250 @end lilypond
3251 @tab
3252 @lilypond[staffsize=26,linewidth=1.0\cm]
3253 \include "gregorian-init.ly"
3254 \score {
3255   \transpose c c' {
3256     % Salicus Auctus Descendens
3257     \[ g \oriscus a \pes \auctum \descendens b \]
3258     s^\markup {"O"}
3259   }
3260 \layout { \neumeDemoLayout }}
3261 @end lilypond
3262 @tab
3263
3264 @item
3265 @code{16. Trigonus}
3266 @tab
3267 @lilypond[staffsize=26,linewidth=1.0\cm]
3268 \include "gregorian-init.ly"
3269 \score {
3270   \transpose c c' {
3271     % Trigonus
3272     \[ \stropha b \stropha b \stropha a \]
3273     s^\markup {"P"}
3274   }
3275   \layout { \neumeDemoLayout }
3276 }
3277 @end lilypond
3278 @tab
3279 @tab
3280
3281 @end multitable
3282
3283
3284 Unlike most other neumes notation systems, the input language for
3285 neumes does not reflect the typographical appearance, but is designed
3286 to focus on musical meaning.  For example, @code{\[ a \pes b
3287 \flexa g \]} produces a Torculus consisting of three Punctum heads,
3288 while @code{\[ a \flexa g \pes b \]} produces a Porrectus with a
3289 curved flexa shape and only a single Punctum head.  There is no
3290 command to explicitly typeset the curved flexa shape; the decision of
3291 when to typeset a curved flexa shape is based on the musical
3292 input.  The idea of this approach is to separate the musical aspects
3293 of the input from the notation style of the output.  This way, the
3294 same input can be reused to typeset the same music in a different
3295 style of Gregorian chant notation.
3296
3297 The following table shows the code fragments that produce the
3298 ligatures in the above neumes table.  The letter in the first column
3299 in each line of the below table indicates to which ligature in the
3300 above table it refers.  The second column gives the name of the
3301 ligature.  The third column shows the code fragment that produces this
3302 ligature, using @code{g}, @code{a}, and @code{b} as example pitches.
3303
3304 @multitable @columnfractions .02 .31 .67
3305 @item
3306 @b{#}
3307 @tab
3308 @b{Name}
3309 @tab
3310 @b{Input Language}
3311
3312 @item
3313 a
3314 @tab
3315 Punctum
3316 @tab
3317 @code{\[ b \]}
3318
3319 @item
3320 b
3321 @tab
3322 Punctum Inclinatum
3323 @tab
3324 @code{\[ \inclinatum b \]}
3325
3326 @item
3327 c
3328 @tab
3329 Punctum Auctum@*
3330 Ascendens
3331 @tab
3332 @code{\[ \auctum \ascendens b \]}
3333
3334 @item
3335 d
3336 @tab
3337 Punctum Auctum@*
3338 Descendens
3339 @tab
3340 @code{\[ \auctum \descendens b \]}
3341
3342 @item
3343 e
3344 @tab
3345 Punctum Inclinatum@*
3346 Auctum
3347 @tab
3348 @code{\[ \inclinatum \auctum b \]}
3349
3350 @item
3351 f
3352 @tab
3353 Punctum Inclinatum@*
3354 Parvum @tab
3355 @code{\[ \inclinatum \deminutum b \]}
3356
3357 @item
3358 g
3359 @tab
3360 Virga
3361 @tab
3362 @code{\[ \virga b \]}
3363
3364 @item
3365 h
3366 @tab
3367 Stropha
3368 @tab
3369 @code{\[ \stropha b \]}
3370
3371 @item
3372 i
3373 @tab
3374 Stropha Aucta
3375 @tab
3376 @code{\[ \stropha \auctum b \]}
3377
3378 @item
3379 j
3380 @tab
3381 Oriscus
3382 @tab
3383 @code{\[ \oriscus b \]}
3384
3385 @item
3386 k
3387 @tab
3388 Clivis vel Flexa
3389 @tab
3390 @code{\[ b \flexa g \]}
3391
3392 @item
3393 l
3394 @tab
3395 Clivis Aucta@*
3396 Descendens
3397 @tab
3398 @code{\[ b \flexa \auctum \descendens g \]}
3399
3400 @item
3401 m
3402 @tab
3403 Clivis Aucta@*
3404 Ascendens
3405 @tab
3406 @code{\[ b \flexa \auctum \ascendens g \]}
3407
3408 @item
3409 n
3410 @tab
3411 Cephalicus
3412 @tab
3413 @code{\[ b \flexa \deminutum g \]}
3414
3415 @item
3416 o
3417 @tab
3418 Podatus vel Pes
3419 @tab
3420 @code{\[ g \pes b \]}
3421
3422 @item
3423 p
3424 @tab
3425 Pes Auctus@*
3426 Descendens
3427 @tab
3428 @code{\[ g \pes \auctum \descendens b \]}
3429
3430 @item
3431 q
3432 @tab
3433 Pes Auctus@*
3434 Ascendens
3435 @tab
3436 @code{\[ g \pes \auctum \ascendens b \]}
3437
3438 @item
3439 r
3440 @tab
3441 Epiphonus
3442 @tab
3443 @code{\[ g \pes \deminutum b \]}
3444
3445 @item
3446 s
3447 @tab
3448 Pes Quassus
3449 @tab
3450 @code{\[ \oriscus g \pes \virga b \]}
3451
3452 @item
3453 t
3454 @tab
3455 Pes Quassus@*
3456 Auctus Descendens @tab
3457 @code{\[ \oriscus g \pes \auctum \descendens b \]}
3458
3459 @item
3460 u
3461 @tab
3462 Quilisma Pes
3463 @tab
3464 @code{\[ \quilisma g \pes b \]}
3465
3466 @item
3467 v
3468 @tab
3469 Quilisma Pes@*
3470 Auctus Descendens
3471 @tab
3472 @code{\[ \quilisma g \pes \auctum \descendens b \]}
3473
3474 @item
3475 w
3476 @tab
3477 Pes Initio Debilis
3478 @tab
3479 @code{\[ \deminutum g \pes b \]}
3480
3481 @item
3482 x
3483 @tab
3484 Pes Auctus Descendens@*
3485 Initio Debilis
3486 @tab
3487 @code{\[ \deminutum g \pes \auctum \descendens b \]}
3488
3489 @item
3490 y
3491 @tab
3492 Torculus
3493 @tab
3494 @code{\[ a \pes b \flexa g \]}
3495
3496 @item
3497 z
3498 @tab
3499 Torculus Auctus@*
3500 Descendens
3501 @tab
3502 @code{\[ a \pes b \flexa \auctum \descendens g \]}
3503
3504 @item
3505 A
3506 @tab
3507 Torculus Deminutus
3508 @tab
3509 @code{\[ a \pes b \flexa \deminutum g \]}
3510
3511 @item
3512 B
3513 @tab
3514 Torculus Initio Debilis
3515 @tab
3516 @code{\[ \deminutum a \pes b \flexa g \]}
3517
3518 @item
3519 C
3520 @tab
3521 Torculus Auctus@*
3522 Descendens Initio Debilis
3523 @tab
3524 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
3525
3526 @item
3527 D
3528 @tab
3529 Torculus Deminutus@*
3530 Initio Debilis
3531 @tab
3532 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
3533
3534 @item
3535 E
3536 @tab
3537 Porrectus
3538 @tab
3539 @code{\[ a \flexa g \pes b \]}
3540
3541 @item
3542 F
3543 @tab
3544 Porrectus Auctus@*
3545 Descendens
3546 @tab
3547 @code{\[ a \flexa g \pes \auctum \descendens b \]}
3548
3549 @item
3550 G
3551 @tab
3552 Porrectus Deminutus
3553 @tab
3554 @code{\[ a \flexa g \pes \deminutum b \]}
3555
3556 @item
3557 H
3558 @tab
3559 Climacus
3560 @tab
3561 @code{\[ \virga b \inclinatum a \inclinatum g \]}
3562
3563 @item
3564 I
3565 @tab
3566 Climacus Auctus
3567 @tab
3568 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
3569
3570 @item
3571 J
3572 @tab
3573 Climacus Deminutus
3574 @tab
3575 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
3576
3577 @item
3578 K
3579 @tab
3580 Scandicus
3581 @tab
3582 @code{\[ g \pes a \virga b \]}
3583
3584 @item
3585 L
3586 @tab
3587 Scandicus Auctus@*
3588 Descendens
3589 @tab
3590 @code{\[ g \pes a \pes \auctum \descendens b \]}
3591
3592 @item
3593 M
3594 @tab
3595 Scandicus Deminutus
3596 @tab
3597 @code{\[ g \pes a \pes \deminutum b \]}
3598
3599 @item
3600 N
3601 @tab
3602 Salicus
3603 @tab
3604 @code{\[ g \oriscus a \pes \virga b \]}
3605
3606 @item
3607 O
3608 @tab
3609 Salicus Auctus Descendens
3610 @tab
3611 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
3612
3613 @item
3614 P
3615 @tab
3616 Trigonus
3617 @tab
3618 @code{\[ \stropha b \stropha b \stropha a \]}
3619 @end multitable
3620
3621 @refcommands
3622
3623 The following head prefixes are supported
3624
3625 @cindex @code{\virga}
3626 @code{\virga},
3627 @cindex @code{\stropha}
3628 @code{\stropha},
3629 @cindex @code{\inclinatum}
3630 @code{\inclinatum},
3631 @cindex @code{\auctum}
3632 @code{\auctum},
3633 @cindex @code{\descendens}
3634 @code{\descendens},
3635 @cindex @code{\ascendens}
3636 @code{\ascendens},
3637 @cindex @code{\oriscus}
3638 @code{\oriscus},
3639 @cindex @code{\quilisma}
3640 @code{\quilisma},
3641 @cindex @code{\deminutum}
3642 @code{\deminutum}.
3643
3644 Head prefixes can be accumulated, though restrictions apply.  For
3645 example, either @code{\descendens} or @code{\ascendens} can be applied
3646 to a head, but not both to the same head.
3647
3648 @cindex @code{\pes}
3649 @cindex @code{\flexa}
3650 Two adjacent heads can be tied together with the @code{\pes} and
3651 @code{\flexa} infix commands for a rising and falling line of melody,
3652 respectively.
3653
3654
3655
3656 @node Gregorian Chant contexts
3657 @subsection Gregorian Chant contexts
3658
3659 @cindex VaticanaVoiceContext
3660 @cindex VaticanaStaffContext
3661
3662 The predefined @code{VaticanaVoiceContext} and
3663 @code{VaticanaStaffContext} can be used to engrave a piece of
3664 Gregorian Chant in the style of the Editio Vaticana.  These contexts
3665 initialize all relevant context properties and grob properties to
3666 proper values, so you can immediately go ahead entering the chant, as
3667 the following excerpt demonstrates
3668
3669 @lilypond[quote,raggedright,verbatim]
3670 \include "gregorian-init.ly"
3671 \score {
3672   <<
3673     \context VaticanaVoice = "cantus" {
3674       \override Staff.StaffSymbol #'color = #red
3675       \override Score.BarNumber #'transparent = ##t {
3676         \[ c'\melisma c' \flexa a \]
3677         \[ a \flexa \deminutum g\melismaEnd \]
3678         f \divisioMinima
3679         \[ f\melisma \pes a c' c' \pes d'\melismaEnd \]
3680         c' \divisioMinima \break
3681         \[ c'\melisma c' \flexa a \]
3682         \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
3683       }
3684     }
3685     \lyricsto "cantus" \new Lyrics {
3686       San- ctus, San- ctus, San- ctus
3687     }
3688   >>
3689 }
3690 @end lilypond
3691
3692
3693 @node Mensural contexts
3694 @subsection Mensural contexts
3695
3696 @cindex MensuralVoiceContext
3697 @cindex MensuralStaffContext
3698
3699 The predefined @code{MensuralVoiceContext} and
3700 @code{MensuralStaffContext} can be used to engrave a piece in mensural
3701 style.  These contexts initialize all relevant context properties and
3702 grob properties to proper values, so you can immediately go ahead
3703 entering the chant, as the following excerpt demonstrates
3704
3705 @lilypond[quote,raggedright,verbatim]
3706 \score {
3707   <<
3708     \context MensuralVoice = "discantus" \transpose c c' {
3709       \override Score.BarNumber #'transparent = ##t {
3710         c'1\melisma bes a g\melismaEnd
3711         f\breve
3712         \[ f1\melisma a c'\breve d'\melismaEnd \]
3713         c'\longa
3714         c'\breve\melisma a1 g1\melismaEnd
3715         fis\longa^\signumcongruentiae
3716       }
3717     }
3718     \lyricsto "discantus" \new Lyrics {
3719       San -- ctus, San -- ctus, San -- ctus
3720     }
3721   >>
3722 }
3723 @end lilypond
3724
3725
3726 @node Figured bass
3727 @subsection Figured bass
3728
3729 @cindex Basso continuo
3730
3731 @c TODO: musicological blurb about FB
3732
3733
3734 LilyPond has limited support for figured bass
3735
3736 @lilypond[quote,raggedright,verbatim,fragment]
3737 <<
3738   \context Voice { \clef bass dis4 c d ais g fis}
3739   \context FiguredBass \figuremode {
3740     < 6 >4 < 7 >8 < 6+ [_!] >
3741     < 6 >4 <6 5 [3+] >
3742     < _ >4 < 6 >4
3743   }
3744 >>
3745 @end lilypond
3746
3747 The support for figured bass consists of two parts: there is an input
3748 mode, introduced by @code{\figuremode}, where you can enter bass figures
3749 as numbers, and there is a context called @internalsref{FiguredBass} that
3750 takes care of making @internalsref{BassFigure} objects.
3751
3752 In figures input mode, a group of bass figures is delimited by
3753 @code{<} and @code{>}.  The duration is entered after the @code{>}
3754 @example
3755 <4 6>
3756 @end example
3757 @lilypond[quote,raggedright,fragment]
3758 \context FiguredBass
3759 \figuremode { <4 6> }
3760 @end lilypond
3761
3762 Accidentals are added when you append @code{-}, @code{!}, and @code{+}
3763 to the numbers
3764
3765 @example
3766 <4- 6+ 7!>
3767 @end example
3768 @lilypond[quote,raggedright,fragment]
3769 \context FiguredBass
3770 \figuremode { <4- 6+ 7!> }
3771 @end lilypond
3772
3773 Spaces or dashes may be inserted by using @code{_}.  Brackets are
3774 introduced with @code{[} and @code{]}
3775
3776 @example
3777 < [4 6] 8 [_! 12] >
3778 @end example
3779 @lilypond[quote,raggedright,fragment]
3780 \context FiguredBass
3781 \figuremode { < [4 6] 8 [_! 12] > }
3782 @end lilypond
3783
3784 Although the support for figured bass may superficially resemble chord
3785 support, it works much simpler.  The @code{\figuremode} mode simply
3786 stores the numbers and @internalsref{FiguredBass} context prints
3787 them as entered.  There is no conversion to pitches and no
3788 realizations of the bass are played in the MIDI file.
3789
3790 Internally, the code produces markup texts.  You can use any of the
3791 markup text properties to override formatting.  For example, the
3792 vertical spacing of the figures may be set with @code{baseline-skip}.
3793
3794 @seealso
3795
3796 Program reference: @internalsref{BassFigureEvent} music,
3797 @internalsref{BassFigure} object, and @internalsref{FiguredBass} context.
3798
3799 @refbugs
3800
3801 Slash notation for alterations is not supported.
3802
3803
3804
3805 @node Other instrument specific notation
3806 @section Other instrument specific notation
3807
3808 This section includes extra information for writing for instruments.
3809
3810 @menu
3811 * Artificial harmonics (strings)::  
3812 * Stopped notes (guitar)::      
3813 @end menu
3814
3815 @node Artificial harmonics (strings)
3816 @subsection Artificial harmonics (strings)
3817
3818 @cindex artificial harmonics
3819
3820 Artificial harmonics are notated with a different notehead style.  They
3821 are entered by marking the harmonic pitch with @code{\harmonic}.
3822
3823 @lilypond[raggedright,verbatim,quote,fragment,relative=1]
3824 <c g'\harmonic>4
3825 @end lilypond
3826
3827
3828 @node Stopped notes (guitar)
3829 @subsection Stopped notes (guitar)
3830
3831 Stopped (X) note heads are used in guitar music to signal a place where the 
3832 guitarist must play a certain note or chord, with its fingers just 
3833 touching the strings instead of fully pressing them.  This gives the sound a 
3834 percussive noise-like sound that still maintains part of the original pitch.
3835
3836 Finger stopped technique is extremely important for rhythm and rock-heavy 
3837 metal guitarists; the former often uses barrĂ© based stopped chords to 
3838 intermix harmony with rythm, the latters use finger stopping to mute power 
3839 chords, or charge them with more expression in close-tied power chord stums.
3840
3841 It is also used (even if rarely) in classic guitar music, generally in the 
3842 melodic line, to provide some rithmic pattern right in the melody.
3843
3844 @lilypond[raggedright,verbatim,quote,fragment,relative=2]
3845 c4 d
3846 \override NoteHead #'style = #'cross
3847 e f
3848 \revert NoteHead #'style
3849 e d
3850 @end lilypond
3851
3852