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