]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/vocal.itely
cd038b345b7e89d38684f90af8d11f48776403c8
[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 @c TODO chords, setting simple songs (LM), stanzas
1777 TBC
1778
1779 @node Lead sheets
1780 @unnumberedsubsubsec Lead sheets
1781
1782 Lead sheets may be printed by combining vocal parts and @q{chord mode};
1783 this syntax is explained in @ref{Chord notation}.
1784
1785 @snippets
1786 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
1787 {simple-lead-sheet.ly}
1788
1789 @seealso
1790 Notation Reference:
1791 @ref{Chord notation}.
1792
1793
1794 @node Choral
1795 @subsection Choral
1796
1797 @cindex anthems
1798 @cindex part songs
1799 @cindex oratorio
1800 @cindex SATB
1801
1802 This section discusses notation issues that relate most directly
1803 to choral music.  This includes anthems, part songs, oratorio,
1804 etc.
1805
1806 @menu
1807 * References for choral::
1808 * Score layouts for choral::
1809 * Divided voices::
1810 @end menu
1811
1812 @node References for choral
1813 @unnumberedsubsubsec References for choral
1814
1815 Choral music is usually notated on two, three or four staves within
1816 a @code{ChoirStaff} group.  Accompaniment, if required, is placed
1817 beneath in a @code{PianoStaff} group, which is usually reduced in
1818 size for @emph{a capella} choral works.  The notes for each vocal
1819 part are placed in a @code{Voice} context, with each staff
1820 being given either a single vocal part (i.e., one @code{Voice}) or
1821 a pair of vocal parts (i.e., two @code{Voice}s).
1822
1823 Words are placed in @code{Lyrics} contexts, either underneath each
1824 corresponding music staff, or one above and one below the music
1825 staff if this contains the music for two parts.
1826
1827 Several common topics in choral music are described fully elsewhere:
1828
1829 @itemize
1830
1831 @item
1832 An introduction to creating an SATB vocal score can be found in
1833 the Learning Manual, see @rlearning{Four-part SATB vocal score}.
1834
1835 @item
1836 Several templates suitable for various styles of choral music can
1837 also be found in the Learning Manual, see
1838 @rlearning{Vocal ensembles}.
1839
1840 @item
1841 For information about @code{ChoirStaff} and @code{PianoStaff} see
1842 @ref{Grouping staves}.
1843
1844 @item
1845 Shape noteheads, as used in Sacred Harp and similar notation, are
1846 described in @ref{Shape note heads}.
1847
1848 @item
1849 When two vocal parts share a staff the stems, ties, slurs, etc., of
1850 the higher part will be directed up and those of the lower part
1851 down.  To do this, use @code{\voiceOne} and @code{\voiceTwo}.  See
1852 @ref{Single-staff polyphony}.
1853
1854 @end itemize
1855
1856 @predefined
1857 @code{\oneVoice},
1858 @code{\voiceOne},
1859 @code{\voiceTwo}.
1860
1861 @seealso
1862 Learning Manual:
1863 @rlearning{Four-part SATB vocal score},
1864 @rlearning{Vocal ensembles}.
1865
1866 Notation Reference:
1867 @ref{Context layout order},
1868 @ref{Grouping staves},
1869 @ref{Shape note heads},
1870 @ref{Single-staff polyphony}.
1871
1872 Internals Reference:
1873 @rinternals{ChoirStaff},
1874 @rinternals{Lyrics},
1875 @rinternals{PianoStaff}.
1876
1877 @node Score layouts for choral
1878 @unnumberedsubsubsec Score layouts for choral
1879
1880 Choral music containing four staves, with or without piano
1881 accompaniment, is usually laid out with two systems per page.
1882 Depending on the page size, achieving this may require changes
1883 to several default settings.  The following settings should be
1884 considered:
1885
1886 @itemize
1887
1888 @item
1889 The global staff size can be modified to change the overall size
1890 of the elements of the score.  See @ref{Setting the staff size}.
1891
1892 @item
1893 The distances between the systems, the staves and the lyrics can
1894 all be adjusted independently.  See @ref{Vertical spacing}.
1895
1896 @item
1897 The dimensions of the vertical layout variables can be displayed as
1898 an aid to adjusting the vertical spacing.  This and other
1899 possibilities for fitting the music onto fewer pages are described
1900 in @ref{Fitting music onto fewer pages}.
1901
1902 @item
1903 If the number of systems per page changes from one to two it is
1904 customary to indicate this with a system separator mark between
1905 the two systems.  See @ref{Separating systems}.
1906
1907 @item
1908 For details of other page formatting properties, see
1909 @ref{Page formatting}.
1910
1911 @end itemize
1912
1913
1914 Dynamic markings by default are placed below the staff, but in
1915 choral music they are usually placed above the staff in order to
1916 avoid the lyrics.  The predefined command @code{\dynamicUp} does
1917 this for the dynamic markings in a single @code{Voice} context.
1918 If there are many @code{Voice} contexts this predefined command
1919 would have to be placed in every one.  Alternatively its expanded
1920 form can be used to place all dynamic markings in the entire score
1921 above their respective staves, as shown here:
1922
1923 @lilypond[verbatim,quote]
1924 \score {
1925   \new ChoirStaff <<
1926     \new Staff {
1927       \new Voice {
1928         \relative c'' { g4\f g g g }
1929       }
1930     }
1931     \new Staff {
1932       \new Voice {
1933         \relative c' { d4 d d\p d }
1934       }
1935     }
1936   >>
1937   \layout {
1938     \context {
1939       \Score
1940       \override DynamicText #'direction = #UP
1941       \override DynamicLineSpanner #'direction = #UP
1942     }
1943   }
1944 }
1945 @end lilypond
1946
1947 @predefined
1948 @code{\dynamicUp}, @code{\dynamicDown}, @code{\dynamicNeutral}.
1949
1950 @seealso
1951 Notation Reference:
1952 @ref{Changing spacing},
1953 @ref{Displaying spacing},
1954 @ref{Fitting music onto fewer pages},
1955 @ref{Page formatting},
1956 @ref{Score layout},
1957 See @ref{Separating systems},
1958 @ref{Setting the staff size},
1959 @ref{Using an extra voice for breaks},
1960 @ref{Vertical spacing}.
1961
1962 Internals Reference:
1963 @rinternals{VerticalAxisGroup},
1964 @rinternals{StaffGrouper}.
1965
1966
1967 @node Divided voices
1968 @unnumberedsubsubsec Divided voices
1969
1970 @cindex voices, divided
1971
1972 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
1973 {using-arpeggiobracket-to-make-divisi-more-visible.ly}
1974
1975 @seealso
1976 Notation Reference:
1977 @ref{Expressive marks as lines}.
1978
1979
1980 @node Opera and stage musicals
1981 @subsection Opera and stage musicals
1982
1983 The music, lyrics and dialogue to opera and stage musicals are
1984 usually set out in one or more of the following forms:
1985
1986 @itemize
1987
1988 @item
1989 A @emph{Conductors' Score} containing the full orchestral and vocal
1990 parts, together with libretto cues if there are spoken passages.
1991
1992 @item
1993 @emph{Orchestral Parts} containing the music for the individual
1994 instruments of the orchestra or band.
1995
1996 @item
1997 A @emph{Vocal Score} containing all vocal parts with piano
1998 accompaniment.  The accompaniment is usually an orchestral
1999 reduction, and if so the name of the original orchestral instrument
2000 is often indicated.  Vocal scores sometimes includes stage
2001 directions and libretto cues.
2002
2003 @item
2004 A @emph{Vocal Book} containing just the vocal parts
2005 (no accompaniment), sometimes combined with the libretto.
2006
2007 @item
2008 A @emph{Libretto} containing the extended passages of spoken
2009 dialogue usually found in musicals, together with the words to the
2010 sung parts.  Stage directions are usually included.  LilyPond can
2011 be used to typeset libretti but as they contain no music
2012 alternative methods may be preferable.
2013
2014 @end itemize
2015
2016 The sections in the LilyPond documentation which cover the topics
2017 needed to create scores in the styles commonly found in opera and
2018 musicals are indicated in the References below.  This is followed
2019 by sections covering those techniques which are peculiar to
2020 typesetting opera and musical scores.
2021
2022 @menu
2023 * References for opera and stage musicals::
2024 * Character names::
2025 * Musical cues::
2026 * Spoken music::
2027 * Dialogue over music::
2028 @end menu
2029
2030 @node References for opera and stage musicals
2031 @unnumberedsubsubsec References for opera and stage musicals
2032
2033 @itemize
2034
2035 @item
2036 A conductors' score contains many grouped staves and lyrics.  Ways
2037 of grouping staves is shown in @ref{Grouping staves}.  To nest
2038 groups of staves see @ref{Nested staff groups}.
2039
2040 @item
2041 The printing of empty staves in conductors' scores and vocal scores
2042 is often suppressed.  To create such a @qq{Frenched score} see
2043 @ref{Hiding staves}.
2044
2045 @item
2046 Writing orchestral parts is covered in @ref{Writing parts}.
2047 Other sections in the Specialist notation chapter may be relevant,
2048 depending on the orchestration used.  Many instruments are
2049 transposing instruments, see @ref{Instrument transpositions}.
2050
2051 @item
2052 If the number of systems per page changes from page to page it is
2053 customary to separate the systems with a system separator mark.
2054 See @ref{Separating systems}.
2055
2056 @item
2057 For details of other page formatting properties, see
2058 @ref{Page formatting}.
2059
2060 @item
2061 Dialogue cues and stage directions can be inserted with markup.
2062 See @ref{Text}.  Extensive stage directions can be inserted with
2063 a section of stand-alone markup between two @code{\score} blocks.
2064 See @ref{Separate text}.
2065
2066 @end itemize
2067
2068 @seealso
2069 Musical Glossary:
2070 @rglos{Frenched score},
2071 @rglos{Frenched staves},
2072 @rglos{transposing instrument}.
2073
2074 Notation Manual:
2075 @ref{Grouping staves},
2076 @ref{Hiding staves},
2077 @ref{Instrument transpositions},
2078 @ref{Nested staff groups},
2079 @ref{Page formatting},
2080 @ref{Separating systems},
2081 @ref{Transpose},
2082 @ref{Writing parts},
2083 @ref{Writing text}.
2084
2085
2086 @node Character names
2087 @unnumberedsubsubsec Character names
2088
2089 @cindex character names
2090 @cindex names, character
2091
2092 Character names are usually shown to the left of the staff when the
2093 staff is dedicated to that character alone.  The instrument name can
2094 be used for this purpose.
2095
2096 @lilypond[quote,verbatim,ragged-right]
2097 \score {
2098   <<
2099     \new Staff {
2100       \set Staff.instrumentName = #"Kaspar"
2101       \set Staff.shortInstrumentName = #"Kas"
2102       \relative c' {
2103         \clef "G_8"
2104         c4 c c c
2105         \break
2106         c4 c c c
2107       }
2108     }
2109     \new Staff {
2110       \set Staff.instrumentName = #"Melchior"
2111       \set Staff.shortInstrumentName = #"Mel"
2112       \clef "bass"
2113       \relative c' {
2114         a4 a a a
2115         a4 a a a
2116       }
2117     }
2118   >>
2119 }
2120 @end lilypond
2121
2122 When two or more characters share a staff the character's name is
2123 usually printed above the staff at the start of every section
2124 applying to that character.  This can be done with markup.  Often a
2125 specific font is used for this purpose.
2126
2127 @lilypond[quote,verbatim,relative=1]
2128 \clef "G_8"
2129 c4^\markup \fontsize #1 \smallCaps Kaspar
2130 c c c
2131 \clef "bass"
2132 a4^\markup \fontsize #1 \smallCaps Melchior
2133 a a a
2134 \clef "G_8"
2135 c4^\markup \fontsize #1 \smallCaps Kaspar
2136 c c c
2137 @end lilypond
2138
2139 Alternatively, if there are many character changes, it may be
2140 easier to set up @qq{instrument} definitions for each character at
2141 the top level so that @code{\instrumentSwitch} can be used to
2142 indicate each change.
2143
2144 @lilypond[quote,verbatim]
2145 \addInstrumentDefinition #"kaspar"
2146   #`((instrumentTransposition . ,(ly:make-pitch -1 0 0))
2147      (shortInstrumentName . "Kas.")
2148      (clefGlyph . "clefs.G")
2149      (clefOctavation . -7)
2150      (middleCPosition . 1)
2151      (clefPosition . -2)
2152      (instrumentCueName . ,(markup #:fontsize 1 #:smallCaps "Kaspar"))
2153      (midiInstrument . "voice oohs"))
2154
2155 \addInstrumentDefinition #"melchior"
2156   #`((instrumentTransposition . ,(ly:make-pitch 0 0 0))
2157      (shortInstrumentName . "Mel.")
2158      (clefGlyph . "clefs.F")
2159      (clefOctavation . 0)
2160      (middleCPosition . 6)
2161      (clefPosition . 2)
2162      (instrumentCueName . ,(markup #:fontsize 1 #:smallCaps "Melchior"))
2163      (midiInstrument . "voice aahs"))
2164
2165 \relative c' {
2166   \instrumentSwitch "kaspar"
2167   c4 c c c
2168   \instrumentSwitch "melchior"
2169   a4 a a a
2170   \instrumentSwitch "kaspar"
2171   c4 c c c
2172 }
2173 @end lilypond
2174
2175 @seealso
2176 Notation Reference:
2177 @ref{Instrument names},
2178 @ref{Scheme functions},
2179 @ref{Text},
2180 @ref{Text markup commands}.
2181
2182 Extending LilyPond:
2183 @rextend{Markup construction in Scheme}.
2184
2185 @node Musical cues
2186 @unnumberedsubsubsec Musical cues
2187
2188 @cindex musical cues
2189 @cindex cues, musical
2190
2191 Musical cues can be inserted in Vocal Scores, Vocal Books and
2192 Orchestral Parts to indicate what music in another part
2193 immediately precedes an entry.  Also, cues are often inserted in the
2194 piano reduction in Vocal Scores to indicate what each orchestral
2195 instrument is playing.  This aids the conductor when a full
2196 Conductors' Score is not available.
2197
2198 The basic mechanism for inserting cues is fully explained in the
2199 main text, see @ref{Quoting other voices} and
2200 @ref{Formatting cue notes}.  But when many cues have to be
2201 inserted, for example, as an aid to a conductor in a vocal score,
2202 the instrument name must be positioned carefully just before and
2203 close to the start of the cued notes.  The following example shows
2204 how this is done.  Note that the name of the grob for overriding
2205 the cued instrument name is @code{InstrumentSwitch}.
2206
2207 @lilypond[quote,verbatim]
2208 flute = \relative c'' {
2209   s4 s4 e g
2210 }
2211 \addQuote "flute" { \flute }
2212
2213 pianoRH = \relative c'' {
2214   c4. g8
2215   % position name of cued instrument just before the cued notes
2216   \once \override CueVoice.InstrumentSwitch
2217     #'self-alignment-X = #RIGHT
2218   % position name of cued instrument above the staff
2219   \once \override CueVoice.InstrumentSwitch #'direction = #UP
2220   \set CueVoice.instrumentCueName = "Flute"
2221   \cueDuring "flute" #UP { g4 bes4 }
2222 }
2223 pianoLH = \relative c { c4 <c' e> e, <g c> }
2224
2225 \score {
2226   \new PianoStaff <<
2227     \new Staff {
2228       \pianoRH
2229     }
2230     \new Staff {
2231       \clef "bass"
2232       \pianoLH
2233     }
2234   >>
2235 }
2236 @end lilypond
2237
2238 If a transposing instrument is being cued the instrument part should
2239 specify its key so the conversion of its cued notes will be done
2240 automatically.  The example below shows this transposition for a
2241 B-flat clarinet.  The notes in this example are low on the staff so
2242 @code{#DOWN} is specified in @code{\cueDuring} (so the stems are
2243 down) and the instrument name is positioned below the staff.  Note
2244 also that the piano right-hand voice is explicitly declared.  This
2245 is because the cued notes in this example begin at the start of the
2246 first bar and this would otherwise cause the entire piano right-hand
2247 notes to be placed in a @code{CueVoice} context.
2248
2249 @lilypond[quote,verbatim]
2250 clarinet = \relative c' {
2251   \transposition bes
2252   fis4 d d c
2253 }
2254 \addQuote "clarinet" { \clarinet }
2255
2256 pianoRH = \relative c'' {
2257   \transposition c'
2258   % position name of cued instrument just before the cued notes
2259   \once \override CueVoice.InstrumentSwitch
2260     #'self-alignment-X = #RIGHT
2261   % position name of cued instrument below the staff
2262   \once \override CueVoice.InstrumentSwitch #'direction = #DOWN
2263   \set CueVoice.instrumentCueName = "Clar."
2264   \cueDuring "clarinet" #DOWN { c4. g8 }
2265   g4 bes4
2266 }
2267 pianoLH = \relative c { c4 <c' e> e, <g c> }
2268
2269 \score {
2270   <<
2271     \new PianoStaff <<
2272       \new Staff {
2273         \new Voice {
2274           \pianoRH
2275         }
2276       }
2277       \new Staff {
2278         \clef "bass"
2279         \pianoLH
2280       }
2281     >>
2282   >>
2283 }
2284 @end lilypond
2285
2286 From these two examples it is clear that inserting many cues in a
2287 Vocal Score would be extremely tedious, and the notes of the piano
2288 part would be obscured by the many overrides.  However, as the
2289 following snippet shows, it is possible to define a music function
2290 to reduce the amount of typing and to make the piano notes clearer.
2291
2292 @snippets
2293 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
2294 {adding-orchestral-cues-to-a-vocal-score.ly}
2295
2296 @seealso
2297 Musical Glossary:
2298 @rglos{cue-notes}.
2299
2300 Notation Reference:
2301 @ref{Aligning objects},
2302 @ref{Direction and placement},
2303 @ref{Formatting cue notes},
2304 @ref{Quoting other voices},
2305 @ref{Using music functions}.
2306
2307 Snippets:
2308 @rlsr{vocal-music}.
2309
2310 Internals Reference:
2311 @rinternals{InstrumentSwitch},
2312 @rinternals{CueVoice}.
2313
2314 @knownissues
2315 @code{\cueDuring} automatically inserts a @code{CueVoice} context
2316 and all cue notes are placed in that context.  This means it is not
2317 possible to have two overlapping sequences of cued notes by this
2318 technique.  Overlapping sequences could be entered by explicitly
2319 declaring separate @code{CueVoice} contexts and using
2320 @code{\quoteDuring} to extract and insert the cued notes.
2321
2322
2323 @node Spoken music
2324 @unnumberedsubsubsec Spoken music
2325
2326 @cindex parlato
2327 @cindex Sprechgesang
2328 Such effects as @q{parlato} or @q{Sprechgesang} require performers to speak
2329 without pitch but still with rhythm; these are notated by cross
2330 note heads, as demonstrated in @ref{Special note heads}.
2331
2332 @c TODO add "marking-notes-on-spoken-parts" snippet -vv
2333 @c add "showing the rhythm of a melody" snip
2334 @c add "one staff-line notation"
2335 @c add "improvisation" ref
2336 @c add "lyrics independents of notes" ref
2337
2338 @node Dialogue over music
2339 @unnumberedsubsubsec Dialogue over music
2340
2341 TBC
2342
2343
2344 @node Chants psalms and hymns
2345 @subsection Chants psalms and hymns
2346
2347 @cindex chants
2348 @cindex psalms
2349 @cindex hymns
2350 @cindex religious music
2351
2352 The music and words for chants, psalms and hymns usually follow a
2353 well-established format in any particular church.  Although the
2354 formats may differ from church to church the type-setting problems
2355 which arise are broadly similar, and are covered in this section.
2356
2357 @menu
2358 * References for chants and psalms::
2359 * Setting a chant::
2360 * Pointing a psalm::
2361 * Partial measures in hymn tunes::
2362 @end menu
2363
2364 @node References for chants and psalms
2365 @unnumberedsubsubsec References for chants and psalms
2366
2367 Typesetting Gregorian chant in various styles of ancient notation
2368 is described in @ref{Ancient notation}.
2369
2370 @seealso
2371 Notation reference:
2372 @ref{Ancient notation}.
2373
2374
2375 @node Setting a chant
2376 @unnumberedsubsubsec Setting a chant
2377
2378 Modern chant settings use modern notation with varying numbers of
2379 elements taken from ancient notation.  Some of the elements and
2380 methods to consider are shown here.
2381
2382 Chants often use quarter notes without stems to indicate the pitch,
2383 with the rhythm being taken from the spoken rhythm of the words.
2384
2385 @lilypond[verbatim,quote]
2386 stemOff = { \override Staff.Stem #'transparent = ##t }
2387
2388 \relative c' {
2389   \stemOff
2390   a'4 b c2 |
2391 }
2392
2393 @end lilypond
2394
2395 Chants often omit the bar lines or use shortened or dotted bar
2396 lines to indicate pauses in the music.  To omit all bar lines from
2397 all staves remove the bar line engraver completely:
2398
2399 @lilypond[verbatim,quote]
2400 \score {
2401   \new StaffGroup <<
2402     \new Staff {
2403       \relative c'' {
2404         a4 b c2 |
2405         a4 b c2 |
2406         a4 b c2 |
2407       }
2408     }
2409     \new Staff {
2410       \relative c'' {
2411         a4 b c2 |
2412         a4 b c2 |
2413         a4 b c2 |
2414       }
2415     }
2416   >>
2417   \layout {
2418     \context {
2419       \Staff
2420       \remove Bar_engraver
2421     }
2422   }
2423 }
2424 @end lilypond
2425
2426 Bar lines can also be removed on a staff-by-staff basis:
2427
2428 @lilypond[verbatim, quote]
2429 \score {
2430   \new ChoirStaff <<
2431     \new Staff
2432     \with { \remove Bar_engraver } {
2433       \relative c'' {
2434         a4 b c2 |
2435         a4 b c2 |
2436         a4 b c2 |
2437       }
2438     }
2439     \new Staff {
2440       \relative c'' {
2441         a4 b c2 |
2442         a4 b c2 |
2443         a4 b c2 |
2444       }
2445     }
2446   >>
2447 }
2448 @end lilypond
2449
2450 To remove bar lines from just a section of music treat it as a
2451 cadenza.  If the section is long you may need to insert dummy
2452 barlines with @code{\bar ""} to show where the line should break.
2453
2454 @lilypond[verbatim,quote,relative=2]
2455 a4 b c2 |
2456 \cadenzaOn
2457 a4 b c2
2458 a4 b c2
2459 \bar ""
2460 a4 b c2
2461 a4 b c2
2462 \cadenzaOff
2463 a4 b c2 |
2464 a4 b c2 |
2465 @end lilypond
2466
2467 Rests or pauses in chants can be indicated by modified bar lines.
2468
2469 @lilypond[verbatim, quote,relative=2]
2470 a4
2471 \cadenzaOn
2472 b c2
2473 a4 b c2
2474 \bar "'"
2475 a4 b c2
2476 a4 b c2
2477 \bar ":"
2478 a4 b c2
2479 \bar "dashed"
2480 a4 b c2
2481 \bar "||"
2482 @end lilypond
2483
2484 Alternatively, the notation used in Gregorian chant for pauses or
2485 rests is sometimes used even though the rest of the notation is
2486 modern.  This uses a modified @code{\breathe} mark:
2487
2488 @lilypond[verbatim,quote]
2489 divisioMinima = {
2490   \once \override BreathingSign  #'stencil = #ly:breathing-sign::divisio-minima
2491   \once \override BreathingSign  #'Y-offset = #0
2492   \breathe
2493 }
2494 divisioMaior = {
2495   \once \override BreathingSign  #'stencil = #ly:breathing-sign::divisio-maior
2496   \once \override BreathingSign  #'Y-offset = #0
2497   \breathe
2498 }
2499 divisioMaxima = {
2500   \once \override BreathingSign  #'stencil = #ly:breathing-sign::divisio-maxima
2501   \once \override BreathingSign  #'Y-offset = #0
2502   \breathe
2503 }
2504 finalis = {
2505   \once \override BreathingSign  #'stencil = #ly:breathing-sign::finalis
2506   \once \override BreathingSign  #'Y-offset = #0
2507   \breathe
2508 }
2509
2510 \score {
2511   \relative c'' {
2512     g2 a4 g
2513     \divisioMinima
2514     g2 a4 g
2515     \divisioMaior
2516     g2 a4 g
2517     \divisioMaxima
2518     g2 a4 g
2519     \finalis
2520   }
2521   \layout {
2522     \context {
2523       \Staff
2524       \remove Bar_engraver
2525     }
2526   }
2527 }
2528 @end lilypond
2529
2530 Chants usually omit the time signature and often omit the clef too.
2531
2532 @lilypond[verbatim,quote]
2533 \score {
2534   \new Staff {
2535     \relative c'' {
2536       a4 b c2 |
2537       a4 b c2 |
2538       a4 b c2 |
2539     }
2540   }
2541   \layout {
2542     \context {
2543       \Staff
2544       \remove Bar_engraver
2545       \remove Time_signature_engraver
2546       \remove Clef_engraver
2547     }
2548   }
2549 }
2550 @end lilypond
2551
2552 Chants for psalms in the Anglican tradition are usually either
2553 @emph{single}, with 7 bars of music, or @emph{double}, with two lots
2554 of 7 bars.  Each group of 7 bars is divided into two halves,
2555 corresponding to the two halves of each verse, usually separated by
2556 a double bar line.  Only whole and half notes are used.  The 1st bar
2557 in each half always contains a single chord of whole notes.  This is
2558 the @qq{reciting note}.  Chants are usually centered on the page.
2559
2560 @lilypond[verbatim,quote]
2561 SopranoMusic = \relative g' {
2562   g1 | c2 b | a1 | \bar "||"
2563   a1 | d2 c | c b | c1 | \bar "||"
2564 }
2565
2566 AltoMusic = \relative c' {
2567   e1 | g2 g | f1 |
2568   f1 | f2 e | d d | e1 |
2569 }
2570
2571 TenorMusic = \relative a {
2572   c1 | c2 c | c1 |
2573   d1 | g,2 g | g g | g1 |
2574 }
2575
2576 BassMusic =  \relative c {
2577   c1 | e2 e | f1 |
2578   d1 | b2 c | g' g | c,1 |
2579 }
2580
2581 global = {
2582   \time 2/2
2583 }
2584
2585 % Use markup to center the chant on the page
2586 \markup {
2587   \fill-line {
2588     \score {  % centered
2589       <<
2590         \new ChoirStaff <<
2591           \new Staff <<
2592             \global
2593             \clef "treble"
2594             \new Voice = "Soprano" <<
2595               \voiceOne
2596               \SopranoMusic
2597             >>
2598             \new Voice = "Alto" <<
2599               \voiceTwo
2600               \AltoMusic
2601             >>
2602           >>
2603           \new Staff <<
2604             \clef "bass"
2605             \global
2606             \new Voice = "Tenor" <<
2607               \voiceOne
2608               \TenorMusic
2609             >>
2610             \new Voice = "Bass" <<
2611               \voiceTwo
2612               \BassMusic
2613             >>
2614           >>
2615         >>
2616       >>
2617       \layout {
2618         \context {
2619           \Score
2620           \override SpacingSpanner
2621           #'base-shortest-duration = #(ly:make-moment 1 2)
2622         }
2623         \context {
2624           \Staff
2625           \remove "Time_signature_engraver"
2626         }
2627       }
2628     }  % End score
2629   }
2630 }  % End markup
2631 @end lilypond
2632
2633 Some other approaches to setting such a chant are shown in the first
2634 of the following snippets.
2635
2636 @snippets
2637
2638 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
2639 {chant-or-psalms-notation.ly}
2640
2641 Canticles and other liturgical texts may be set more freely, and
2642 may use notational elements from ancient music.  Often the words
2643 are shown underneath and aligned with the notes.  If so, the notes
2644 are spaced in accordance with the syllables rather than the notes'
2645 durations.
2646
2647 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
2648 {ancient-notation-template----modern-transcription-of-gregorian-music.ly}
2649
2650 @seealso
2651 Learning Manual:
2652 @rlearning{Visibility and color of objects},
2653 @rlearning{Vocal ensembles}.
2654
2655 Notation Reference:
2656 @ref{Ancient notation},
2657 @ref{Bar lines},
2658 @ref{Modifying context plug-ins},
2659 @ref{Typesetting Gregorian chant},
2660 @ref{Unmetered music},
2661 @ref{Visibility of objects}.
2662
2663
2664 @node Pointing a psalm
2665 @unnumberedsubsubsec Pointing a psalm
2666
2667 The words to an Anglican psalm are usually printed in separate
2668 verses centered underneath the chant.
2669
2670 Single chants (with 7 bars) are repeated for every verse.  Double
2671 chants (with 14 bars) are repeated for every pair of verses.  Marks
2672 are inserted in the words to show how they should be fitted to the
2673 chant.  Each verse is divided into two halves.  A colon is usually
2674 used to indicate this division.  This corresponds to the double bar
2675 line in the music.  The words before the colon are sung to the first
2676 three bars of music; the words after the colon are sung to the last
2677 four bars.
2678
2679 Single bar lines (or in some psalters an inverted comma or similar
2680 symbol) are inserted between words to indicate where the bar lines
2681 in the music fall.  In markup mode a single bar line can be entered
2682 with the bar check symbol, @code{|}.
2683
2684 @lilypond[verbatim,quote]
2685 \markup {
2686   \fill-line {
2687     \column {
2688       \left-align {
2689         \line { O come let us sing | unto the | Lord : let }
2690         \line { us heartily rejoice in the | strength of | our }
2691         \line { sal- | -vation. }
2692       }
2693     }
2694   }
2695 }
2696 @end lilypond
2697
2698 Other symbols may require glyphs from the @code{fetaMusic} fonts.
2699 For details, see @ref{Fonts}.
2700
2701 @lilypond[verbatim,quote]
2702 tick = \markup {
2703   \raise #1 \fontsize #-5 \musicglyph #"scripts.rvarcomma"
2704 }
2705 \markup {
2706   \fill-line {
2707     \column {
2708       \left-align {
2709         \line { O come let us sing \tick unto the \tick Lord : let }
2710         \line {
2711           us heartily rejoice in the \tick strength of \tick our
2712         }
2713         \line { sal \tick vation. }
2714       }
2715     }
2716   }
2717 }
2718 @end lilypond
2719
2720 Where there is one whole note in a bar all the words corresponding
2721 to that bar are recited on that one note in speech rhythm.  Where
2722 there are two notes in a bar there will usually be only one or two
2723 corresponding syllables.  If there are more that two syllables a
2724 dot is usually inserted to indicate where the change in note occurs.
2725
2726 @lilypond[verbatim,quote]
2727 dot = \markup {
2728   \raise #0.7 \musicglyph #"dots.dot"
2729 }
2730 tick = \markup {
2731   \raise #1 \fontsize #-5 \musicglyph #"scripts.rvarcomma"
2732 }
2733 \markup {
2734   \fill-line {
2735     \column {
2736       \left-align {
2737         \line {
2738           O come let us sing \tick unto \dot the \tick Lord : let
2739         }
2740         \line {
2741           us heartily rejoice in the \tick strength of \tick our
2742         }
2743         \line { sal \tick vation. }
2744       }
2745     }
2746   }
2747 }
2748 @end lilypond
2749
2750 In some psalters an asterisk is used to indicate a break in a
2751 recited section instead of a comma, and stressed or slightly
2752 lengthened syllables are indicated in bold text.
2753
2754 @lilypond[verbatim,quote]
2755 dot = \markup {
2756   \raise #0.7 \musicglyph #"dots.dot"
2757 }
2758 tick = \markup {
2759   \raise #1 \fontsize #-5 \musicglyph #"scripts.rvarcomma"
2760 }
2761 \markup {
2762   \fill-line {
2763     \column {
2764       \left-align {
2765         \line { Today if ye will hear his voice * }
2766         \line {
2767           \concat { \bold hard en }
2768           | not your | hearts : as in the pro-
2769         }
2770         \line { vocation * and as in the \bold day of tempt- | }
2771         \line { -ation | in the | wilderness. }
2772       }
2773     }
2774   }
2775 }
2776 @end lilypond
2777
2778 In other psalters an accent is placed over the syllable to indicate
2779 stress.
2780
2781 @lilypond[verbatim,quote]
2782 tick = \markup {
2783   \raise #2 \fontsize #-5 \musicglyph #"scripts.rvarcomma"
2784 }
2785 \markup {
2786   \fill-line {
2787     \column {
2788       \left-align {
2789         \line {
2790           O come let us \concat {
2791             si \combine \tick ng
2792           }
2793           | unto the | Lord : let
2794         }
2795         \line {
2796           us heartily \concat {
2797             rejo \combine \tick ice
2798           }
2799           in the | strength of | our
2800         }
2801         \line { sal- | -vation. }
2802       }
2803     }
2804   }
2805 }
2806 @end lilypond
2807
2808 The use of markup to center text, and arrange lines in columns is
2809 described in @ref{Formatting text}.
2810
2811 Most of these elements are shown in one or other of the two verses
2812 in the template, see @qq{Psalms} in @rlearning{Vocal ensembles}.
2813
2814 @seealso
2815 Learning Manual:
2816 @rlearning{Vocal ensembles}.
2817
2818 Notation Reference:
2819 @ref{Fonts},
2820 @ref{Formatting text}.
2821
2822
2823 @node Partial measures in hymn tunes
2824 @unnumberedsubsubsec Partial measures in hymn tunes
2825
2826 Hymn tunes frequently start and end every line of music with
2827 partial measures so that each line of music corresponds exactly
2828 with a line of text.  This requires a @code{\partial} command at
2829 the start of the music and @code{\bar "|"} or @code{\bar "||"}
2830 commands at the end of each line.
2831
2832 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
2833 {hymn-template.ly}
2834
2835
2836 @node Ancient vocal music
2837 @subsection Ancient vocal music
2838
2839 Ancient vocal music is supported, as explained in @ref{Ancient notation}.
2840
2841 @c TODO
2842
2843 @c Add "Printing both the ancient and the modern clef in vocal music" snippet,
2844 @c and "Transcription of Ancient music with incipit" snippet. -vv
2845
2846 @seealso
2847 Notation Reference:
2848 @ref{Ancient notation}.
2849
2850
2851
2852