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