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