]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/vocal.itely
Doc: Clarify Context creation (3006)
[lilypond.git] / Documentation / notation / vocal.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  For details, see the Contributors'
7     Guide, node Updating translation committishes..
8 @end ignore
9
10 @c \version "2.17.6"
11
12 @node Vocal music
13 @section Vocal music
14
15 @lilypondfile[quote]{vocal-headword.ly}
16
17 This section explains how to typeset vocal music, and make sure
18 that the lyrics will be aligned with the notes of their melody.
19
20 @menu
21 * Common notation for vocal music::
22 * Techniques specific to lyrics::
23 * Stanzas::
24 * Songs::
25 * Choral::
26 * Opera and stage musicals::
27 * Chants psalms and hymns::
28 * Ancient vocal music::
29
30 @end menu
31
32
33 @node Common notation for vocal music
34 @subsection Common notation for vocal music
35
36 This section discusses issues common to most types of vocal music.
37
38 @menu
39 * References for vocal music::
40 * Entering lyrics::
41 * Aligning lyrics to a melody::
42 * Automatic syllable durations::
43 * Manual syllable durations::
44 * Multiple syllables to one note::
45 * Multiple notes to one syllable::
46 * Extenders and hyphens::
47 @end menu
48
49
50 @node References for vocal music
51 @unnumberedsubsubsec References for vocal music
52
53 This section indicates where to find details of notation issues
54 that may arise in any type of vocal music.
55
56 @itemize
57
58 @item
59 Most styles of vocal music use written text as lyrics.  An
60 introduction to this notation is to be found in
61 @rlearning{Setting simple songs}.
62
63 @item
64 Vocal music is likely to require the use of @code{markup} mode,
65 either for lyrics or for other text elements (characters' names,
66 etc.)  This syntax is described in @ref{Text markup introduction}.
67
68 @item
69 @notation{Ambitus} may be added at the beginning of vocal staves,
70 as explained in @ref{Ambitus}.
71
72 @item
73 Dynamic markings by default are placed below the staff, but in
74 choral music they are usually placed above the staff in order to
75 avoid the lyrics, as explained in @ref{Score layouts for choral}.
76
77 @end itemize
78
79 @seealso
80 Music Glossary:
81 @rglos{ambitus}.
82
83 Learning Manual:
84 @rlearning{Setting simple songs}.
85
86 Notation Reference:
87 @ref{Text markup introduction},
88 @ref{Ambitus},
89 @ref{Score layouts for choral}.
90
91 Snippets:
92 @rlsr{Vocal music}.
93
94
95 @node Entering lyrics
96 @unnumberedsubsubsec Entering lyrics
97
98 @cindex lyrics, entering
99 @cindex entering lyrics
100 @cindex formatting in lyrics
101 @cindex lyrics, formatting
102 @cindex punctuation in lyrics
103 @cindex lyrics punctuation
104 @cindex spaces in lyrics
105 @cindex quotes in lyrics
106 @funindex \lyricmode
107
108 @c TODO should we explain hyphens here
109
110 Lyrics are entered in a special input mode, which can be introduced
111 by the keyword @code{\lyricmode}, or by using @code{\addlyrics} or
112 @code{\lyricsto}.  In this special input mode, the input @code{d}
113 is not parsed as the pitch @notation{D}, but rather as a one-letter
114 syllable of text.  In other words, syllables are entered like notes
115 but with pitches replaced by text.
116
117 For example:
118
119 @example
120 \lyricmode @{ Three4 blind mice,2 three4 blind mice2 @}
121 @end example
122
123 There are two main methods for specifying the horizontal placement
124 of the syllables, either by specifying the duration of each syllable
125 explicitly, as in the example above, or by leaving the lyrics to be
126 aligned automatically to a melody or other voice of music, using
127 @code{\addlyrics} or @code{\lyricsto}.  The former method is
128 described below in @ref{Manual syllable durations}.  The latter
129 method is described in @ref{Automatic syllable durations}.
130
131 A word or syllable of lyrics begins with an alphabetic character
132 (plus some other characters, see below) and is terminated by any
133 white space or a digit.  Later characters in the syllable can be any
134 character that is not a digit or white space.
135
136 Because any character that is not a digit or white space is regarded
137 as part of the syllable, a word is valid even if it ends with
138 @code{@}}, which often leads to the following mistake:
139
140 @example
141 \lyricmode @{ lah lah lah@}
142 @end example
143
144 In this example, the @code{@}} is included in the final syllable, so the
145 opening brace is not balanced and the input file will probably not
146 compile.  Instead, braces should always be surrounded with white space:
147
148 @example
149 \lyricmode @{ lah lah lah @}
150 @end example
151
152 Punctuation, lyrics with accented characters, characters from
153 non-English languages, or special characters (such as the heart
154 symbol or slanted quotes), may simply be inserted directly
155 into the input file, providing it is saved with UTF-8 encoding.
156 For more information, see @ref{Special characters}.
157
158 @lilypond[quote,verbatim]
159 \relative c'' { d8 c16 a bes8 f e' d c4 }
160 \addlyrics { „Schad’ um das schö -- ne grü -- ne Band, }
161 @end lilypond
162
163 Normal quotes may be used in lyrics, but they have to be preceded
164 with a backslash character and the whole syllable has to be
165 enclosed between additional quotes.  For example,
166
167 @lilypond[quote,verbatim]
168 \relative c' { \time 3/4 e4 e4. e8 d4 e d c2. }
169 \addlyrics { "\"I" am so lone -- "ly,\"" said she }
170 @end lilypond
171
172 The full definition of a word start in lyrics mode is somewhat more
173 complex.  A word in lyrics mode is one that begins with an
174 alphabetic character, @code{_}, @code{?}, @code{!}, @code{:},
175 @code{'}, the control characters @code{^A} through @code{^F},
176 @code{^Q} through @code{^W}, @code{^Y}, @code{^^}, any 8-bit
177 character with an ASCII code over 127, or a two-character
178 combination of a backslash followed by one of @code{`}, @code{'},
179 @code{"}, or @code{^}.
180
181 @c " to balance double quotes for not-so-bright context-sensitive editors
182
183 Great control over the appearance of lyrics comes from using
184 @code{\markup} inside the lyrics themselves. For explanation of many
185 options, see @ref{Formatting text}.
186
187 @snippets
188
189 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
190 {formatting-lyrics-syllables.ly}
191
192
193 @seealso
194 Learning Manual:
195 @rlearning{Songs}.
196
197 Notation Reference:
198 @ref{Automatic syllable durations},
199 @ref{Fonts},
200 @ref{Formatting text},
201 @ref{Input modes},
202 @ref{Manual syllable durations},
203 @ref{Special characters}.
204
205 Internals Reference:
206 @rinternals{LyricText}.
207
208 Snippets:
209 @rlsr{Text}.
210
211
212 @node Aligning lyrics to a melody
213 @unnumberedsubsubsec Aligning lyrics to a melody
214
215 @cindex lyrics, aligning to a melody
216 @cindex @code{associatedVoice}
217 @funindex \lyricmode
218 @funindex \addlyrics
219 @funindex \lyricsto
220
221 Lyrics are printed by interpreting them in the context called
222 @code{Lyrics}, see @ref{Contexts explained}.
223
224 @example
225 \new Lyrics \lyricmode @{ @dots{} @}
226 @end example
227
228 Lyrics can be aligned with melodies in two main ways:
229
230 @itemize
231
232 @item
233 Lyrics can be aligned automatically, with the durations of the
234 syllables being taken from another voice of music or (in special
235 circumstances) an associated melody, using @code{\addlyrics},
236 @code{\lyricsto}, or by setting the @code{associatedVoice} property.
237 For more details, see @ref{Automatic syllable durations}.
238
239 @lilypond[quote,ragged-right,verbatim]
240 <<
241   \new Staff <<
242     \time 2/4
243     \new Voice = "one" \relative c'' {
244       \voiceOne
245       c4 b8. a16 g4. r8 a4 ( b ) c2
246     }
247     \new Voice = "two" \relative c' {
248       \voiceTwo
249        s2 s4. f8 e4 d c2
250     }
251   >>
252
253 % takes durations and alignment from notes in "one"
254   \new Lyrics \lyricsto "one" {
255     Life is __ _ love, live __ life.
256   }
257
258 % takes durations and alignment from notes in "one" initially
259 % then switches to "two"
260   \new Lyrics \lyricsto "one" {
261     No more let
262     \set associatedVoice = "two"  % must be set one syllable early
263     sins and sor -- rows grow.
264   }
265 >>
266 @end lilypond
267
268 The first stanza shows the normal way of entering lyrics.
269
270 The second stanza shows how the voice from which the lyric
271 durations are taken can be changed.  This is useful if the words to
272 different stanzas fit the notes in different ways and all the
273 durations are available in Voice contexts.  For more details, see
274 @ref{Stanzas}.
275
276 @item
277 Lyrics can be aligned independently of the duration of any notes
278 if the durations of the syllables are specified explicitly,
279 and entered with @code{\lyricmode}.
280
281 @lilypond[quote,ragged-right,verbatim]
282 <<
283   \new Voice = "one" \relative c'' {
284     \time 2/4
285     c4 b8. a16 g4. f8 e4 d c2
286   }
287
288 % uses previous explicit duration of 2;
289   \new Lyrics \lyricmode {
290     Joy to the earth!
291   }
292
293 % explicit durations, set to a different rhythm
294   \new Lyrics \lyricmode {
295     Life4 is love,2. live4 life.2
296   }
297 >>
298 @end lilypond
299
300 The first stanza is not aligned with the notes because the durations
301 were not specified, and the previous value of 2 is used for each
302 word.
303
304 The second stanza shows how the words can be aligned quite
305 independently from the notes.  This is useful if the words to
306 different stanzas fit the notes in different ways and the required
307 durations are not available in a music context.  For more details
308 see @ref{Manual syllable durations}.  This technique is also useful
309 when setting dialogue over music; for examples showing this, see
310 @ref{Dialogue over music}.
311
312 When entered in this way the words are left-aligned to the notes
313 by default, but may be center-aligned to the notes of a melody by
314 specifying an associated voice, if one exists.  For details, see
315 @ref{Manual syllable durations}.
316
317 @end itemize
318
319 @seealso
320 Learning Manual:
321 @rlearning{Aligning lyrics to a melody}.
322
323 Notation Reference:
324 @ref{Contexts explained},
325 @ref{Automatic syllable durations},
326 @ref{Stanzas},
327 @ref{Manual syllable durations},
328 @ref{Dialogue over music},
329 @ref{Manual syllable durations}.
330
331 Internals Reference:
332 @rinternals{Lyrics}.
333
334
335 @node Automatic syllable durations
336 @unnumberedsubsubsec Automatic syllable durations
337
338 @cindex syllable durations, automatic
339 @cindex lyrics and melodies
340 @cindex associatedVoice
341 @funindex \addlyrics
342 @funindex \lyricsto
343
344 Lyrics can be automatically aligned to the notes of a melody in
345 three ways:
346
347 @itemize
348
349 @item
350 by specifying the named Voice context containing the melody with
351 @code{\lyricsto},
352
353 @item
354 by introducing the lyrics with @code{\addlyrics} and placing them
355 immediately after the Voice context containing the melody,
356
357 @item
358 by setting the @code{associatedVoice} property, the alignment of
359 the lyrics may be switched to a different named Voice context at
360 any musical moment.
361
362 @end itemize
363
364 In all three methods hyphens can be drawn between the syllables of
365 a word and extender lines can be drawn beyond the end of a word.  For
366 details, see @ref{Extenders and hyphens}.
367
368 The @code{Voice} context containing the melody to which the lyrics
369 are being aligned must not have @qq{died}, or the lyrics after that
370 point will be lost.  This can happen if there are periods when that
371 voice has nothing to do.  For methods of keeping contexts alive, see
372 @ref{Keeping contexts alive}.
373
374 @subheading Using @code{\lyricsto}
375
376 @cindex \lyricsto
377 @funindex \lyricsto
378
379 Lyrics can be aligned under a melody automatically by specifying
380 the named Voice context containing the melody with
381 @code{\lyricsto}:
382
383 @lilypond[quote,verbatim,relative=2]
384 <<
385   \new Voice = "melody" {
386     a4 a a a
387   }
388   \new Lyrics \lyricsto "melody" {
389     These are the words
390   }
391 >>
392 @end lilypond
393
394 @noindent
395 This aligns the lyrics to the notes of the named @code{Voice}
396 context, which must already exist.  Therefore normally the
397 @code{Voice} context is specified first, followed by the
398 @code{Lyrics} context.  The lyrics themselves follow the
399 @code{\lyricsto} command.  The @code{\lyricsto} command
400 invokes lyric mode automatically, so the @code{\lyricmode} keyword
401 may be omitted.  By default, the lyrics are placed underneath the
402 notes.  For other placements, see @ref{Placing lyrics vertically}.
403
404 @subheading Using @code{\addlyrics}
405
406 @cindex \addlyrics
407 @funindex \addlyrics
408
409 The @code{\addlyrics} command is just a convenient shortcut that
410 can sometimes be used instead of having to set up the lyrics
411 through a more complicated LilyPond structure.
412
413 @example
414 @{ MUSIC @}
415 \addlyrics @{ LYRICS @}
416 @end example
417
418 @noindent
419 is the same as
420
421 @example
422 \new Voice = "blah" @{ MUSIC @}
423 \new Lyrics \lyricsto "blah" @{ LYRICS @}
424 @end example
425
426 Here is an example,
427
428 @lilypond[verbatim,quote]
429 {
430   \time 3/4
431   \relative c' { c2 e4 g2. }
432   \addlyrics { play the game }
433 }
434 @end lilypond
435
436 More stanzas can be added by adding more
437 @code{\addlyrics} sections:
438
439
440 @lilypond[ragged-right,verbatim,quote]
441 {
442   \time 3/4
443   \relative c' { c2 e4 g2. }
444   \addlyrics { play the game }
445   \addlyrics { speel het spel }
446   \addlyrics { joue le jeu }
447 }
448 @end lilypond
449
450 The command @code{\addlyrics} cannot handle polyphonic settings.
451 For these cases one should use @code{\lyricsto}.
452
453 @subheading Using associatedVoice
454
455 The melody to which the lyrics are being aligned can be changed by
456 setting the @code{associatedVoice} property,
457
458 @example
459 \set associatedVoice = #"lala"
460 @end example
461
462 @noindent
463
464 The value of the property (here: @code{"lala"}) should be the name
465 of a @code{Voice} context.  For technical reasons, the @code{\set}
466 command must be placed one syllable before the one to which the
467 change in voice is to apply.
468
469 Here is an example demonstrating its use:
470
471 @lilypond[quote,ragged-right,verbatim]
472 <<
473   \new Staff <<
474     \time 2/4
475     \new Voice = "one" \relative c'' {
476       \voiceOne
477       c4 b8. a16 g4. r8 a4 ( b ) c2
478     }
479     \new Voice = "two" \relative c' {
480       \voiceTwo
481        s2 s4. f8 e8 d4. c2
482     }
483   >>
484 % takes durations and alignment from notes in "one" initially
485 % then switches to "two"
486   \new Lyrics \lyricsto "one" {
487     No more let
488     \set associatedVoice = "two"  % must be set one syllable early
489     sins and sor -- rows grow.
490   }
491 >>
492 @end lilypond
493
494 @seealso
495 Notation Reference:
496 @ref{Extenders and hyphens},
497 @ref{Keeping contexts alive},
498 @ref{Placing lyrics vertically}.
499
500
501 @node Manual syllable durations
502 @unnumberedsubsubsec Manual syllable durations
503
504 In some complex vocal music, it may be desirable to place lyrics
505 completely independently of notes.  In this case do not use
506 @code{\lyricsto} or @code{\addlyrics} and do not set
507 @code{associatedVoice}.  Syllables are entered like notes --
508 but with pitches replaced by text -- and the duration of each
509 syllable is entered explicitly after the syllable.
510
511 By default, syllables will be left-aligned to the corresponding
512 musical moment.  Hyphenated lines may be drawn between syllables
513 as usual, but extender lines cannot be drawn when there is no
514 associated voice.
515
516 Here are two examples:
517
518 @lilypond[relative=1,verbatim,quote]
519 <<
520   \new Voice = "melody" {
521     \time 3/4
522     c2 e4 g2 f
523   }
524   \new Lyrics \lyricmode {
525     play1 the4 game4
526   }
527 >>
528 @end lilypond
529
530
531 @lilypond[quote,verbatim,ragged-right]
532 <<
533   \new Staff {
534     \relative c'' {
535       c2 c2
536       d1
537     }
538   }
539   \new Lyrics {
540     \lyricmode {
541       I2 like4. my8 cat!1
542     }
543   }
544   \new Staff {
545     \relative c' {
546       c8 c c c c c c c
547       c8 c c c c c c c
548     }
549   }
550 >>
551 @end lilypond
552
553 This technique is useful when writing dialogue over music, see
554 @ref{Dialogue over music}.
555
556 To center-align syllables on the notes at the corresponding musical
557 moments, set @code{associatedVoice} to the name of the Voice context
558 containing those notes.  When @code{associatedVoice} is set, both
559 double hyphens and double underscores can be used to draw
560 hyphenated lines and extenders under melismata correctly.
561
562 @lilypond[relative=1,verbatim,quote]
563 <<
564   \new Voice = "melody" {
565     \time 3/4
566     c2 e4 g f g
567   }
568   \new Lyrics \lyricmode {
569     \set associatedVoice = #"melody"
570     play2 the4 game2. __
571   }
572 >>
573 @end lilypond
574
575 @c TODO see also feature request 707 - show how to do this with manual durations
576
577 @seealso
578 Notation Reference:
579 @ref{Dialogue over music}.
580
581 Internals Reference:
582 @rinternals{Lyrics},
583 @rinternals{Voice}.
584
585
586 @node Multiple syllables to one note
587 @unnumberedsubsubsec Multiple syllables to one note
588
589 @funindex _
590 @cindex spaces, in lyrics
591 @cindex quotes, in lyrics
592 @cindex ties, in lyrics
593
594 In order to assign more than one syllable to a single note with
595 spaces between the syllables, you can surround the phrase with
596 quotes or use a @code{_} character.  Alternatively, you can use
597 the tilde symbol (@code{~}) to get a lyric tie.
598
599 @lilypond[quote,ragged-right,verbatim]
600 {
601   \relative c'' { \autoBeamOff
602     r8 b c fis, fis c' b e, }
603   \addlyrics { Che_in ques -- ta_e_in quel -- l'al -- tr'on -- da }
604   \addlyrics { "Che in" ques -- "ta e in" quel -- l'al -- tr'on -- da }
605   \addlyrics { Che~in ques -- ta~e~in quel -- l'al -- tr'on -- da }
606 }
607 @end lilypond
608
609 @seealso
610 Internals Reference:
611 @rinternals{LyricCombineMusic}.
612
613
614 @node Multiple notes to one syllable
615 @unnumberedsubsubsec Multiple notes to one syllable
616
617 @cindex melisma
618 @cindex melismata
619 @cindex phrasing, in lyrics
620 @funindex \melisma
621 @funindex \melismaEnd
622
623 Sometimes, particularly in Medieval music, several notes are to be
624 sung on one syllable; such vocalises are called melismata, or
625 @rglos{melisma}s.  The syllable to a melisma is usually
626 left-aligned with the first note of the melisma.
627
628 When a melisma occurs on a syllable other that the last one in a
629 word, that syllable is usually joined to the following one with a
630 hyphenated line.  This is indicated by placing a double hyphen,
631 @w{@code{--}}, immediately after the syllable.
632
633 Alternatively, when a melisma occurs on the last or only syllable in
634 a word an extender line is usually drawn from the end of the syllable
635 to the last note of the melisma.  This is indicated by placing a
636 double underscore, @code{__}, immediately after the word.
637
638 There are five ways in which melismata can be indicated:
639
640 @itemize
641
642 @item
643 Melismata are created automatically over notes which are tied
644 together:
645
646 @lilypond[quote,relative=2,verbatim]
647 <<
648   \new Voice = "melody" {
649     \time 3/4
650     f4 g2 ~ |
651     g4 e2 ~ |
652     e8
653   }
654   \new Lyrics \lyricsto "melody" {
655     Ky -- ri -- e __
656   }
657 >>
658 @end lilypond
659
660 @item
661 Melismata can be created automatically from the music by placing
662 slurs over the notes of each melisma.  This is the usual way of
663 entering lyrics:
664
665 @lilypond[quote,relative=2,verbatim]
666 <<
667   \new Voice = "melody" {
668     \time 3/4
669     f4 g8 ( f e f )
670     e8 ( d e2 )
671   }
672   \new Lyrics \lyricsto "melody" {
673     Ky -- ri -- e __
674   }
675 >>
676 @end lilypond
677
678 Note that phrasing slurs do not affect the creation of melismata.
679
680 @item
681 Notes are considered a melisma if they are manually beamed,
682 providing automatic beaming is switched off.  See
683 @ref{Setting automatic beam behavior}.
684
685 @lilypond[quote,relative=2,verbatim]
686 <<
687   \new Voice = "melody" {
688     \time 3/4
689     \autoBeamOff
690     f4 g8[ f e f]
691     e2.
692   }
693   \new Lyrics \lyricsto "melody" {
694     Ky -- ri -- e
695   }
696 >>
697 @end lilypond
698
699 Clearly this is not suited to melismata over notes which are longer
700 than eighth notes.
701
702 @item
703 An unslurred group of notes will be treated as a melisma if they
704 are bracketed between @code{\melisma} and @code{\melismaEnd}.
705
706 @lilypond[quote,relative=2,verbatim]
707 <<
708   \new Voice = "melody" {
709     \time 3/4
710     f4 g8
711     \melisma
712     f e f
713     \melismaEnd
714     e2.
715   }
716   \new Lyrics \lyricsto "melody" {
717     Ky -- ri -- e
718   }
719 >>
720 @end lilypond
721
722 @item
723 A melisma can be defined entirely in the lyrics by entering a
724 single underscore character, @code{_}, for every extra note that has
725 to be added to the melisma.
726
727 @lilypond[verbatim, quote, relative=2]
728 <<
729   \new Voice = "melody" {
730     \time 3/4
731     f4 g8 f e f
732     e8 d e2
733   }
734   \new Lyrics \lyricsto "melody" {
735     Ky -- ri -- _ _ _ e __ _ _
736   }
737 >>
738 @end lilypond
739
740 @end itemize
741
742 It is possible to have ties, slurs and manual beams in the melody
743 without their indicating melismata.  To do this, set
744 @code{melismaBusyProperties}:
745
746 @lilypond[relative=1,verbatim,quote]
747 <<
748   \new Voice = "melody" {
749     \time 3/4
750     \set melismaBusyProperties = #'()
751     c4 d ( e )
752     g8 [ f ] f4 ~ f
753   }
754   \new Lyrics \lyricsto "melody" {
755     Ky -- ri -- e e -- le -- i -- son
756   }
757 >>
758 @end lilypond
759
760 Other settings for @code{melismaBusyProperties} can be used to
761 selectively include or exclude ties, slurs, and beams from the
762 automatic detection of melismata; see @code{melismaBusyProperties}
763 in @rinternals{Tunable context properties}.
764
765 Alternatively, if all melismata indications are to be ignored,
766 @code{ignoreMelismata} may be set true;
767 see @ref{Stanzas with different rhythms}.
768
769 If a melisma is required during a passage in which
770 @code{melismaBusyProperties} is active, it may be indicated by
771 placing a single underscore in the lyrics for each note which
772 should be included in the melisma:
773
774 @lilypond[relative=1,verbatim,quote]
775 <<
776   \new Voice = "melody" {
777     \time 3/4
778     \set melismaBusyProperties = #'()
779     c4 d ( e )
780     g8 [ f ] ~ f4 ~ f
781   }
782   \new Lyrics \lyricsto "melody" {
783     Ky -- ri -- _ e __ _ _ _
784   }
785 >>
786 @end lilypond
787
788
789 @predefined
790
791 @code{\autoBeamOff},
792 @code{\autoBeamOn},
793 @code{\melisma},
794 @code{\melismaEnd}.
795
796 @seealso
797 Musical Glossary:
798 @rglos{melisma}.
799
800 Learning Manual:
801 @rlearning{Aligning lyrics to a melody}.
802
803 Notation Reference:
804 @ref{Aligning lyrics to a melody},
805 @ref{Automatic syllable durations},
806 @ref{Setting automatic beam behavior},
807 @ref{Stanzas with different rhythms}.
808
809 Internals Reference:
810 @rinternals{Tunable context properties}.
811
812 @knownissues
813 Extender lines under melismata are not created automatically; they
814 must be inserted manually with a double underscore.
815
816
817 @node Extenders and hyphens
818 @unnumberedsubsubsec Extenders and hyphens
819
820 @cindex melisma
821 @cindex extender
822
823 @c TODO cf Multiple notes to one syllable; should this be merged in?
824
825 @c leave this as samp. -gp
826 In the last syllable of a word, melismata are sometimes indicated with
827 a long horizontal line starting in the melisma syllable, and ending in
828 the next one.  Such a line is called an extender line, and it is
829 entered as @samp{ __ } (note the spaces before and after the two
830 underscore characters).
831
832 @warning{Melismata are indicated in the score with extender lines,
833 which are entered as one double underscore; but short melismata can
834 also be entered by skipping individual notes, which are entered as
835 single underscore characters; these do not make an extender line to be
836 typeset by default.}
837
838 @cindex hyphens
839
840 @c leave this as samp. -gp
841 Centered hyphens are entered as @samp{ -- } between syllables of a
842 same word (note the spaces before and after the two hyphen
843 characters).  The hyphen will be centered between the syllables, and
844 its length will be adjusted depending on the space between the
845 syllables.
846
847 In tightly engraved music, hyphens can be removed.  Whether this
848 happens can be controlled with the @code{minimum-distance} (minimum
849 distance between two syllables) and the @code{minimum-length}
850 (threshold below which hyphens are removed) properties of
851 @code{LyricHyphen}.
852
853 @seealso
854 Internals Reference:
855 @rinternals{LyricExtender},
856 @rinternals{LyricHyphen}.
857
858
859 @node Techniques specific to lyrics
860 @subsection Techniques specific to lyrics
861
862 @c TODO this whole section is to be reorganised
863
864 @menu
865 * Working with lyrics and variables::
866 * Placing lyrics vertically::
867 * Placing syllables horizontally::
868 * Lyrics and repeats::
869 * Divisi lyrics::
870 @end menu
871
872
873
874 @node Working with lyrics and variables
875 @unnumberedsubsubsec Working with lyrics and variables
876
877 @cindex lyrics, using variables
878
879 Variables containing lyrics can be created, but the lyrics must be
880 entered in lyric mode:
881
882 @lilypond[quote,verbatim]
883 musicOne = \relative c'' {
884   c4 b8. a16 g4. f8 e4 d c2
885 }
886 verseOne = \lyricmode {
887   Joy to the world, the Lord is come.
888 }
889 \score {
890   <<
891     \new Voice = "one" {
892       \time 2/4
893       \musicOne
894     }
895     \new Lyrics \lyricsto "one" {
896       \verseOne
897     }
898   >>
899 }
900 @end lilypond
901
902 Durations do not need to be added if the variable is to be invoked
903 with @code{\addlyrics} or @code{\lyricsto}.
904
905 For different or more complex orderings, the best way is to define
906 the music and lyric variables first, then set up the hierarchy of
907 staves and lyrics, omitting the lyrics themselves, and then add the
908 lyrics using @code{\context} underneath.  This ensures that the
909 voices referenced by @code{\lyricsto} have always been defined
910 earlier.  For example:
911
912 @lilypond[quote,verbatim]
913 sopranoMusic = \relative c'' { c4 c c c }
914 contraltoMusic = \relative c'' { a4 a a a }
915 sopranoWords = \lyricmode { Sop -- ra -- no words }
916 contraltoWords = \lyricmode { Con -- tral -- to words }
917
918 \score {
919   \new ChoirStaff <<
920     \new Staff {
921       \new Voice = "sopranos" {
922         \sopranoMusic
923       }
924     }
925     \new Lyrics = "sopranos"
926     \new Lyrics = "contraltos"
927     \new Staff {
928       \new Voice = "contraltos" {
929         \contraltoMusic
930       }
931     }
932     \context Lyrics = "sopranos" {
933       \lyricsto "sopranos" {
934         \sopranoWords
935       }
936     }
937     \context Lyrics = "contraltos" {
938       \lyricsto "contraltos" {
939         \contraltoWords
940       }
941     }
942   >>
943 }
944 @end lilypond
945
946 @seealso
947 Notation Reference:
948 @ref{Placing lyrics vertically}.
949
950 Internals Reference:
951 @rinternals{LyricCombineMusic},
952 @rinternals{Lyrics}.
953
954
955 @node Placing lyrics vertically
956 @unnumberedsubsubsec Placing lyrics vertically
957
958 @cindex placement of lyrics
959 @cindex lyrics, positioning
960
961 Depending on the type of music, lyrics may be positioned
962 above the staff, below the staff, or between staves.  Placing
963 lyrics below the associated staff is the easiest, and can be
964 achieved by simply defining the Lyrics context below the Staff
965 context:
966
967 @lilypond[quote,verbatim]
968 \score {
969   <<
970     \new Staff {
971       \new Voice = "melody" {
972         \relative c'' { c4 c c c }
973       }
974     }
975     \new Lyrics {
976       \lyricsto "melody" {
977         Here are the words
978       }
979     }
980   >>
981 }
982 @end lilypond
983
984 Lyrics may be positioned above the staff using one of
985 two methods.  The simplest (and preferred) method
986 is to use the same syntax as above and explicitly
987 specify the position of the lyrics:
988
989 @lilypond[quote,verbatim]
990 \score {
991   <<
992     \new Staff = "staff" {
993       \new Voice = "melody" {
994         \relative c'' { c4 c c c }
995       }
996     }
997     \new Lyrics \with { alignAboveContext = "staff" } {
998       \lyricsto "melody" {
999         Here are the words
1000       }
1001     }
1002   >>
1003 }
1004 @end lilypond
1005
1006 Alternatively, a two-step process may be used.  First the Lyrics
1007 context is declared (without any content) before the Staff and
1008 Voice contexts, then the @code{\lyricsto} command is placed after
1009 the Voice declaration it references by using @code{\context}, as
1010 follows:
1011
1012 @lilypond[quote,verbatim]
1013 \score {
1014   <<
1015     \new Lyrics = "lyrics" \with {
1016       % lyrics above a staff should have this override
1017       \override VerticalAxisGroup.staff-affinity = #DOWN
1018     }
1019     \new Staff {
1020       \new Voice = "melody" {
1021         \relative c'' { c4 c c c }
1022       }
1023     }
1024     \context Lyrics = "lyrics" {
1025       \lyricsto "melody" {
1026         Here are the words
1027       }
1028     }
1029   >>
1030 }
1031 @end lilypond
1032
1033 When there are two voices on separate staves the lyrics may be
1034 placed between the staves using either of these methods.  Here
1035 is an example of the second method:
1036
1037 @lilypond[quote,verbatim]
1038 \score {
1039   \new ChoirStaff <<
1040     \new Staff {
1041       \new Voice = "sopranos" {
1042         \relative c'' { c4 c c c }
1043       }
1044     }
1045     \new Lyrics = "sopranos"
1046     \new Lyrics = "contraltos" \with {
1047       % lyrics above a staff should have this override
1048       \override VerticalAxisGroup.staff-affinity = #DOWN
1049     }
1050     \new Staff {
1051       \new Voice = "contraltos" {
1052         \relative c'' { a4 a a a }
1053       }
1054     }
1055     \context Lyrics = "sopranos" {
1056       \lyricsto "sopranos" {
1057         Sop -- ra -- no words
1058       }
1059     }
1060     \context Lyrics = "contraltos" {
1061       \lyricsto "contraltos" {
1062         Con -- tral -- to words
1063       }
1064     }
1065   >>
1066 }
1067 @end lilypond
1068
1069 Other combinations of lyrics and staves may be generated by
1070 elaborating these examples, or by examining the templates in the
1071 Learning Manual, see @rlearning{Vocal ensembles templates}.
1072
1073 @snippets
1074 @lilypondfile[verbatim,quote,texidoc,doctitle]
1075 {obtaining-2.12-lyrics-spacing-in-newer-versions.ly}
1076
1077 @seealso
1078 Learning Manual:
1079 @rlearning{Vocal ensembles templates}.
1080
1081 Notation Reference:
1082 @ref{Context layout order},
1083 @ref{Creating and referencing contexts}.
1084
1085
1086 @node Placing syllables horizontally
1087 @unnumberedsubsubsec Placing syllables horizontally
1088
1089 @cindex Spacing lyrics
1090 @cindex Lyrics, increasing space between
1091
1092 To increase the spacing between lyrics, set the
1093 @code{minimum-distance} property of @code{LyricSpace}.
1094
1095 @lilypond[relative=1,verbatim,quote,ragged-right]
1096 {
1097   c c c c
1098   \override Lyrics.LyricSpace.minimum-distance = #1.0
1099   c c c c
1100 }
1101 \addlyrics {
1102   longtext longtext longtext longtext
1103   longtext longtext longtext longtext
1104 }
1105 @end lilypond
1106
1107 @noindent
1108 To make this change for all lyrics in the score, set the property in the
1109 @code{\layout} block.
1110
1111 @lilypond[verbatim,quote,ragged-right]
1112 \score {
1113   \relative c' {
1114   c c c c
1115   c c c c
1116   }
1117   \addlyrics {
1118   longtext longtext longtext longtext
1119   longtext longtext longtext longtext
1120   }
1121   \layout {
1122     \context {
1123       \Lyrics
1124       \override LyricSpace.minimum-distance = #1.0
1125     }
1126   }
1127 }
1128 @end lilypond
1129
1130 @snippets
1131 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
1132 {lyrics-alignment.ly}
1133
1134 @c TODO: move to LSR -vv
1135
1136 Checking to make sure that text scripts and lyrics are within the margins
1137 requires additional calculations.  To speed up processing slightly, this
1138 feature can be disabled:
1139
1140 @example
1141 \override Score.PaperColumn.keep-inside-line = ##f
1142 @end example
1143
1144 To make lyrics avoid bar lines as well, use
1145
1146 @example
1147 \layout @{
1148   \context @{
1149     \Lyrics
1150       \consists "Bar_engraver"
1151       \consists "Separating_line_group_engraver"
1152       \override BarLine.transparent = ##t
1153   @}
1154 @}
1155 @end example
1156
1157 @node Lyrics and repeats
1158 @unnumberedsubsubsec Lyrics and repeats
1159
1160 @cindex repeats and lyrics
1161 @cindex lyrics, repeating
1162
1163 @subheading Simple repeats
1164
1165 Repeats in @emph{music} are fully described elsewhere; see
1166 @ref{Repeats}.  This section explains how to add lyrics to repeated
1167 sections of music.
1168
1169 Lyrics to a section of music that is repeated should be surrounded
1170 by exactly the same repeat construct as the music, if the words are
1171 unchanged.
1172
1173 @lilypond[verbatim,quote]
1174 \score {
1175   <<
1176     \new Staff {
1177       \new Voice = "melody" {
1178         \relative c'' {
1179           a4 a a a
1180           \repeat volta 2 { b4 b b b }
1181         }
1182       }
1183     }
1184     \new Lyrics {
1185       \lyricsto "melody" {
1186         Not re -- peat -- ed.
1187         \repeat volta 2 { Re -- peat -- ed twice. }
1188       }
1189     }
1190   >>
1191 }
1192 @end lilypond
1193
1194 The words will then be correctly expanded if the repeats are
1195 unfolded.
1196
1197 @lilypond[verbatim,quote]
1198 \score {
1199   \unfoldRepeats {
1200     <<
1201       \new Staff {
1202         \new Voice = "melody" {
1203           \relative c'' {
1204             a4 a a a
1205             \repeat volta 2 { b4 b b b }
1206           }
1207         }
1208       }
1209       \new Lyrics {
1210         \lyricsto "melody" {
1211           Not re -- peat -- ed.
1212           \repeat volta 2 { Re -- peat -- ed twice. }
1213         }
1214       }
1215     >>
1216   }
1217 }
1218 @end lilypond
1219
1220 If the repeated section is to be unfolded and has different words,
1221 simply enter all the words:
1222
1223 @lilypond[verbatim,quote,ragged-right]
1224 \score {
1225   <<
1226     \new Staff {
1227       \new Voice = "melody" {
1228         \relative c'' {
1229           a4 a a a
1230           \repeat unfold 2 { b4 b b b }
1231         }
1232       }
1233     }
1234     \new Lyrics {
1235       \lyricsto "melody" {
1236         Not re -- peat -- ed.
1237         The first time words.
1238         Sec -- ond time words.
1239       }
1240     }
1241   >>
1242 }
1243 @end lilypond
1244
1245 When the words to a repeated volta section are different, the words
1246 to each repeat must be entered in separate @code{Lyrics} contexts,
1247 correctly nested in parallel sections:
1248
1249 @lilypond[verbatim,quote]
1250 \score {
1251   <<
1252     \new Staff {
1253       \new Voice = "melody" {
1254         \relative c'' {
1255           a4 a a a
1256           \repeat volta 2 { b4 b b b }
1257         }
1258       }
1259     }
1260     \new Lyrics \lyricsto "melody" {
1261       Not re -- peat -- ed.
1262       <<
1263         { The first time words. }
1264         \new Lyrics {
1265           \set associatedVoice = "melody"
1266           Sec -- ond time words.
1267         }
1268       >>
1269     }
1270   >>
1271 }
1272 @end lilypond
1273
1274 More verses may be added in a similar way:
1275
1276 @lilypond[verbatim,quote]
1277 \score {
1278   <<
1279     \new Staff {
1280       \new Voice = "singleVoice" {
1281         \relative c'' {
1282           a4 a a a
1283           \repeat volta 3 { b4 b b b }
1284           c4 c c c
1285         }
1286       }
1287     }
1288     \new Lyrics \lyricsto "singleVoice" {
1289       Not re -- peat -- ed.
1290       <<
1291         { The first time words. }
1292         \new Lyrics {
1293           \set associatedVoice = "singleVoice"
1294           Sec -- ond time words.
1295         }
1296         \new Lyrics {
1297           \set associatedVoice = "singleVoice"
1298           The third time words.
1299         }
1300       >>
1301       The end sec -- tion.
1302     }
1303   >>
1304 }
1305 @end lilypond
1306
1307 @cindex alignBelowContext
1308 @funindex alignBelowContext
1309
1310 However, if this construct is embedded within a multi-staved
1311 context such as a @code{ChoirStaff} the lyrics of the second and
1312 third verses will appear beneath the bottom staff.
1313
1314 To position them correctly use @code{alignBelowContext}:
1315
1316 @lilypond[verbatim,quote]
1317 \score {
1318   <<
1319     \new Staff {
1320       \new Voice = "melody" {
1321         \relative c'' {
1322           a4 a a a
1323           \repeat volta 3 { b4 b b b }
1324           c4 c c c
1325         }
1326       }
1327     }
1328     \new Lyrics = "firstVerse" \lyricsto "melody" {
1329       Not re -- peat -- ed.
1330       <<
1331         { The first time words. }
1332         \new Lyrics = "secondVerse"
1333         \with { alignBelowContext = #"firstVerse" } {
1334           \set associatedVoice = "melody"
1335           Sec -- ond time words.
1336         }
1337         \new Lyrics = "thirdVerse"
1338         \with { alignBelowContext = #"secondVerse" } {
1339           \set associatedVoice = "melody"
1340           The third time words.
1341         }
1342       >>
1343       The end sec -- tion.
1344     }
1345     \new Voice = "harmony" {
1346       \relative c' {
1347         f4 f f f \repeat volta 2 { g8 g g4 g2 } a4 a8. a16 a2
1348       }
1349     }
1350   >>
1351 }
1352 @end lilypond
1353
1354
1355
1356 @c TODO positioning a common line of lyrics
1357
1358 @subheading Repeats with alternative endings
1359
1360 @cindex lyrics, repeats with alternative endings
1361 @cindex repeating lyrics with alternative endings
1362 @cindex alternative endings and lyrics
1363
1364 If the words of the repeated section are the same, exactly the
1365 same structure can be used for both the lyrics and music.
1366
1367 @lilypond[quote,verbatim]
1368 \score {
1369   <<
1370     \new Staff {
1371       \time 2/4
1372       \new Voice = "melody" {
1373         \relative c'' {
1374           a4 a a a
1375           \repeat volta 2 { b4 b }
1376           \alternative { { b b } { b c } }
1377         }
1378       }
1379     }
1380     \new Lyrics {
1381       \lyricsto "melody" {
1382         Not re -- peat -- ed.
1383         \repeat volta 2 { Re -- peat -- }
1384         \alternative { { ed twice. } { ed twice. } }
1385       }
1386     }
1387   >>
1388 }
1389 @end lilypond
1390
1391 @funindex \skip
1392 @cindex skipping notes in lyrics
1393 @cindex lyrics, skipping notes
1394
1395 But when the repeated section has different words, a repeat
1396 construct cannot be used around the words and @code{\skip} commands
1397 have to be inserted manually to skip over the notes in the
1398 alternative sections which do not apply.
1399
1400 Note: do not use an underscore, @code{_}, to skip notes -- an
1401 underscore indicates a melisma, causing the preceding syllable
1402 to be left-aligned.
1403
1404 @warning{The @code{@bs{}skip} command must be followed by a number,
1405 but this number is ignored in lyrics which derive their durations
1406 from the notes in an associated melody through @code{\addlyrics} or
1407 @code{\lyricsto}.  Each @code{@bs{}skip} skips a single note of any
1408 value, irrespective of the value of the following number.}
1409
1410 @lilypond[verbatim,quote,ragged-right]
1411 \score {
1412   <<
1413     \new Staff {
1414       \time 2/4
1415       \new Voice = "melody" {
1416         \relative c'' {
1417           \repeat volta 2 { b4 b }
1418           \alternative { { b b } { b c } }
1419           c4 c
1420         }
1421       }
1422     }
1423     \new Lyrics {
1424       \lyricsto "melody" {
1425         The first time words.
1426         \repeat unfold 2 { \skip 1 }
1427         End here.
1428       }
1429     }
1430     \new Lyrics {
1431       \lyricsto "melody" {
1432         Sec -- ond
1433         \repeat unfold 2 { \skip 1 }
1434         time words.
1435       }
1436     }
1437   >>
1438 }
1439 @end lilypond
1440
1441 @cindex lyrics and tied notes
1442 @funindex \repeatTie
1443
1444 When a note is tied over into two or more alternative endings a
1445 tie is used to carry the note into the first alternative ending and
1446 a @code{\repeatTie} is used in the second and subsequent endings.
1447 This structure causes difficult alignment problems when lyrics are
1448 involved and increasing the length of the alternative sections so
1449 the tied notes are contained wholly within them may give a more
1450 acceptable result.
1451
1452 The tie creates a melisma into the first alternative, but not into
1453 the second and subsequent alternatives, so to align the lyrics
1454 correctly it is necessary to disable the automatic creation of
1455 melismata over the volta section and insert manual skips.
1456
1457 @lilypond[quote,verbatim]
1458 \score {
1459   <<
1460     \new Staff {
1461       \time 2/4
1462       \new Voice = "melody" {
1463         \relative c'' {
1464           \set melismaBusyProperties = #'()
1465           \repeat volta 2 { b4 b ~}
1466           \alternative { { b b } { b \repeatTie c } }
1467           \unset melismaBusyProperties
1468           c4 c
1469         }
1470       }
1471     }
1472     \new Lyrics {
1473       \lyricsto "melody" {
1474         \repeat volta 2 { Here's a __ }
1475         \alternative {
1476           { \skip 1 verse }
1477           { \skip 1 sec }
1478         }
1479         ond one.
1480       }
1481     }
1482   >>
1483 }
1484 @end lilypond
1485
1486 Note that if @code{\unfoldRepeats} is used around a section
1487 containing @code{\repeatTie}, the @code{\repeatTie} should be
1488 removed to avoid both types of tie being printed.
1489
1490 When the repeated section has different words a @code{\repeat}
1491 cannot be used around the lyrics and @code{\skip} commands need to
1492 be inserted manually, as before.
1493
1494 @lilypond[quote,verbatim]
1495 \score {
1496   <<
1497     \new Staff {
1498       \time 2/4
1499       \new Voice = "melody" {
1500         \relative c'' {
1501           \repeat volta 2 { b4 b ~}
1502           \alternative { { b b } { b \repeatTie c } }
1503           c4 c
1504         }
1505       }
1506     }
1507     \new Lyrics {
1508       \lyricsto "melody" {
1509         Here's a __ verse.
1510         \repeat unfold 2 { \skip 1 }
1511       }
1512     }
1513     \new Lyrics {
1514       \lyricsto "melody" {
1515         Here's one
1516         \repeat unfold 2 { \skip 1 }
1517         more to sing.
1518       }
1519     }
1520   >>
1521 }
1522 @end lilypond
1523
1524 If you wish to show extenders and hyphens into and out of
1525 alternative sections these must be inserted manually.
1526
1527 @lilypond[quote,verbatim]
1528 \score {
1529   <<
1530     \new Staff {
1531       \time 2/4
1532       \new Voice = "melody" {
1533         \relative c'' {
1534           \repeat volta 2 { b4 b ~}
1535           \alternative { { b b } { b \repeatTie c } }
1536           c4 c
1537         }
1538       }
1539     }
1540     \new Lyrics {
1541       \lyricsto "melody" {
1542         Here's a __ verse.
1543         \repeat unfold 2 { \skip 1 }
1544       }
1545     }
1546     \new Lyrics {
1547       \lyricsto "melody" {
1548         Here's "a_"
1549         \skip 1
1550         "_" sec -- ond one.
1551       }
1552     }
1553   >>
1554 }
1555 @end lilypond
1556
1557 @seealso
1558 Notation Reference:
1559 @ref{Keeping contexts alive},
1560 @ref{Repeats}.
1561
1562
1563 @node Divisi lyrics
1564 @unnumberedsubsubsec Divisi lyrics
1565
1566 @cindex divided lyrics
1567 @cindex lyrics, divided
1568
1569 When just the words and rhythms of the two parts differ with the
1570 pitches remaining the same, temporarily turning off the automatic
1571 detection of melismata and indicating the melisma in the lyrics
1572 may be the appropriate method to use:
1573
1574 @lilypond[quote,verbatim]
1575 \score {
1576   <<
1577     \new Voice = "melody" {
1578       \relative c' {
1579         \set melismaBusyProperties = #'()
1580         \slurDown
1581         \slurDashed
1582         e4 e8 ( e ) c4 c |
1583         \unset melismaBusyProperties
1584         c
1585       }
1586     }
1587     \new Lyrics \lyricsto "melody" {
1588       They shall not o -- ver -- come
1589     }
1590     \new Lyrics \lyricsto "melody" {
1591       We will _
1592     }
1593   >>
1594 }
1595 @end lilypond
1596
1597 When both music and words differ it may be better to display
1598 the differing music and lyrics by naming voice contexts and
1599 attaching lyrics to those specific contexts:
1600
1601 @lilypond[verbatim,ragged-right,quote]
1602 \score {
1603   <<
1604     \new Voice = "melody" {
1605       \relative c' {
1606         <<
1607           {
1608             \voiceOne
1609             e4 e8 e
1610           }
1611           \new Voice = "splitpart" {
1612             \voiceTwo
1613             c4 c
1614           }
1615         >>
1616         \oneVoice
1617         c4 c |
1618         c
1619       }
1620     }
1621     \new Lyrics \lyricsto "melody" {
1622       They shall not o -- ver -- come
1623     }
1624     \new Lyrics \lyricsto "splitpart" {
1625       We will
1626     }
1627   >>
1628 }
1629 @end lilypond
1630
1631
1632 @node Stanzas
1633 @subsection Stanzas
1634
1635 @menu
1636 * Adding stanza numbers::
1637 * Adding dynamics marks to stanzas::
1638 * Adding singers' names to stanzas::
1639 * Stanzas with different rhythms::
1640 * Printing stanzas at the end::
1641 * Printing stanzas at the end in multiple columns::
1642 @end menu
1643
1644
1645 @node Adding stanza numbers
1646 @unnumberedsubsubsec Adding stanza numbers
1647
1648 @cindex stanza number
1649
1650 Stanza numbers can be added by setting @code{stanza}, e.g.,
1651
1652 @lilypond[quote,ragged-right,verbatim,relative=2]
1653 \new Voice {
1654   \time 3/4 g2 e4 a2 f4 g2.
1655 } \addlyrics {
1656   \set stanza = #"1. "
1657   Hi, my name is Bert.
1658 } \addlyrics {
1659   \set stanza = #"2. "
1660   Oh, ché -- ri, je t'aime
1661 }
1662 @end lilypond
1663
1664
1665 @noindent
1666 These numbers are put just before the start of the first syllable.
1667
1668 @c TODO Create and add snippet to show how two lines of a
1669 @c stanza can be grouped together, along these lines:
1670 @c (might need improving a bit) -td
1671
1672 @ignore
1673 leftbrace = \markup { \override #'(font-encoding . fetaBraces) \lookup
1674 #"brace105" }
1675
1676 stanzaOneOne = {
1677   \set stanza = \markup { "1. " \leftbrace }
1678   \lyricmode { Child, you're mine and I love you.
1679     Lend thine ear to what I say.
1680
1681   }
1682 }
1683
1684 stanzaOneThree =  {
1685 %  \set stanza = \markup { "   "}
1686   \lyricmode { Child, I have no great -- er joy
1687     Than to have you walk in truth.
1688
1689   }
1690 }
1691
1692 \new Voice {
1693   \repeat volta 2 { c'8 c' c' c' c' c' c'4
1694                     c'8 c' c' c' c' c' c'4   }
1695 }  \addlyrics { \stanzaOneOne }
1696    \addlyrics { \stanzaOneThree }
1697
1698 @end ignore
1699
1700 @node Adding dynamics marks to stanzas
1701 @unnumberedsubsubsec Adding dynamics marks to stanzas
1702
1703 Stanzas differing in loudness may be indicated by putting a
1704 dynamics mark before each stanza.  In LilyPond, everything coming in
1705 front of a stanza goes into the @code{StanzaNumber} object; dynamics
1706 marks are no different.  For technical reasons, you have to set the
1707 stanza outside @code{\lyricmode}:
1708
1709 @lilypond[quote,ragged-right,verbatim]
1710 text = {
1711   \set stanza = \markup { \dynamic "ff" "1. " }
1712   \lyricmode {
1713     Big bang
1714   }
1715 }
1716
1717 <<
1718   \new Voice = "tune" {
1719     \time 3/4
1720     g'4 c'2
1721   }
1722 \new Lyrics \lyricsto "tune" \text
1723 >>
1724 @end lilypond
1725
1726 @node Adding singers' names to stanzas
1727 @unnumberedsubsubsec Adding singers' names to stanzas
1728
1729 @cindex singer name
1730 @cindex name of singer
1731
1732 Names of singers can also be added.  They are printed at the start of
1733 the line, just like instrument names.  They are created by setting
1734 @code{vocalName}.  A short version may be entered as
1735 @code{shortVocalName}.
1736
1737 @lilypond[ragged-right,quote,verbatim,relative=2]
1738 \new Voice {
1739   \time 3/4 g2 e4 a2 f4 g2.
1740 } \addlyrics {
1741   \set vocalName = #"Bert "
1742   Hi, my name is Bert.
1743 } \addlyrics {
1744   \set vocalName = #"Ernie "
1745   Oh, ché -- ri, je t'aime
1746 }
1747 @end lilypond
1748
1749 @node Stanzas with different rhythms
1750 @unnumberedsubsubsec Stanzas with different rhythms
1751
1752 Often, different stanzas of one song are put to one melody in slightly
1753 differing ways.  Such variations can still be captured with
1754 @code{\lyricsto}.
1755
1756 @subsubheading Ignoring melismata
1757
1758 One possibility is that the text has a melisma in one stanza, but
1759 multiple syllables in another.  One solution is to make the faster
1760 voice ignore the melisma.  This is done by setting
1761 @code{ignoreMelismata} in the Lyrics context.
1762
1763 @lilypond[verbatim,ragged-right,quote]
1764 <<
1765   \relative c' \new Voice = "lahlah" {
1766     \set Staff.autoBeaming = ##f
1767     c4
1768     \slurDotted
1769     f8.[( g16])
1770     a4
1771   }
1772   \new Lyrics \lyricsto "lahlah" {
1773     more slow -- ly
1774   }
1775   \new Lyrics \lyricsto "lahlah" {
1776     go
1777     \set ignoreMelismata = ##t
1778     fas -- ter
1779     \unset ignoreMelismata
1780     still
1781   }
1782 >>
1783 @end lilypond
1784
1785 @knownissues
1786 Unlike most @code{\set} commands, @code{\set ignoreMelismata} does
1787 not work if prefixed with @code{\once}.  It is necessary to use
1788 @code{\set} and @code{\unset} to bracket the lyrics where melismata
1789 are to be ignored.
1790
1791 @subsubheading Adding syllables to grace notes
1792
1793 @cindex grace notes and lyrics
1794 @cindex lyrics on grace notes
1795
1796 By default, grace notes (e.g. via @code{\grace}) do not get assigned
1797 syllables when using @code{\lyricsto}, but this behavior can be
1798 changed:
1799
1800 @lilypond[verbatim,ragged-right,quote]
1801 <<
1802   \new Voice = melody \relative c' {
1803     f4 \appoggiatura a32 b4
1804     \grace { f16[ a16] } b2
1805     \afterGrace b2 { f16[ a16] }
1806     \appoggiatura a32 b4
1807     \acciaccatura a8 b4
1808   }
1809   \new Lyrics
1810   \lyricsto melody {
1811     normal
1812     \set includeGraceNotes = ##t
1813     case,
1814     gra -- ce case,
1815     after -- grace case,
1816     \set ignoreMelismata = ##t
1817     app. case,
1818     acc. case.
1819   }
1820 >>
1821 @end lilypond
1822
1823 @knownissues
1824 Like @code{associatedVoice}, @code{includeGraceNotes} needs to be
1825 set at latest one syllable before the one which is to be put under a
1826 grace note.  For the case of a grace note at the very beginning of a
1827 piece of music, consider using a @code{\with} or @code{\context}
1828 block:
1829
1830 @lilypond[verbatim,ragged-right,quote]
1831 <<
1832   \new Voice = melody \relative c' {
1833     \grace { c16[( d e f] }
1834     g1) f
1835   }
1836   \new Lyrics \with { includeGraceNotes = ##t }
1837   \lyricsto melody {
1838     Ah __ fa
1839   }
1840 >>
1841 @end lilypond
1842
1843 @subsubheading Switching to an alternative melody
1844
1845 @cindex associatedVoice
1846 @cindex alternative melody, switching to
1847
1848 More complex variations in setting lyrics to music are possible.
1849 The melody to which the lyrics are being set can be changed from
1850 within the lyrics by setting the @code{associatedVoice} property:
1851
1852 @lilypond[verbatim,quote]
1853 <<
1854   \relative c' \new Voice = "lahlah" {
1855     \set Staff.autoBeaming = ##f
1856     c4
1857     <<
1858       \new Voice = "alternative" {
1859         \voiceOne
1860         \times 2/3 {
1861           % show associations clearly.
1862           \override NoteColumn.force-hshift = #-3
1863           f8 f g
1864         }
1865       }
1866       {
1867         \voiceTwo
1868         f8.[ g16]
1869         \oneVoice
1870       } >>
1871     a8( b) c
1872   }
1873   \new Lyrics \lyricsto "lahlah" {
1874     Ju -- ras -- sic Park
1875   }
1876   \new Lyrics \lyricsto "lahlah" {
1877     % Tricky: need to set associatedVoice
1878     % one syllable too soon!
1879     \set associatedVoice = "alternative" % applies to "ran"
1880     Ty --
1881     ran --
1882     no --
1883     \set associatedVoice = "lahlah" % applies to "rus"
1884     sau -- rus Rex
1885   } >>
1886 @end lilypond
1887
1888 @noindent
1889 The text for the first stanza is set to the melody called
1890 @q{lahlah} in the usual way, but the second stanza is set initally
1891 to the @code{lahlah} context and is then switched to the
1892 @code{alternative} melody for the syllables @q{ran} to @q{sau} by
1893 the lines:
1894
1895 @example
1896 \set associatedVoice = "alternative" % applies to "ran"
1897 Ty --
1898 ran --
1899 no --
1900 \set associatedVoice = "lahlah" % applies to "rus"
1901 sau -- rus Rex
1902 @end example
1903
1904 @noindent
1905 Here, @code{alternative} is the name of the @code{Voice} context
1906 containing the triplet.
1907
1908 Note the placement of the @code{\set associatedVoice} command --
1909 it appears to be one syllable too early, but this is correct.
1910
1911 @warning{The @code{\set associatedVoice} command must be placed
1912 one syllable @emph{before} the one at which the switch to the new
1913 voice is to occur.  In other words, changing the associated Voice
1914 happens one syllable later than expected.  This is for technical
1915 reasons, and it is not a bug.}
1916
1917
1918 @node Printing stanzas at the end
1919 @unnumberedsubsubsec Printing stanzas at the end
1920
1921 Sometimes it is appropriate to have one stanza set
1922 to the music, and the rest added in verse form at
1923 the end of the piece.  This can be accomplished by adding
1924 the extra verses into a @code{\markup} section outside
1925 of the main score block.  Notice that there are two
1926 different ways to force linebreaks when using
1927 @code{\markup}.
1928
1929 @lilypond[ragged-right,verbatim,quote]
1930 melody = \relative c' {
1931 e d c d | e e e e |
1932 d d e d | c1 |
1933 }
1934
1935 text = \lyricmode {
1936 \set stanza = #"1." Ma- ry had a lit- tle lamb,
1937 its fleece was white as snow.
1938 }
1939
1940 \score{ <<
1941   \new Voice = "one" { \melody }
1942   \new Lyrics \lyricsto "one" \text
1943 >>
1944   \layout { }
1945 }
1946 \markup { \column{
1947   \line{ Verse 2. }
1948   \line{ All the children laughed and played }
1949   \line{ To see a lamb at school. }
1950   }
1951 }
1952 \markup{
1953   \wordwrap-string #"
1954   Verse 3.
1955
1956   Mary took it home again,
1957
1958   It was against the rule."
1959 }
1960 @end lilypond
1961
1962
1963 @node Printing stanzas at the end in multiple columns
1964 @unnumberedsubsubsec Printing stanzas at the end in multiple columns
1965
1966 When a piece of music has many verses, they are often printed in
1967 multiple columns across the page.  An outdented verse number often
1968 introduces each verse.  The following example shows how to produce such
1969 output in LilyPond.
1970
1971 @lilypond[ragged-right,quote,verbatim]
1972 melody = \relative c' {
1973   c4 c c c | d d d d
1974 }
1975
1976 text = \lyricmode {
1977   \set stanza = #"1." This is verse one.
1978   It has two lines.
1979 }
1980
1981 \score {
1982   <<
1983     \new Voice = "one" { \melody }
1984     \new Lyrics \lyricsto "one" \text
1985   >>
1986   \layout { }
1987 }
1988
1989 \markup {
1990   \fill-line {
1991     \hspace #0.1 % moves the column off the left margin;
1992      % can be removed if space on the page is tight
1993      \column {
1994       \line { \bold "2."
1995         \column {
1996           "This is verse two."
1997           "It has two lines."
1998         }
1999       }
2000       \vspace #0.1 % adds vertical spacing between verses
2001       \line { \bold "3."
2002         \column {
2003           "This is verse three."
2004           "It has two lines."
2005         }
2006       }
2007     }
2008     \hspace #0.1 % adds horizontal spacing between columns;
2009     \column {
2010       \line { \bold "4."
2011         \column {
2012           "This is verse four."
2013           "It has two lines."
2014         }
2015       }
2016       \vspace #0.1 % adds vertical spacing between verses
2017       \line { \bold "5."
2018         \column {
2019           "This is verse five."
2020           "It has two lines."
2021         }
2022       }
2023     }
2024   \hspace #0.1 % gives some extra space on the right margin;
2025   % can be removed if page space is tight
2026   }
2027 }
2028 @end lilypond
2029
2030
2031 @seealso
2032 Internals Reference:
2033 @rinternals{LyricText},
2034 @rinternals{StanzaNumber}.
2035
2036
2037 @node Songs
2038 @subsection Songs
2039
2040 @menu
2041 * References for songs::
2042 * Lead sheets::
2043 @end menu
2044
2045 @node References for songs
2046 @unnumberedsubsubsec References for songs
2047
2048 Songs are usually written on three staves with the melody for the
2049 singer on the top staff and two staves of piano accompaniment at
2050 the bottom.  The lyrics of the first stanza are printed immediately
2051 underneath the top staff.  If there are just a small number of
2052 further stanzas these can be printed immediately under the first
2053 one, but if there are more stanzas than can be easily accommodated
2054 there the second and subsequent stanzas are printed after the music
2055 as stand-alone text.
2056
2057 All the notational elements needed to write songs are fully described
2058 elsewhere:
2059
2060 @itemize
2061
2062 @item
2063 For constructing the staff layout, see @ref{Displaying staves}.
2064
2065 @item
2066 For writing piano music, see
2067 @ref{Keyboard and other multi-staff instruments}.
2068
2069 @item
2070 For writing the lyrics to a melody line, see
2071 @ref{Common notation for vocal music}.
2072
2073 @item
2074 For placing the lyrics, see @ref{Placing lyrics vertically}.
2075
2076 @item
2077 For entering stanzas, see @ref{Stanzas}.
2078
2079 @item
2080 Songs are frequently printed with the chording indicated by chord
2081 names above the staves.  This is described in @ref{Displaying chords}.
2082
2083 @item
2084 To print fret diagrams of the chords for guitar accompaniment or
2085 accompaniment by other fretted instruments, see @qq{Fret diagram
2086 markups} in @ref{Common notation for fretted strings}.
2087
2088 @end itemize
2089
2090 @seealso
2091 Learning Manual:
2092 @rlearning{Songs}.
2093
2094 Notation Reference:
2095 @ref{Common notation for vocal music},
2096 @ref{Displaying chords},
2097 @ref{Displaying staves},
2098 @ref{Keyboard and other multi-staff instruments},
2099 @ref{Placing lyrics vertically},
2100 @ref{Stanzas}.
2101
2102 Snippets:
2103 @rlsr{Vocal music}.
2104
2105
2106 @node Lead sheets
2107 @unnumberedsubsubsec Lead sheets
2108
2109 Lead sheets may be printed by combining vocal parts and
2110 @q{chord mode}; this syntax is explained in @ref{Chord notation}.
2111
2112 @snippets
2113 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
2114 {simple-lead-sheet.ly}
2115
2116 @seealso
2117 Notation Reference:
2118 @ref{Chord notation}.
2119
2120
2121 @node Choral
2122 @subsection Choral
2123
2124 @cindex anthems
2125 @cindex part songs
2126 @cindex oratorio
2127 @cindex SATB
2128
2129 This section discusses notation issues that relate most directly
2130 to choral music.  This includes anthems, part songs, oratorio,
2131 etc.
2132
2133 @menu
2134 * References for choral::
2135 * Score layouts for choral::
2136 * Divided voices::
2137 @end menu
2138
2139 @node References for choral
2140 @unnumberedsubsubsec References for choral
2141
2142 Choral music is usually notated on two, three or four staves within
2143 a @code{ChoirStaff} group.  Accompaniment, if required, is placed
2144 beneath in a @code{PianoStaff} group, which is usually reduced in
2145 size for @emph{a capella} choral works.  The notes for each vocal
2146 part are placed in a @code{Voice} context, with each staff
2147 being given either a single vocal part (i.e., one @code{Voice}) or
2148 a pair of vocal parts (i.e., two @code{Voice}s).
2149
2150 Words are placed in @code{Lyrics} contexts, either underneath each
2151 corresponding music staff, or one above and one below the music
2152 staff if this contains the music for two parts.
2153
2154 Several common topics in choral music are described fully elsewhere:
2155
2156 @itemize
2157
2158 @item
2159 An introduction to creating an SATB vocal score can be found in
2160 the Learning Manual, see @rlearning{Four-part SATB vocal score}.
2161
2162 @item
2163 Several templates suitable for various styles of choral music can
2164 also be found in the Learning Manual, see
2165 @rlearning{Vocal ensembles templates}.
2166
2167 @item
2168 For information about @code{ChoirStaff} and @code{PianoStaff} see
2169 @ref{Grouping staves}.
2170
2171 @item
2172 Shape note heads, as used in Sacred Harp and similar notation, are
2173 described in @ref{Shape note heads}.
2174
2175 @item
2176 When two vocal parts share a staff the stems, ties, slurs, etc., of
2177 the higher part will be directed up and those of the lower part
2178 down.  To do this, use @code{\voiceOne} and @code{\voiceTwo}.  See
2179 @ref{Single-staff polyphony}.
2180
2181 @end itemize
2182
2183 @predefined
2184 @code{\oneVoice},
2185 @code{\voiceOne},
2186 @code{\voiceTwo}.
2187
2188 @seealso
2189 Learning Manual:
2190 @rlearning{Four-part SATB vocal score},
2191 @rlearning{Vocal ensembles templates}.
2192
2193 Notation Reference:
2194 @ref{Context layout order},
2195 @ref{Grouping staves},
2196 @ref{Shape note heads},
2197 @ref{Single-staff polyphony}.
2198
2199 Snippets:
2200 @rlsr{Vocal music}.
2201
2202 Internals Reference:
2203 @rinternals{ChoirStaff},
2204 @rinternals{Lyrics},
2205 @rinternals{PianoStaff}.
2206
2207
2208 @node Score layouts for choral
2209 @unnumberedsubsubsec Score layouts for choral
2210
2211 Choral music containing four staves, with or without piano
2212 accompaniment, is usually laid out with two systems per page.
2213 Depending on the page size, achieving this may require changes
2214 to several default settings.  The following settings should be
2215 considered:
2216
2217 @itemize
2218
2219 @item
2220 The global staff size can be modified to change the overall size
2221 of the elements of the score.  See @ref{Setting the staff size}.
2222
2223 @item
2224 The distances between the systems, the staves and the lyrics can
2225 all be adjusted independently.  See @ref{Vertical spacing}.
2226
2227 @item
2228 The dimensions of the vertical layout variables can be displayed as
2229 an aid to adjusting the vertical spacing.  This and other
2230 possibilities for fitting the music onto fewer pages are described
2231 in @ref{Fitting music onto fewer pages}.
2232
2233 @item
2234 If the number of systems per page changes from one to two it is
2235 customary to indicate this with a system separator mark between
2236 the two systems.  See @ref{Separating systems}.
2237
2238 @item
2239 For details of other page formatting properties, see
2240 @ref{Page layout}.
2241
2242 @end itemize
2243
2244
2245 Dynamic markings by default are placed below the staff, but in
2246 choral music they are usually placed above the staff in order to
2247 avoid the lyrics.  The predefined command @code{\dynamicUp} does
2248 this for the dynamic markings in a single @code{Voice} context.
2249 If there are many @code{Voice} contexts this predefined command
2250 would have to be placed in every one.  Alternatively its expanded
2251 form can be used to place all dynamic markings in the entire score
2252 above their respective staves, as shown here:
2253
2254 @lilypond[verbatim,quote]
2255 \score {
2256   \new ChoirStaff <<
2257     \new Staff {
2258       \new Voice {
2259         \relative c'' { g4\f g g g }
2260       }
2261     }
2262     \new Staff {
2263       \new Voice {
2264         \relative c' { d4 d d\p d }
2265       }
2266     }
2267   >>
2268   \layout {
2269     \context {
2270       \Score
2271       \override DynamicText.direction = #UP
2272       \override DynamicLineSpanner.direction = #UP
2273     }
2274   }
2275 }
2276 @end lilypond
2277
2278 @predefined
2279 @code{\dynamicUp}, @code{\dynamicDown}, @code{\dynamicNeutral}.
2280
2281 @seealso
2282 Notation Reference:
2283 @ref{Changing spacing},
2284 @ref{Displaying spacing},
2285 @ref{Fitting music onto fewer pages},
2286 @ref{Page layout},
2287 @ref{Score layout},
2288 @ref{Separating systems},
2289 @ref{Setting the staff size},
2290 @ref{Using an extra voice for breaks},
2291 @ref{Vertical spacing}.
2292
2293 Internals Reference:
2294 @rinternals{VerticalAxisGroup},
2295 @rinternals{StaffGrouper}.
2296
2297
2298 @node Divided voices
2299 @unnumberedsubsubsec Divided voices
2300
2301 @cindex voices, divided
2302
2303 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
2304 {using-arpeggiobracket-to-make-divisi-more-visible.ly}
2305
2306 @seealso
2307 Notation Reference:
2308 @ref{Expressive marks as lines}.
2309
2310
2311 @node Opera and stage musicals
2312 @subsection Opera and stage musicals
2313
2314 The music, lyrics and dialogue to opera and stage musicals are
2315 usually set out in one or more of the following forms:
2316
2317 @itemize
2318
2319 @item
2320 A @emph{Conductors' Score} containing the full orchestral and vocal
2321 parts, together with libretto cues if there are spoken passages.
2322
2323 @item
2324 @emph{Orchestral Parts} containing the music for the individual
2325 instruments of the orchestra or band.
2326
2327 @item
2328 A @emph{Vocal Score} containing all vocal parts with piano
2329 accompaniment.  The accompaniment is usually an orchestral
2330 reduction, and if so the name of the original orchestral instrument
2331 is often indicated.  Vocal scores sometimes includes stage
2332 directions and libretto cues.
2333
2334 @item
2335 A @emph{Vocal Book} containing just the vocal parts
2336 (no accompaniment), sometimes combined with the libretto.
2337
2338 @item
2339 A @emph{Libretto} containing the extended passages of spoken
2340 dialogue usually found in musicals, together with the words to the
2341 sung parts.  Stage directions are usually included.  LilyPond can
2342 be used to typeset libretti but as they contain no music
2343 alternative methods may be preferable.
2344
2345 @end itemize
2346
2347 The sections in the LilyPond documentation which cover the topics
2348 needed to create scores in the styles commonly found in opera and
2349 musicals are indicated in the References below.  This is followed
2350 by sections covering those techniques which are peculiar to
2351 typesetting opera and musical scores.
2352
2353 @menu
2354 * References for opera and stage musicals::
2355 * Character names::
2356 * Musical cues::
2357 * Spoken music::
2358 * Dialogue over music::
2359 @end menu
2360
2361 @node References for opera and stage musicals
2362 @unnumberedsubsubsec References for opera and stage musicals
2363
2364 @itemize
2365
2366 @item
2367 A conductors' score contains many grouped staves and lyrics.  Ways
2368 of grouping staves is shown in @ref{Grouping staves}.  To nest
2369 groups of staves see @ref{Nested staff groups}.
2370
2371 @item
2372 The printing of empty staves in conductors' scores and vocal scores
2373 is often suppressed.  To create such a @qq{Frenched score} see
2374 @ref{Hiding staves}.
2375
2376 @item
2377 Writing orchestral parts is covered in @ref{Writing parts}.
2378 Other sections in the Specialist notation chapter may be relevant,
2379 depending on the orchestration used.  Many instruments are
2380 transposing instruments, see @ref{Instrument transpositions}.
2381
2382 @item
2383 If the number of systems per page changes from page to page it is
2384 customary to separate the systems with a system separator mark.
2385 See @ref{Separating systems}.
2386
2387 @item
2388 For details of other page formatting properties, see
2389 @ref{Page layout}.
2390
2391 @item
2392 Dialogue cues, stage directions and footnotes can be inserted, see
2393 @ref{Creating footnotes} and @ref{Text}.  Extensive stage directions
2394 can also be added with a section of stand-alone markups between two
2395 @code{\score} blocks, see @ref{Separate text}.
2396
2397 @end itemize
2398
2399 @seealso
2400 Musical Glossary:
2401 @rglos{Frenched score},
2402 @rglos{Frenched staves},
2403 @rglos{transposing instrument}.
2404
2405 Notation Reference:
2406 @ref{Creating footnotes},
2407 @ref{Grouping staves},
2408 @ref{Hiding staves},
2409 @ref{Instrument transpositions},
2410 @ref{Nested staff groups},
2411 @ref{Page layout},
2412 @ref{Separating systems},
2413 @ref{Transpose},
2414 @ref{Writing parts},
2415 @ref{Writing text}.
2416
2417 Snippets:
2418 @rlsr{Vocal music}.
2419
2420
2421 @node Character names
2422 @unnumberedsubsubsec Character names
2423
2424 @cindex character names
2425 @cindex names, character
2426
2427 Character names are usually shown to the left of the staff when the
2428 staff is dedicated to that character alone:
2429
2430 @lilypond[quote,verbatim,ragged-right]
2431 \score {
2432   <<
2433     \new Staff {
2434       \set Staff.vocalName = \markup \smallCaps Kaspar
2435       \set Staff.shortVocalName = \markup \smallCaps Kas.
2436       \relative c' {
2437         \clef "G_8"
2438         c4 c c c
2439         \break
2440         c4 c c c
2441       }
2442     }
2443     \new Staff {
2444       \set Staff.vocalName = \markup \smallCaps Melchior
2445       \set Staff.shortVocalName = \markup \smallCaps Mel
2446       \clef "bass"
2447       \relative c' {
2448         a4 a a a
2449         a4 a a a
2450       }
2451     }
2452   >>
2453 }
2454 @end lilypond
2455
2456 When two or more characters share a staff the character's name is
2457 usually printed above the staff at the start of every section
2458 applying to that character.  This can be done with markup.  Often a
2459 specific font is used for this purpose.
2460
2461 @lilypond[quote,verbatim,relative=1]
2462 \clef "G_8"
2463 c4^\markup \fontsize #1 \smallCaps Kaspar
2464 c c c
2465 \clef "bass"
2466 a4^\markup \fontsize #1 \smallCaps Melchior
2467 a a a
2468 \clef "G_8"
2469 c4^\markup \fontsize #1 \smallCaps Kaspar
2470 c c c
2471 @end lilypond
2472
2473 Alternatively, if there are many character changes, it may be
2474 easier to set up @qq{instrument} definitions for each character at
2475 the top level so that @code{\instrumentSwitch} can be used to
2476 indicate each change.
2477
2478 @lilypond[quote,verbatim]
2479 \addInstrumentDefinition #"kaspar"
2480   #`((instrumentTransposition . ,(ly:make-pitch -1 0 0))
2481      (shortInstrumentName . "Kas.")
2482      (clefGlyph . "clefs.G")
2483      (clefOctavation . -7)
2484      (middleCPosition . 1)
2485      (clefPosition . -2)
2486      (instrumentCueName . ,(markup #:fontsize 1 #:smallCaps "Kaspar"))
2487      (midiInstrument . "voice oohs"))
2488
2489 \addInstrumentDefinition #"melchior"
2490   #`((instrumentTransposition . ,(ly:make-pitch 0 0 0))
2491      (shortInstrumentName . "Mel.")
2492      (clefGlyph . "clefs.F")
2493      (clefOctavation . 0)
2494      (middleCPosition . 6)
2495      (clefPosition . 2)
2496      (instrumentCueName . ,(markup #:fontsize 1 #:smallCaps "Melchior"))
2497      (midiInstrument . "choir aahs"))
2498
2499 \relative c' {
2500   \instrumentSwitch "kaspar"
2501   c4 c c c
2502   \instrumentSwitch "melchior"
2503   a4 a a a
2504   \instrumentSwitch "kaspar"
2505   c4 c c c
2506 }
2507 @end lilypond
2508
2509 @seealso
2510 Notation Reference:
2511 @ref{Instrument names},
2512 @ref{Scheme functions},
2513 @ref{Text},
2514 @ref{Text markup commands}.
2515
2516 Extending LilyPond:
2517 @rextend{Markup construction in Scheme}.
2518
2519
2520 @node Musical cues
2521 @unnumberedsubsubsec Musical cues
2522
2523 @cindex musical cues
2524 @cindex cues, musical
2525
2526 Musical cues can be inserted in Vocal Scores, Vocal Books and
2527 Orchestral Parts to indicate what music in another part
2528 immediately precedes an entry.  Also, cues are often inserted in the
2529 piano reduction in Vocal Scores to indicate what each orchestral
2530 instrument is playing.  This aids the conductor when a full
2531 Conductors' Score is not available.
2532
2533 The basic mechanism for inserting cues is fully explained in the
2534 main text, see @ref{Quoting other voices} and
2535 @ref{Formatting cue notes}.  But when many cues have to be
2536 inserted, for example, as an aid to a conductor in a vocal score,
2537 the instrument name must be positioned carefully just before and
2538 close to the start of the cue notes.  The following example shows
2539 how this is done.
2540
2541 @lilypond[quote,verbatim]
2542 flute = \relative c'' {
2543   s4 s4 e g
2544 }
2545 \addQuote "flute" { \flute }
2546
2547 pianoRH = \relative c'' {
2548   c4. g8
2549   % position name of cue-ing instrument just before the cue notes,
2550   % and above the staff
2551   \new CueVoice {
2552     \override InstrumentSwitch.self-alignment-X = #RIGHT
2553     \set instrumentCueName = "Flute"
2554   }
2555   \cueDuring "flute" #UP { g4 bes4 }
2556 }
2557 pianoLH = \relative c { c4 <c' e> e, <g c> }
2558
2559 \score {
2560   \new PianoStaff <<
2561     \new Staff {
2562       \pianoRH
2563     }
2564     \new Staff {
2565       \clef "bass"
2566       \pianoLH
2567     }
2568   >>
2569 }
2570 @end lilypond
2571
2572 If a transposing instrument is being quoted the instrument part should
2573 specify its key so the conversion of its cue notes will be done
2574 automatically.  The example below shows this transposition for a
2575 B-flat clarinet.  The notes in this example are low on the staff so
2576 @code{DOWN} is specified in @code{\cueDuring} (so the stems are
2577 down) and the instrument name is positioned below the staff.  Note
2578 also that the piano right-hand voice is explicitly declared.  This
2579 is because the cue notes in this example begin at the start of the
2580 first bar and this would otherwise cause the entire piano right-hand
2581 notes to be placed in a @code{CueVoice} context.
2582
2583 @lilypond[quote,verbatim]
2584 clarinet = \relative c' {
2585   \transposition bes
2586   fis4 d d c
2587 }
2588 \addQuote "clarinet" { \clarinet }
2589
2590 pianoRH = \relative c'' {
2591   \transposition c'
2592   % position name of cue-ing instrument below the staff
2593   \new CueVoice {
2594     \override InstrumentSwitch.self-alignment-X = #RIGHT
2595     \override InstrumentSwitch.direction = #DOWN
2596     \set instrumentCueName = "Clar."
2597   }
2598   \cueDuring "clarinet" #DOWN { c4. g8 }
2599   g4 bes4
2600 }
2601 pianoLH = \relative c { c4 <c' e> e, <g c> }
2602
2603 \score {
2604   <<
2605     \new PianoStaff <<
2606       \new Staff {
2607         \new Voice {
2608           \pianoRH
2609         }
2610       }
2611       \new Staff {
2612         \clef "bass"
2613         \pianoLH
2614       }
2615     >>
2616   >>
2617 }
2618 @end lilypond
2619
2620 From these two examples it is clear that inserting many cues in a
2621 Vocal Score would be tedious, and the notes of the piano part would
2622 become obscured.  However, as the following snippet shows, it is
2623 possible to define a music function to reduce the amount of typing
2624 and to make the piano notes clearer.
2625
2626 @snippets
2627 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
2628 {adding-orchestral-cues-to-a-vocal-score.ly}
2629
2630 @seealso
2631 Musical Glossary:
2632 @rglos{cue-notes}.
2633
2634 Notation Reference:
2635 @ref{Aligning objects},
2636 @ref{Direction and placement},
2637 @ref{Formatting cue notes},
2638 @ref{Quoting other voices},
2639 @ref{Using music functions}.
2640
2641 Snippets:
2642 @rlsr{Vocal music}.
2643
2644 Internals Reference:
2645 @rinternals{InstrumentSwitch},
2646 @rinternals{CueVoice}.
2647
2648 @knownissues
2649 @code{\cueDuring} automatically inserts a @code{CueVoice} context
2650 and all cue notes are placed in that context.  This means it is not
2651 possible to have two overlapping sequences of cue notes by this
2652 technique.  Overlapping sequences could be entered by explicitly
2653 declaring separate @code{CueVoice} contexts and using
2654 @code{\quoteDuring} to extract and insert the cue notes.
2655
2656
2657 @node Spoken music
2658 @unnumberedsubsubsec Spoken music
2659
2660 @cindex parlato
2661 @cindex Sprechgesang
2662 Such effects as @q{parlato} or @q{Sprechgesang} require performers to
2663 speak without pitch but still with rhythm; these are notated by cross
2664 note heads, as demonstrated in @ref{Special note heads}.
2665
2666 @c TODO add "marking-notes-on-spoken-parts" snippet -vv
2667 @c add "showing the rhythm of a melody" snip
2668 @c add "one staff-line notation"
2669 @c add "improvisation" ref
2670 @c add "lyrics independents of notes" ref
2671
2672 @node Dialogue over music
2673 @unnumberedsubsubsec Dialogue over music
2674
2675 Dialogue over music is usually printed over the staves in an italic
2676 font, with the start of each phrase keyed in to a particular music
2677 moment.
2678
2679 For short interjections a simple markup suffices.
2680
2681 @lilypond[quote,verbatim,relative=2]
2682 a4^\markup { \smallCaps { Alex - } \italic { He's gone } } a a a
2683 a4 a a^\markup { \smallCaps { Bethan - } \italic Where? } a
2684 a4 a a a
2685 @end lilypond
2686
2687 For longer phrases it may be necessary to expand the music to make
2688 the words fit neatly.  There is no provision in LilyPond to do this
2689 fully automatically, and some manual intervention to layout the
2690 page will be necessary.
2691
2692 For long phrases or for passages with a lot of closely packed
2693 dialogue, using a Lyrics context will give better results.  The
2694 Lyrics context should not be associated with a music Voice; instead
2695 each section of dialogue should be given an explicit duration.  If
2696 there is a gap in the dialogue, the final word should be separated
2697 from the rest and the duration split between them so that the
2698 underlying music spaces out smoothly.
2699
2700 If the dialogue extends for more than one line it will be necessary
2701 to manually insert @code{\break}s and adjust the placing of the
2702 dialogue to avoid running into the right margin.  The final word of
2703 the last measure on a line should also be separated out, as above.
2704
2705 Here is an example illustrating how this might be done.
2706
2707 @c This should be a snippet, but it can't be as it needs to be
2708 @c manually adjusted to suit the imposed line length.  -td
2709
2710 @lilypond[quote,verbatim,ragged-right]
2711 music = \relative c'' {
2712   \repeat unfold 3 { a4 a a a }
2713 }
2714
2715 dialogue = \lyricmode {
2716   \markup {
2717     \fontsize #1 \upright \smallCaps Abe:
2718     "Say this over measures one and"
2719   }4*7
2720   "two"4 |
2721   \break
2722   "and this over measure"4*3
2723   "three"4 |
2724 }
2725
2726 \score {
2727   <<
2728     \new Lyrics \with {
2729       \override LyricText.font-shape = #'italic
2730       \override LyricText.self-alignment-X = #LEFT
2731     }
2732     { \dialogue }
2733     \new Staff {
2734       \new Voice { \music }
2735     }
2736   >>
2737 }
2738 @end lilypond
2739
2740 @c TODO show use of \column to produce dialogue on two lines
2741
2742 @seealso
2743 Notation Reference:
2744 @ref{Manual syllable durations},
2745 @ref{Text}.
2746
2747 Internal Reference:
2748 @rinternals{LyricText}.
2749
2750
2751 @node Chants psalms and hymns
2752 @subsection Chants psalms and hymns
2753
2754 @cindex chants
2755 @cindex psalms
2756 @cindex hymns
2757 @cindex religious music
2758
2759 The music and words for chants, psalms and hymns usually follow a
2760 well-established format in any particular church.  Although the
2761 formats may differ from church to church the type-setting problems
2762 which arise are broadly similar, and are covered in this section.
2763
2764 @menu
2765 * References for chants and psalms::
2766 * Setting a chant::
2767 * Pointing a psalm::
2768 * Partial measures in hymn tunes::
2769 @end menu
2770
2771 @node References for chants and psalms
2772 @unnumberedsubsubsec References for chants and psalms
2773
2774 Typesetting Gregorian chant in various styles of ancient notation
2775 is described in @ref{Ancient notation}.
2776
2777 @seealso
2778 Notation reference:
2779 @ref{Ancient notation}.
2780
2781 Snippets:
2782 @rlsr{Vocal music}.
2783
2784
2785 @node Setting a chant
2786 @unnumberedsubsubsec Setting a chant
2787
2788 Modern chant settings use modern notation with varying numbers of
2789 elements taken from ancient notation.  Some of the elements and
2790 methods to consider are shown here.
2791
2792 Chants often use quarter notes without stems to indicate the pitch,
2793 with the rhythm being taken from the spoken rhythm of the words.
2794
2795 @lilypond[verbatim,quote]
2796 stemOff = { \override Staff.Stem.transparent = ##t }
2797
2798 \relative c' {
2799   \stemOff
2800   a'4 b c2 |
2801 }
2802
2803 @end lilypond
2804
2805 Chants often omit the bar lines or use shortened or dotted bar
2806 lines to indicate pauses in the music.  To omit all bar lines from
2807 all staves remove the bar line engraver completely:
2808
2809 @lilypond[verbatim,quote]
2810 \score {
2811   \new StaffGroup <<
2812     \new Staff {
2813       \relative c'' {
2814         a4 b c2 |
2815         a4 b c2 |
2816         a4 b c2 |
2817       }
2818     }
2819     \new Staff {
2820       \relative c'' {
2821         a4 b c2 |
2822         a4 b c2 |
2823         a4 b c2 |
2824       }
2825     }
2826   >>
2827   \layout {
2828     \context {
2829       \Staff
2830       \remove "Bar_engraver"
2831     }
2832   }
2833 }
2834 @end lilypond
2835
2836 Bar lines can also be removed on a staff-by-staff basis:
2837
2838 @lilypond[verbatim, quote]
2839 \score {
2840   \new ChoirStaff <<
2841     \new Staff
2842     \with { \remove "Bar_engraver" } {
2843       \relative c'' {
2844         a4 b c2 |
2845         a4 b c2 |
2846         a4 b c2 |
2847       }
2848     }
2849     \new Staff {
2850       \relative c'' {
2851         a4 b c2 |
2852         a4 b c2 |
2853         a4 b c2 |
2854       }
2855     }
2856   >>
2857 }
2858 @end lilypond
2859
2860 To remove bar lines from just a section of music treat it as a
2861 cadenza.  If the section is long you may need to insert dummy
2862 bar lines with @code{\bar ""} to show where the line should break.
2863
2864 @lilypond[verbatim,quote,relative=2]
2865 a4 b c2 |
2866 \cadenzaOn
2867 a4 b c2
2868 a4 b c2
2869 \bar ""
2870 a4 b c2
2871 a4 b c2
2872 \cadenzaOff
2873 a4 b c2 |
2874 a4 b c2 |
2875 @end lilypond
2876
2877 Rests or pauses in chants can be indicated by modified bar lines.
2878
2879 @lilypond[verbatim, quote,relative=2]
2880 a4
2881 \cadenzaOn
2882 b c2
2883 a4 b c2
2884 \bar "'"
2885 a4 b c2
2886 a4 b c2
2887 \bar ";"
2888 a4 b c2
2889 \bar "!"
2890 a4 b c2
2891 \bar "||"
2892 @end lilypond
2893
2894 Alternatively, the notation used in Gregorian chant for pauses or
2895 rests is sometimes used even though the rest of the notation is
2896 modern.  This uses a modified @code{\breathe} mark:
2897
2898 @lilypond[verbatim,quote]
2899 divisioMinima = {
2900   \once \override BreathingSign.stencil = #ly:breathing-sign::divisio-minima
2901   \once \override BreathingSign.Y-offset = #0
2902   \breathe
2903 }
2904 divisioMaior = {
2905   \once \override BreathingSign.stencil = #ly:breathing-sign::divisio-maior
2906   \once \override BreathingSign.Y-offset = #0
2907   \breathe
2908 }
2909 divisioMaxima = {
2910   \once \override BreathingSign.stencil = #ly:breathing-sign::divisio-maxima
2911   \once \override BreathingSign.Y-offset = #0
2912   \breathe
2913 }
2914 finalis = {
2915   \once \override BreathingSign.stencil = #ly:breathing-sign::finalis
2916   \once \override BreathingSign.Y-offset = #0
2917   \breathe
2918 }
2919
2920 \score {
2921   \relative c'' {
2922     g2 a4 g
2923     \divisioMinima
2924     g2 a4 g
2925     \divisioMaior
2926     g2 a4 g
2927     \divisioMaxima
2928     g2 a4 g
2929     \finalis
2930   }
2931   \layout {
2932     \context {
2933       \Staff
2934       \remove "Bar_engraver"
2935     }
2936   }
2937 }
2938 @end lilypond
2939
2940 Chants usually omit the time signature and often omit the clef too.
2941
2942 @lilypond[verbatim,quote]
2943 \score {
2944   \new Staff {
2945     \relative c'' {
2946       a4 b c2 |
2947       a4 b c2 |
2948       a4 b c2 |
2949     }
2950   }
2951   \layout {
2952     \context {
2953       \Staff
2954       \remove "Bar_engraver"
2955       \remove "Time_signature_engraver"
2956       \remove "Clef_engraver"
2957     }
2958   }
2959 }
2960 @end lilypond
2961
2962 Chants for psalms in the Anglican tradition are usually either
2963 @emph{single}, with 7 bars of music, or @emph{double}, with two lots
2964 of 7 bars.  Each group of 7 bars is divided into two halves,
2965 corresponding to the two halves of each verse, usually separated by
2966 a double bar line.  Only whole and half notes are used.  The 1st bar
2967 in each half always contains a single chord of whole notes.  This is
2968 the @qq{reciting note}.  Chants are usually centered on the page.
2969
2970 @lilypond[verbatim,quote]
2971 SopranoMusic = \relative g' {
2972   g1 | c2 b | a1 | \bar "||"
2973   a1 | d2 c | c b | c1 | \bar "||"
2974 }
2975
2976 AltoMusic = \relative c' {
2977   e1 | g2 g | f1 |
2978   f1 | f2 e | d d | e1 |
2979 }
2980
2981 TenorMusic = \relative a {
2982   c1 | c2 c | c1 |
2983   d1 | g,2 g | g g | g1 |
2984 }
2985
2986 BassMusic =  \relative c {
2987   c1 | e2 e | f1 |
2988   d1 | b2 c | g' g | c,1 |
2989 }
2990
2991 global = {
2992   \time 2/2
2993 }
2994
2995 % Use markup to center the chant on the page
2996 \markup {
2997   \fill-line {
2998     \score {  % centered
2999       <<
3000         \new ChoirStaff <<
3001           \new Staff <<
3002             \global
3003             \clef "treble"
3004             \new Voice = "Soprano" <<
3005               \voiceOne
3006               \SopranoMusic
3007             >>
3008             \new Voice = "Alto" <<
3009               \voiceTwo
3010               \AltoMusic
3011             >>
3012           >>
3013           \new Staff <<
3014             \clef "bass"
3015             \global
3016             \new Voice = "Tenor" <<
3017               \voiceOne
3018               \TenorMusic
3019             >>
3020             \new Voice = "Bass" <<
3021               \voiceTwo
3022               \BassMusic
3023             >>
3024           >>
3025         >>
3026       >>
3027       \layout {
3028         \context {
3029           \Score
3030           \override SpacingSpanner.base-shortest-duration = #(ly:make-moment 1 2)
3031         }
3032         \context {
3033           \Staff
3034           \remove "Time_signature_engraver"
3035         }
3036       }
3037     }  % End score
3038   }
3039 }  % End markup
3040 @end lilypond
3041
3042 Some other approaches to setting such a chant are shown in the first
3043 of the following snippets.
3044
3045 @snippets
3046
3047 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
3048 {chant-or-psalms-notation.ly}
3049
3050 Canticles and other liturgical texts may be set more freely, and
3051 may use notational elements from ancient music.  Often the words
3052 are shown underneath and aligned with the notes.  If so, the notes
3053 are spaced in accordance with the syllables rather than the notes'
3054 durations.
3055
3056 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
3057 {ancient-notation-template----modern-transcription-of-gregorian-music.ly}
3058
3059 @seealso
3060 Learning Manual:
3061 @rlearning{Visibility and color of objects},
3062 @rlearning{Vocal ensembles templates}.
3063
3064 Notation Reference:
3065 @ref{Ancient notation},
3066 @ref{Bar lines},
3067 @ref{Modifying context plug-ins},
3068 @ref{Typesetting Gregorian chant},
3069 @ref{Unmetered music},
3070 @ref{Visibility of objects}.
3071
3072
3073 @node Pointing a psalm
3074 @unnumberedsubsubsec Pointing a psalm
3075
3076 The words to an Anglican psalm are usually printed in separate
3077 verses centered underneath the chant.
3078
3079 Single chants (with 7 bars) are repeated for every verse.  Double
3080 chants (with 14 bars) are repeated for every pair of verses.  Marks
3081 are inserted in the words to show how they should be fitted to the
3082 chant.  Each verse is divided into two halves.  A colon is usually
3083 used to indicate this division.  This corresponds to the double bar
3084 line in the music.  The words before the colon are sung to the first
3085 three bars of music; the words after the colon are sung to the last
3086 four bars.
3087
3088 Single bar lines (or in some psalters an inverted comma or similar
3089 symbol) are inserted between words to indicate where the bar lines
3090 in the music fall.  In markup mode a single bar line can be entered
3091 with the bar check symbol, @code{|}.
3092
3093 @lilypond[verbatim,quote]
3094 \markup {
3095   \fill-line {
3096     \column {
3097       \left-align {
3098         \line { O come let us sing | unto the | Lord : let }
3099         \line { us heartily rejoice in the | strength of | our }
3100         \line { sal- | -vation. }
3101       }
3102     }
3103   }
3104 }
3105 @end lilypond
3106
3107 Other symbols may require glyphs from the @code{fetaMusic} fonts.
3108 For details, see @ref{Fonts}.
3109
3110 @lilypond[verbatim,quote]
3111 tick = \markup {
3112   \raise #1 \fontsize #-5 \musicglyph #"scripts.rvarcomma"
3113 }
3114 \markup {
3115   \fill-line {
3116     \column {
3117       \left-align {
3118         \line { O come let us sing \tick unto the \tick Lord : let }
3119         \line {
3120           us heartily rejoice in the \tick strength of \tick our
3121         }
3122         \line { sal \tick vation. }
3123       }
3124     }
3125   }
3126 }
3127 @end lilypond
3128
3129 Where there is one whole note in a bar all the words corresponding
3130 to that bar are recited on that one note in speech rhythm.  Where
3131 there are two notes in a bar there will usually be only one or two
3132 corresponding syllables.  If there are more that two syllables a
3133 dot is usually inserted to indicate where the change in note occurs.
3134
3135 @lilypond[verbatim,quote]
3136 dot = \markup {
3137   \raise #0.7 \musicglyph #"dots.dot"
3138 }
3139 tick = \markup {
3140   \raise #1 \fontsize #-5 \musicglyph #"scripts.rvarcomma"
3141 }
3142 \markup {
3143   \fill-line {
3144     \column {
3145       \left-align {
3146         \line {
3147           O come let us sing \tick unto \dot the \tick Lord : let
3148         }
3149         \line {
3150           us heartily rejoice in the \tick strength of \tick our
3151         }
3152         \line { sal \tick vation. }
3153       }
3154     }
3155   }
3156 }
3157 @end lilypond
3158
3159 In some psalters an asterisk is used to indicate a break in a
3160 recited section instead of a comma, and stressed or slightly
3161 lengthened syllables are indicated in bold text.
3162
3163 @lilypond[verbatim,quote]
3164 dot = \markup {
3165   \raise #0.7 \musicglyph #"dots.dot"
3166 }
3167 tick = \markup {
3168   \raise #1 \fontsize #-5 \musicglyph #"scripts.rvarcomma"
3169 }
3170 \markup {
3171   \fill-line {
3172     \column {
3173       \left-align {
3174         \line { Today if ye will hear his voice * }
3175         \line {
3176           \concat { \bold hard en }
3177           | not your | hearts : as in the pro-
3178         }
3179         \line { vocation * and as in the \bold day of tempt- | }
3180         \line { -ation | in the | wilderness. }
3181       }
3182     }
3183   }
3184 }
3185 @end lilypond
3186
3187 In other psalters an accent is placed over the syllable to indicate
3188 stress.
3189
3190 @lilypond[verbatim,quote]
3191 tick = \markup {
3192   \raise #2 \fontsize #-5 \musicglyph #"scripts.rvarcomma"
3193 }
3194 \markup {
3195   \fill-line {
3196     \column {
3197       \left-align {
3198         \line {
3199           O come let us \concat {
3200             si \combine \tick ng
3201           }
3202           | unto the | Lord : let
3203         }
3204         \line {
3205           us heartily \concat {
3206             rejo \combine \tick ice
3207           }
3208           in the | strength of | our
3209         }
3210         \line { sal- | -vation. }
3211       }
3212     }
3213   }
3214 }
3215 @end lilypond
3216
3217 The use of markup to center text, and arrange lines in columns is
3218 described in @ref{Formatting text}.
3219
3220 Most of these elements are shown in one or other of the two verses
3221 in the template, see @rlearning{Psalms}.
3222
3223 @seealso
3224 Learning Manual:
3225 @rlearning{Psalms},
3226 @rlearning{Vocal ensembles templates}.
3227
3228 Notation Reference:
3229 @ref{Fonts},
3230 @ref{Formatting text}.
3231
3232
3233 @node Partial measures in hymn tunes
3234 @unnumberedsubsubsec Partial measures in hymn tunes
3235
3236 Hymn tunes frequently start and end every line of music with
3237 partial measures so that each line of music corresponds exactly
3238 with a line of text.  This requires a @code{\partial} command at
3239 the start of the music and @code{\bar "|"} or @code{\bar "||"}
3240 commands at the end of each line.
3241
3242 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
3243 {hymn-template.ly}
3244
3245
3246 @node Ancient vocal music
3247 @subsection Ancient vocal music
3248
3249 Ancient vocal music is supported, as explained in
3250 @ref{Ancient notation}.
3251
3252 @c TODO
3253
3254 @c Add "Printing both the ancient and the modern clef in vocal music" snippet,
3255 @c and "Transcription of Ancient music with incipit" snippet. -vv
3256
3257 @seealso
3258 Notation Reference:
3259 @ref{Ancient notation}.
3260
3261
3262
3263