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