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