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