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