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