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