]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/notation.itely
Fix overlong line.
[lilypond.git] / Documentation / user / notation.itely
1 @c -*- coding: latin-1; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
3
4 @c A menu is needed before every deeper *section nesting of @node's; run
5 @c     M-x texinfo-all-menus-update
6 @c to automatically fill in these menus before saving changes
7
8 @node Notation manual
9 @chapter Notation manual
10
11 This chapter describes all the different types of notation supported
12 by LilyPond.  It is intended as a reference for users who are already
13 somewhat familiar with LilyPond.
14
15 @menu
16 * Note entry::
17 * Easier music entry::
18 * Staff notation::
19 * Polyphony::
20 * Beaming::
21 * Accidentals::
22 * Expressive marks::
23 * Repeats::
24 * Rhythmic music::
25 * Piano music::
26 * Vocal music::
27 * Other instrument specific notation::
28 * Tablatures::
29 * Popular music::
30 * Orchestral music::
31 * Ancient notation::
32 * Contemporary notation::
33 * Educational use::
34 @end menu
35
36 @c FIXME: Note entry vs Music entry at top level menu is confusing.
37
38 @node Note entry
39 @section Note entry
40 @cindex Note entry
41
42 This section is about basic notation elements like notes, rests, and
43 related constructs, such as stems, tuplets and ties.
44
45 @menu
46 * Notes::
47 * Pitches::
48 * Chromatic alterations::
49 * Micro tones::
50 * Chords::
51 * Rests::
52 * Skips::
53 * Durations::
54 * Augmentation dots::
55 * Scaling durations::
56 * Stems::
57 * Ties::
58 * Tuplets::
59 @end menu
60
61
62 @node Notes
63 @subsection Notes
64
65
66 A note is printed by specifying its pitch and then its duration,
67
68 @lilypond[quote,verbatim,raggedright]
69 { cis'4 d'8 e'16 c'16 }
70 @end lilypond
71
72
73 @node Pitches
74 @subsection Pitches
75
76 @cindex Pitch names
77 @cindex Note specification
78 @cindex pitches
79 @cindex entering notes
80
81 The most common syntax for pitch entry is used for standard notes and
82 @code{\chordmode} modes.  In these modes, pitches may be designated by
83 names.  The notes are specified by the letters @code{a} through
84 @code{g}.  The octave is formed with notes ranging from @code{c}
85 to @code{b}.  The pitch @code{c} is an octave below middle C and the
86 letters span the octave above that C
87
88 @lilypond[quote,fragment,verbatim]
89 \clef bass
90 a,4 b, c d e f g a b c' d' e' \clef treble f' g' a' b' c''
91 @end lilypond
92
93 @cindex note names, Dutch
94
95 A sharp is formed by adding @code{-is} to the end of a pitch name and
96 a flat is formed by adding @code{-es}.  Double sharps and double flats
97 are obtained by adding @code{-isis} or @code{-eses}.  These
98 names are the Dutch note names.  In Dutch, @code{aes} is contracted to
99 @code{as}, but both forms are accepted.  Similarly, both
100 @code{es} and @code{ees} are accepted
101
102 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
103 ceses4
104 ces
105 c
106 cis
107 cisis
108 @end lilypond
109
110 There are predefined sets of note names for various other languages.
111 To use them, include the language specific init file.  For
112 example: @code{\include "english.ly"}.  The available language files
113 and the note names they define are
114
115 @anchor{note name}
116 @anchor{note names}
117 @example
118                         Note Names               sharp       flat
119 nederlands.ly  c   d   e   f   g   a   bes b   -is         -es
120 english.ly     c   d   e   f   g   a   bf  b   -s/-sharp   -f/-flat
121                                                -x (double)
122 deutsch.ly     c   d   e   f   g   a   b   h   -is         -es
123 norsk.ly       c   d   e   f   g   a   b   h   -iss/-is    -ess/-es
124 svenska.ly     c   d   e   f   g   a   b   h   -iss        -ess
125 italiano.ly    do  re  mi  fa  sol la  sib si  -d          -b
126 catalan.ly     do  re  mi  fa  sol la  sib si  -d/-s       -b
127 espanol.ly     do  re  mi  fa  sol la  sib si  -s          -b
128 @end example
129
130 @cindex @code{'}
131 @cindex @code{,}
132
133
134
135 The optional octave specification takes the form of a series of
136 single quote (`@code{'}') characters or a series of comma
137 (`@code{,}') characters.  Each @code{'} raises the pitch by one
138 octave; each @code{,} lowers the pitch by an octave
139
140 @lilypond[quote,raggedright,fragment,verbatim]
141 c' c'' es' g' as' gisis' ais'
142 @end lilypond
143
144 @c FIXME: we need this info (hide/unhide) somewhere in the manual, but this ain't the place.  -gp
145 @refcommands
146 Notes can be hidden and unhidden with the following commands
147
148 @cindex @code{\hideNotes}
149 @code{\hideNotes},
150 @cindex @code{\unHideNotes}
151 @code{\unHideNotes}.
152
153
154 @seealso
155
156 Program reference: @internalsref{NoteEvent}, and @internalsref{NoteHead}.
157
158
159
160 @node Chromatic alterations
161 @subsection Chromatic alterations
162
163 Normally accidentals are printed automatically, but you may also
164 print them manually.  A reminder accidental
165 @cindex reminder accidental
166 @cindex @code{?}
167 can be forced by adding an exclamation mark @code{!}
168 after the pitch.  A cautionary accidental
169 @cindex cautionary accidental
170 @cindex parenthesized accidental
171 (i.e., an accidental within parentheses) can be obtained by adding the
172 question mark `@code{?}' after the pitch.
173
174 @lilypond[quote,raggedright,fragment,verbatim]
175 cis' cis' cis'! cis'?
176 @end lilypond
177
178
179 @seealso
180
181 The automatic production of accidentals can be tuned in many
182 ways.  For more information, refer to @ref{Automatic accidentals}.
183
184
185
186 @node Micro tones
187 @subsection Micro tones
188
189 Half-flats and half-sharps are formed by adding @code{-eh} and
190 @code{-ih}; the following is a series of Cs with increasing pitches
191
192 @cindex quarter tones
193 @cindex semi-flats, semi-sharps
194
195 @lilypond[verbatim,raggedright,quote,relative=2,fragment]
196 { ceseh ceh cih cisih }
197 @end lilypond
198
199 Micro tones are also exported to the MIDI file
200
201
202 @refbugs
203
204 There are no generally accepted standards for denoting three quarter
205 flats, so LilyPond's symbol does not conform to any standard.
206
207 @node Chords
208 @subsection Chords
209
210 A chord is formed by a enclosing a set of pitches in @code{<} and
211 @code{>}.  A chord may be followed by a duration, and a set of
212 articulations, just like simple notes
213
214 @lilypond[verbatim,raggedright,fragment,quote,relative=1]
215 <c e g>4 <c>8
216 @end lilypond
217
218 @node Rests
219 @subsection Rests
220 @cindex Rests
221
222
223 @cindex @code{\rest}
224 @cindex @code{r}
225
226 Rests are entered like notes, with the note name @code{r}
227
228 @lilypond[fragment,quote,raggedright,verbatim]
229 r1 r2 r4 r8
230 @end lilypond
231
232 Whole bar rests, centered in middle of the bar,
233 must be done with multi-measure rests.  They are discussed in
234 @ref{Multi measure rests}.
235
236
237 A rest's vertical position may be explicitly specified by entering a
238 note with the @code{\rest} keyword appended, the rest will be placed at
239 the note's place.  This makes manual formatting in polyphonic music
240 easier.  Automatic rest collision formatting will leave these rests
241 alone
242
243 @lilypond[fragment,quote,raggedright,verbatim]
244 a'4\rest d'4\rest
245 @end lilypond
246
247 @seealso
248
249 Program reference: @internalsref{RestEvent}, and @internalsref{Rest}.
250
251
252 @c FIXME: naming.
253 @node Skips
254 @subsection Skips
255 @cindex Skip
256 @cindex Invisible rest
257 @cindex Space note
258
259 @cindex @code{\skip}
260 @cindex @code{s}
261 An invisible rest (also called a `skip') can be entered like a note
262 with note name `@code{s}' or with @code{\skip @var{duration}}
263
264 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
265 a4 a4 s4 a4 \skip 1 a4
266 @end lilypond
267
268 The @code{s} syntax is only available in note mode and chord mode.  In
269 other situations, for example, when entering lyrics, you should use
270 the @code{\skip} command
271
272 @lilypond[quote,raggedright,verbatim]
273 <<
274   \relative { a'2 a1 }
275   \new Lyrics \lyricmode { \skip 2 bla1 }
276 >>
277 @end lilypond
278
279 The skip command is merely an empty musical placeholder.  It does not
280 produce any output, not even transparent output.
281
282 The @code{s} skip command does create @internalsref{Staff} and
283 @internalsref{Voice} when necessary, similar to note and rest
284 commands.  For example, the following results in an empty staff.
285
286 @lilypond[quote,raggedright,verbatim]
287 { s4 }
288 @end lilypond
289
290 The fragment @code{@{ \skip 4 @} } would produce an empty page.
291
292 @seealso
293
294 Program reference: @internalsref{SkipEvent}, @internalsref{SkipMusic}.
295
296
297
298 @node Durations
299 @subsection Durations
300
301
302 @cindex duration
303 @cindex @code{\longa}
304 @cindex @code{\breve}
305 @cindex @code{\maxima}
306
307
308 In Note, Chord, and Lyrics mode, durations are designated by numbers and
309 dots: durations are entered as their reciprocal values.  For example, a
310 quarter note is entered using a @code{4} (since it is a 1/4 note), while
311 a half note is entered using a @code{2} (since it is a 1/2 note).  For
312 notes longer than a whole you must use the variables @code{\longa} and
313 @code{\breve}
314
315 @example
316 c'\breve
317 c'1 c'2 c'4 c'8 c'16 c'32 c'64 c'64
318 r\longa r\breve
319 r1 r2 r4 r8 r16 r32 r64 r64
320 @end example
321
322 @lilypond[quote]
323 \score {
324  \relative c'' {
325     a\breve*1/2 \autoBeamOff
326     a1 a2 a4 a8 a16 a32 a64 a64
327    \bar "empty"
328    \break
329     r\longa*1/4 r\breve *1/2
330     r1 r2 r4 r8 r16 r32 r64 r64
331   }
332   \layout {
333     raggedright = ##t
334     \context {
335       \Staff
336         \remove "Clef_engraver"
337         \override StaffSymbol #'transparent = ##t
338         \override TimeSignature #'transparent = ##t
339         \override BarLine #'transparent = ##t
340         \consists "Pitch_squash_engraver"
341     }
342   }
343 }
344 @end lilypond
345
346 If the duration is omitted then it is set to the previously entered
347 duration.  The default for the first note is a quarter note.
348
349 @lilypond[quote,raggedright,verbatim,fragment]
350 { a a a2 a a4 a a1 a }
351 @end lilypond
352
353
354
355 @node Augmentation dots
356 @subsection Augmentation dots
357
358 @cindex @code{.}
359 To obtain dotted note lenghts, simply add a dot (`@code{.}') to
360 the number.  Double-dotted notes are produced in a similar way.
361
362 @lilypond[quote,raggedright,fragment,verbatim]
363 a'4 b' c''4. b'8 a'4. b'4.. c''8.
364 @end lilypond
365
366 @refcommands
367
368 Dots are normally moved up to avoid staff lines, except in polyphonic
369 situations.  The following commands may be used to force a particular
370 direction manually
371
372 @cindex @code{\dotsUp}
373 @code{\dotsUp},
374 @cindex @code{\dotsDown}
375 @code{\dotsDown},
376 @cindex @code{\dotsNeutral}
377 @code{\dotsNeutral}.
378
379 @seealso
380
381 Program reference: @internalsref{Dots}, and @internalsref{DotColumn}.
382
383 @node Scaling durations
384 @subsection Scaling durations
385
386 You can alter the length of duration by a fraction @var{N/M}
387 appending `@code{*}@var{N/M}' (or `@code{*}@var{N}' if @var{M=1}).  This
388 will not affect the appearance of the notes or rests produced.
389
390 In the following example, the first three notes take up exactly two
391 beats, but no triplet bracket is printed.
392 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
393 \time 2/4
394 a4*2/3 gis4*2/3 a4*2/3
395 a4 a4 a4*2
396 b16*4 c4
397 @end lilypond
398
399
400 @seealso
401
402 This manual: @ref{Tuplets}
403
404
405 @c TODO: I'm not certain that Stems belong here in the manual.  -gp
406 @node Stems
407 @subsection Stems
408
409 Whenever a note is found, a @internalsref{Stem} object is created
410 automatically.  For whole notes and rests, they are also created but
411 made invisible.
412
413 @refcommands
414
415 @cindex @code{\stemUp}
416 @code{\stemUp},
417 @cindex @code{\stemDown}
418 @code{\stemDown},
419 @cindex @code{\stemNeutral}
420 @code{\stemNeutral}.
421
422
423 @node Ties
424 @subsection Ties
425
426 @cindex Tie
427 @cindex ties
428 @cindex @code{~}
429
430 A tie connects two adjacent note heads of the same pitch.  The tie in
431 effect extends the length of a note.  Ties should not be confused with
432 slurs, which indicate articulation, or phrasing slurs, which indicate
433 musical phrasing.  A tie is entered using the tilde symbol `@code{~}'
434
435 @lilypond[quote,raggedright,fragment,verbatim]
436 e' ~ e' <c' e' g'> ~ <c' e' g'>
437 @end lilypond
438
439 When a tie is applied to a chord, all note heads whose pitches match
440 are connected.  When no note heads match, no ties will be created.
441
442 A tie is just a way of extending a note duration, similar to the
443 augmentation dot.  The following example shows two ways of notating
444 exactly the same concept
445 @c
446 @lilypond[quote,fragment,raggedright]
447 \time 3/4 c'2. c'2 ~ c'4
448 @end lilypond
449
450 @noindent
451 Ties are used either when the note crosses a bar line, or when dots
452 cannot be used to denote the rhythm.  When using ties, larger note
453 values should be aligned to subdivisions of the measure, eg.
454
455 @lilypond[fragment,quote,raggedright]
456 \relative {
457   r8 c8 ~ c2 r4 | r8^"not" c2 ~ c8 r4
458 }
459 @end lilypond
460
461 If you need to tie a lot of notes over bars, it may be easier to use
462 automatic note splitting (see @ref{Automatic note splitting}).  This
463 mechanism automatically splits long notes, and ties them across bar
464 lines.
465
466 @refcommands
467
468
469 @cindex @code{\tieUp}
470 @code{\tieUp},
471 @cindex @code{\tieDown}
472 @code{\tieDown},
473 @cindex @code{\tieNeutral}
474 @code{\tieNeutral},
475 @cindex @code{\tieDotted}
476 @code{\tieDotted},
477 @cindex @code{\tieSolid}
478 @code{\tieSolid}.
479
480 @seealso
481
482 In this manual: @ref{Automatic note splitting}.
483
484 Program reference: @internalsref{TieEvent}, @internalsref{Tie}.
485
486 @refbugs
487
488
489 Switching staves when a tie is active will not produce a slanted tie.
490
491 Formatting of ties is a difficult subject.  The results are often not
492 optimal.
493
494 @node Tuplets
495 @subsection Tuplets
496
497 @cindex tuplets
498 @cindex triplets
499 @cindex @code{\times}
500
501 Tuplets are made out of a music expression by multiplying all durations
502 with a fraction
503
504 @cindex @code{\times}
505 @example
506 \times @var{fraction} @var{musicexpr}
507 @end example
508
509 @noindent
510 The duration of @var{musicexpr} will be multiplied by the fraction.
511 The fraction's denominator will be printed over the notes, optionally
512 with a bracket.  The most common tuplet is the triplet in which 3
513 notes have the length of 2, so the notes are 2/3 of their written
514 length
515
516 @lilypond[quote,raggedright,fragment,verbatim]
517 g'4 \times 2/3 {c'4 c' c'} d'4 d'4
518 @end lilypond
519
520 The property @code{tupletSpannerDuration} specifies how long each
521 bracket should last.  With this, you can make lots of tuplets while
522 typing @code{\times} only once, thus saving lots of typing.  In the next
523 example, there are two triplets shown, while @code{\times} was only
524 used once
525
526 @lilypond[quote,fragment,relative=1,raggedright,verbatim]
527 \set tupletSpannerDuration = #(ly:make-moment 1 4)
528 \times 2/3 { c'8 c c c c c }
529 @end lilypond
530
531 The format of the number is determined by the property
532 @code{tupletNumberFormatFunction}.  The default prints only the
533 denominator, but if it is set to the Scheme function
534 @code{fraction-tuplet-formatter}, @var{num}:@var{den} will be printed
535 instead.
536
537
538 @cindex @code{tupletNumberFormatFunction}
539 @cindex tuplet formatting
540
541
542 @refcommands
543
544 @cindex @code{\tupletUp}
545 @code{\tupletUp},
546 @cindex @code{\tupletDown}
547 @code{\tupletDown},
548 @cindex @code{\tupletNeutral}
549 @code{\tupletNeutral}.
550
551 @seealso
552
553 User manual: @ref{Changing context properties on the fly} for the
554 @code{\set} command.
555
556
557 Program reference: @internalsref{TupletBracket}, and @internalsref{TimeScaledMusic}.
558
559 Examples: @inputfileref{input/@/regression,tuplet@/-nest@/.ly}.
560
561 @refbugs
562
563 Nested tuplets are not formatted automatically.  In this case, outer
564 tuplet brackets should be moved manually, which is demonstrated in
565 @inputfileref{input/@/regression,tuplet@/-nest@/.ly}.
566
567
568
569 @node Easier music entry
570 @section Easier music entry
571 @cindex Music entry
572
573 This section deals with tricks and features of the input language that
574 were added solely to help entering music and finding and correcting
575 mistakes.  There are also external tools that make debugging easier.
576 See @ref{Point and click} for more information.
577
578 It is also possible to enter and edit music using other programs, such as
579 GUI interfaces or MIDI sequencers.  Refer to the LilyPond
580 website for more information.
581
582
583 @menu
584 * Relative octaves::
585 * Octave check::
586 * Bar check::
587 * Skipping corrected music::
588 * Automatic note splitting::
589 @end menu
590
591
592
593
594 @node Relative octaves
595 @subsection Relative octaves
596 @cindex Relative
597 @cindex relative octave specification
598
599 Octaves are specified by adding @code{'} and @code{,} to pitch names.
600 When you copy existing music, it is easy to accidentally put a pitch
601 in the wrong octave and hard to find such an error.  The relative
602 octave mode prevents these errors by making the mistakes much
603 larger: a single error puts the rest of the piece off by one octave
604
605 @cindex @code{\relative}
606 @example
607 \relative @var{startpitch} @var{musicexpr}
608 @end example
609
610 @noindent
611 or
612
613 @example
614 \relative @var{musicexpr}
615 @end example
616
617 The octave of notes that appear in @var{musicexpr} are calculated as
618 follows: if no octave changing marks are used, the basic interval
619 between this and the last note is always taken to be a fourth or
620 less.  This distance is determined without regarding alterations; a
621 @code{fisis} following a @code{ceses} will be put above the
622 @code{ceses}.  In other words, a doubly-augmented fourth is considered
623 a smaller interval than a diminshed fifth, even though the fourth is
624 seven semitones while the fifth is only six semitones.
625
626 The octave changing marks @code{'} and @code{,} can be added to raise
627 or lower the pitch by an extra octave.  Upon entering relative mode,
628 an absolute starting pitch can be specified that will act as the
629 predecessor of the first note of @var{musicexpr}.  If no starting pitch
630 is specified, then middle C is used as a start.
631
632 Here is the relative mode shown in action
633 @lilypond[quote,fragment,raggedright,verbatim]
634 \relative c'' {
635   b c d c b c bes a
636 }
637 @end lilypond
638
639 Octave changing marks are used for intervals greater than a fourth
640 @lilypond[quote,raggedright,fragment,verbatim]
641 \relative c'' {
642   c g c f, c' a, e''
643 }
644 @end lilypond
645
646 If the preceding item is a chord, the first note of the chord is used
647 to determine the first note of the next chord
648
649 @lilypond[quote,raggedright,fragment,verbatim]
650 \relative c' {
651   c <c e g>
652   <c' e g>
653   <c, e' g>
654 }
655 @end lilypond
656
657 The pitch after the @code{\relative} contains a note name.
658
659
660 The relative conversion will not affect @code{\transpose},
661 @code{\chordmode} or @code{\relative} sections in its argument.  To use
662 relative within transposed music, an additional @code{\relative} must
663 be placed inside @code{\transpose}.
664
665 @node Octave check
666 @subsection Octave check
667
668
669 Octave checks make octave errors easier to correct: a note may be
670 followed by @code{=}@var{quotes} which indicates what its absolute
671 octave should be.  In the following example,
672 @example
673 \relative c'' @{ c='' b=' d,='' @}
674 @end example
675
676 @noindent
677 @c take care with @code, adds confusing quotes.
678 the @code{d} will generate a warning, because a @code{d''} is expected
679 (because @code{b'} to @code{d''} is only a third), but a @code{d}' is
680 found.  In the output, the octave is corrected to be a @code{d''} and
681 the next note is calculated relative to @code{d''} instead of @code{d'}.
682
683
684
685 There is also a syntax that is separate from the notes.  The syntax
686
687 @example
688 \octave @var{pitch}
689 @end example
690
691 This checks that @var{pitch} (without quotes) yields @var{pitch} (with
692 quotes) in \relative mode.  If not, a warning is printed, and the
693 octave is corrected.
694
695 In the example below, the first check passes without incident, since
696 the @code{e} (in relative mode) is within a fifth of @code{a'}.  However,
697 the second check produces a warning, since the @code{e} is not within
698 a fifth of @code{b'}.  The warning message is printed, and the octave
699 is adjusted so that the following notes are in the correct octave
700 once again.
701
702 @example
703 \relative c' @{
704   e
705   \octave a'
706   \octave b'
707 @}
708 @end example
709
710
711 The octave of a note following an octave check is determined with
712 respect to the note preceding it.  In the next fragment, the last note
713 is a @code{a'}, above middle C.  That means that the @code{\octave}
714 check passes successfully, so the check could be deleted without changing
715 the output of the piece.
716
717 @lilypond[quote,raggedright,verbatim,fragment]
718 \relative c' {
719   e
720   \octave b
721   a
722 }
723 @end lilypond
724
725 @node Bar check
726 @subsection Bar check
727 @cindex Bar check
728
729 @cindex bar check
730 @cindex @code{barCheckSynchronize}
731 @cindex @code{|}
732
733 Bar checks help detect errors in the durations.  A bar check is
734 entered using the bar symbol, `@code{|}'.  Whenever it is encountered
735 during interpretation, it should fall on a measure boundary.  If it
736 does not, a warning is printed.  In the next example, the second bar
737 check will signal an error
738 @example
739 \time 3/4 c2 e4 | g2 |
740 @end example
741
742 Bar checks can also be used in lyrics, for example
743
744 @example
745 \lyricmode @{
746   \time 2/4
747   Twin -- kle | Twin -- kle
748 @}
749 @end example
750
751
752 @cindex @code{skipTypesetting}
753
754 Failed bar checks are caused by entering incorrect
755 durations.  Incorrect durations often completely garble up the score,
756 especially if the score is polyphonic, so a good place to start correcting
757 input is by scanning for failed bar checks and incorrect durations.  To
758 speed up this process, the @code{skipTypesetting} feature may be
759 used.  It is described in the next section.
760
761 @cindex @code{|}
762 @cindex @code{pipeSymbol}
763
764 It is also possible to redefine the meaning of @code{|}.  This is done
765 by assigning a music expression to @code{pipeSymbol},
766
767 @lilypond[quote,raggedright,verbatim]
768 pipeSymbol = \bar "||"
769
770 { c'2 c' | c'2 c }
771 @end lilypond
772
773
774 @node Skipping corrected music
775 @subsection Skipping corrected music
776
777 The property @code{Score.skipTypesetting} can be used to switch on and
778 off typesetting completely during the interpretation phase.  When
779 typesetting is switched off, the music is processed much more
780 quickly.  This can be used to skip over the parts of a score that
781 have already been checked for errors
782
783 @lilypond[quote,fragment,raggedright,verbatim]
784 \relative c'' {
785   c8 d
786   \set Score.skipTypesetting = ##t
787   e e e e e e e e
788   \set Score.skipTypesetting = ##f
789   c d b bes a g c2 }
790 @end lilypond
791
792 In polyphonic music, @code{Score.skipTypesetting} will affect all
793 voices and staves, saving even more time.
794
795 @node Automatic note splitting
796 @subsection Automatic note splitting
797
798 Long notes can be converted automatically to tied notes.  This is done
799 by replacing the @internalsref{Note_heads_engraver} by the
800 @internalsref{Completion_heads_engraver}.
801 In the following examples, notes crossing the bar line are split and tied.
802
803
804 @lilypond[quote,fragment,verbatim,relative=1,linewidth=12\cm]
805 \new Voice \with {
806   \remove "Note_heads_engraver"
807   \consists "Completion_heads_engraver"
808 } {
809   c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2
810 }
811 @end lilypond
812
813 This engraver splits all running notes at the bar line, and inserts
814 ties.  One of its uses is to debug complex scores: if the measures are
815 not entirely filled, then the ties exactly show how much each measure
816 is off.
817
818 @refbugs
819
820 Not all durations (especially those containing tuplets) can be
821 represented exactly with normal notes and dots, but the engraver will
822 not insert tuplets.
823
824 @seealso
825
826 Examples: @inputfileref{input/@/regression,completion@/-heads@/.ly}.
827
828 @noindent
829
830 Program reference: @internalsref{Completion_heads_engraver}.
831
832
833 @node Staff notation
834 @section Staff notation
835
836 This section describes music notation that occurs on staff level,
837 such as key signatures, clefs and time signatures.
838
839 @cindex Staff notation
840
841 @menu
842 * Staff symbol::
843 * Key signature::
844 * Clef::
845 * Ottava brackets::
846 * Time signature::
847 * Partial measures::
848 * Unmetered music::
849 * Bar lines::
850 * Time administration::
851 * Controlling formatting of prefatory matter::
852 @end menu
853
854 @node Staff symbol
855 @subsection Staff symbol
856
857 @cindex adjusting staff symbol
858
859 Notes, dynamic signs, etc., are grouped
860 with a set of horizontal lines, into a staff (plural `staves').  In our
861 system, these lines are drawn using a separate layout object called
862 staff symbol.
863
864
865 @cindex staff lines, setting number of
866 @cindex staff lines, setting thickness of
867 @cindex thickness of staff lines, setting
868 @cindex number of staff lines, setting
869
870 @seealso
871
872 Program reference: @internalsref{StaffSymbol}.
873
874 Examples: @inputfileref{input/@/test,staff@/-lines@/.ly},
875 @inputfileref{input/@/test,staff@/-size@/.ly}.
876
877 @refbugs
878
879 If a staff is ended halfway a piece, the staff symbol may not end
880 exactly on the bar line.
881
882
883 @node Key signature
884 @subsection Key signature
885 @cindex Key signature
886
887 @cindex @code{\key}
888
889 The key signature indicates the tonality in which a piece is played.  It
890 is denoted by a set of alterations (flats or sharps) at the start of the
891 staff.
892
893
894 Setting or changing the key signature is done with the @code{\key}
895 command
896 @example
897 @code{\key} @var{pitch} @var{type}
898 @end example
899
900 @cindex @code{\minor}
901 @cindex @code{\major}
902 @cindex @code{\minor}
903 @cindex @code{\ionian}
904 @cindex @code{\locrian}
905 @cindex @code{\aeolian}
906 @cindex @code{\mixolydian}
907 @cindex @code{\lydian}
908 @cindex @code{\phrygian}
909 @cindex @code{\dorian}
910
911 Here, @var{type} should be @code{\major} or @code{\minor} to get
912 @var{pitch}-major or @var{pitch}-minor, respectively.
913 The standard mode names @code{\ionian},
914 @code{\locrian}, @code{\aeolian}, @code{\mixolydian}, @code{\lydian},
915 @code{\phrygian}, and @code{\dorian} are also defined.
916
917 This command sets the context property
918 @internalsref{Staff}.@code{keySignature}.  Non-standard key signatures
919 can be specified by setting this property directly.
920
921 Accidentals and key signatures often confuse new users, because
922 unaltered notes get natural signs depending on the key signature.  For
923 more information, see @ref{More about pitches}.
924
925 @seealso
926
927 Program reference: @internalsref{KeyChangeEvent},
928 @internalsref{KeyCancellation} and @internalsref{KeySignature}.
929
930 @cindex @code{keySignature}
931
932
933 @node Clef
934 @subsection Clef
935 @cindex @code{\clef}
936
937 The clef indicates which lines of the staff correspond to which
938 pitches.
939
940
941 The clef can be set with the @code{\clef} command
942 @lilypond[quote,raggedright,fragment,verbatim]
943 { c''2 \clef alto g'2 }
944 @end lilypond
945
946 Supported clef-names include
947 @c Moved standard clefs to the top /MB
948 @table @code
949 @cindex treble clef
950 @cindex violin clef
951 @item treble, violin, G, G2
952 G clef on 2nd line
953 @item alto, C
954 @cindex alto clef
955  C clef on 3rd line
956 @item tenor
957 @cindex tenor clef
958  C clef on 4th line.
959 @item bass, F
960 @cindex bass clef
961  F clef on 4th line
962 @item french
963 @cindex french clef
964  G clef on 1st line, so-called French violin clef
965 @item soprano
966 @cindex soprano clef
967  C clef on 1st line
968 @item mezzosoprano
969 @cindex mezzosoprano clef
970  C clef on 2nd line
971 @item baritone
972 @cindex baritone clef
973  C clef on 5th line
974 @item varbaritone
975 @cindex varbaritone clef
976  F clef on 3rd line
977 @item subbass
978 @cindex subbass clef
979  F clef on 5th line
980 @item percussion
981  percussion clef
982 @item tab
983  tablature clef
984 @end table
985
986 By adding @code{_8} or @code{^8} to the clef name, the clef is
987 transposed one octave down or up, respectively, and @code{_15} and
988 @code{^15} transposes by two octaves.  The argument @var{clefname}
989 must be enclosed in quotes when it contains underscores or digits.  For
990 example,
991
992
993 @cindex choral tenor clef
994 @lilypond[quote,raggedright,verbatim,fragment,relative=1]
995 \clef "G_8" c4
996 @end lilypond
997
998 This command is equivalent to setting @code{clefGlyph},
999 @code{clefPosition} (which controls the Y position of the clef),
1000 @code{centralCPosition} and @code{clefOctavation}.  A clef is printed
1001 when any of these properties are changed.  The following example shows
1002 possibilities when setting properties manually.
1003
1004 @lilypond[quote,raggedright,verbatim]
1005 {
1006   \set Staff.clefGlyph = #"clefs-F"
1007   \set Staff.clefPosition = #2
1008   c'4
1009   \set Staff.clefGlyph = #"clefs-G"
1010   c'4
1011   \set Staff.clefGlyph = #"clefs-C"
1012   c'4
1013   \set Staff.clefOctavation = #7
1014   c'4
1015   \set Staff.clefOctavation = #0
1016   \set Staff.clefPosition = #0
1017   c'4
1018   \clef "bass"
1019   c'4
1020 }
1021 @end lilypond
1022
1023
1024 @seealso
1025
1026 Program reference: @internalsref{Clef}.
1027
1028
1029
1030 @node Ottava brackets
1031 @subsection Ottava brackets
1032
1033 `Ottava' brackets introduce an extra transposition of an octave for
1034 the staff.  They are created by invoking the function
1035 @code{set-octavation}
1036
1037 @cindex ottava
1038 @cindex 15ma
1039 @cindex octavation
1040
1041 @lilypond[quote,raggedright,verbatim,fragment]
1042 \relative c''' {
1043   a2 b
1044   #(set-octavation 1)
1045   a b
1046   #(set-octavation 0)
1047   a b
1048 }
1049 @end lilypond
1050
1051 The @code{set-octavation} function also takes -1 (for 8va bassa) and 2
1052 (for 15ma) as arguments.  Internally the function sets the properties
1053 @code{ottavation} (e.g., to @code{"8va"}) and
1054 @code{centralCPosition}.  For overriding the text of the bracket, set
1055 @code{ottavation} after invoking @code{set-octavation}, i.e.,
1056
1057 @lilypond[quote,raggedright,verbatim]
1058 {
1059   #(set-octavation 1)
1060   \set Staff.ottavation = #"8"
1061   c'''
1062 }
1063 @end lilypond
1064
1065 @seealso
1066
1067 Program reference: @internalsref{OttavaBracket}.
1068
1069 Examples: @inputfileref{input/@/regression,ottava@/.ly},
1070 @inputfileref{input/@/regression,ottava@/-broken@/.ly}.
1071
1072 @refbugs
1073
1074 @code{set-octavation} will get confused when clef changes happen
1075 during an octavation bracket.
1076
1077
1078
1079
1080 @node Time signature
1081 @subsection Time signature
1082 @cindex Time signature
1083 @cindex meter
1084 @cindex @code{\time}
1085
1086 Time signature indicates the metrum of a piece: a regular pattern of
1087 strong and weak beats.  It is denoted by a fraction at the start of the
1088 staff.
1089
1090
1091 The time signature is set or changed by the @code{\time}
1092 command
1093 @lilypond[quote,raggedright,fragment,verbatim]
1094 \time 2/4 c'2 \time 3/4 c'2.
1095 @end lilypond
1096
1097 The symbol that is printed can be customized with the @code{style}
1098 property.  Setting it to @code{#'()} uses fraction style for 4/4 and
1099 2/2 time,
1100
1101 @lilypond[fragment,quote,raggedright,verbatim]
1102 \time 4/4 c'1
1103 \time 2/2 c'1
1104 \override Staff.TimeSignature #'style = #'()
1105 \time 4/4 c'1
1106 \time 2/2 c'1
1107 @end lilypond
1108
1109
1110
1111 There are many more options for its layout.  See @ref{Ancient time
1112 signatures} for more examples.
1113
1114
1115 This command sets the property @code{timeSignatureFraction},
1116 @code{beatLength} and @code{measureLength} in the @code{Timing}
1117 context, which is normally aliased to @internalsref{Score}.  The
1118 property @code{measureLength} determines where bar lines should be
1119 inserted, and how automatic beams should be generated.  Changing the
1120 value of @code{timeSignatureFraction} also causes the symbol to be
1121 printed.
1122
1123 More options are available through the Scheme function
1124 @code{set-time-signature}.  In combination with the
1125 @internalsref{Measure_grouping_engraver}, it will create
1126 @internalsref{MeasureGrouping} signs.  Such signs ease reading
1127 rhythmically complex modern music.  In the following example, the 9/8
1128 measure is subdivided in 2, 2, 2 and 3.  This is passed to
1129 @code{set-time-signature} as the third argument @code{(2 2 2 3)}
1130
1131 @lilypond[quote,raggedright,verbatim]
1132 \score {
1133   \relative c'' {
1134     #(set-time-signature 9 8 '(2 2 2 3))
1135     g8[ g] d[ d] g[ g] a8[( bes g]) |
1136     #(set-time-signature 5 8 '(3 2))
1137     a4. g4
1138   }
1139   \layout {
1140     \context {
1141       \Staff
1142       \consists "Measure_grouping_engraver"
1143     }
1144   }
1145 }
1146 @end lilypond
1147
1148 @seealso
1149
1150 Program reference: @internalsref{TimeSignature}, and @internalsref{Timing_engraver}.
1151
1152
1153 @refbugs
1154
1155 Automatic beaming does not use the measure grouping specified with
1156 @code{set-time-signature}.
1157
1158 @node Partial measures
1159 @subsection Partial measures
1160 @cindex Partial
1161 @cindex anacrusis
1162 @cindex partial measure
1163 @cindex measure, partial
1164 @cindex shorten measures
1165 @cindex @code{\partial}
1166
1167 Partial measures, for example in upsteps, are entered using the
1168 @code{\partial} command
1169 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1170 \partial 16*5 c16 cis d dis e | a2. c,4 | b2
1171 @end lilypond
1172
1173 The syntax for this command is
1174 @example
1175 \partial @var{duration}
1176 @end example
1177 This is internally translated into
1178 @example
1179 \set Timing.measurePosition = -@var{length of duration}
1180 @end example
1181 @cindex @code{|}
1182 The property @code{measurePosition} contains a rational number
1183 indicating how much of the measure has passed at this point.
1184
1185 @refbugs
1186
1187 This command does not take into account grace notes at the start of
1188 the music.  When a piece starts with graces notes in the pickup, then
1189 the @code{\partial} should follow the grace notes
1190
1191 @lilypond[verbatim,quote,raggedright,relative,fragment]
1192 {
1193   \grace f16
1194   \partial 4
1195   g4
1196   a2 g2
1197 }
1198 @end lilypond
1199
1200
1201 @node Unmetered music
1202 @subsection Unmetered music
1203
1204 @cindex @code{\bar}
1205
1206 Bar lines and bar numbers are calculated automatically.  For unmetered
1207 music (cadenzas, for example), this is not desirable.  By setting
1208 @code{Score.timing} to false, this automatic timing can be switched
1209 off.  Empty bar lines,
1210
1211 @example
1212 \bar ""
1213 @end example
1214
1215 @noindent
1216 indicate where line breaks can occur.
1217
1218 @refcommands
1219
1220 @cindex @code{\cadenzaOn}
1221 @code{\cadenzaOn},
1222 @cindex @code{\cadenzaOff}
1223 @code{\cadenzaOff}.
1224
1225
1226
1227
1228 @node Bar lines
1229 @subsection Bar lines
1230 @cindex Bar lines
1231
1232 @cindex @code{\bar}
1233 @cindex measure lines
1234 @cindex repeat bars
1235
1236
1237 Bar lines delimit measures, but are also used to indicate repeats.
1238 Normally, they are inserted automatically.  Line breaks may only
1239 happen on bar lines.
1240
1241 Special types of bar lines can be forced with the @code{\bar} command
1242 @c
1243 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1244 c4 \bar "|:" c4
1245 @end lilypond
1246
1247 The following bar types are available
1248 @lilypondfile[raggedright,quote]{bar-lines.ly}
1249
1250 For allowing line breaks, there is a special command,
1251 @example
1252 \bar ""
1253 @end example
1254 This will insert an invisible bar line, and allow line breaks at this
1255 point.
1256
1257 In scores with many staves, a @code{\bar} command in one staff is
1258 automatically applied to all staves.  The resulting bar lines are
1259 connected between different staves of a @internalsref{StaffGroup}
1260 @c
1261 @lilypond[quote,raggedright,fragment,verbatim]
1262 <<
1263   \context StaffGroup <<
1264     \new Staff {
1265       e'4 d'
1266       \bar "||"
1267       f' e'
1268     }
1269     \new Staff { \clef bass c4 g e g }
1270   >>
1271   \new Staff { \clef bass c2 c2 }
1272 >>
1273 @end lilypond
1274
1275
1276 The command @code{\bar }@var{bartype} is a short cut for doing
1277 @code{\set Timing.whichBar = }@var{bartype}.  Whenever @code{whichBar}
1278 is set to a string, a bar line of that type is created.
1279
1280 A bar line is created whenever the @code{whichBar} property is set.
1281 At the start of a measure it is set to the contents of
1282 @code{Timing.defaultBarType}.  The contents of @code{repeatCommands} are used
1283 to override default measure bars.
1284
1285 @cindex @code{whichBar}
1286 @cindex @code{repeatCommands}
1287 @cindex @code{defaultBarType}
1288
1289 You are encouraged to use @code{\repeat} for repetitions.  See
1290 @ref{Repeats}.
1291
1292
1293
1294 @seealso
1295
1296 In this manual: @ref{Repeats}, @ref{System start delimiters}.
1297
1298
1299 Program reference: @internalsref{BarLine} (created at
1300 @internalsref{Staff} level), @internalsref{SpanBar} (across staves).
1301
1302 @cindex bar lines at start of system
1303 @cindex start of system
1304
1305
1306
1307 Examples: @inputfileref{input/@/test,bar@/-lines@/.ly},
1308
1309
1310 @node Time administration
1311 @subsection Time administration
1312
1313 Time is administered by the @internalsref{Time_signature_engraver},
1314 which usually lives in the @internalsref{Score} context.
1315 The bookkeeping deals with the following variables
1316
1317 @table @code
1318 @item currentBarNumber
1319 The measure number.
1320
1321 @item measureLength
1322 The length of the measures in the current time signature.  For a 4/4
1323 time this is@tie{}1, and for 6/8 it is 3/4.
1324
1325 @item measurePosition
1326 The point within the measure where we currently are.  This quantity
1327 is reset to@tie{}0 whenever it exceeds @code{measureLength}.  When that
1328 happens, @code{currentBarNumber} is incremented.
1329
1330 @item timing
1331 If set to true, the above variables are updated for every time
1332 step.  When set to false, the engraver stays in the current measure
1333 indefinitely.
1334 @end table
1335
1336 Timing can be changed by setting any of these variables explicitly.
1337 In the next example, the 4/4 time signature is printed, but
1338 @code{measureLength} is set to 5/4.  After a while, the measure is
1339 shortened by 1/8, by setting @code{measurePosition} to -3/8 at 2/4 in
1340 the measure, so the next bar line will fall at 2/4 + 3/8.
1341
1342 @lilypond[quote,raggedright,verbatim,relative,fragment]
1343 \set Score.measureLength = #(ly:make-moment 5 4)
1344 c1 c4
1345 c1 c4
1346 c4 c4
1347 \set Score.measurePosition = #(ly:make-moment -3 8)
1348 b8 b b
1349 c4 c1
1350 @end lilypond
1351
1352
1353 @node Controlling formatting of prefatory matter
1354 @subsection Controlling formatting of prefatory matter
1355
1356 TODO: Somebody needs to explain this example, but I don't know what
1357 they're trying to do, so it won't be me.  -gp
1358
1359 @lilypond[quote,verbatim]
1360 \transpose c c' {
1361   \override Staff.Clef
1362     #'break-visibility = #end-of-line-visible
1363   \override Staff.KeySignature
1364     #'break-visibility = #end-of-line-visible
1365   \set Staff.explicitClefVisibility = #end-of-line-visible
1366   \set Staff.explicitKeySignatureVisibility = #end-of-line-visible
1367
1368   % We want the time sig to take space, otherwise there is not
1369   % enough white at the start of the line.
1370
1371   \override Staff.TimeSignature #'transparent = ##t
1372   \set Score.defaultBarType = #"empty"
1373
1374   c1 d e f g a b c
1375   \key d \major
1376   \break
1377
1378   % see above.
1379   \time 4/4
1380
1381   d e fis g a b cis d
1382   \key g \major
1383   \break
1384   \time 4/4
1385 }
1386 @end lilypond
1387
1388
1389 @node Polyphony
1390 @section Polyphony
1391
1392 Polyphony in music refers to having more than one voice occuring in
1393 a piece of music.  Polyphony in LilyPond refers to having more than
1394 one voice on the same staff.
1395
1396 @menu
1397 * Writing polyphonic music::
1398 @end menu
1399
1400 @node Writing polyphonic music
1401 @subsection Writing polyphonic music
1402 @cindex polyphony
1403
1404 The easiest way to enter fragments with more than one voice on a staff
1405 is to split chords using the separator @code{\\}.  You can use it for
1406 small, short-lived voices or for single chords
1407
1408 @cindex @code{\\}
1409
1410 @lilypond[quote,raggedright,verbatim,fragment]
1411 \context Staff \relative c'' {
1412   c4 << { f d e } \\ { b c2 } >>
1413   c4 << g' \\ b, \\ f' \\ d >>
1414 }
1415 @end lilypond
1416
1417 The separator causes @internalsref{Voice} contexts@footnote{Polyphonic
1418 voices are sometimes called ``layers'' in other notation packages}
1419 @cindex layers
1420 to be instantiated.  They bear the names @code{"1"}, @code{"2"}, etc.  In
1421 each of these contexts, vertical direction of slurs, stems, etc., is set
1422 appropriately.
1423
1424 @cindex @code{\voiceOne}
1425 @cindex @code{\voiceFour}
1426
1427 This can also be done by instantiating @internalsref{Voice} contexts
1428 by hand, and using @code{\voiceOne}, up to @code{\voiceFour} to assign
1429 a stem directions and horizontal shift for each part
1430 @c
1431
1432 @lilypond[quote,raggedright,verbatim]
1433 \relative c''
1434 \context Staff <<
1435   \new Voice { \voiceOne cis2 b }
1436   \new Voice { \voiceThree b4 ais ~ ais4 gis4 }
1437   \new Voice { \voiceTwo fis4~ fis4 f ~ f } >>
1438 @end lilypond
1439
1440 @noindent
1441 The command @code{\oneVoice} will revert back to the normal setting.
1442 @cindex @code{\oneVoice}
1443
1444
1445 Normally, note heads with a different number of dots are not merged, but
1446 when the object property @code{merge-differently-dotted} is set in
1447 the @internalsref{NoteCollision} object, they are merged
1448 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
1449 \context Voice << {
1450   g8 g8
1451   \override Staff.NoteCollision
1452     #'merge-differently-dotted = ##t
1453   g8 g8
1454 } \\ { g8.[ f16] g8.[ f16] } >>
1455 @end lilypond
1456
1457 Similarly, you can merge half note heads with eighth notes, by setting
1458 @code{merge-differently-headed}
1459 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
1460 \context Voice << {
1461   c8 c4.
1462   \override Staff.NoteCollision
1463     #'merge-differently-headed = ##t
1464 c8 c4. } \\ { c2 c2 } >>
1465 @end lilypond
1466
1467 LilyPond also vertically shifts rests that are opposite of a stem,
1468 for example
1469
1470 @lilypond[quote,raggedright,fragment,verbatim]
1471 \context Voice << c''4 \\ r4 >>
1472 @end lilypond
1473
1474
1475 @refcommands
1476
1477
1478
1479 @cindex @code{\oneVoice}
1480 @code{\oneVoice},
1481 @cindex @code{\voiceOne}
1482 @code{\voiceOne},
1483 @cindex @code{\voiceTwo}
1484 @code{\voiceTwo},
1485 @cindex @code{\voiceThree}
1486 @code{\voiceThree},
1487 @cindex @code{\voiceFour}
1488 @code{\voiceFour}.
1489
1490
1491
1492 @cindex @code{\shiftOn}
1493 @code{\shiftOn},
1494 @cindex @code{\shiftOnn}
1495 @code{\shiftOnn},
1496 @cindex @code{\shiftOnnn}
1497 @code{\shiftOnnn},
1498 @cindex @code{\shiftOff}
1499 @code{\shiftOff}: these commands specify in what chords of the current
1500 voice should be shifted.  The outer voices (normally: voice one and
1501 two) have @code{\shiftOff}, while the inner voices (three and four)
1502 have @code{\shiftOn}.  @code{\shiftOnn} and @code{\shiftOnnn} define
1503 further shift levels.
1504
1505
1506 When LilyPond cannot cope, the @code{force-hshift}
1507 property of the @internalsref{NoteColumn} object and pitched rests can
1508 be used to override typesetting decisions.
1509
1510 @lilypond[quote,verbatim,raggedright]
1511 \relative <<
1512 {
1513   <d g>
1514   <d g>
1515 } \\ {
1516   <b f'>
1517   \once \override NoteColumn #'force-hshift = #1.7
1518   <b f'>
1519 } >>
1520 @end lilypond
1521
1522
1523
1524 @seealso
1525
1526 Program reference: the objects responsible for resolving collisions are
1527 @internalsref{NoteCollision} and @internalsref{RestCollision}.
1528
1529 Examples:
1530 @inputfileref{input/@/regression,collision@/-dots@/.ly},
1531 @inputfileref{input/@/regression,collision@/-head-chords@/.ly},
1532 @inputfileref{input/@/regression,collision@/-heads@/.ly},
1533 @inputfileref{input/@/regression,collision@/-mesh@/.ly}, and
1534 @inputfileref{input/@/regression,collisions@/.ly}.
1535
1536
1537 @refbugs
1538
1539
1540 When using @code{merge-differently-headed} with an upstem eighth or a
1541 shorter note, and a downstem half note, the eighth note gets the wrong
1542 offset.
1543
1544 There is no support for clusters where the same note occurs with
1545 different accidentals in the same chord.  In this case, it is
1546 recommended to use enharmonic transcription, or to use special cluster
1547 notation (see @ref{Clusters}).
1548
1549 @node Beaming
1550 @section Beaming
1551
1552 Beams are used to group short notes into chunks that are aligned with
1553 the metrum.  LilyPond normally inserts beams automatically, but if you
1554 wish you may control them manually or changed how beams are automatically
1555 grouped.
1556
1557 @cindex Automatic beams
1558 @menu
1559 * Automatic beams::
1560 * Manual beams::
1561 * Setting automatic beam behavior::
1562 * Beam formatting::
1563 @end menu
1564
1565 @node Automatic beams
1566 @subsection Automatic beams
1567
1568 LilyPond inserts beams automatically
1569
1570 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1571 \time 2/4 c8 c c c \time 6/8 c c c c8. c16 c8
1572 @end lilypond
1573
1574 When these automatic decisions are not good enough, beaming can be
1575 entered explicitly.  It is also possible to define beaming patterns
1576 that differ from the defaults.
1577
1578 Individual notes may be marked with @code{\noBeam}, to prevent them
1579 from being beamed
1580
1581 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1582 \time 2/4 c8 c\noBeam c c
1583 @end lilypond
1584
1585
1586 @seealso
1587
1588 Program reference: @internalsref{Beam}.
1589
1590
1591 @node Manual beams
1592 @subsection Manual beams
1593 @cindex beams, manual
1594 @cindex @code{]}
1595 @cindex @code{[}
1596
1597 In some cases it may be necessary to override the automatic beaming
1598 algorithm.  For example, the autobeamer will not put beams over rests
1599 or bar lines.  Such beams are specified manually by marking the begin
1600 and end point with @code{[} and @code{]}
1601
1602 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
1603 {
1604   r4 r8[ g' a r8] r8 g[ | a] r8
1605 }
1606 @end lilypond
1607
1608 @cindex @code{stemLeftBeamCount}
1609
1610 Normally, beaming patterns within a beam are determined automatically.
1611 If necessary, the properties @code{stemLeftBeamCount} and
1612 @code{stemRightBeamCount} can be used to override the defaults.  If
1613 either property is set, its value will be used only once, and then it
1614 is erased
1615
1616 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
1617 {
1618    f8[ r16
1619       f g a]
1620    f8[ r16
1621    \set stemLeftBeamCount = #1
1622       f g a]
1623 }
1624 @end lilypond
1625 @cindex @code{stemRightBeamCount}
1626
1627
1628 The property @code{subdivideBeams} can be set in order to subdivide
1629 all 16th or shorter beams at beat positions, as defined by the
1630 @code{beatLength} property.
1631
1632
1633 @lilypond[fragment,quote,relative=2,verbatim]
1634 c16[ c c c c c c c]
1635 \set subdivideBeams = ##t
1636 c16[ c c c c c c c]
1637 \set Score.beatLength = #(ly:make-moment 1 8)
1638 c16[ c c c c c c c]
1639 @end lilypond
1640 @cindex @code{subdivideBeams}
1641
1642 Normally, line breaks are forbidden when beams cross bar lines.  This
1643 behavior can be changed by setting @code{allowBeamBreak}.
1644
1645 @cindex @code{allowBeamBreak}
1646 @cindex beams and line breaks
1647
1648 @cindex beams, kneed
1649 @cindex kneed beams
1650 @cindex auto-knee-gap
1651
1652
1653 @seealso
1654
1655 User manual: @ref{Changing context properties on the fly} for the
1656 @code{\set} command
1657
1658
1659 @refbugs
1660
1661 @cindex Frenched staves
1662 Kneed beams are inserted automatically, when a large gap is detected
1663 between the note heads.  This behavior can be tuned through the object.
1664
1665
1666 Automatically kneed cross-staff beams cannot be used together with
1667 hidden staves.  See @ref{Hiding staves}.
1668
1669 Beams do not avoid collisions with symbols around the notes, such as
1670 texts and accidentals.
1671
1672 @c FIXME.
1673
1674
1675 @node Setting automatic beam behavior
1676 @subsection Setting automatic beam behavior
1677
1678 @cindex @code{autoBeamSettings}
1679 @cindex @code{(end * * * *)}
1680 @cindex @code{(begin * * * *)}
1681 @cindex automatic beams, tuning
1682 @cindex tuning automatic beaming
1683
1684 @c [TODO: use \applycontext]
1685
1686 In normal time signatures, automatic beams can start on any note but can
1687 only end in a few positions within the measure: beams can end on a beat,
1688 or at durations specified by the properties in
1689 @code{autoBeamSettings}.  The defaults for @code{autoBeamSettings}
1690 are defined in @file{scm/@/auto@/-beam@/.scm}.
1691
1692 The value of @code{autoBeamSettings} is changed with two functions,
1693 @example
1694 #(override-auto-beam-setting
1695    '(@var{be} @var{p} @var{q} @var{n} @var{m}) @var{a} @var{b}
1696    [@var{context}])
1697 #(revert-auto-beam-setting '(@var{be} @var{p} @var{q} @var{n} @var{m}))
1698 @end example
1699 Here, @var{be} is the symbol @code{begin} or @code{end}, and
1700 @var{context} is an optional context (default: @code{'Voice}).  It
1701 determines whether the rule applies to begin or end-points.  The
1702 quantity @var{p}/@var{q} refers to the length of the beamed notes (and
1703 `@code{* *}' designates notes of any length), @var{n}/@var{M} refers
1704 to a time signature (wildcards `@code{* *}' may be entered to
1705 designate all time signatures), @var{a}/@var{b} is a duration.  By
1706 default, this command changes settings for the current voice.  It is
1707 also possible to adjust settings at higher contexts, by adding a
1708 @var{context} argument.
1709
1710 For example, if automatic beams should end on every quarter note, use
1711 the following
1712 @example
1713 #(override-auto-beam-setting '(end * * * *) 1 4 'Staff)
1714 @end example
1715 Since the duration of a quarter note is 1/4 of a whole note, it is
1716 entered as @code{(ly:make-moment 1 4)}.
1717
1718 The same syntax can be used to specify beam starting points.  In this
1719 example, automatic beams can only end on a dotted quarter note
1720 @example
1721 #(override-auto-beam-setting '(end * * * *) 3 8)
1722 @end example
1723 In 4/4 time signature, this means that automatic beams could end only on
1724 3/8 and on the fourth beat of the measure (after 3/4, that is 2 times
1725 3/8, has passed within the measure).
1726
1727 Rules can also be restricted to specific time signatures.  A rule that
1728 should only be applied in @var{N}/@var{M} time signature is formed by
1729 replacing the second asterisks by @var{N} and @var{M}.  For example, a
1730 rule for 6/8 time exclusively looks like
1731 @example
1732 #(override-auto-beam-setting '(begin * * 6 8) @dots{})
1733 @end example
1734
1735 If a rule should be to applied only to certain types of beams, use the
1736 first pair of asterisks.  Beams are classified according to the
1737 shortest note they contain.  For a beam ending rule that only applies
1738 to beams with 32nd notes (and no shorter notes), use @code{(end 1 32 *
1739 *)}.
1740
1741 @cindex automatic beam generation
1742 @cindex autobeam
1743 @cindex @code{autoBeaming}
1744 @cindex lyrics
1745
1746 If beams are used to indicate melismata in songs, then automatic
1747 beaming should be switched off.  This is done by setting
1748 @code{autoBeaming} to @code{#f}.
1749
1750 @refcommands
1751
1752 @cindex @code{\autoBeamOff}
1753 @code{\autoBeamOff},
1754 @cindex @code{\autoBeamOn}
1755 @code{\autoBeamOn}.
1756
1757
1758 @refbugs
1759
1760 If a score ends while an automatic beam has not been ended and is
1761 still accepting notes, this last beam will not be typeset at all.  The
1762 same holds polyphonic voices, entered with @code{<< @dots{} \\ @dots{}
1763 >>}.  If a polyphonic voice ends while an automatic beam is still
1764 accepting notes, it is not typeset.
1765
1766 The rules for ending a beam depend on the shortest note in a beam.
1767 So, while it is possible to have different ending rules for eight
1768 beams and sixteenth beams, a beam that contains both eight and
1769 sixteenth notes will use the rules for the sixteenth beam.
1770
1771 In the example below, the autobeamer makes eighth beams and sixteenth
1772 end at three eighths.  The third beam can only be corrected by
1773 specifying manual beaming.
1774
1775 @lilypond[quote,raggedright,fragment,relative=1]
1776 #(override-auto-beam-setting '(end * * * *) 3 8)
1777 % rather show case where it goes wrong
1778 %\time 12/8 c'8 c c c16 c c c c c c[ c c c] c8[ c] c4
1779 \time 12/8 c'8 c c c16 c c c c c c c c c c8 c c4
1780 @end lilypond
1781 It is not possible to specify beaming parameters that act differently in
1782 different parts of a measure.  This means that it is not possible to use
1783 automatic beaming in irregular meters such as @code{5/8}.
1784
1785 @node Beam formatting
1786 @subsection Beam formatting
1787
1788
1789 When a beam falls in the middle of the staff, the beams point normally
1790 down.  However, this behaviour can be altered with the
1791 @code{neutral-direction} property.
1792
1793
1794 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1795 {
1796   b8[ b]
1797   \override Beam #'neutral-direction = #-1
1798   b[ b]
1799   \override Beam #'neutral-direction = #1
1800   b[ b]
1801 }
1802 @end lilypond
1803
1804
1805 @node Accidentals
1806 @section Accidentals
1807
1808 This section describes how to change the way that accidentals are
1809 inserted automatically before notes.
1810
1811 @menu
1812 * Automatic accidentals::
1813 @end menu
1814
1815 @node Automatic accidentals
1816 @subsection Automatic accidentals
1817 @cindex Automatic accidentals
1818
1819 Common rules for typesetting accidentals have been placed in a
1820 function.  This function is called as follows
1821
1822 @cindex @code{set-accidental-style}
1823 @example
1824 #(set-accidental-style 'STYLE #('CONTEXT#))
1825 @end example
1826
1827 The function can take two arguments: the name of the accidental style,
1828 and an optional argument that denotes the context that should be
1829 changed.  If no context name is supplied, @code{Staff} is the default,
1830 but you may wish to apply the accidental style to a single @code{Voice}
1831 instead.
1832
1833 The following accidental styles are supported
1834 @table @code
1835 @item default
1836 This is the default typesetting behavior.  It corresponds
1837 to 18th century common practice: Accidentals are
1838 remembered to the end of the measure in which they occur and
1839 only on their own octave.
1840
1841 @item voice
1842 The normal behavior is to remember the accidentals on
1843 Staff-level.  This variable, however, typesets accidentals
1844 individually for each voice.  Apart from that, the rule is similar to
1845 @code{default}.
1846
1847 As a result, accidentals from one voice do not get canceled in other
1848 voices, which is often an unwanted result
1849
1850 @lilypond[quote,raggedright,relative=1,fragment,verbatim]
1851 \context Staff <<
1852   #(set-accidental-style 'voice)
1853   <<
1854     { es g } \\
1855     { c, e }
1856 >> >>
1857 @end lilypond
1858
1859 The @code{voice} option should be used if the voices
1860 are to be read solely by individual musicians.  If the staff is to be
1861 used by one musician (e.g., a conductor) then
1862 @code{modern} or @code{modern-cautionary}
1863 should be used instead.
1864
1865 @item modern
1866 @cindex @code{modern} style accidentals
1867 This rule corresponds to the common practice in the 20th century.  This rule
1868 prints the same accidentals as @code{default}, but temporary
1869 accidentals also are canceled in other octaves.  Furthermore,
1870 in the same octave, they also get canceled in the following
1871 measure
1872
1873 @lilypond[quote,raggedright,fragment,verbatim]
1874 #(set-accidental-style 'modern)
1875 cis' c'' cis'2 | c'' c'
1876 @end lilypond
1877
1878 @item @code{modern-cautionary}
1879 @cindex @code{modern-cautionary}
1880 This rule is similar to @code{modern}, but the ``extra'' accidentals
1881 (the ones not typeset by @code{default}) are typeset as cautionary
1882 accidentals.  They are printed in reduced size or with parentheses
1883 @lilypond[quote,raggedright,fragment,verbatim]
1884 #(set-accidental-style 'modern-cautionary)
1885 cis' c'' cis'2 | c'' c'
1886 @end lilypond
1887
1888 @cindex @code{modern-voice}
1889 @item modern-voice
1890 This rule is used for multivoice accidentals to be read both by musicians
1891 playing one voice and musicians playing all voices.  Accidentals are
1892 typeset for each voice, but they @emph{are} canceled across voices in
1893 the same @internalsref{Staff}.
1894
1895 @cindex @code{modern-voice-cautionary}
1896 @item modern-voice-cautionary
1897 This rule is the same as @code{modern-voice}, but with the extra
1898 accidentals (the ones not typeset by @code{voice}) typeset
1899 as cautionaries.  Even though all accidentals typeset by
1900 @code{default} @emph{are} typeset by this variable,
1901 some of them are typeset as cautionaries.
1902
1903 @item piano
1904 @cindex @code{piano} accidentals
1905 This rule reflects 20th century practice for piano notation.  Very similar to
1906 @code{modern} but accidentals also get canceled
1907 across the staves in the same @internalsref{GrandStaff} or
1908 @internalsref{PianoStaff}.
1909
1910 @item piano-cautionary
1911 @cindex @code{#(set-accidental-style 'piano-cautionary)}
1912 Same as @code{#(set-accidental-style 'piano)} but with the extra
1913 accidentals typeset as cautionaries.
1914
1915 @item no-reset
1916 @cindex @code{no-reset} accidental style
1917 This is the same as @code{default} but with accidentals lasting
1918 ``forever'' and not only until the next measure
1919 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
1920 #(set-accidental-style 'no-reset)
1921 c1 cis cis c
1922 @end lilypond
1923
1924 @item forget
1925 This is sort of the opposite of @code{no-reset}: Accidentals
1926 are not remembered at all---and hence all accidentals are
1927 typeset relative to the key signature, regardless of what was
1928 before in the music
1929
1930 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
1931 #(set-accidental-style 'forget)
1932 \key d\major c4 c cis cis d d dis dis
1933 @end lilypond
1934 @end table
1935
1936
1937 @seealso
1938
1939 Program reference: @internalsref{Accidental_engraver},
1940 @internalsref{Accidental}, and @internalsref{AccidentalPlacement}.
1941
1942
1943 @refbugs
1944
1945 Simultaneous notes are considered to be entered in sequential
1946 mode.  This means that in a chord the accidentals are typeset as if the
1947 notes in the chord happened once at a time - in the order in which
1948 they appear in the input file.
1949
1950 This is a problem when accidentals in a chord depend on each other,
1951 which does not happen for the default accidental style.  The problem
1952 can be solved by manually inserting @code{!} and @code{?} for the
1953 problematic notes.
1954
1955
1956 @node Expressive marks
1957 @section Expressive marks
1958
1959
1960 @c todo: should change ordering
1961 @c where to put text spanners, metronome marks,
1962 @c fingering?
1963
1964 Expressive marks help musicians to bring more to the music than simple
1965 notes and rhythms.
1966
1967 @menu
1968 * Slurs::
1969 * Phrasing slurs::
1970 * Breath marks::
1971 * Metronome marks::
1972 * Text scripts::
1973 * Text spanners::
1974 * Analysis brackets::
1975 * Articulations::
1976 * Running trills::
1977 * Fingering instructions::
1978 * Grace notes::
1979 * Glissando::
1980 * Dynamics::
1981 @end menu
1982
1983 @node Slurs
1984 @subsection Slurs
1985 @cindex Slurs
1986
1987 A slur indicates that notes are to be played bound or @emph{legato}.
1988
1989 They are entered using parentheses
1990 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1991 f( g a) a8 b( a4 g2 f4)
1992 <c e>2( <b d>2)
1993 @end lilypond
1994
1995 The direction of a slur can be set with the
1996 generic commands
1997
1998 @example
1999 \override Slur #'direction = #UP
2000 \slurUp            % shortcut for the previous line
2001 @end example
2002
2003 @noindent
2004 However, there is a convenient shorthand for forcing slur
2005 directions.  By adding @code{_} or @code{^} before the opening
2006 parentheses, the direction is also set.  For example,
2007
2008 @lilypond[relative=2,raggedright,quote,verbatim,fragment]
2009 c4_( c) c^( c)
2010 @end lilypond
2011
2012 Some composers write two slurs when they want legato chords.  This can
2013 be achieved in LilyPond by setting @code{doubleSlurs},
2014
2015 @lilypond[verbatim,raggedright,relative,fragment,quote]
2016 \set doubleSlurs = ##t
2017 <c e>4 ( <d f> <c e> <d f> )
2018 @end lilypond
2019
2020
2021 @refcommands
2022
2023
2024 @cindex @code{\slurUp}
2025 @code{\slurUp},
2026 @cindex @code{\slurDown}
2027 @code{\slurDown},
2028 @cindex @code{\slurNeutral}
2029 @code{\slurNeutral},
2030 @cindex @code{\slurDotted}
2031 @code{\slurDotted},
2032 @cindex @code{\slurSolid}
2033 @code{\slurSolid}.
2034
2035 @seealso
2036
2037 Program reference: @seeinternals{Slur}, and @internalsref{SlurEvent}.
2038
2039
2040 @node Phrasing slurs
2041 @subsection Phrasing slurs
2042
2043 @cindex phrasing slurs
2044 @cindex phrasing marks
2045
2046 A phrasing slur (or phrasing mark) connects chords and is used to
2047 indicate a musical sentence.  It is written using @code{\(} and @code{\)}
2048 respectively
2049
2050 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
2051 \time 6/4 c'\( d( e) f( e) d\)
2052 @end lilypond
2053
2054 Typographically, the phrasing slur behaves almost exactly like a
2055 normal slur.  However, they are treated as different objects.  A
2056 @code{\slurUp} will have no effect on a phrasing slur; instead, use
2057 @code{\phrasingSlurUp}, @code{\phrasingSlurDown}, and
2058 @code{\phrasingSlurNeutral}.
2059
2060 The commands @code{\slurUp}, @code{\slurDown}, and @code{\slurNeutral}
2061 will only affect normal slurs and not phrasing slurs.
2062
2063 @refcommands
2064
2065 @cindex @code{\phrasingSlurUp}
2066 @code{\phrasingSlurUp},
2067 @cindex @code{\phrasingSlurDown}
2068 @code{\phrasingSlurDown},
2069 @cindex @code{\phrasingSlurNeutral}
2070 @code{\phrasingSlurNeutral}.
2071
2072 @seealso
2073
2074 Program reference: see also @internalsref{PhrasingSlur}, and
2075 @internalsref{PhrasingSlurEvent}.
2076
2077 @refbugs
2078
2079 Putting phrasing slurs over rests leads to spurious warnings.
2080
2081 @node Breath marks
2082 @subsection Breath marks
2083
2084 Breath marks are entered using @code{\breathe}
2085
2086
2087 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2088 c'4 \breathe d4
2089 @end lilypond
2090
2091 The glyph of the breath mark can be tuned by overriding the
2092 @code{text} property of the @code{BreathingSign} layout object with
2093 any markup text.  For example,
2094 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
2095 c'4
2096 \override BreathingSign #'text
2097   = #(make-musicglyph-markup "scripts-rvarcomma")
2098 \breathe
2099 d4
2100 @end lilypond
2101
2102 @seealso
2103
2104 Program reference: @internalsref{BreathingSign},
2105 @internalsref{BreathingSignEvent}.
2106
2107 Examples: @inputfileref{input/@/regression,breathing@/-sign@/.ly}.
2108
2109
2110 @node Metronome marks
2111 @subsection Metronome marks
2112
2113 @cindex Tempo
2114 @cindex beats per minute
2115 @cindex metronome marking
2116
2117 Metronome settings can be entered as follows
2118 @example
2119 \tempo @var{duration} = @var{per-minute}
2120 @end example
2121
2122 In the MIDI output, they are interpreted as a tempo change.  In the
2123 layout output, a metronome marking is printed
2124 @cindex @code{\tempo}
2125 @lilypond[quote,raggedright,verbatim,fragment]
2126 \tempo 8.=120 c''1
2127 @end lilypond
2128
2129 @seealso
2130
2131 Program reference: @internalsref{MetronomeChangeEvent}.
2132
2133
2134 @node Text scripts
2135 @subsection Text scripts
2136 @cindex Text scripts
2137
2138 @cindex text items, non-empty
2139 @cindex non-empty texts
2140
2141 It is possible to place arbitrary strings of text or markup text (see
2142 @ref{Text markup}) above or below notes by using a string
2143 @code{c^"text"}.  By default, these indications do not influence the
2144 note spacing, but by using the command @code{\fatText}, the widths
2145 will be taken into account
2146
2147 @lilypond[quote,fragment,raggedright,verbatim,relative=1]
2148 c4^"longtext" \fatText c4_"longlongtext" c4
2149 @end lilypond
2150
2151 More complex formatting may also be added to a note by using the
2152 markup command,
2153 @lilypond[fragment,raggedright,verbatim,quote]
2154 c'4^\markup { bla \bold bla }
2155 @end lilypond
2156
2157 The @code{\markup} is described in more detail in
2158 @ref{Text markup}.
2159
2160
2161 @refcommands
2162
2163 @cindex @code{\fatText}
2164 @code{\fatText},
2165 @cindex @code{\emptyText}
2166 @code{\emptyText}.
2167
2168 @seealso
2169
2170 In this manual: @ref{Text markup}.
2171
2172 Program reference: @internalsref{TextScriptEvent}, @internalsref{TextScript}.
2173
2174
2175 @node Text spanners
2176 @subsection Text spanners
2177 @cindex Text spanners
2178
2179 Some performance indications, e.g., @i{rallentando} or @i{accelerando},
2180 are written as text and are extended over many measures with dotted
2181 lines.  Such texts are created using text spanners; attach
2182 @code{\startTextSpan} and @code{\stopTextSpan} to the first and last
2183 notes of the spanner.
2184
2185 The string to be printed, as well as the style, is set through object
2186 properties
2187
2188 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2189 c1
2190 \override TextSpanner #'direction = #-1
2191 \override TextSpanner #'edge-text = #'("rall " . "")
2192 c2\startTextSpan b c\stopTextSpan a
2193 @end lilypond
2194
2195
2196 @seealso
2197
2198 Internals @internalsref{TextSpanEvent},
2199 @internalsref{TextSpanner}.
2200
2201 Examples: @inputfileref{input/@/regression,text@/-spanner@/.ly}.
2202
2203
2204 @node Analysis brackets
2205 @subsection Analysis brackets
2206 @cindex brackets
2207 @cindex phrasing brackets
2208 @cindex musicological analysis
2209 @cindex note grouping bracket
2210
2211 Brackets are used in musical analysis to indicate structure in musical
2212 pieces.  LilyPond supports a simple form of nested horizontal
2213 brackets.  To use this, add the @internalsref{Horizontal_bracket_engraver}
2214 to @internalsref{Staff} context.  A bracket is started with
2215 @code{\startGroup} and closed with @code{\stopGroup}
2216
2217 @lilypond[quote,raggedright,verbatim]
2218 \score {
2219   \relative c'' {
2220     c4\startGroup\startGroup
2221     c4\stopGroup
2222     c4\startGroup
2223     c4\stopGroup\stopGroup
2224   }
2225   \layout {
2226     \context {
2227       \Staff \consists "Horizontal_bracket_engraver"
2228 }}}
2229 @end lilypond
2230
2231 @seealso
2232
2233 Program reference: @internalsref{HorizontalBracket},
2234 @internalsref{NoteGroupingEvent}.
2235
2236 Examples: @inputfileref{input/@/regression,note@/-group@/-bracket@/.ly}.
2237
2238
2239 @node Articulations
2240 @subsection Articulations
2241 @cindex Articulations
2242
2243 @cindex articulations
2244 @cindex scripts
2245 @cindex ornaments
2246
2247 A variety of symbols can appear above and below notes to indicate
2248 different characteristics of the performance.  They are added to a note
2249 by adding a dash and the character signifying the
2250 articulation.  They are demonstrated here
2251
2252 @lilypondfile[quote,raggedright]{script-abbreviations.ly}
2253
2254 The meanings of these shorthands can be changed.  See
2255 @file{ly/@/script@/-init@/.ly} for examples.
2256
2257
2258 The script is automatically placed, but the direction can be forced as
2259 well.  Like other pieces of LilyPond code, @code{_} will place them
2260 below the staff, and @code{^} will place them above.
2261
2262
2263 @lilypond[quote,raggedright,fragment,verbatim]
2264 c''4^^ c''4_^
2265 @end lilypond
2266
2267 Other symbols can be added using the syntax
2268 @var{note}@code{\}@var{name}.  Again, they
2269 can be forced up or down using @code{^} and @code{_},
2270 e.g.,
2271
2272 @lilypond[quote,raggedright,verbatim,fragment,relative=2]
2273 c\fermata c^\fermata c_\fermata
2274 @end lilypond
2275
2276
2277
2278 @cindex accent
2279 @cindex marcato
2280 @cindex staccatissimo
2281 @cindex fermata
2282 @cindex stopped
2283 @cindex staccato
2284 @cindex portato
2285 @cindex tenuto
2286 @cindex upbow
2287 @cindex downbow
2288 @cindex foot marks
2289 @cindex organ pedal marks
2290 @cindex turn
2291 @cindex open
2292 @cindex flageolet
2293 @cindex reverseturn
2294 @cindex trill
2295 @cindex prall
2296 @cindex mordent
2297 @cindex prallprall
2298 @cindex prallmordent
2299 @cindex prall, up
2300 @cindex prall, down
2301 @cindex mordent
2302 @cindex thumb marking
2303 @cindex segno
2304 @cindex coda
2305 @cindex varcoda
2306
2307 Here is a chart showing all scripts available,
2308
2309 @lilypondfile[raggedright,quote]{script-chart.ly}
2310
2311
2312 The vertical ordering of scripts is controlled with the
2313 @code{script-priority} property.  The lower this number, the closer it
2314 will be put to the note.  In this example, the
2315 @internalsref{TextScript} (the sharp symbol) first has the lowest
2316 priority, so it is put lowest in the first example.  In the second, the
2317 prall trill (the @internalsref{Script}) has the lowest, so it is on the
2318 inside.  When two objects have the same priority, the order in which
2319 they are entered decides which one comes first.
2320
2321
2322 @lilypond[verbatim,relative=3,raggedright,fragment,quote]
2323 \once \override TextScript #'script-priority = #-100
2324 a4^\prall^\markup { \sharp }
2325
2326 \once \override Script #'script-priority = #-100
2327 a4^\prall^\markup { \sharp }
2328 @end lilypond
2329
2330
2331
2332
2333 @seealso
2334
2335 Program reference: @internalsref{ScriptEvent}, and @internalsref{Script}.
2336
2337 @refbugs
2338
2339 These signs appear in the printed output but have no effect on the
2340 MIDI rendering of the music.
2341
2342
2343
2344 @node Running trills
2345 @subsection Running trills
2346
2347 Long running trills are made with @code{\startTrillSpan} and
2348 @code{\stopTrillSpan},
2349
2350
2351 @lilypond[verbatim,raggedright,relative=2,quote,fragment]
2352 \new Voice {
2353   << { c1 \startTrillSpan }
2354      { s2. \grace { d16[\stopTrillSpan e] } } >>
2355   c4 }
2356 @end lilypond
2357
2358 @refcommands
2359
2360 @code{\startTrillSpan},
2361 @cindex @code{\startTrillSpan}
2362 @code{\stopTrillSpan}.
2363 @cindex @code{\stopTrillSpan}
2364
2365 @seealso
2366
2367 Program reference: @internalsref{TrillSpanner},
2368 @internalsref{TrillSpanEvent}.
2369
2370 @node Fingering instructions
2371 @subsection Fingering instructions
2372
2373 @cindex fingering
2374
2375 Fingering instructions can be entered using
2376 @example
2377 @var{note}-@var{digit}
2378 @end example
2379 For finger changes, use markup texts
2380
2381 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
2382 c4-1 c-2 c-3 c-4
2383 c^\markup { \finger "2-3" }
2384 @end lilypond
2385
2386 @cindex finger change
2387 @cindex scripts
2388 @cindex superscript
2389 @cindex subscript
2390
2391 You can use the thumb-script to indicate that a note should be
2392 played with the thumb (e.g., in cello music)
2393 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2394 <a_\thumb a'-3>8 <b_\thumb b'-3>
2395 @end lilypond
2396
2397 Fingerings for chords can also be added to individual notes
2398 of the chord by adding them after the pitches
2399 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2400 < c-1 e-2 g-3 b-5 >4
2401 @end lilypond
2402
2403 @noindent
2404 In this case, setting @code{fingeringOrientations} will put fingerings next
2405 to note heads
2406
2407 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
2408 \set fingeringOrientations = #'(left down)
2409 <c-1 es-2 g-4 bes-5 > 4
2410 \set fingeringOrientations = #'(up right down)
2411 <c-1 es-2 g-4 bes-5 > 4
2412 @end lilypond
2413
2414 Using this feature, it is also possible to put fingering instructions
2415 very close to note heads in monophonic music,
2416
2417 @lilypond[verbatim,raggedright,quote,fragment]
2418 \set fingeringOrientations = #'(right)
2419 <es'-2>4
2420 @end lilypond
2421
2422
2423 @seealso
2424
2425 Program reference: @internalsref{FingerEvent}, and @internalsref{Fingering}.
2426
2427 Examples: @inputfileref{input/@/regression,finger@/-chords@/.ly}.
2428
2429
2430
2431
2432 @node Grace notes
2433 @subsection Grace notes
2434
2435
2436 @c should have blurb about accaciatura / appogiatura
2437
2438 @cindex @code{\grace}
2439 @cindex ornaments
2440 @cindex grace notes
2441
2442 Grace notes are ornaments that are written out.  The most common ones
2443 are acciaccatura, which should be played as very short.  It is denoted
2444 by a slurred small note with a slashed stem.  The appoggiatura is a
2445 grace note that takes a fixed fraction of the main note, and is
2446 denoted as a slurred note in small print without a slash.  They
2447 are entered with the commands @code{\acciaccatura} and
2448 @code{\appoggiatura}, as demonstrated in the following example
2449
2450
2451 @cindex appoggiatura
2452 @cindex acciaccatura
2453
2454 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
2455 b4 \acciaccatura d8 c4 \appoggiatura e8 d4
2456 \acciaccatura { g16[ f] } e4
2457 @end lilypond
2458
2459 Both are special forms of the @code{\grace} command.  By prefixing this
2460 keyword to a music expression, a new one is formed, which will be
2461 printed in a smaller font and takes up no logical time in a measure.
2462
2463 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
2464 c4 \grace c16 c4
2465 \grace { c16[ d16] } c2 c4
2466 @end lilypond
2467
2468 @noindent
2469 Unlike @code{\acciaccatura} and @code{\appoggiatura}, the
2470 @code{\grace} command does not start a slur.
2471
2472 Internally, timing for grace notes is done using a second, `grace'
2473 timing.  Every point in time consists of two rational numbers: one
2474 denotes the logical time, one denotes the grace timing.  The above
2475 example is shown here with timing tuples
2476
2477 @lilypond[quote,raggedright]
2478 <<
2479   \relative c''{
2480     c4 \grace c16 c4 \grace {
2481     c16[ d16] } c2 c4
2482   }
2483   \new Lyrics \lyricmode {
2484     \override LyricText #'font-family = #'typewriter
2485
2486     \markup { (0,0) } 4
2487     \grace { \markup {
2488       ( \fraction 1 4 , \fraction -1 16 ) } 16 }
2489     \markup { (\fraction 1 4 , 0 ) } 4
2490     \grace {
2491       \markup { (\fraction 2 4 , \fraction "-1" 8 ) } 16
2492       \markup { (\fraction 2 4 , \fraction "-1" 16 ) } 16
2493     }
2494     \markup { ( \fraction 2 4 , 0 ) }
2495   }
2496 >>
2497 @end lilypond
2498
2499
2500 The placement of grace notes is synchronized between different staves.
2501 In the following example, there are two sixteenth grace notes for
2502 every eighth grace note
2503
2504 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
2505 << \new Staff { e4 \grace { c16[ d e f] } e4 }
2506    \new Staff { c4 \grace { g8[ b] } c4 } >>
2507 @end lilypond
2508
2509
2510
2511 If you want to end a note with a grace, the standard trick is to put
2512 the grace notes after a ``space note''
2513
2514 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2515 \context Voice {
2516   << { d1^\trill_( }
2517      { s2 \grace { c16[ d] } } >>
2518   c4)
2519 }
2520 @end lilypond
2521
2522 @noindent
2523 By adjusting the duration of the skip note (here it is a half-note),
2524 the space between the main-note and the grace is adjusted.
2525
2526
2527 A @code{\grace} section will introduce special typesetting settings,
2528 for example, to produce smaller type, and set directions.  Hence, when
2529 introducing layout tweaks, they should be inside the grace section,
2530 for example,
2531 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2532 \new Voice {
2533   \acciaccatura {
2534     \stemDown
2535     f16->
2536     \stemNeutral
2537   }
2538   g4
2539 }
2540 @end lilypond
2541
2542 @noindent
2543 The overrides should also be reverted inside the grace section.
2544
2545 The layout of grace sections can be changed throughout the music using
2546 the function @code{add-grace-property}.  The following example
2547 undefines the Stem direction for this grace, so stems do not always
2548 point up.
2549
2550 @example
2551 \new Staff @{
2552   #(add-grace-property 'Voice 'Stem 'direction '())
2553   @dots{}
2554 @}
2555 @end example
2556
2557 @noindent
2558 Another option is to change the variables @code{startGraceMusic},
2559 @code{stopGraceMusic}, @code{startAcciaccaturaMusic},
2560 @code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic},
2561 @code{stopAppoggiaturaMusic}.  More information is in the file
2562 @file{ly/@/grace@/-init@/.ly}.
2563
2564
2565 @seealso
2566
2567 Program reference: @internalsref{GraceMusic}.
2568
2569 @refbugs
2570
2571 A score that starts with a @code{\grace} section needs an explicit
2572 @code{\context Voice} declaration, otherwise the main note and the grace
2573 note end up on different staves.
2574
2575 Grace note synchronization can also lead to surprises.  Staff notation,
2576 such as key signatures, bar lines, etc., are also synchronized.  Take
2577 care when you mix staves with grace notes and staves without, for example,
2578
2579 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
2580 << \new Staff { e4 \bar "|:" \grace c16 d4 }
2581    \new Staff { c4 \bar "|:" d4 } >>
2582 @end lilypond
2583
2584 @noindent
2585 This can be remedied by inserting grace skips, for the above example
2586
2587 @example
2588 \new Staff @{ c4 \bar "|:" \grace s16 d4 @}
2589 @end example
2590
2591 Grace sections should only be used within sequential music
2592 expressions.  Nesting or juxtaposing grace sections is not supported,
2593 and might produce crashes or other errors.
2594
2595
2596 @node Glissando
2597 @subsection Glissando
2598 @cindex Glissando
2599
2600 @cindex @code{\glissando}
2601
2602 A glissando is a smooth change in pitch.  It is denoted by a line or a
2603 wavy line between two notes.  It is requested by attaching
2604 @code{\glissando} to a note
2605
2606 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
2607 c\glissando c'
2608 @end lilypond
2609
2610 @seealso
2611
2612 Program reference: @internalsref{Glissando}, and @internalsref{GlissandoEvent}.
2613
2614 Example files: @file{input/@/regression/@/glissando@/.ly}.
2615
2616
2617
2618 @refbugs
2619
2620 Printing text over the line (such as @emph{gliss.}) is not supported.
2621
2622
2623 @node Dynamics
2624 @subsection Dynamics
2625 @cindex Dynamics
2626
2627
2628
2629 @cindex @code{\ppp}
2630 @cindex @code{\pp}
2631 @cindex @code{\p}
2632 @cindex @code{\mp}
2633 @cindex @code{\mf}
2634 @cindex @code{\f}
2635 @cindex @code{\ff}
2636 @cindex @code{\fff}
2637 @cindex @code{\ffff}
2638 @cindex @code{\fp}
2639 @cindex @code{\sf}
2640 @cindex @code{\sff}
2641 @cindex @code{\sp}
2642 @cindex @code{\spp}
2643 @cindex @code{\sfz}
2644 @cindex @code{\rfz}
2645
2646
2647 Absolute dynamic marks are specified using a command after a note
2648 @code{c4\ff}.  The available dynamic marks are @code{\ppp},
2649 @code{\pp}, @code{\p}, @code{\mp}, @code{\mf}, @code{\f}, @code{\ff},
2650 @code{\fff}, @code{\fff}, @code{\fp}, @code{\sf}, @code{\sff},
2651 @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}
2652
2653 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2654 c\ppp c\pp c \p c\mp c\mf c\f c\ff c\fff
2655 c2\fp c\sf c\sff c\sp c\spp c\sfz c\rfz
2656 @end lilypond
2657
2658 @cindex @code{\<}
2659 @cindex @code{\>}
2660 @cindex @code{\"!}
2661
2662
2663
2664 A crescendo mark is started with @code{\<} and terminated with
2665 @code{\!}.  A decrescendo is started with @code{\>} and also terminated
2666 with @code{\!}.  Because these marks are bound to notes, you must
2667 use spacer notes if multiple marks are needed during one note
2668
2669 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2670 c\< c\! d\> e\!
2671 << f1 { s4 s4\< s4\! \> s4\! } >>
2672 @end lilypond
2673 This may give rise to very short hairpins.  Use @code{minimum-length}
2674 in @internalsref{Voice}.@internalsref{Hairpin} to lengthen them, for
2675 example
2676
2677 @example
2678 \override Staff.Hairpin #'minimum-length = #5
2679 @end example
2680
2681 You can also use a text saying @emph{cresc.} instead of hairpins.  Here
2682 is an example how to do it
2683
2684 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
2685 \setTextCresc
2686 c \< d e f\!
2687 \setHairpinCresc
2688 e\> d c b\!
2689 @end lilypond
2690
2691 @cindex crescendo
2692 @cindex decrescendo
2693
2694 You can also supply your own texts
2695 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2696 \set crescendoText = \markup { \italic "cresc. poco" }
2697 \set crescendoSpanner = #'dashed-line
2698 a'2\< a a a\!\mf
2699 @end lilypond
2700
2701 @cindex diminuendo
2702
2703
2704 @refcommands
2705
2706 @cindex @code{\dynamicUp}
2707 @code{\dynamicUp},
2708 @cindex @code{\dynamicDown}
2709 @code{\dynamicDown},
2710 @cindex @code{\dynamicNeutral}
2711 @code{\dynamicNeutral}.
2712
2713 @cindex direction, of dynamics
2714
2715 @seealso
2716
2717 Program reference: @internalsref{CrescendoEvent},
2718 @internalsref{DecrescendoEvent}, and
2719 @internalsref{AbsoluteDynamicEvent}.
2720
2721 Dynamics are @internalsref{DynamicText} and @internalsref{Hairpin}
2722 objects.  Vertical positioning of these symbols is handled by the
2723 @internalsref{DynamicLineSpanner} object.
2724
2725
2726 @node Repeats
2727 @section Repeats
2728
2729 Repetition is a central concept in music, and multiple notations exist
2730 for repetitions.
2731
2732 @menu
2733 * Repeat types::
2734 * Repeat syntax::
2735 * Repeats and MIDI::
2736 * Manual repeat commands::
2737 * Tremolo repeats::
2738 * Tremolo subdivisions::
2739 * Measure repeats::
2740 @end menu
2741
2742 @node Repeat types
2743 @subsection Repeat types
2744
2745 @cindex repeats
2746 @cindex @code{\repeat}
2747
2748 The following types of repetition are supported
2749
2750 @table @code
2751 @item unfold
2752 Repeated music is fully written (played) out.  This is useful when
2753 entering repetitious music.  This is the only kind of repeat that
2754 is included in MIDI output.
2755
2756 @item volta
2757 Repeats are not written out, but alternative endings (volte) are
2758 printed, left to right with brackets.  This is the standard notation
2759 for repeats with alternatives.  These are not played in MIDI output by default.
2760
2761 @ignore
2762 @item fold
2763 Alternative endings are written stacked.  This has limited use but may be
2764 used to typeset two lines of lyrics in songs with repeats, see
2765 @inputfileref{input,star-spangled-banner@/.ly}.
2766 @end ignore
2767
2768 @c tremolo, beamed
2769 @item tremolo
2770 Make tremolo beams.  These are not played in MIDI output by default.
2771
2772 @item percent
2773 Make beat or measure repeats.  These look like percent signs.  These
2774 are not played in MIDI output by default.
2775
2776 @end table
2777
2778 @node Repeat syntax
2779 @subsection Repeat syntax
2780
2781
2782 LilyPond has one syntactic construct for specifying different types of
2783 repeats.  The syntax is
2784
2785 @example
2786 \repeat @var{variant} @var{repeatcount} @var{repeatbody}
2787 @end example
2788
2789 If you have alternative endings, you may add
2790 @cindex @code{\alternative}
2791 @example
2792 \alternative @{ @var{alternative1}
2793                @var{alternative2}
2794                @var{alternative3} @dots{} @}
2795 @end example
2796 where each @var{alternative} is a music expression.  If you do not
2797 give enough alternatives for all of the repeats, the first alternative
2798 is assumed to be played more than once.
2799
2800 Standard repeats are used like this
2801 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2802 c1
2803 \repeat volta 2 { c4 d e f }
2804 \repeat volta 2 { f e d c }
2805 @end lilypond
2806
2807 With alternative endings
2808 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2809 c1
2810 \repeat volta 2 {c4 d e f}
2811 \alternative { {d2 d} {f f,} }
2812 @end lilypond
2813
2814
2815 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2816 \context Staff {
2817   \partial 4
2818   \repeat volta 4 { e | c2 d2 | e2 f2 | }
2819   \alternative { { g4 g g } { a | a a a a | b2. } }
2820 }
2821 @end lilypond
2822
2823 It is possible to shorten volta brackets
2824 by setting @code{voltaSpannerDuration}.  In the next example, the
2825 bracket only lasts one measure, which is a duration of 3/4.
2826
2827
2828
2829 @lilypond[verbatim,raggedright,quote]
2830 \relative c''{
2831   \time 3/4
2832   c c c
2833   \set Staff.voltaSpannerDuration = #(ly:make-moment 3 4)
2834   \repeat "volta" 5 { d d d }
2835   \alternative { { e e e f f f }
2836   { g g g } }
2837 }
2838 @end lilypond
2839
2840
2841 @seealso
2842
2843 Examples:
2844
2845 Brackets for the repeat are normally only printed over the topmost
2846 staff.  This can be adjusted by setting the @code{voltaOnThisStaff}
2847 property @inputfileref{input/@/regression,volta@/-multi@/-staff@/.ly},
2848 @inputfileref{input/@/regression,volta@/-chord@/-names@/.ly}.
2849
2850
2851 @refbugs
2852
2853 A nested repeat like
2854
2855 @example
2856 \repeat @dots{}
2857 \repeat @dots{}
2858 \alternative
2859 @end example
2860
2861 @noindent
2862 is ambiguous, since it is is not clear to which @code{\repeat} the
2863 @code{\alternative} belongs.  This ambiguity is resolved by always
2864 having the @code{\alternative} belong to the inner @code{\repeat}.
2865 For clarity, it is advisable to use braces in such situations.
2866 @cindex ambiguity
2867
2868
2869
2870 Timing information is not remembered at the start of an alternative,
2871 so after a repeat timing information must be reset by hand, for
2872 example by setting @code{Score.measurePosition} or entering
2873 @code{\partial}.  Similarly, slurs or ties are also not repeated.
2874
2875
2876
2877
2878 @node Repeats and MIDI
2879 @subsection Repeats and MIDI
2880
2881 @cindex expanding repeats
2882
2883 With a little bit of tweaking, all types of repeats can be present
2884 in the MIDI output.  This is achieved by applying the
2885 @code{\unfoldrepeats} music function.  This functions changes all
2886 repeats to unfold repeats.
2887
2888 @lilypond[quote,verbatim,fragment,linewidth=8.0\cm]
2889 \unfoldrepeats {
2890   \repeat tremolo 8 {c'32 e' }
2891   \repeat percent 2 { c''8 d'' }
2892   \repeat volta 2 {c'4 d' e' f'}
2893   \alternative {
2894     { g' a' a' g' }
2895     {f' e' d' c' }
2896   }
2897 }
2898 \bar "|."
2899 @end lilypond
2900
2901 When creating a score file using @code{\unfoldrepeats} for midi, then
2902 it is necessary to make two @code{\score} blocks.  One for MIDI (with
2903 unfolded repeats) and one for notation (with volta, tremolo, and
2904 percent repeats).  For example,
2905
2906 @example
2907 \score @{
2908   @var{..music..}
2909   \layout @{ .. @}
2910 @}
2911 \score @{
2912   \unfoldrepeats @var{..music..}
2913   \midi @{ .. @}
2914 @}
2915 @end example
2916
2917 @node Manual repeat commands
2918 @subsection Manual repeat commands
2919
2920 @cindex @code{repeatCommands}
2921
2922 The property @code{repeatCommands} can be used to control the layout of
2923 repeats.  Its value is a Scheme list of repeat commands.
2924
2925 @table @asis
2926 @item @code{start-repeat}
2927 Print a @code{|:} bar line.
2928
2929 @item @code{end-repeat}
2930 Print a @code{:|} bar line.
2931
2932 @item @code{(volta @var{text})}
2933 Print a volta bracket saying @var{text}: The text can be specified as
2934 a text string or as a markup text, see @ref{Text markup}.  Do not
2935 forget to change the font, as the default number font does not contain
2936 alphabetic characters;
2937
2938 @item @code{(volta #f)}
2939 Stop a running volta bracket.
2940 @end table
2941
2942 @lilypond[quote,raggedright,verbatim,fragment,relative=2]
2943 c4
2944   \set Score.repeatCommands = #'((volta "93") end-repeat)
2945 c4 c4
2946   \set Score.repeatCommands = #'((volta #f))
2947 c4 c4
2948 @end lilypond
2949
2950
2951
2952 @seealso
2953
2954 Program reference: @internalsref{VoltaBracket}, @internalsref{RepeatedMusic},
2955 @internalsref{VoltaRepeatedMusic},
2956 @internalsref{UnfoldedRepeatedMusic}, and
2957 @internalsref{FoldedRepeatedMusic}.
2958
2959 @node Tremolo repeats
2960 @subsection Tremolo repeats
2961 @cindex tremolo beams
2962
2963 To place tremolo marks between notes, use @code{\repeat} with tremolo
2964 style
2965 @lilypond[quote,verbatim,raggedright]
2966 \new Voice \relative c' {
2967   \repeat "tremolo" 8 { c16 d16 }
2968   \repeat "tremolo" 4 { c16 d16 }
2969   \repeat "tremolo" 2 { c16 d16 }
2970 }
2971 @end lilypond
2972
2973 Tremolo marks can also be put on a single note.  In this case, the
2974 note should not be surrounded by braces.
2975 @lilypond[quote,verbatim,raggedright]
2976 \repeat "tremolo" 4 c'16
2977 @end lilypond
2978
2979 Similar output is obtained using the tremolo subdivision, described in
2980 @ref{Tremolo subdivisions}.
2981
2982 @seealso
2983
2984 In this manual: @ref{Tremolo subdivisions}, @ref{Repeats}.
2985
2986 Program reference: tremolo beams are @internalsref{Beam} objects.  Single stem
2987 tremolos are @internalsref{StemTremolo} objects.  The music expression is
2988 @internalsref{TremoloEvent}.
2989
2990 Example files: @inputfileref{input/@/regression,chord@/-tremolo@/.ly},
2991 @inputfileref{input/@/regression,stem@/-tremolo@/.ly}.
2992
2993 @node Tremolo subdivisions
2994 @subsection Tremolo subdivisions
2995 @cindex tremolo marks
2996 @cindex @code{tremoloFlags}
2997
2998 Tremolo marks can be printed on a single note by adding
2999 `@code{:}[@var{number}]' after the note.  The number indicates the
3000 duration of the subdivision, and it must be at least 8.  A
3001 @var{length} value of 8 gives one line across the note stem.  If the
3002 length is omitted, the last value (stored in @code{tremoloFlags}) is
3003 used
3004
3005 @lilypond[quote,raggedright,verbatim,fragment]
3006 c'2:8 c':32 | c': c': |
3007 @end lilypond
3008
3009 @c [TODO: stok is te kort bij 32en]
3010 @c   somebody want to translate that into English?
3011 @c   `Stem is too short for 32nds' (wl)
3012
3013 @refbugs
3014
3015 Tremolos entered in this way do not carry over into the MIDI output.
3016
3017 @seealso
3018
3019 In this manual: @ref{Tremolo repeats}.
3020
3021 Elsewhere: @internalsref{StemTremolo}, @internalsref{TremoloEvent}.
3022
3023 @node Measure repeats
3024 @subsection Measure repeats
3025
3026 @cindex percent repeats
3027 @cindex measure repeats
3028
3029 In the @code{percent} style, a note pattern can be repeated.  It is
3030 printed once, and then the pattern is replaced with a special sign.
3031 Patterns of one and two measures are replaced by percent-like signs,
3032 patterns that divide the measure length are replaced by slashes
3033
3034 @lilypond[quote,verbatim,raggedright]
3035 \new Voice \relative c' {
3036   \repeat "percent" 4 { c4 }
3037   \repeat "percent" 2 { c2 es2 f4 fis4 g4 c4 }
3038 }
3039 @end lilypond
3040
3041 @seealso
3042
3043 Program reference: @internalsref{RepeatSlash}, @internalsref{PercentRepeat},
3044 @internalsref{PercentRepeatedMusic}, and
3045 @internalsref{DoublePercentRepeat}.
3046
3047
3048
3049 @node Rhythmic music
3050 @section Rhythmic music
3051
3052 Rhythmic music is primarily used for percussion and drum notation, but it can
3053 also be used to show the rhythms of melodies.
3054
3055 @menu
3056 * Showing melody rhythms::
3057 * Entering percussion::
3058 * Percussion staves::
3059 @end menu
3060
3061
3062 @node Showing melody rhythms
3063 @subsection Showing melody rhythms
3064
3065 Sometimes you might want to show only the rhythm of a melody.  This
3066 can be done with the rhythmic staff.  All pitches of notes on such a
3067 staff are squashed, and the staff itself has a single line
3068
3069 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3070 \context RhythmicStaff {
3071   \time 4/4
3072   c4 e8 f g2 | r4 g r2 | g1:32 | r1 |
3073 }
3074 @end lilypond
3075
3076 @seealso
3077
3078 Program reference: @internalsref{RhythmicStaff}.
3079
3080 Examples: @inputfileref{input/@/regression,rhythmic@/-staff@/.ly}.
3081
3082
3083 @node Entering percussion
3084 @subsection Entering percussion
3085
3086 @cindex percussion
3087 @cindex drums
3088
3089
3090 Percussion notes may be entered in @code{\drummode} mode, which is
3091 similar to the standard mode for entering notes.  Each piece of
3092 percussion has a full name and an abbreviated name, and both can be used
3093 in input files
3094
3095 @lilypond[quote,raggedright,verbatim]
3096 \drums {
3097   hihat hh bassdrum bd
3098 }
3099 @end lilypond
3100
3101 The complete list of drum names is in the init file
3102 @file{ly/@/drumpitch@/-init@/.ly}.
3103 @c TODO: properly document this.
3104
3105 @seealso
3106
3107 Program reference: @internalsref{DrumNoteEvent}.
3108
3109 @node Percussion staves
3110 @subsection Percussion staves
3111 @cindex percussion
3112 @cindex drums
3113
3114 A percussion part for more than one instrument typically uses a
3115 multiline staff where each position in the staff refers to one piece
3116 of percussion.
3117
3118
3119 To typeset the music, the notes must be interpreted in a
3120 @internalsref{DrumStaff} and @internalsref{DrumVoice} contexts
3121
3122 @lilypond[quote,raggedright,verbatim]
3123 up = \drummode { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
3124 down = \drummode { bassdrum4 snare8 bd r bd sn4 }
3125   \new DrumStaff <<
3126     \new DrumVoice { \voiceOne \up }
3127     \new DrumVoice { \voiceTwo \down }
3128   >>
3129 @end lilypond
3130
3131 The above example shows verbose polyphonic notation.  The short
3132 polyphonic notation, described in @ref{Polyphony}, can also be used if
3133 the @internalsref{DrumVoices} are instantiated by hand first.  For example,
3134
3135 @lilypond[quote,raggedright,fragment,verbatim]
3136 \new DrumStaff <<
3137   \context DrumVoice = "1" { s1 *2 }
3138   \context DrumVoice = "2" { s1 *2 }
3139   \drummode {
3140     bd4 sn4 bd4 sn4
3141     <<
3142       { \repeat unfold 16 hh16 }
3143       \\
3144       { bd4 sn4 bd4 sn4 }
3145     >>
3146   }
3147 >>
3148 @end lilypond
3149
3150
3151 There are also other layout possibilities.  To use these, set the
3152 property @code{drumStyleTable} in context @internalsref{DrumVoice}.
3153 The following variables have been predefined
3154
3155 @table @code
3156 @item drums-style
3157 This is the default.  It typesets a typical drum kit on a five-line staff
3158
3159 @lilypond[quote,linewidth=10.0\cm]
3160 nam = \lyricmode {
3161   cymc cyms cymr hh hhc hho hhho hhp
3162   cb hc bd sn ss tomh tommh tomml toml tomfh tomfl }
3163 mus = \drummode {
3164   cymc cyms cymr hh hhc hho hhho hhp \break
3165   cb hc bd sn ss tomh tommh tomml toml tomfh tomfl s16 }
3166 \score {
3167   << \new DrumStaff \with {
3168        \remove Bar_engraver
3169        \remove Time_signature_engraver
3170        \override Stem #'transparent = ##t
3171        \override Stem #'Y-extent-callback = ##f
3172        minimumVerticalExtent = #'(-4.0 . 5.0)
3173      } \mus
3174      \context Lyrics \nam
3175   >>
3176   \layout {
3177     \context {
3178       \Score
3179       \override LyricText #'font-family = #'typewriter
3180       \override BarNumber #'transparent =##T
3181     }
3182   }
3183 }
3184 @end lilypond
3185
3186 The drum scheme supports six different toms.  When there are fewer toms,
3187 simply select the toms that produce the desired result, i.e., to get toms
3188 on the three middle lines you use @code{tommh}, @code{tomml}, and
3189 @code{tomfh}.
3190
3191 @item timbales-style
3192 This typesets timbales on a two line staff
3193
3194 @lilypond[quote,raggedright]
3195 nam = \lyricmode { timh ssh timl ssl cb }
3196 mus = \drummode { timh ssh timl ssl cb s16 }
3197
3198 <<
3199   \context DrumStaff \with {
3200     \remove Bar_engraver
3201     \remove Time_signature_engraver
3202     \override Stem #'transparent = ##t
3203     \override Stem #'Y-extent-callback = ##f
3204     \override StaffSymbol #'line-count = #2
3205     \override StaffSymbol #'staff-space = #2
3206     minimumVerticalExtent = #'(-3.0 . 4.0)
3207     drumStyleTable = #timbales-style
3208   } \mus
3209   \context Lyrics {
3210     \override LyricText #'font-family = #'typewriter
3211     \nam
3212   }
3213 >>
3214 @end lilypond
3215
3216 @item congas-style
3217 This typesets congas on a two line staff
3218
3219 @lilypond[quote,raggedright]
3220 nam = \lyricmode { cgh cgho cghm ssh cgl cglo cglm ssl }
3221 mus = \drummode { cgh cgho cghm ssh cgl cglo cglm ssl s16 }
3222
3223 <<
3224   \context DrumStaff \with {
3225     \remove Bar_engraver
3226     \remove Time_signature_engraver
3227     drumStyleTable = #congas-style
3228     \override StaffSymbol #'line-count = #2
3229
3230     %% this sucks; it will lengthen stems.
3231     \override StaffSymbol #'staff-space = #2
3232     \override Stem #'transparent = ##t
3233     \override Stem #'Y-extent-callback = ##f
3234   } \mus
3235   \context Lyrics {
3236     \override LyricText #'font-family = #'typewriter
3237     \nam
3238   }
3239 >>
3240 @end lilypond
3241
3242 @item bongos-style
3243 This typesets bongos on a two line staff
3244
3245 @lilypond[quote,raggedright]
3246 nam = \lyricmode { boh boho bohm ssh bol bolo bolm ssl }
3247 mus = \drummode { boh boho bohm ssh bol bolo bolm ssl s16 }
3248
3249 <<
3250   \context DrumStaff\with {
3251     \remove Bar_engraver
3252     \remove Time_signature_engraver
3253     \override StaffSymbol #'line-count = #2
3254     drumStyleTable = #bongos-style
3255
3256     %% this sucks; it will lengthen stems.
3257     \override StaffSymbol #'staff-space = #2
3258     \override Stem #'transparent = ##t
3259     \override Stem #'Y-extent-callback = ##f
3260   } \mus
3261   \context Lyrics {
3262     \override LyricText #'font-family = #'typewriter
3263     \nam
3264   }
3265 >>
3266 @end lilypond
3267
3268 @item percussion-style
3269 To typeset all kinds of simple percussion on one line staves.
3270
3271 @lilypond[quote,raggedright]
3272 nam = \lyricmode { tri trio trim gui guis guil cb cl tamb cab mar hc }
3273 mus = \drummode { tri trio trim gui guis guil cb cl tamb cab mar hc s16 }
3274
3275 <<
3276   \context DrumStaff\with{
3277     \remove Bar_engraver
3278     drumStyleTable = #percussion-style
3279     \override StaffSymbol #'line-count = #1
3280     \remove Time_signature_engraver
3281     \override Stem #'transparent = ##t
3282     \override Stem #'Y-extent-callback = ##f
3283   } \mus
3284   \context Lyrics {
3285     \override LyricText #'font-family = #'typewriter
3286     \nam
3287   }
3288 >>
3289 @end lilypond
3290 @end table
3291
3292 If you do not like any of the predefined lists you can define your own
3293 list at the top of your file
3294
3295 @lilypond[quote,raggedright,verbatim]
3296 #(define mydrums '(
3297          (bassdrum     default   #f         -1)
3298          (snare        default   #f         0)
3299          (hihat        cross     #f         1)
3300          (pedalhihat   xcircle   "stopped"  2)
3301          (lowtom       diamond   #f         3)))
3302 up = \drummode { hh8 hh hh hh hhp4 hhp }
3303 down = \drummode { bd4 sn bd toml8 toml }
3304
3305 \new DrumStaff <<
3306   \set DrumStaff.drumStyleTable = #(alist->hash-table mydrums)
3307   \new DrumVoice { \voiceOne \up }
3308   \new DrumVoice { \voiceTwo \down }
3309 >>
3310 @end lilypond
3311
3312
3313 @seealso
3314
3315 Init files: @file{ly/@/drumpitch@/-init@/.ly}.
3316
3317 Program reference: @internalsref{DrumStaff}, @internalsref{DrumVoice}.
3318
3319 @refbugs
3320
3321 Because general MIDI does not contain rim shots, the sidestick is used
3322 for this purpose instead.
3323
3324 @node Piano music
3325 @section Piano music
3326
3327 Piano staves are two normal staves coupled with a brace.  The staves
3328 are largely independent, but sometimes voices can cross between the
3329 two staves.  The same notation is also used for harps and other key
3330 @c Is this `harp' or `harpsichord'?
3331 instruments.  The @internalsref{PianoStaff} is especially built to
3332 handle this cross-staffing behavior.  In this section we discuss the
3333 @internalsref{PianoStaff} and some other pianistic peculiarities.
3334
3335
3336 @menu
3337 * Automatic staff changes::
3338 * Manual staff switches::
3339 * Pedals::
3340 * Arpeggio::
3341 * Staff switch lines::
3342 * Cross staff stems::
3343 @end menu
3344
3345 @refbugs
3346
3347 Dynamics are not centered, but workarounds do exist.  See the
3348 ``piano centered dynamics'' template in @ref{Piano templates}.
3349
3350 @cindex cross staff stem
3351 @cindex stem, cross staff
3352 @cindex distance between staves in piano music
3353
3354 The distance between the two staves is the same for all systems in the
3355 score.  It is possible to override this per system, but it does require
3356 an arcane command incantation.  See
3357 @inputfileref{input/@/test,piano@/-staff@/-distance@/.ly}.
3358
3359
3360 @node Automatic staff changes
3361 @subsection Automatic staff changes
3362 @cindex Automatic staff changes
3363
3364 Voices can be made to switch automatically between the top and the bottom
3365 staff.  The syntax for this is
3366
3367 @quotation
3368 @example
3369 \autochange @dots{}@var{music}@dots{}
3370 @end example
3371 @end quotation
3372
3373 @noindent
3374 This will create two staves inside the current PianoStaff, called
3375 @code{up} and @code{down}.  The lower staff will be in bass clef by
3376 default.
3377
3378 A @code{\relative} section that is outside of @code{\autochange} has
3379 no effect on the pitches of @var{music}, so, if necessary, put
3380 @code{\relative} inside @code{\autochange} like
3381
3382 @quotation
3383 @example
3384 \autochange \relative @dots{} @dots{}
3385 @end example
3386 @end quotation
3387
3388
3389 The autochanger switches on basis of the pitch (middle C is the turning
3390 point), and it looks ahead skipping over rests to switch in
3391 advance.  Here is a practical example
3392
3393 @lilypond[quote,verbatim,raggedright]
3394 \context PianoStaff
3395   \autochange \relative c'
3396   {
3397     g4 a b c d r4 a g
3398   }
3399 @end lilypond
3400
3401
3402 @seealso
3403
3404 In this manual: @ref{Manual staff switches}.
3405
3406 Program reference: @internalsref{AutoChangeMusic}.
3407
3408
3409
3410 @refbugs
3411
3412 The staff switches may not end up in optimal places.  For high
3413 quality output, staff switches should be specified manually.
3414
3415
3416 @code{\autochange} cannot be inside @code{\times}.
3417
3418 Internally, the @code{\partcombine} interprets both arguments as
3419 @code{Voice}s named @code{one} and @code{two}, and then decides when
3420 the parts can be combined.  Consequently, if the arguments switch to
3421 differently named @internalsref{Voice} contexts, the events in those
3422 will be ignored.
3423
3424
3425 @node Manual staff switches
3426 @subsection Manual staff switches
3427
3428 @cindex manual staff switches
3429 @cindex staff switch, manual
3430
3431 Voices can be switched between staves manually, using the command
3432 @example
3433 \change Staff = @var{staffname} @var{music}
3434 @end example
3435
3436 @noindent
3437 The string @var{staffname} is the name of the staff.  It switches the
3438 current voice from its current staff to the Staff called
3439 @var{staffname}.  Typically @var{staffname} is @code{"up"} or
3440 @code{"down"}.  The @context{Staff} referred to must already exist, so
3441 usually the setup for a score will start with a setup of the staves,
3442
3443 @example
3444 <<
3445   \context Staff = up @{
3446     \skip 1 * 10  % @emph{keep staff alive}
3447     @}
3448   \context Staff = down @{
3449     \skip 1 * 10  % @emph{idem}
3450     @}
3451 >>
3452 @end example
3453
3454
3455 and the @context{Voice} is inserted afterwards
3456
3457 @example
3458 \context Staff = down
3459   \new Voice @{ @dots{} \change Staff = up @dots{} @}
3460 @end example
3461
3462
3463 @node Pedals
3464 @subsection Pedals
3465 @cindex Pedals
3466
3467 Pianos have pedals that alter the way sound is produced.  Generally, a
3468 piano has three pedals, sustain, una corda, and sostenuto.
3469
3470
3471 Piano pedal instruction can be expressed by attaching
3472 @code{\sustainDown}, @code{\sustainUp}, @code{\unaCorda},
3473 @code{\treCorde}, @code{\sostenutoDown} and @code{\sostenutoUp} to a
3474 note or chord
3475
3476 @lilypond[quote,raggedright,fragment,verbatim]
3477 c'4\sustainDown c'4\sustainUp
3478 @end lilypond
3479
3480 What is printed can be modified by setting @code{pedal@var{X}Strings},
3481 where @var{X} is one of the pedal types: @code{Sustain},
3482 @code{Sostenuto} or @code{UnaCorda}.  Refer to
3483 @internalsref{SustainPedal} in the program reference for more
3484 information.
3485
3486 Pedals can also be indicated by a sequence of brackets, by setting the
3487 @code{pedalSustainStyle} property to bracket objects
3488
3489 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
3490 \set Staff.pedalSustainStyle = #'bracket
3491 c\sustainDown d e
3492 b\sustainUp\sustainDown
3493 b g \sustainUp a \sustainDown \bar "|."
3494 @end lilypond
3495
3496 A third style of pedal notation is a mixture of text and brackets,
3497 obtained by setting the @code{pedalSustainStyle} property to
3498 @code{mixed}
3499
3500 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
3501 \set Staff.pedalSustainStyle = #'mixed
3502 c\sustainDown d e
3503 b\sustainUp\sustainDown
3504 b g \sustainUp a \sustainDown \bar "|."
3505 @end lilypond
3506
3507 The default `*Ped.' style for sustain and damper pedals corresponds to
3508 style @code{#'text}.  The sostenuto pedal uses @code{mixed} style by
3509 default.
3510
3511 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
3512 c\sostenutoDown d e c, f g a\sostenutoUp
3513 @end lilypond
3514
3515 For fine-tuning the appearance of a pedal bracket, the properties
3516 @code{edge-width}, @code{edge-height}, and @code{shorten-pair} of
3517 @code{PianoPedalBracket} objects (see
3518 @internalsref{PianoPedalBracket} in the Program reference) can be
3519 modified.  For example, the bracket may be extended to the right edge
3520 of the note head
3521
3522 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
3523 \override Staff.PianoPedalBracket #'shorten-pair = #'(0 . -1.0)
3524 c\sostenutoDown d e c, f g a\sostenutoUp
3525 @end lilypond
3526
3527 @node Arpeggio
3528 @subsection Arpeggio
3529 @cindex Arpeggio
3530
3531 @cindex broken arpeggio
3532 @cindex @code{\arpeggio}
3533
3534 You can specify an arpeggio sign on a chord by attaching an
3535 @code{\arpeggio} to a chord
3536
3537
3538 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3539 <c e g c>\arpeggio
3540 @end lilypond
3541
3542 When an arpeggio crosses staves, you attach an arpeggio to the chords
3543 in both staves, and set
3544 @internalsref{PianoStaff}.@code{connectArpeggios}
3545
3546 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3547 \context PianoStaff <<
3548   \set PianoStaff.connectArpeggios = ##t
3549   \new Staff { <c' e g c>\arpeggio }
3550   \new Staff { \clef bass <c,, e g>\arpeggio }
3551 >>
3552 @end lilypond
3553
3554 The direction of the arpeggio is sometimes denoted by adding an
3555 arrowhead to the wiggly line
3556
3557 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3558 \context Voice {
3559   \arpeggioUp
3560   <c e g c>\arpeggio
3561   \arpeggioDown
3562   <c e g c>\arpeggio
3563 }
3564 @end lilypond
3565
3566 A square bracket on the left indicates that the player should not
3567 arpeggiate the chord
3568
3569 @c todo: ugh, lousy typography.  Look for real example. --hwn
3570
3571 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3572 \arpeggioBracket
3573 <c' e g c>\arpeggio
3574 @end lilypond
3575
3576 @refcommands
3577
3578 @cindex @code{\arpeggio}
3579 @code{\arpeggio},
3580 @cindex @code{\arpeggioUp}
3581 @code{\arpeggioUp},
3582 @cindex @code{\arpeggioDown}
3583 @code{\arpeggioDown},
3584 @cindex @code{\arpeggioNeutral}
3585 @code{\arpeggioNeutral},
3586 @cindex @code{\arpeggioBracket}
3587 @code{\arpeggioBracket}.
3588
3589 @seealso
3590
3591 Program reference: @internalsref{ArpeggioEvent},
3592 @internalsref{Arpeggio}.
3593
3594 @refbugs
3595
3596 It is not possible to mix connected arpeggios and unconnected
3597 arpeggios in one @internalsref{PianoStaff} at the same point in time.
3598
3599 @node Staff switch lines
3600 @subsection Staff switch lines
3601
3602
3603 @cindex follow voice
3604 @cindex staff switching
3605 @cindex cross staff
3606
3607 @cindex @code{followVoice}
3608
3609 Whenever a voice switches to another staff, a line connecting the notes
3610 can be printed automatically.  This is switched on by setting
3611 @code{PianoStaff.followVoice} to true
3612
3613 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3614 \context PianoStaff <<
3615   \set PianoStaff.followVoice = ##t
3616   \context Staff \context Voice {
3617     c1
3618     \change Staff=two
3619     b2 a
3620   }
3621  \context Staff=two { \clef bass \skip 1*2 }
3622 >>
3623 @end lilypond
3624
3625 @seealso
3626
3627 Program reference: @internalsref{VoiceFollower}.
3628
3629 @refcommands
3630
3631 @cindex @code{\showStaffSwitch}
3632 @code{\showStaffSwitch},
3633 @cindex @code{\hideStaffSwitch}
3634 @code{\hideStaffSwitch}.
3635
3636
3637 @node Cross staff stems
3638 @subsection Cross staff stems
3639
3640 Chords that cross staves may be produced by increasing the length
3641 of the stem in the lower staff, so it reaches the stem in the upper
3642 staff, or vice versa.
3643
3644 @lilypond[raggedright,verbatim,quote]
3645 stemExtend = \once \override Stem #'length = #22
3646 noFlag = \once \override Stem #'flag-style = #'no-flag
3647 \context PianoStaff <<
3648   \new Staff {
3649     \stemDown \stemExtend
3650     f'4
3651     \stemExtend \noFlag
3652     f'8
3653   }
3654   \new Staff {
3655     \clef bass
3656     a4 a8
3657   }
3658 >>
3659 @end lilypond
3660
3661
3662 @node Vocal music
3663 @section Vocal music
3664
3665 There are three different issues when printing vocal music
3666
3667 @itemize @bullet
3668 @item
3669 Song texts must be entered as text, not notes.  For example, the
3670 input@tie{}@code{d} should be interpreted as a one letter syllable, not the
3671 note@tie{}D.
3672
3673 @item
3674 Song texts must be printed as text, not as notes.
3675
3676 @item
3677 Song texts must be aligned with the notes of their melody.
3678 @end itemize
3679
3680 The simplest solution for printing music uses the @code{\addlyrics}
3681 function to solve all these problems at once.  However, these
3682 three functions can be controlled separately, which is necessary
3683 for complex vocal music.
3684
3685
3686 @menu
3687 * Setting simple songs::
3688 * Entering lyrics::
3689 * Hyphens and extenders::
3690 * The Lyrics context::
3691 * Flexibility in alignment::
3692 * More stanzas::
3693 * Ambitus::
3694 @end menu
3695
3696 @node Setting simple songs
3697 @subsection Setting simple songs
3698
3699 The easiest way to add lyrics to a melody is to append
3700 @cindex \addlyrics
3701 @example
3702 \addlyrics @{ @var{the lyrics} @}
3703 @end example
3704
3705 @noindent
3706 to a melody.  Here is an example,
3707
3708 @lilypond[raggedright,verbatim,fragment,quote]
3709 \time 3/4
3710 \relative { c2 e4 g2. }
3711 \addlyrics { play the game }
3712 @end lilypond
3713
3714 More stanzas can be added by adding more
3715 @code{\addlyrics} sections
3716
3717 @lilypond[raggedright,verbatim,fragment,quote]
3718 \time 3/4
3719 \relative { c2 e4 g2. }
3720 \addlyrics { play the game }
3721 \addlyrics { speel het spel }
3722 \addlyrics { joue le jeu }
3723 @end lilypond
3724
3725 @c TODO - this isn't such a great place for this note, but I can't
3726 @c  find a better place without rearranging a lot of lyric stuff.
3727 @c  It's yet another thing to look at post-3.0.
3728
3729 The @code{\addlyrics} command is actually just a convienient way
3730 to write a more complicated LilyPond structure that sets up the
3731 lyrics.  You should use @code{\addlyrics} unless you need to
3732 fancy things, in which case you should investigate
3733 @code{\lyricsto} or @code{\lyricmode}.
3734
3735 @example
3736 @{ MUSIC @}
3737 \addlyrics @{ LYRICS @}
3738 @end example
3739
3740 @noindent
3741 is the same as
3742
3743 @example
3744 \context Voice = blah @{ music @}
3745 \lyricsto "blah" \lyricsmode \new lyrics @{ LYRICS @}
3746 @end example
3747
3748
3749 @node Entering lyrics
3750 @subsection Entering lyrics
3751
3752
3753 @cindex lyrics
3754 @cindex @code{\lyricmode}
3755 @cindex punctuation
3756
3757 Lyrics are entered in a special input mode.  This mode is introduced
3758 by the keyword @code{\lyricmode}, or by using @code{addlyrics} or
3759 @code{lyricsto}.  In this mode you can enter lyrics,
3760 with punctuation and accents, and the input @code{d} is not parsed as
3761 a pitch, but rather as a one letter syllable.  Syllables are entered
3762 like notes, but with pitches replaced by text.  For example,
3763 @example
3764 \lyricmode @{ Twin-4 kle4 twin- kle litt- le star2 @}
3765 @end example
3766
3767
3768 A word lyrics mode begins with an alphabetic character, and ends with
3769 any space or digit.  The following characters can be any character
3770 that is not a digit or white space.  One important consequence of this
3771 is that a word can end with @code{@}}.  The following example is
3772 usually a mistake in the input file.  The syllable includes a @code{@}}, so the
3773 opening brace is not balanced
3774 @example
3775 \lyricmode @{ twinkle @}
3776 @end example
3777
3778 @cindex @code{\property}, in @code{\lyricmode}
3779 @noindent
3780 Similarly, a period which follows an alphabetic sequence is included in
3781 the resulting string.  As a consequence, spaces must be inserted around
3782 property commands
3783 @example
3784 \override Score . LyricText #'font-shape = #'italic
3785 @end example
3786
3787 @cindex @code{_}
3788 @cindex spaces, in lyrics
3789 @cindex quotes, in lyrics
3790
3791 Any @code{_} character that appears in an unquoted word is converted
3792 to a space.  This provides a mechanism for introducing spaces into words
3793 without using quotes.  Quoted words can also be used in Lyrics mode to
3794 specify words that cannot be written with the above rules.  The
3795 following example incorporates double quotes
3796
3797 @example
3798 \lyricmode @{ He said: "\"Let" my peo ple "go\"" @}
3799 @end example
3800
3801 This example is slightly academic, since it gives better looking
3802 results using single quotes, @code{``} and @code{''}
3803 @example
3804 \lyricmode @{ He said: ``Let my peo ple go'' @}
3805 @end example
3806
3807
3808 The full definition of a word start in Lyrics mode is somewhat more
3809 complex.
3810
3811 A word in Lyrics mode begins with: an alphabetic character, @code{_},
3812 @code{?}, @code{!}, @code{:}, @code{'}, the control characters @code{^A}
3813 through @code{^F}, @code{^Q} through @code{^W}, @code{^Y}, @code{^^},
3814 any 8-bit character with ASCII code over 127, or a two-character
3815 combination of a backslash followed by one of @code{`}, @code{'},
3816 @code{"}, or @code{^}.
3817
3818
3819
3820 @seealso
3821
3822 Program reference: events @internalsref{LyricEvent}, and
3823 @internalsref{LyricText}.
3824
3825 @refbugs
3826
3827 The definition of lyrics mode is too complex.
3828
3829 @node Hyphens and extenders
3830 @subsection Hyphens and extenders
3831
3832 @cindex hyphens
3833
3834 Centered hyphens are entered as `@code{-}@code{-}' between syllables.
3835 The hyphen will have variable length depending on the space between
3836 the syllables and it will be centered between the syllables.
3837
3838 @cindex melisma
3839 @cindex extender
3840
3841 When a lyric is sung over many notes (this is called a melisma), this is
3842 indicated with a horizontal line centered between a syllable and the
3843 next one.  Such a line is called an extender line, and it is entered as
3844 @code{__}.
3845
3846
3847 @seealso
3848
3849 Program reference: @internalsref{HyphenEvent},
3850 @internalsref{ExtenderEvent}, @internalsref{LyricHyphen}, and
3851 @internalsref{LyricExtender}
3852
3853 Examples: @inputfileref{input/@/test,lyric@/-hyphen@/-retain@/.ly}.
3854
3855
3856
3857 @node The Lyrics context
3858 @subsection The Lyrics context
3859
3860
3861 Lyrics are printed by interpreting them in a @internalsref{Lyrics} context
3862 @example
3863 \context Lyrics \lyricmode @dots{}
3864 @end example
3865
3866 @cindex automatic syllable durations
3867 @cindex @code{\lyricsto}
3868 @cindex lyrics and melodies
3869
3870 This will place the lyrics according to the durations that were
3871 entered.  The lyrics can also be aligned under a given melody
3872 automatically.  In this case, it is no longer necessary to enter the
3873 correct duration for each syllable.  This is achieved by combining the
3874 melody and the lyrics with the @code{\lyricsto} expression
3875 @example
3876 \lyricsto @var{name} \new Lyrics @dots{}
3877 @end example
3878
3879 This aligns the lyrics to the
3880 notes of the @internalsref{Voice} context called @var{name}, which has
3881 to exist.  Therefore, normally the @code{Voice} is specified first, and
3882 then the lyrics are specified with @code{\lyricsto}.  The command
3883 @code{\lyricsto} switches to @code{\lyricmode} mode automatically, so the
3884 @code{\lyricmode} keyword may be omitted.
3885
3886 For different or more complex orderings, the best way is to setup the
3887 hierarchy of staves and lyrics first, e.g.,
3888 @example
3889 \context ChoirStaff <<
3890   \context Lyrics = sopranoLyrics @{ s1 @}
3891   \context Voice = soprano @{ @emph{music} @}
3892   \context Lyrics = tenorLyrics @{ s1 @}
3893   \context Voice = tenor @{ @emph{music} @}
3894 >>
3895 @end example
3896 and then combine the appropriate melodies and lyric lines
3897 @example
3898 \lyricsto "soprano" \context Lyrics = sopranoLyrics
3899   @emph{the lyrics}
3900 @end example
3901
3902 @noindent
3903 The final input would resemble
3904
3905 @example
3906 <<\context ChoirStaff << @emph{setup the music} >>
3907   \lyricsto "soprano" @emph{etc}
3908   \lyricsto "alto" @emph{etc}
3909   @emph{etc}
3910 >>
3911 @end example
3912
3913
3914 The @code{\lyricsto} command detects melismata: it only puts one
3915 syllable under a tied or slurred group of notes.  If you want to force
3916 an unslurred group of notes to be a melisma, insert @code{\melisma}
3917 after the first note of the group, and @code{\melismaEnd} after the
3918 last one, e.g.,
3919
3920 @lilypond[quote,relative=2,raggedright,fragment,verbatim]
3921 <<
3922   \context Voice = "lala" {
3923     \time 3/4
3924     f4 g8
3925     \melisma
3926     f e f
3927     \melismaEnd
3928     e2
3929   }
3930   \lyricsto "lala" \new Lyrics {
3931     la di __ daah
3932   }
3933 >>
3934 @end lilypond
3935
3936 In addition, notes are considered a melisma if they are manually
3937 beamed, and automatic beaming (see @ref{Setting automatic beam
3938 behavior}) is switched off.
3939
3940 @ignore
3941
3942 @c nonformation:
3943
3944 The criteria for deciding melismata can
3945 be tuned with the property @code{melismaBusyProperties}.  See
3946 @internalsref{Melisma_translator} in the program reference for more
3947 information.
3948
3949 @end ignore
3950
3951 Lyrics can also be entered without @code{\lyricsto}.  In this case the
3952 duration of each syllable must be entered explicitly, for example,
3953
3954 @example
3955 play2 the4 game2.
3956 sink2 or4 swim2.
3957 @end example
3958
3959 The alignment to a melody can be specified with the
3960 @code{associatedVoice} property,
3961
3962 @example
3963 \set associatedVoice = #"lala"
3964 @end example
3965
3966 @noindent
3967 The value of the property (here: @code{"lala"}) should be the name of
3968 a @internalsref{Voice} context.  Without this setting, extender lines
3969 will not be formatted properly.
3970
3971 Here is an example demonstrating manual lyric durations,
3972
3973 @lilypond[relative=1,raggedright,verbatim,fragment,quote]
3974 << \context Voice = melody {
3975      \time 3/4
3976      c2 e4 g2.
3977   }
3978   \new Lyrics \lyricmode {
3979     \set associatedVoice = #"melody"
3980     play2 the4 game2.
3981   } >>
3982 @end lilypond
3983
3984 @cindex SATB
3985 @cindex choral score
3986
3987 A complete example of a SATB score setup is in section
3988 @ref{Small ensembles}.
3989
3990
3991 @refcommands
3992
3993 @code{\melisma}, @code{\melismaEnd}
3994 @cindex @code{\melismaEnd}
3995 @cindex @code{\melisma}
3996
3997 @seealso
3998
3999 Program reference: @internalsref{LyricCombineMusic},
4000 @internalsref{Lyrics}, @internalsref{Melisma_translator}.
4001
4002 Examples: @ref{Small ensembles},
4003 @inputfileref{input/@/regression,lyric@/-combine@/-new@/.ly},
4004 @c TODO: make separate section for melismata
4005 @inputfileref{input/@/test,lyrics@/-melisma@/-variants@/.ly}.
4006 @inputfileref{input/@/test,lyrics@/-melisma@/-faster@/.ly}.
4007
4008 @refbugs
4009
4010 Melismata are not detected automatically, and extender lines must be
4011 inserted by hand.
4012
4013
4014 @c TODO: document \new Staff << Voice \lyricsto >> bug
4015
4016 @node Flexibility in alignment
4017 @subsection Flexibility in alignment
4018
4019
4020 Often, different stanzas of one song are put to one melody in slightly
4021 differing ways.  Such variations can still be captured with
4022 @code{\lyricsto}.
4023
4024 One possibility is that the text has a melisma in one stanza, but
4025 multiple syllables in another one.  One solution is to make the faster
4026 voice ignore the melisma.  This is done by setting
4027 @code{ignoreMelismata} in the Lyrics context.
4028
4029 There has one tricky aspect.  The setting for @code{ignoreMelismata}
4030 must be set one syllable @emph{before} the non-melismatic syllable
4031 in the text, as shown here,
4032
4033 @lilypond[verbatim,raggedright,quote]
4034 <<
4035   \relative \context Voice = "lahlah" {
4036     \set Staff.autoBeaming = ##f
4037     c4
4038     \slurDotted
4039     f8.[( g16])
4040     a4
4041   }
4042   \new Lyrics \lyricsto "lahlah" {
4043     more slow -- ly
4044   }
4045   \new Lyrics \lyricsto "lahlah" {
4046     \set ignoreMelismata = ##t % applies to "fas"
4047     go fas -- ter
4048     \unset ignoreMelismata
4049     still
4050   }
4051 >>
4052 @end lilypond
4053
4054
4055 The @code{ignoreMelismata} applies to the syllable ``fas'', so it
4056 should be entered before ``go''.
4057
4058 The reverse is also possible: making a lyric line slower than the
4059 standard.  This can be achieved by insert @code{\skip}s into the
4060 lyrics.  For every @code{\skip}, the text will be delayed another note.
4061 For example,
4062
4063 @lilypond[verbatim,raggedright,quote]
4064 \relative { c c g' }
4065 \addlyrics {
4066   twin -- \skip 4
4067   kle
4068 }
4069 @end lilypond
4070
4071 More complex variations in text underlay are possible.  It is possible
4072 to switch the melody for a line of lyrics during the text.  This is
4073 done by setting the @code{associatedVoice} property.  In the example
4074
4075 @lilypond[raggedright,quote]
4076 <<
4077   \relative \context Voice = "lahlah" {
4078     \set Staff.autoBeaming = ##f
4079     c4
4080     <<
4081       \context Voice = alternative {
4082         \voiceOne
4083         \times 2/3 {
4084           % show associations clearly.
4085           \override NoteColumn #'force-hshift = #-3
4086           f8 f g
4087         }
4088       }
4089       {
4090         \voiceTwo
4091         f8.[ g16]
4092         \oneVoice
4093       } >>
4094     a8( b) c
4095   }
4096   \new Lyrics \lyricsto "lahlah" {
4097     Ju -- ras -- sic Park
4098   }
4099   \new Lyrics \lyricsto "lahlah" {
4100     % Tricky: need to set associatedVoice
4101     % one syllable too soon!
4102     \set associatedVoice = alternative % applies to "ran"
4103     Ty --
4104     ran --
4105     no --
4106     \set associatedVoice = lahlah % applies to "rus"
4107     sau -- rus Rex
4108   } >>
4109 @end lilypond
4110
4111 @noindent
4112 the text for the first stanza is set to a melody called ``lahlah'',
4113
4114 @example
4115 \new Lyrics \lyricsto "lahlah" @{
4116   Ju -- ras -- sic Park
4117 @}
4118 @end example
4119
4120
4121 The second stanza initially is set to the @code{lahlah} context, but
4122 for the syllable ``ran'', it switches to a different melody.
4123 This is achieved with
4124 @example
4125 \set associatedVoice = alternative
4126 @end example
4127
4128 @noindent
4129 Here, @code{alternative} is the name of the @code{Voice} context
4130 containing the triplet.
4131
4132 Again, the command must be one syllable too early, before ``Ty'' in
4133 this case.
4134
4135 @example
4136 \new Lyrics \lyricsto "lahlah" @{
4137   \set associatedVoice = alternative % applies to "ran"
4138   Ty --
4139   ran --
4140   no --
4141   \set associatedVoice = lahlah % applies to "rus"
4142   sau -- rus Rex
4143 @}
4144 @end example
4145
4146 @noindent
4147 The underlay is switched back to the starting situation by assigning
4148 @code{lahlah} to @code{associatedVoice}.
4149
4150
4151
4152
4153 @node More stanzas
4154 @subsection More stanzas
4155
4156 @cindex phrasing, in lyrics
4157
4158
4159 @cindex stanza number
4160 @cindex singer's names
4161 @cindex name of singer
4162
4163 Stanza numbers can be added by setting @code{stanza}, e.g.,
4164
4165 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
4166 \new Voice {
4167   \time 3/4 g2 e4 a2 f4 g2.
4168 } \addlyrics {
4169   \set stanza = "1. "
4170   Hi, my name is Bert.
4171 } \addlyrics {
4172   \set stanza = "2. "
4173   Oh, che -- ri, je t'aime
4174 }
4175 @end lilypond
4176
4177 These numbers are put just before the start of first syllable.
4178
4179 Names of singers can also be added.  They are printed at the start of
4180 the line, just like instrument names.  They are created by setting
4181 @code{vocalName}.  A short version may be entered as @code{vocNam}.
4182
4183
4184 @lilypond[fragment,raggedright,quote,verbatim,relative=2]
4185 \new Voice {
4186   \time 3/4 g2 e4 a2 f4 g2.
4187 } \addlyrics {
4188   \set vocalName = "Bert "
4189   Hi, my name is Bert.
4190 } \addlyrics {
4191   \set vocalName = "Ernie "
4192   Oh, che -- ri, je t'aime
4193 }
4194 @end lilypond
4195
4196 @seealso
4197
4198 Program reference: Layout objects @internalsref{LyricText} and
4199 @internalsref{VocalName}.  Music expressions
4200 @internalsref{LyricEvent}.
4201
4202
4203
4204 @node Ambitus
4205 @subsection Ambitus
4206 @cindex ambitus
4207
4208 The term @emph{ambitus} denotes a range of pitches for a given voice
4209 in a part of music.  It may also denote the pitch range that a musical
4210 instrument is capable of playing.  Ambits are printed on vocal parts,
4211 so performers can easily determine it meets their capabilities.
4212
4213 Ambits are denoted at the beginning of a piece near the initial clef.
4214 The range is graphically specified by two note heads that represent the
4215 minimum and maximum pitch.  To print such ambits, add the
4216 @internalsref{Ambitus_engraver} to the @internalsref{Voice} context,
4217 for example,
4218
4219 @example
4220 \layout @{
4221   \context @{
4222     \Voice
4223     \consists Ambitus_engraver
4224   @}
4225 @}
4226 @end example
4227
4228 This results in the following output
4229
4230 @lilypond[quote,raggedright]
4231 \layout {
4232   \context {
4233     \Staff
4234     \consists Ambitus_engraver
4235   }
4236 }
4237
4238 \relative \new Staff {
4239   as'' c e2 cis,2
4240 }
4241 @end lilypond
4242
4243 If you have multiple voices in a single staff and you want a single
4244 ambitus per staff rather than per each voice, add the
4245 @internalsref{Ambitus_engraver} to the @internalsref{Staff} context
4246 rather than to the @internalsref{Voice} context.  Here is an example,
4247
4248 @lilypond[verbatim,raggedright,quote]
4249 \new Staff <<
4250   \new Voice \with {
4251     \consists "Ambitus_engraver"
4252   } \relative c'' {
4253     \override Ambitus #'X-offset-callbacks
4254       = #(list (lambda (grob axis) -1.0))
4255     \voiceOne
4256     c4 a d e f2
4257   }
4258   \new Voice \with {
4259     \consists "Ambitus_engraver"
4260   } \relative c' {
4261     \voiceTwo
4262     es4 f g as b2
4263   }
4264 >>
4265 @end lilypond
4266
4267 @noindent
4268 This example uses one advanced feature,
4269
4270 @example
4271 \override Ambitus #'X-offset-callbacks
4272   = #(list (lambda (grob axis) -1.0))
4273 @end example
4274
4275 @noindent
4276 This code moves the ambitus to the left.  The same effect could have
4277 been achieved with @code{extra-offset}, but then the formatting system
4278 would not reserve space for the moved object.
4279
4280 @seealso
4281
4282 Program reference: @internalsref{Ambitus},
4283 @internalsref{AmbitusLine}, @internalsref{AmbitusNoteHead},
4284 @internalsref{AmbitusAccidental}.
4285
4286 Examples: @inputfileref{input/@/regression,ambitus@/.ly}.
4287
4288 @refbugs
4289
4290 There is no collision handling in the case of multiple per-voice
4291 ambitus.
4292
4293 @node Other instrument specific notation, Tablatures, Vocal music, Notation manual
4294 @section Other instrument specific notation
4295
4296 This section includes extra information for writing string music, and may
4297 include extra information for other instruments in the future.
4298
4299 @menu
4300 * Harmonic notes::
4301 @end menu
4302
4303 @node Harmonic notes, , Other instrument specific notation, Other instrument specific notation
4304 @subsection Harmonic notes
4305
4306 @cindex artificial harmonics
4307 @cindex harmonics
4308
4309 Artificial harmonics are notated with a different notehead style.  They
4310 are entered by marking the harmonic pitch with @code{\harmonic}.
4311
4312 @lilypond[raggedright,verbatim,quote,fragment]
4313 <c' g'\harmonic>4
4314 @end lilypond
4315
4316
4317 @node Tablatures, Popular music, Other instrument specific notation, Notation manual
4318 @section Tablatures
4319
4320 @cindex tablature
4321 @cindex guitar tablature
4322
4323 Tablature notation is used for notating music for plucked string
4324 instruments.  Pitches are not denoted with note heads, but by
4325 indicating on which string and fret a note must be played.  LilyPond
4326 offers limited support for tablature.
4327
4328 @menu
4329 * Tablatures basic::
4330 * Non-guitar tablatures::
4331 @end menu
4332
4333 @node Tablatures basic, Non-guitar tablatures, Tablatures, Tablatures
4334 @subsection Tablatures basic
4335 @cindex Tablatures basic
4336
4337 The string number associated to a note is given as a backslash
4338 followed by a number, e.g., @code{c4\3} for a C quarter on the third
4339 string.  By default, string 1 is the highest one, and the tuning
4340 defaults to the standard guitar tuning (with 6 strings).  The notes
4341 are printed as tablature, by using @internalsref{TabStaff} and
4342 @internalsref{TabVoice} contexts
4343
4344 @lilypond[quote,raggedright,fragment,verbatim]
4345 \context TabStaff {
4346   a,4\5 c'\2 a\3 e'\1
4347   e\4 c'\2 a\3 e'\1
4348 }
4349 @end lilypond
4350
4351 @cindex @code{minimumFret}
4352 @cindex fret
4353
4354 When no string is specified, the first string that does not give a
4355 fret number less than @code{minimumFret} is selected.  The default
4356 value for @code{minimumFret} is 0
4357
4358
4359 @example
4360 e16 fis gis a b4
4361 \set TabStaff.minimumFret = #8
4362 e16 fis gis a b4
4363 @end example
4364 @lilypond[quote,raggedright]
4365 frag = {
4366   \key e \major
4367   e16 fis gis a b4
4368   \set TabStaff.minimumFret = #8
4369   e16 fis gis a b4
4370 }
4371   \context StaffGroup <<
4372     \context Staff { \clef "G_8" \frag }
4373     \context TabStaff { \frag }
4374   >>
4375 @end lilypond
4376
4377 @seealso
4378
4379 Program reference: @internalsref{TabStaff}, @internalsref{TabVoice}, and
4380 @internalsref{StringNumberEvent}.
4381
4382 @refbugs
4383
4384 Chords are not handled in a special way, and hence the automatic
4385 string selector may easily select the same string to two notes in a
4386 chord.
4387
4388
4389 @node Non-guitar tablatures, , Tablatures basic, Tablatures
4390 @subsection Non-guitar tablatures
4391 @cindex Non-guitar tablatures
4392
4393 You can change the number of strings, by setting the number of lines
4394 in the @internalsref{TabStaff}.
4395
4396 You can change the tuning of the strings.  A string tuning is given as
4397 a Scheme list with one integer number for each string, the number
4398 being the pitch (measured in semitones relative to middle C) of an
4399 open string.  The numbers specified for @code{stringTuning} are the
4400 numbers of semitones to subtract or add, starting the specified pitch
4401 by default middle C, in string order.  In the next example,
4402 @code{stringTunings} is set for the pitches e, a, d, and g
4403
4404 @lilypond[quote,raggedright,fragment,verbatim]
4405 \context TabStaff <<
4406   \set TabStaff.stringTunings = #'(-5 -10 -15 -20)
4407   {
4408     a,4 c' a e' e c' a e'
4409   }
4410 >>
4411 @end lilypond
4412
4413 @refbugs
4414
4415 No guitar special effects have been implemented.
4416
4417 @seealso
4418
4419 Program reference: @internalsref{Tab_note_heads_engraver}.
4420
4421
4422 @node Popular music, Orchestral music, Tablatures, Notation manual
4423 @section Popular music
4424
4425 This section discusses issues that arise when writing popular music.
4426
4427 @menu
4428 * Chord names::
4429 * Chords mode::
4430 * Printing chord names::
4431 * Fret diagrams::
4432 * Improvisation::
4433 @end menu
4434
4435 @node Chord names, Chords mode, Popular music, Popular music
4436 @subsection Chord names
4437 @cindex Chords
4438
4439 LilyPond has support for printing chord names.  Chords may be entered
4440 in musical chord notation, i.e., @code{< .. >}, but they can also be
4441 entered by name.  Internally, the chords are represented as a set of
4442 pitches, so they can be transposed
4443
4444
4445 @lilypond[quote,raggedright,verbatim,raggedright]
4446 twoWays = \transpose c c' {
4447   \chordmode {
4448     c1 f:sus4 bes/f
4449   }
4450   <c e g>
4451   <f bes c'>
4452   <f bes d'>
4453 }
4454
4455 << \context ChordNames \twoWays
4456    \context Voice \twoWays >>
4457 @end lilypond
4458
4459 This example also shows that the chord printing routines do not try to
4460 be intelligent.  The last chord (@code{f bes d}) is not interpreted as
4461 an inversion.
4462
4463 @c this menu isn't needed.
4464 @ignore
4465 @menu
4466 * Chords mode::
4467 * Printing chord names::
4468 @end menu
4469 @end ignore
4470
4471 @node Chords mode
4472 @subsection Chords mode
4473 @cindex Chords mode
4474
4475 In chord mode sets of pitches (chords) are entered with normal note
4476 names.  A chord is entered by the root, which is entered like a
4477 normal pitch
4478
4479 @lilypond[quote,raggedright,fragment,verbatim]
4480 \chordmode { es4. d8 c2 }
4481 @end lilypond
4482
4483 @noindent
4484 The mode is introduced by the keyword @code{\chordmode}.
4485
4486 @cindex chord entry
4487 @cindex chord mode
4488
4489 Other chords may be entered by suffixing a colon and introducing a
4490 modifier (which may include a number if desired)
4491 @lilypond[quote,fragment,verbatim]
4492 \chordmode { e1:m e1:7 e1:m7 }
4493 @end lilypond
4494 The first number following the root is taken to be the `type' of the
4495 chord, thirds are added to the root until it reaches the specified
4496 number
4497 @lilypond[quote,fragment,verbatim]
4498 \chordmode { c:3 c:5 c:6 c:7 c:8 c:9 c:10 c:11 }
4499 @end lilypond
4500
4501 @cindex root of chord
4502 @cindex additions, in chords
4503 @cindex removals, in chords
4504
4505 More complex chords may also be constructed adding separate steps
4506 to a chord.  Additions are added after the number following
4507 the colon and are separated by dots
4508 @lilypond[quote,verbatim,fragment]
4509 \chordmode { c:5.6 c:3.7.8 c:3.6.13 }
4510 @end lilypond
4511 Chord steps can be altered by suffixing a @code{-} or @code{+} sign
4512 to the number
4513 @lilypond[quote,verbatim,fragment]
4514 \chordmode { c:7+ c:5+.3- c:3-.5-.7- }
4515 @end lilypond
4516 Removals are specified similarly and are introduced by a caret.  They
4517 must come after the additions
4518 @lilypond[quote,verbatim,fragment]
4519 \chordmode { c^3 c:7^5 c:9^3.5 }
4520 @end lilypond
4521
4522 Modifiers can be used to change pitches.  The following modifiers are
4523 supported
4524
4525 @table @code
4526 @item m
4527 The minor chord.  This modifier lowers the 3rd and (if present) the 7th step.
4528
4529 @item dim
4530 The diminished chord.  This modifier lowers the 3rd, 5th and (if present)
4531 the 7th step.
4532
4533 @item aug
4534 The augmented chord.  This modifier raises the 5th step.
4535
4536 @item maj
4537 The major 7th chord.  This modifier raises the 7th step if present.
4538
4539 @item sus
4540 The suspended 4th or 2nd.  This modifier removes the 3rd
4541 step.  Append either @code{2} or @code{4} to add the 2nd or 4th step to
4542 the chord.
4543 @end table
4544
4545 Modifiers can be mixed with additions
4546 @lilypond[quote,verbatim,fragment]
4547   \chordmode { c:sus4 c:7sus4 c:dim7 c:m6 }
4548 @end lilypond
4549
4550 @cindex modifiers, in chords.
4551 @cindex @code{aug}
4552 @cindex @code{dim}
4553 @cindex @code{maj}
4554 @cindex @code{sus}
4555 @cindex @code{m}
4556
4557 Since an unaltered 11 does not sound good when combined with an
4558 unaltered 3, the 11 is removed in this case (unless it is added
4559 explicitly)
4560 @lilypond[quote,raggedright,fragment,verbatim]
4561 \chordmode { c:13 c:13.11 c:m13 }
4562 @end lilypond
4563
4564 @cindex @code{/}
4565
4566 An inversion (putting one pitch of the chord on the bottom), as well
4567 as bass notes, can be specified by appending
4568 @code{/}@var{pitch} to the chord
4569 @lilypond[quote,raggedright,fragment,verbatim]
4570 \chordmode { c1 c/g c/f }
4571 @end lilypond
4572 @cindex @code{/+}
4573
4574 A bass note can be added instead transposed out of the chord,
4575 by using @code{/+}@var{pitch}.
4576
4577 @lilypond[quote,raggedright,fragment,verbatim]
4578 \chordmode { c1 c/+g c/+f }
4579 @end lilypond
4580
4581 Chords is a mode similar to @code{\lyricmode}, etc.  Most
4582 of the commands continue to work, for example, @code{r} and
4583 @code{\skip} can be used to insert rests and spaces, and property
4584 commands may be used to change various settings.
4585
4586
4587
4588 @refbugs
4589
4590 Each step can only be present in a chord once.  The following
4591 simply produces the augmented chord, since @code{5+} is interpreted
4592 last
4593 @cindex clusters
4594 @lilypond[quote,raggedright,verbatim,fragment]
4595 \chordmode { c:5.5-.5+ }
4596 @end lilypond
4597
4598
4599 @node Printing chord names
4600 @subsection Printing chord names
4601
4602 @cindex printing chord names
4603 @cindex chord names
4604 @cindex chords
4605
4606 For displaying printed chord names, use the @internalsref{ChordNames} context.
4607 The chords may be entered either using the notation
4608 described above, or directly using @code{<} and @code{>}
4609
4610 @lilypond[quote,verbatim,raggedright]
4611 harmonies = {
4612   \chordmode {a1 b c} <d' f' a'> <e' g' b'>
4613 }
4614 <<
4615   \context ChordNames \harmonies
4616   \context Staff \harmonies
4617 >>
4618 @end lilypond
4619
4620 You can make the chord changes stand out by setting
4621 @internalsref{ChordNames}.@code{chordChanges} to true.  This will only
4622 display chord names when there is a change in the chords scheme and at
4623 the start of a new line
4624
4625 @lilypond[quote,verbatim,raggedright]
4626 harmonies = \chordmode {
4627   c1:m c:m \break c:m c:m d
4628 }
4629 <<
4630   \context ChordNames {
4631     \set chordChanges = ##t
4632     \harmonies }
4633   \context Staff \transpose c c' \harmonies
4634 >>
4635 @end lilypond
4636
4637 The previous examples all show chords over a staff.  This is not
4638 necessary.  Chords may also be printed separately.  It may be necessary
4639 to add @internalsref{Volta_engraver} and @internalsref{Bar_engraver}
4640 for showing repeats.
4641
4642 @lilypond[raggedright,verbatim]
4643 \new ChordNames \with {
4644   \override BarLine #'bar-size = #4
4645   voltaOnThisStaff = ##t
4646   \consists Bar_engraver
4647   \consists "Volta_engraver"
4648 }
4649 \repeat volta 2 \chordmode {
4650   f1:maj f:7 bes:7
4651   c:maj
4652 } \alternative {
4653   es e
4654 }
4655 @end lilypond
4656
4657
4658 The default chord name layout is a system for Jazz music, proposed by
4659 Klaus Ignatzek (see @ref{Literature list}).  It can be tuned through the
4660 following properties
4661
4662 @table @code
4663 @cindex @code{chordNameExceptions}
4664 @item chordNameExceptions
4665 This is a list that contains the chords that have special formatting.
4666
4667 The exceptions list should be encoded as
4668 @example
4669 @{ <c f g bes>1 \markup @{ \super "7" "wahh" @} @}
4670 @end example
4671
4672 To get this information into @code{chordNameExceptions} takes a little
4673 manoeuvring.  The following code transforms @code{chExceptionMusic}
4674 (which is a sequential music) into a list of exceptions.
4675 @example
4676 (sequential-music-to-chord-exceptions chExceptionMusic #t)
4677 @end example
4678 Then,
4679 @example
4680 (append
4681  (sequential-music-to-chord-exceptions chExceptionMusic #t)
4682  ignatzekExceptions)
4683 @end example
4684 adds the new exceptions to the default ones, which are defined in
4685 @file{ly/@/chord@/-modifier@/-init@/.ly}.
4686
4687 For an example of tuning this property, see also
4688 @inputfileref{input/@/regression,chord@/-name@/-exceptions@/.ly}.
4689 @cindex exceptions, chord names.
4690
4691
4692 @cindex @code{majorSevenSymbol}
4693 @item majorSevenSymbol
4694 This property contains the markup object used for the 7th step, when
4695 it is major.  Predefined options are @code{whiteTriangleMarkup} and
4696 @code{blackTriangleMarkup}.  See
4697 @inputfileref{input/@/regression,chord@/-name@/-major7@/.ly} for an example.
4698
4699 @cindex @code{chordNameSeparator}
4700 @item chordNameSeparator
4701 Different parts of a chord name are normally separated by a
4702 slash.  By setting @code{chordNameSeparator}, you can specify other
4703 separators, e.g.,
4704 @lilypond[quote,raggedright,fragment,verbatim]
4705 \context ChordNames \chordmode {
4706   c:7sus4
4707   \set chordNameSeparator
4708     = \markup { \typewriter "|" }
4709   c:7sus4
4710 }
4711 @end lilypond
4712
4713 @cindex @code{chordRootNamer}
4714 @item chordRootNamer
4715 The root of a chord is usually printed as a letter with an optional
4716 alteration.  The transformation from pitch to letter is done by this
4717 function.  Special note names (for example, the German ``H'' for a
4718 B-chord) can be produced by storing a new function in this property.
4719
4720 @cindex @code{chordNoteNamer}
4721 @item chordNoteNamer
4722 The default is to print single pitch, e.g., the bass note, using the
4723 @code{chordRootNamer}.  The @code{chordNoteNamer} property can be set
4724 to a specialized function to change this behavior.  For example, the
4725 base can be printed in lower case.
4726
4727 @end table
4728
4729 The predefined variables @code{\germanChords},
4730 @code{\semiGermanChords} set these variables.  The effect is
4731 demonstrated here,
4732
4733 @lilypondfile[raggedright]{chord-names-german.ly}
4734
4735 There are also two other chord name schemes implemented: an alternate
4736 Jazz chord notation, and a systematic scheme called Banter chords.  The
4737 alternate Jazz notation is also shown on the chart in @ref{Chord name
4738 chart}.  Turning on these styles is described in the input file
4739 @inputfileref{input/@/test,chord@/-names@/-jazz@/.ly}.
4740
4741 @cindex Banter
4742 @cindex jazz chords
4743 @cindex chords, jazz
4744
4745
4746 @refcommands
4747
4748 @cindex @code{\germanChords}
4749 @code{\germanChords},
4750 @cindex @code{\semiGermanChords}
4751 @code{\semiGermanChords}.
4752
4753
4754
4755
4756 @seealso
4757
4758 Examples: @inputfileref{input/@/regression,chord@/-name@/-major7@/.ly},
4759 @inputfileref{input/@/regression,chord@/-name@/-exceptions@/.ly},
4760 @inputfileref{input/@/test,chord@/-names@/-jazz@/.ly},
4761 @inputfileref{input/@/test,chords@/-without@/-melody@/.ly}.
4762
4763
4764 Init files: @file{scm/@/chords@/-ignatzek@/.scm}, and
4765 @file{scm/@/chord@/-entry@/.scm}.
4766
4767
4768 @refbugs
4769
4770 Chord names are determined solely from the list of pitches.  Chord
4771 inversions are not identified, and neither are added bass notes.  This
4772 may result in strange chord names when chords are entered with the
4773 @code{< .. >} syntax.
4774
4775
4776 @node Fret diagrams
4777 @subsection Fret diagrams
4778 @cindex fret diagrams
4779 @cindex chord diagrams
4780
4781 Fret diagrams can be added to music as a markup to the desired note.  The
4782 markup contains information about the desired fret diagram, as shown in the
4783 following example
4784
4785 @lilypond[verbatim, raggedright, quote]
4786 \context Voice {
4787   d' ^\markup \fret-diagram #"6-x;5-x;4-o;3-2;2-3;1-2;"
4788   d' d' d'
4789   fis' ^\markup \override #'(size . 0.75) {
4790     \override #'(finger-code . below-string) {
4791       \fret-diagram-verbose #'((place-fret 6 2 1) (barre 6 1 2)
4792                                (place-fret 5 4 3) (place-fret 4 4 4)
4793                                (place-fret 3 3 2) (place-fret 2 2 1)
4794                                (place-fret 1 2 1))
4795     }
4796   }
4797   fis' fis' fis'
4798   c' ^\markup \override #'(dot-radius . 0.35) {
4799     \override #'(finger-code . in-dot) {
4800       \override #'(dot-color . white) {
4801         \fret-diagram-terse #"x;3-1-(;5-2;5-3;5-4;3-1-);"
4802       }
4803     }
4804   }
4805   c' c' c'
4806 }
4807 @end lilypond
4808
4809
4810 There are three different fret-diagram markup interfaces: standard, terse,
4811 and verbose.  The three interfaces produce equivalent markups, but have
4812 varying amounts of information in the markup string.  Details about the
4813 markup interfaces are found at @ref{Overview of text markup commands}.
4814
4815 You can set a number of graphical properties according to your preference.
4816 Details about the property interface to fret diagrams are found at
4817 @internalsref{fret-diagram-interface}.
4818
4819
4820 @seealso
4821
4822 Examples: @inputfileref{input/@/test,fret@/-diagram@/.ly}
4823
4824
4825 @node Improvisation
4826 @subsection Improvisation
4827
4828 Improvisation is sometimes denoted with slashed note heads.  Such note
4829 heads can be created by adding a @internalsref{Pitch_squash_engraver}
4830 to the @internalsref{Staff} or @internalsref{Voice} context.  Then, the
4831 following command
4832
4833 @example
4834 \set squashedPosition = #0
4835 \override NoteHead #'style = #'slash
4836 @end example
4837
4838 @noindent
4839 switches on the slashes.
4840
4841 There are shortcuts @code{\improvisationOn} (and an accompanying
4842 @code{\improvisationOff}) for this command sequence.  They are used in
4843 the following example
4844
4845 @lilypond[verbatim,raggedright,quote]
4846 \new Staff \with {
4847   \consists Pitch_squash_engraver
4848 } \transpose c c' {
4849   e8 e g a a16(bes)(a8) g \improvisationOn
4850   e8
4851   ~e2~e8 f4 fis8
4852   ~fis2 \improvisationOff a16(bes) a8 g e
4853 }
4854 @end lilypond
4855
4856
4857
4858 @node Orchestral music
4859 @section Orchestral music
4860
4861 @cindex Writing parts
4862
4863 Orchestral music involves some special notation, both in the full
4864 score and the individual parts.  This section explains how to tackle
4865 some common problems in orchestral music.
4866
4867
4868
4869 @menu
4870 * System start delimiters::
4871 * Aligning to cadenzas::
4872 * Rehearsal marks::
4873 * Bar numbers::
4874 * Instrument names::
4875 * Transpose::
4876 * Instrument transpositions::
4877 * Multi measure rests::
4878 * Automatic part combining::
4879 * Hiding staves::
4880 * Different editions from one source::
4881 * Quoting other voices::
4882 * Formatting cue notes::
4883 @end menu
4884
4885 @node System start delimiters
4886 @subsection System start delimiters
4887
4888 Polyphonic scores consist of many staves.  These staves can be
4889 constructed in three different ways
4890 @itemize @bullet
4891 @item The group is started with a brace at the left, and bar lines are
4892 connected.  This is done with the @internalsref{GrandStaff} context.
4893
4894 @lilypond[verbatim,raggedright,quote]
4895 \new GrandStaff
4896 \relative <<
4897   \new Staff { c1 c }
4898   \new Staff { c c }
4899 >>
4900 @end lilypond
4901
4902
4903 @item The group is started with a bracket, and bar lines are connected.
4904 This is done with the
4905 @internalsref{StaffGroup} context
4906
4907 @lilypond[verbatim,raggedright,quote]
4908 \new StaffGroup
4909 \relative <<
4910   \new Staff { c1 c }
4911   \new Staff { c c }
4912 >>
4913 @end lilypond
4914
4915
4916 @item The group is started with a vertical line.  Bar lines are not
4917 connected.  This is the default for the score.
4918
4919 @lilypond[verbatim,raggedright,quote]
4920 \relative <<
4921   \new Staff { c1 c }
4922   \new Staff { c c }
4923 >>
4924 @end lilypond
4925
4926 @end itemize
4927
4928 @cindex Staff, multiple
4929 @cindex bracket, vertical
4930 @cindex brace, vertical
4931 @cindex grand staff
4932 @cindex staff group
4933
4934
4935 @seealso
4936
4937 The bar lines at the start of each system are
4938 @internalsref{SystemStartBar}, @internalsref{SystemStartBrace}, and
4939 @internalsref{SystemStartBracket}.  Only one of these types is created
4940 in every context, and that type is determined by the property
4941 @code{systemStartDelimiter}.
4942
4943 @node Aligning to cadenzas
4944 @subsection Aligning to cadenzas
4945
4946
4947 In an orchestral context, cadenzas present a special problem:
4948 when constructing a score that includes a cadenza, all other
4949 instruments should skip just as many notes as the length of the
4950 cadenza, otherwise they will start too soon or too late.
4951
4952 A solution to this problem are the functions @code{mmrest-of-length}
4953 and @code{skip-of-length}.  These Scheme functions take a piece of music
4954 as argument, and generate a @code{\skip} or multi-rest, exactly as
4955 long as the piece.  The use of @code{mmrest-of-length} is demonstrated
4956 in the following example.
4957
4958 @lilypond[verbatim,raggedright,quote]
4959 cadenza = \relative c' {
4960   c4 d8 << { e f g } \\ { d4. } >>
4961   g4 f2 g4 g
4962 }
4963
4964 \new GrandStaff <<
4965   \new Staff { \cadenza c'4 }
4966   \new Staff {
4967     #(ly:export (mmrest-of-length cadenza))
4968     c'4
4969   }
4970 >>
4971 @end lilypond
4972
4973
4974
4975
4976
4977 @node Rehearsal marks
4978 @subsection Rehearsal marks
4979 @cindex Rehearsal marks
4980 @cindex mark
4981 @cindex @code{\mark}
4982
4983 To print a rehearsal mark, use the @code{\mark} command
4984
4985 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
4986 c1 \mark \default
4987 c1 \mark \default
4988 c1 \mark #8
4989 c1 \mark \default
4990 c1 \mark \default
4991 @end lilypond
4992
4993 @noindent
4994 (The letter@tie{}`I' is skipped in accordance with engraving traditions.)
4995 @c umm, is the manual the right place for feature requests?  :)  -gp
4996 @c FIXME - should make that tunable.
4997
4998 To use boxed bar numbers instead of letters, see @ref{Bar numbers}.
4999
5000 The mark is incremented automatically if you use @code{\mark
5001 \default}, but you can also use an integer argument to set the mark
5002 manually.  The value to use is stored in the property
5003 @code{rehearsalMark}.
5004
5005 The style is defined by the property @code{markFormatter}.  It is a
5006 function taking the current mark (an integer) and the current context
5007 as argument.  It should return a markup object.  In the following
5008 example, @code{markFormatter} is set to a canned procedure.  After a
5009 few measures, it is set to function that produces a boxed number.
5010
5011 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
5012 \set Score.markFormatter = #format-mark-numbers
5013 c1 \mark \default
5014 c1 \mark \default
5015 \set Score.markFormatter
5016    = #(lambda (mark context)
5017        (make-bold-markup
5018         (make-box-markup (number->string mark))))
5019 c1 \mark \default
5020 c1 \mark \default
5021 c1
5022 @end lilypond
5023
5024 The file @file{scm/@/translation@/-functions@/.scm} contains the definitions
5025 of @code{format-mark-numbers} (the default format) and
5026 @code{format-mark-letters}.  These can be used as inspiration for other
5027 formatting functions.
5028
5029
5030 @cindex coda on bar line
5031 @cindex segno on bar line
5032 @cindex fermata on bar line
5033 @cindex bar lines, symbols on
5034
5035 The @code{\mark} command can also be used to put signs like coda,
5036 segno, and fermata on a bar line.  Use @code{\markup} to
5037 access the appropriate symbol
5038
5039 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
5040 c1 \mark \markup { \musicglyph #"scripts-ufermata" }
5041 c1
5042 @end lilypond
5043
5044 In the case of a line break, marks must also be printed at the end of
5045 the line, and not at the beginning.  Use the following to force that
5046 behavior
5047 @example
5048 \override Score.RehearsalMark
5049   #'break-visibility = #begin-of-line-invisible
5050 @end example
5051
5052 @cindex fermatas
5053 @cindex coda
5054 @cindex segno
5055 @cindex bar lines, putting symbols on
5056
5057 @seealso
5058
5059 Program reference: @internalsref{MarkEvent}, @internalsref{RehearsalMark}.
5060
5061 Init files: @file{scm/@/translation@/-functions@/.scm} contains the
5062 definition of @code{format-mark-numbers} and
5063 @code{format-mark-letters}.  They can be used as inspiration for other
5064 formatting functions.
5065
5066 Examples: @inputfileref{input/@/regression,rehearsal@/-mark@/-letter@/.ly},
5067
5068 @inputfileref{input/@/regression,rehearsal@/-mark@/-number@/.ly}.
5069
5070
5071 @node Bar numbers
5072 @subsection Bar numbers
5073
5074
5075 @cindex Bar numbers
5076 @cindex measure numbers
5077 @cindex @code{currentBarNumber}
5078
5079 Bar numbers are printed by default at the start of the line.  The
5080 number itself is stored in the @code{currentBarNumber} property, which
5081 is normally updated automatically for every measure.
5082
5083 Bar numbers can be typeset at regular intervals instead of at the
5084 beginning of each line.  This is illustrated in the following example,
5085 whose source is available as
5086 @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}
5087
5088 @lilypondfile[raggedright,quote]{bar-number-regular-interval.ly}
5089
5090 Bar numbers can be typeset manually by tweaking the
5091 @code{markFormatter} property
5092
5093 @lilypond[verbatim,raggedright,quote]
5094 \relative c' {
5095   \set Score.markFormatter
5096     = #(lambda (mark context)
5097       (make-bold-markup
5098         (make-box-markup
5099           (number->string (ly:context-property context
5100                                                'currentBarNumber)))))
5101
5102   c1 \bar "||" \mark \default c1 c1 \mark \default c1 \bar "|."
5103 }
5104 @end lilypond
5105
5106 Bar numbers can be manually changed by setting the
5107 @code{Staff.currentBarNumber} property
5108
5109 @lilypond[verbatim,raggedright,quote]
5110 \relative c' {
5111   \repeat unfold 4 {c4 c c c} \break
5112   \set Score.currentBarNumber = #50
5113   \repeat unfold 4 {c4 c c c}
5114 }
5115 @end lilypond
5116
5117 @seealso
5118
5119 Program reference: @internalsref{BarNumber}.
5120
5121 Examples:
5122 @inputfileref{input/@/test,bar@/-number@/-every@/-five@/-reset@/.ly},
5123 and @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}.
5124
5125 @refbugs
5126
5127 Bar numbers can collide with the @internalsref{StaffGroup} bracket, if
5128 there is one at the top.  To solve this, the
5129 @code{padding} property of @internalsref{BarNumber} can be
5130 used to position the number correctly.
5131
5132 @node Instrument names
5133 @subsection Instrument names
5134
5135 In an orchestral score, instrument names are printed at the left side
5136 of the staves.
5137
5138 This can be achieved by setting @internalsref{Staff}.@code{instrument}
5139 and @internalsref{Staff}.@code{instr}.  This will print a string before
5140 the start of the staff.  For the first staff, @code{instrument} is
5141 used, for the following ones, @code{instr} is used.
5142
5143 @lilypond[quote,verbatim,raggedright,relative=1,fragment]
5144 \set Staff.instrument = "Ploink "
5145 \set Staff.instr = "Plk "
5146 c1
5147 \break
5148 c''
5149 @end lilypond
5150
5151 You can also use markup texts to construct more complicated instrument
5152 names, for example
5153
5154 @lilypond[quote,fragment,verbatim,raggedright]
5155 \set Staff.instrument = \markup {
5156   \column < "Clarinetti"
5157             { "in B" \smaller \flat } > }
5158 c''1
5159 @end lilypond
5160
5161 For longer instrument names, it may be useful to increase the
5162 @code{indent} setting in the @code{\layout} block.
5163
5164 @seealso
5165
5166 Program reference: @internalsref{InstrumentName}.
5167
5168 @refbugs
5169
5170 When you put a name on a grand staff or piano staff, the width of the
5171 brace is not taken into account.  You must add extra spaces to the end of
5172 the name to avoid a collision.
5173
5174 @node Transpose
5175 @subsection Transpose
5176 @cindex Transpose
5177 @cindex transposition of pitches
5178 @cindex @code{\transpose}
5179
5180 A music expression can be transposed with @code{\transpose}.  The
5181 syntax is
5182 @example
5183 \transpose @var{from} @var{to} @var{musicexpr}
5184 @end example
5185
5186 This means that @var{musicexpr} is transposed by the interval between
5187 the pitches @var{from} and @var{to}: any note with pitch @code{from}
5188 is changed to @code{to}.
5189
5190
5191 For example, consider a piece written in the key of D-major.  If
5192 this piece is a little too low for its performer, it can be
5193 transposed up to E-major with
5194 @example
5195 \transpose d e @dots{}
5196 @end example
5197
5198 Consider a part written for violin (a C instrument).  If
5199 this part is to be played on the A clarinet, the following
5200 transposition will produce the appropriate part
5201
5202 @example
5203 \transpose a c @dots{}
5204 @end example
5205
5206 @code{\transpose} distinguishes between enharmonic pitches: both
5207 @code{\transpose c cis} or @code{\transpose c des} will transpose up
5208 half a tone.  The first version will print sharps and the second
5209 version will print flats
5210
5211 @lilypond[quote,raggedright,verbatim]
5212 mus = { \key d \major cis d fis g }
5213 \context Staff {
5214   \clef "F" \mus
5215   \clef "G"
5216   \transpose c g' \mus
5217   \transpose c f' \mus
5218 }
5219 @end lilypond
5220
5221
5222 @seealso
5223
5224 Program reference: @internalsref{TransposedMusic}, and
5225 @internalsref{UntransposableMusic}.
5226
5227 @refbugs
5228
5229 If you want to use both @code{\transpose} and @code{\relative},
5230 you must put @code{\transpose} outside of @code{\relative}, since
5231 @code{\relative} will have no effect music that appears inside a
5232 @code{\transpose}.
5233
5234 @node Instrument transpositions
5235 @subsection Instrument transpositions
5236
5237 The key of a transposing instrument can also be specified.  This
5238 applies to many wind instruments, for example, clarinets (B-flat, A, and
5239 E-flat), horn (F) and trumpet (B-flat, C, D, and E-flat).
5240
5241 The transposition is entered after the keyword @code{\transposition}
5242
5243 @example
5244 \transposition bes   %% B-flat clarinet
5245 @end example
5246
5247 @noindent
5248 This command sets the property @code{instrumentTransposition}.  The value of
5249 this property is used for MIDI output and quotations.  It does not
5250 affect how notes are printed in the current staff.
5251
5252 The pitch to use for @code{\transposition} should correspond to the
5253 transposition of the notes.  For example, when entering a score in
5254 concert pitch, typically all voices are entered in C, so
5255 they should be entered as
5256
5257 @example
5258 clarinet = @{
5259   \transposition c'
5260   ...
5261 @}
5262 saxophone = @{
5263   \transposition c'
5264   ...
5265 @}
5266 @end example
5267
5268 The command @code{\transposition} should be used when the music is
5269 entered from a (transposed) orchestral part.  For example, in
5270 classical horn parts, the tuning of the instrument is often changed
5271 during a piece.  When copying the notes from the part, use
5272 @code{\transposition}, e.g.,
5273
5274 @example
5275 \transposition d'
5276 c'4^"in D"
5277 ...
5278 \transposition g'
5279 c'4^"in G"
5280 ...
5281 @end example
5282
5283
5284
5285 @cindex transposition, MIDI
5286 @cindex transposition, instrument
5287
5288
5289 @node Multi measure rests
5290 @subsection Multi measure rests
5291 @cindex multi measure rests
5292 @cindex Rests, multi measure
5293
5294 @cindex @code{R}
5295
5296 Multi-measure rests are entered using `@code{R}'.  It is specifically
5297 meant for full bar rests and for entering parts: the rest can expand
5298 to fill a score with rests, or it can be printed as a single
5299 multi-measure rest.  This expansion is controlled by the property
5300 @code{Score.skipBars}.  If this is set to true, empty measures will not
5301 be expanded, and the appropriate number is added automatically
5302
5303 @lilypond[quote,raggedright,fragment,verbatim]
5304 \time 4/4 r1 | R1 | R1*2
5305 \set Score.skipBars = ##t R1*17 R1*4
5306 @end lilypond
5307
5308 The @code{1} in @code{R1} is similar to the duration notation used for
5309 notes.  Hence, for time signatures other than 4/4, you must enter other
5310 durations.  This can be done with augmentation dots or fractions
5311
5312 @lilypond[quote,raggedright,fragment,verbatim]
5313 \set Score.skipBars = ##t
5314 \time 3/4
5315 R2. | R2.*2
5316 \time 13/8
5317 R1*13/8
5318 R1*13/8*12 |
5319 \time 10/8 R4*5*4 |
5320 @end lilypond
5321
5322 An @code{R} spanning a single measure is printed as either a whole rest
5323 or a breve, centered in the measure regardless of the time signature.
5324
5325 If there are only a few measures of rest, LilyPond prints ``church rests''
5326 (a series of rectangles) in the staff.  To replace that with a simple
5327 rest, use @code{MultiMeasureRest.expand-limit}.
5328
5329 @lilypond[quote,raggedright,fragment,verbatim]
5330 \set Score.skipBars = ##t
5331 R1*2 | R1*5 | R1*9
5332 \override MultiMeasureRest #'expand-limit = 1
5333 R1*2 | R1*5 | R1*9
5334 @end lilypond
5335
5336
5337 @cindex text on multi-measure rest
5338 @cindex script on multi-measure rest
5339 @cindex fermata on multi-measure rest
5340
5341 Texts can be added to multi-measure rests by using the
5342 @var{note}-@code{markup} syntax (see @ref{Text markup}).
5343 A variable (@code{\fermataMarkup}) is provided for
5344 adding fermatas
5345
5346 @lilypond[quote,raggedright,verbatim,fragment]
5347 \set Score.skipBars = ##t
5348 \time 3/4
5349 R2.*10^\markup { \italic "ad lib." }
5350 R2.^\fermataMarkup
5351 @end lilypond
5352
5353 If you want to have text on the left end of a multi-measure rest,
5354 attach the text to a zero-length skip note, i.e.,
5355
5356 @example
5357 s1*0^"Allegro"
5358 R1*4
5359 @end example
5360
5361
5362 @cindex whole rests for a full measure
5363
5364 @seealso
5365
5366 Program reference: @internalsref{MultiMeasureRestEvent},
5367 @internalsref{MultiMeasureTextEvent},
5368 @internalsref{MultiMeasureRestMusicGroup}, and
5369 @internalsref{MultiMeasureRest}.
5370
5371 The layout object @internalsref{MultiMeasureRestNumber} is for the
5372 default number, and @internalsref{MultiMeasureRestText} for user
5373 specified texts.
5374
5375 @refbugs
5376
5377 It is not possible to use fingerings (e.g., @code{R1-4}) to put numbers
5378 over multi-measure rests.  And the pitch of multi-measure rests (or
5379 staff-centered rests) can not be influenced.
5380
5381 @cindex condensing rests
5382
5383 There is no way to automatically condense multiple rests into a single
5384 multi-measure rest.  Multi-measure rests do not take part in rest
5385 collisions.
5386
5387 Be careful when entering multi-measure rests followed by whole
5388 notes.  The following will enter two notes lasting four measures each
5389 @example
5390 R1*4 cis cis
5391 @end example
5392 When @code{skipBars} is set, the result will look OK, but the bar
5393 numbering will be off.
5394
5395 @node Automatic part combining
5396 @subsection Automatic part combining
5397 @cindex automatic part combining
5398 @cindex part combiner
5399
5400
5401 Automatic part combining is used to merge two parts of music onto a
5402 staff.  It is aimed at typesetting orchestral scores.  When the two
5403 parts are identical for a period of time, only one is shown.  In
5404 places where the two parts differ, they are typeset as separate
5405 voices, and stem directions are set automatically.  Also, solo and
5406 @emph{a due} parts are identified and can be marked.
5407
5408 The syntax for part combining is
5409
5410 @example
5411 \partcombine @var{musicexpr1} @var{musicexpr2}
5412 @end example
5413
5414
5415
5416 The following example demonstrates the basic functionality of the part
5417 combiner: putting parts on one staff, and setting stem directions and
5418 polyphony
5419
5420 @lilypond[quote,verbatim,raggedright,fragment]
5421 \new Staff \partcombine
5422   \relative g' { g g a( b) c c r r }
5423   \relative g' { g g r4 r e e g g }
5424 @end lilypond
5425
5426 The first @code{g} appears only once, although it was
5427 specified twice (once in each part).  Stem, slur, and tie directions are
5428 set automatically, depending whether there is a solo or unisono.  The
5429 first part (with context called @code{one}) always gets up stems, and
5430 `solo', while the second (called @code{two}) always gets down stems and
5431 `Solo II'.
5432
5433 If you just want the merging parts, and not the textual markings, you
5434 may set the property @code{printPartCombineTexts} to false
5435
5436 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
5437 \new Staff <<
5438   \set Staff.printPartCombineTexts = ##f
5439   \partcombine
5440     \relative g' { g a( b) r }
5441     \relative g' { g r4 r f }
5442 >>
5443 @end lilypond
5444
5445
5446 Both arguments to @code{\partcombine} will be interpreted as
5447 @internalsref{Voice} contexts.  If using relative octaves,
5448 @code{\relative} should be specified for both music expressions, i.e.,
5449
5450 @example
5451 \partcombine
5452   \relative @dots{} @var{musicexpr1}
5453   \relative @dots{} @var{musicexpr2}
5454 @end example
5455
5456 @noindent
5457 A @code{\relative} section that is outside of @code{\partcombine} has
5458 no effect on the pitches of @var{musicexpr1} and @var{musicexpr2}.
5459
5460 @seealso
5461
5462 Program reference: @internalsref{PartCombineMusic},
5463 @internalsref{SoloOneEvent}, and
5464 @internalsref{SoloTwoEvent}, and
5465 @internalsref{UnisonoEvent}.
5466
5467 @refbugs
5468
5469 When @code{printPartCombineTexts} is set, when the two voices play the
5470 same notes on and off, the part combiner may typeset @code{a2} more
5471 than once in a measure.
5472
5473 @code{\partcombine} cannot be inside @code{\times}.
5474
5475 @code{\partcombine} cannot be inside @code{\relative}.
5476
5477 Internally, the @code{\partcombine} interprets both arguments as
5478 @code{Voice}s named @code{one} and @code{two}, and then decides when
5479 the parts can be combined.  Consequently, if the arguments switch to
5480 differently named @internalsref{Voice} contexts, the events in those
5481 will be ignored.
5482
5483 @node Hiding staves
5484 @subsection Hiding staves
5485
5486 @cindex Frenched scores
5487 @cindex Hiding staves
5488
5489 In orchestral scores, staff lines that only have rests are usually
5490 removed.  This saves some space.  This style is called `French Score'.
5491 For @internalsref{Lyrics},
5492 @internalsref{ChordNames} and @internalsref{FiguredBass}, this is
5493 switched on by default.  When the lines of these contexts turn out
5494 empty after the line-breaking process, they are removed.
5495
5496 For normal staves, a specialized @internalsref{Staff} context is
5497 available, which does the same: staves containing nothing (or only
5498 multi-measure rests) are removed.  The context definition is stored in
5499 @code{\RemoveEmptyStaffContext} variable.  Observe how the second staff
5500 in this example disappears in the second line
5501
5502 @lilypond[quote,raggedright,verbatim]
5503 \layout {
5504   \context { \RemoveEmptyStaffContext }
5505 }
5506
5507 {
5508   \relative c' <<
5509     \new Staff { e4 f g a \break c1 }
5510     \new Staff { c4 d e f \break R1 }
5511   >>
5512 }
5513 @end lilypond
5514
5515 The first system shows all staves in full.  If empty staves should be
5516 removed from the first system too, set @code{remove-first} to false in
5517 @internalsref{RemoveEmptyVerticalGroup}.
5518
5519 Another application is making ossia sections, i.e., alternative
5520 melodies on a separate piece of staff, with help of a Frenched
5521 staff.  See @inputfileref{input/@/test,ossia@/.ly} for an example.
5522
5523
5524 @node Different editions from one source
5525 @subsection Different editions from one source
5526
5527 The @code{\tag} command marks music expressions with a name.  These
5528 tagged expressions can be filtered out later.  With this mechanism it
5529 is possible to make different versions of the same music source.
5530
5531 In the following example, we see two versions of a piece of music, one
5532 for the full score, and one with cue notes for the instrumental part
5533
5534 @example
5535 c1
5536 <<
5537   \tag #'part <<
5538     R1 \\
5539     @{
5540       \set fontSize = #-1
5541       c4_"cue" f2 g4 @}
5542   >>
5543   \tag #'score R1
5544 >>
5545 c1
5546 @end example
5547
5548 The same can be applied to articulations, texts, etc.: they are
5549 made by prepending
5550 @example
5551 -\tag #@var{your-tag}
5552 @end example
5553 to an articulation, for example,
5554 @example
5555 c1-\tag #'part ^4
5556 @end example
5557
5558 This defines a note with a conditional fingering indication.
5559
5560 By applying the @code{\keepWithTag} and @code{\removeWithTag}
5561 commands, tagged expressions can be filtered.  For example,
5562 @example
5563 <<
5564   @var{the music}
5565   \keepWithTag #'score @var{the music}
5566   \keepWithTag #'part @var{the music}
5567 >>
5568 @end example
5569 would yield
5570
5571 @lilypondfile[raggedright,quote]{tag-filter.ly}
5572
5573
5574 The argument of the @code{\tag} command should be a symbol, or a list
5575 of symbols, for example,
5576 @example
5577 \tag #'(original-part transposed-part) @dots{}
5578 @end example
5579
5580
5581
5582 @seealso
5583
5584 Examples: @inputfileref{input/@/regression,tag@/-filter@/.ly}.
5585
5586 @refbugs
5587
5588 Multiple rests are not merged if you create the score with both tagged
5589 sections.
5590  
5591
5592 @node Quoting other voices
5593 @subsection Quoting other voices
5594
5595 With quotations, fragments of other parts can be inserted into a part
5596 directly.  Before a part can be quoted, it must be marked especially as
5597 quotable.  This is done with the @code{\addquote} command.
5598
5599 @example
5600 \addquote @var{name} @var{music}
5601 @end example
5602
5603
5604 @noindent
5605 Here, @var{name} is an identifying string.  The @var{music} is any kind
5606 of music.  Here is an example of @code{\addquote}
5607
5608 @example
5609 \addquote clarinet \relative c' @{
5610   f4 fis g gis
5611 @}
5612 @end example
5613
5614 This command must be entered at toplevel, i.e., outside any music
5615 blocks.
5616
5617 After calling @code{\addquote}, the quotation may then be done with
5618 @code{\quoteDuring} or @code{\cueDuring},
5619
5620 @example
5621 \quoteDuring #@var{name} @var{music}
5622 @end example
5623
5624 During a part, a piece of music can be quoted with the @code{\quoteDuring}
5625 command.
5626
5627 @example
5628 \quoteDuring #"clarinet" @{ s2. @}
5629 @end example
5630
5631 This would cite three quarter notes (the duration of @code{s2.})  of
5632 the previously added @code{clarinet} voice.
5633
5634
5635 More precisely, it takes the current time-step of the part being
5636 printed, and extracts the notes at the corresponding point of the
5637 @code{\addquote}d voice.  Therefore, the argument to @code{\addquote}
5638 should be the entire part of the voice to be quoted, including any
5639 rests at the beginning.
5640
5641 Quotations take into account the transposition of both source and target
5642 instruments, if they are specified using the @code{\transposition} command.
5643
5644 @lilypond[quote,raggedright,verbatim]
5645 \addquote clarinet \relative c' {
5646   \transposition bes
5647   f4 fis g gis
5648 }
5649
5650 {
5651   e'8 f'8 \quoteDuring #"clarinet" { s2 }
5652 }
5653 @end lilypond
5654
5655 The type of events that are present in cue notes can be trimmed with
5656 the @code{quotedEventTypes} property.  The default value is
5657 @code{(note-event rest-event)}, which means that only notes and
5658 rests of the cued voice end up in the @code{\quoteDuring}.
5659 Setting
5660
5661 @example
5662 \set Staff.quotedEventTypes =
5663        #'(note-event articulation-event dynamic-event)
5664 @end example
5665
5666 @noindent
5667 will quote notes (but no rests), together with scripts and dynamics.
5668
5669 @refbugs
5670
5671 Only the contents of the first @internalsref{Voice} occurring in an
5672 @code{\addquote} command will be considered for quotation, so
5673 @var{music} can not contain @code{\new} and @code{\context Voice}
5674 statements that would switch to a different Voice.
5675
5676 Quoting grace notes is broken and can even cause LilyPond to crash.
5677
5678 @seealso
5679
5680 In this manual: @ref{Instrument transpositions}.
5681
5682 Examples: @inputfileref{input/@/regression,quote@/.ly}
5683 @inputfileref{input/@/regression,quote@/-transposition@/.ly}
5684
5685 Program reference: @internalsref{QuoteMusic}.
5686
5687 @node Formatting cue notes
5688 @subsection Formatting cue notes
5689
5690 The previous section deals with inserting notes from another voice.
5691 There is a more advanced music function called @code{\cueDuring},
5692 which makes formatting cue notes easier.
5693
5694 The syntax is
5695
5696 @example
5697   \cueDuring #@var{name} #@var{updown} @var{music}
5698 @end example
5699
5700 This will insert notes from the part @var{name} into a
5701 @internalsref{Voice} called @code{cue}. This happens simultaneously
5702 with @var{music}, which usually is a rest.  When the cue notes start,
5703 the staff in effect becomes polyphonic for a moment. The argument
5704 @var{updown} determines whether the cue notes should be notated as a
5705 first or second voice.
5706
5707
5708 @lilypond[verbatim,raggedright]
5709 smaller = {
5710   \set fontSize = #-2
5711   \override Stem #'length = #5.5
5712   \override Beam #'thickness = #0.384
5713   \override Beam #'space-function =
5714     #(lambda (beam mult) (* 0.8 (Beam::space_function beam mult)))
5715 }
5716
5717 \addquote clarinet \relative {
5718   R1*20
5719   r2 r8 c f f
5720
5721
5722 \new Staff \relative  <<
5723
5724   % setup a context for  cue  notes.
5725   \context Voice = cue { \smaller \skip 1*21 }
5726   
5727   \set Score.skipBars = ##t
5728   
5729   \new Voice {
5730     R1*20
5731     \cueDuring #"clarinet" #1 {
5732       R1
5733     }
5734     g4 g2. 
5735   }
5736 >>
5737 @end lilypond 
5738
5739
5740 Here are a couple of hints for successful cue notes
5741
5742 @itemize @bullet
5743 @item
5744 Cue notes have smaller font sizes.
5745 @item
5746  the cued part is marked with the instrument playing the cue.
5747 @item
5748  when the original part takes over again, this should be marked with
5749  the name of the original instrument.
5750
5751  @c really?  Are you sure about that last point?  I'll check after 3.0 -gp
5752
5753 @c Yes, this is good practice. Otherwise, the start of the original
5754 @c part can only be seen from the font size. This is not good enough
5755 @c for sight-reading. It is possilbe to use other
5756 @c markers (eg. a big close-bracket over the staff) to indicate the cue notes are
5757 @c finished.
5758 @c -hwn
5759
5760
5761  any other changes introduced by the cued part should also be
5762 undone. For example, if the cued instrument plays in a different clef,
5763 the original clef should be stated once again.
5764
5765 @end itemize
5766
5767
5768
5769
5770
5771 @node Ancient notation
5772 @section Ancient notation
5773
5774 @cindex Vaticana, Editio
5775 @cindex Medicaea, Editio
5776 @cindex hufnagel
5777 @cindex Petrucci
5778 @cindex mensural
5779
5780 Support for ancient notation includes features for mensural notation
5781 and Gregorian Chant notation.  There is also limited support for
5782 figured bass notation.
5783
5784 Many graphical objects provide a @code{style} property, see
5785 @itemize @bullet
5786 @item
5787 @ref{Ancient note heads},
5788 @item
5789 @ref{Ancient accidentals},
5790 @item
5791 @ref{Ancient rests},
5792 @item
5793 @ref{Ancient clefs},
5794 @item
5795 @ref{Ancient flags},
5796 @item
5797 @ref{Ancient time signatures}.
5798 @end itemize
5799
5800 By manipulating such a grob property, the typographical appearance of
5801 the affected graphical objects can be accommodated for a specific
5802 notation flavor without the need for introducing any new notational
5803 concept.
5804
5805 In addition to the standard articulation signs described in section
5806 @ref{Articulations}, specific articulation signs for ancient notation
5807 are provided.
5808
5809 @itemize @bullet
5810 @item
5811 @ref{Ancient articulations}
5812 @end itemize
5813
5814 Other aspects of ancient notation can not that easily be expressed
5815 in terms of just changing a style property of a graphical object or
5816 adding articulation signs.  Some notational concepts are introduced
5817 specifically for ancient notation,
5818
5819 @itemize @bullet
5820 @item
5821 @ref{Custodes},
5822 @item
5823 @ref{Divisiones},
5824 @item
5825 @ref{Ligatures}.
5826 @end itemize
5827
5828 If this all is too much of documentation for you, and you just want to
5829 dive into typesetting without worrying too much about the details on
5830 how to customize a context, you may have a look at the predefined
5831 contexts.  Use them to set up predefined style-specific voice and
5832 staff contexts, and directly go ahead with the note entry,
5833
5834 @itemize @bullet
5835 @item
5836 @ref{Gregorian Chant contexts},
5837 @item
5838 @ref{Mensural contexts}.
5839 @end itemize
5840
5841 There is limited support for figured bass notation which came
5842 up during the baroque period.
5843
5844 @itemize @bullet
5845 @item
5846 @ref{Figured bass}
5847 @end itemize
5848
5849 Here are all suptopics at a glance:
5850
5851 @menu
5852 * Ancient note heads::
5853 * Ancient accidentals::
5854 * Ancient rests::
5855 * Ancient clefs::
5856 * Ancient flags::
5857 * Ancient time signatures::
5858 * Ancient articulations::
5859 * Custodes::
5860 * Divisiones::
5861 * Ligatures::
5862 * Gregorian Chant contexts::
5863 * Mensural contexts::
5864 * Figured bass::
5865 @end menu
5866
5867
5868 @node Ancient note heads
5869 @subsection Ancient note heads
5870
5871 @cindex note heads
5872
5873
5874 For ancient notation, a note head style other than the @code{default}
5875 style may be chosen.  This is accomplished by setting the @code{style}
5876 property of the @internalsref{NoteHead} object to @code{baroque},
5877 @code{neomensural} or @code{mensural}.  The @code{baroque} style
5878 differs from the @code{default} style only in using a square shape
5879 for @code{\breve} note heads.  The @code{neomensural} style differs from
5880 the @code{baroque} style in that it uses rhomboidal heads for whole notes
5881 and all smaller durations.  Stems are centered on the note heads.
5882 This style is particularly useful when transcribing mensural music,
5883 e.g., for the incipit.  The @code{mensural} style finally produces note
5884 heads that mimic the look of note heads in historic printings of the
5885 16th century.
5886
5887 The following example demonstrates the @code{neomensural} style
5888
5889 @lilypond[quote,fragment,raggedright,verbatim]
5890 \set Score.skipBars = ##t
5891 \override NoteHead #'style = #'neomensural
5892 a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
5893 @end lilypond
5894
5895 When typesetting a piece in Gregorian Chant notation, the
5896 @internalsref{Gregorian_ligature_engraver} will automatically select
5897 the proper note heads, so there is no need to explicitly set the
5898 note head style.  Still, the note head style can be set, e.g., to
5899 @code{vaticana_punctum} to produce punctum neumes.  Similarly, a
5900 @internalsref{Mensural_ligature_engraver} is used to automatically
5901 assemble mensural ligatures.  See @ref{Ligatures} for how ligature
5902 engravers work.
5903
5904 @seealso
5905
5906 Examples: @inputfileref{input/@/regression,note@/-head@/-style@/.ly} gives an
5907 overview over all available note head styles.
5908
5909
5910 @node Ancient accidentals
5911 @subsection Ancient accidentals
5912
5913 @cindex accidentals
5914
5915
5916 Use the @code{style} property of grob @internalsref{Accidental} to
5917 select ancient accidentals.   Supported styles are
5918 @code{mensural}, @code{vaticana}, @code{hufnagel}, and @code{medicaea}.
5919
5920 @lilypond[quote,raggedright,staffsize=26]
5921 \score {
5922 {
5923   \fatText
5924   s^\markup {
5925     \column <
5926       "vaticana"
5927       { " " \musicglyph #"accidentals-vaticana-1"
5928       " " \musicglyph #"accidentals-vaticana0" }
5929     >
5930     \column <
5931       "medicaea"
5932       { " " \musicglyph #"accidentals-medicaea-1" }
5933     >
5934     \column <
5935       "hufnagel"
5936       { " " \musicglyph #"accidentals-hufnagel-1" }
5937     >
5938     \column <
5939       "mensural"
5940       { " " \musicglyph #"accidentals-mensural-1"
5941       " " \musicglyph #"accidentals-mensural1" }
5942     >
5943   }
5944 }
5945 \layout {
5946   interscoreline = 1
5947   \context { \Score \remove "Bar_number_engraver" }
5948   \context { \Staff
5949       \remove "Clef_engraver"
5950       \remove "Key_engraver"
5951       \remove "Time_signature_engraver"
5952       \remove "Staff_symbol_engraver"
5953       minimumVerticalExtent = ##f
5954     }
5955   }
5956 }
5957 @end lilypond
5958
5959 As shown, not all accidentals are supported by each style.  When
5960 trying to access an unsupported accidental, LilyPond will switch to a
5961 different style, as demonstrated in
5962 @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
5963
5964 Similarly to local accidentals, the style of the key signature can be
5965 controlled by the @code{style} property of the
5966 @internalsref{KeySignature} grob.
5967
5968 @seealso
5969
5970 In this manual: @ref{Pitches}, @ref{Chromatic alterations} and
5971 @ref{Accidentals} give a general introduction of the use of
5972 accidentals.  @ref{Key signature} gives a general introduction of
5973 the use of key signatures.
5974
5975 Program reference: @internalsref{KeySignature}.
5976
5977 Examples: @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
5978
5979 @node Ancient rests
5980 @subsection Ancient rests
5981
5982 @cindex rests
5983
5984
5985 Use the @code{style} property of grob @internalsref{Rest} to select
5986 ancient accidentals.   Supported styles are @code{classical},
5987 @code{neomensural}, and @code{mensural}.  @code{classical} differs
5988 from the @code{default} style only in that the quarter rest looks like
5989 a horizontally mirrored 8th rest.  The @code{neomensural} style suits
5990 well for, e.g., the incipit of a transcribed mensural piece of music.
5991 The @code{mensural} style finally mimics the appearance of rests as
5992 in historic prints of the 16th century.
5993
5994 The following example demonstrates the @code{neomensural} style
5995
5996 @lilypond[quote,fragment,raggedright,verbatim]
5997 \set Score.skipBars = ##t
5998 \override Rest #'style = #'neomensural
5999 r\longa r\breve r1 r2 r4 r8 r16
6000 @end lilypond
6001
6002 There are no 32th and 64th rests specifically for the mensural or
6003 neo-mensural style.  Instead, the rests from the default style will be
6004 taken.  See @inputfileref{input/@/test,rests@/.ly} for a chart of all
6005 rests.
6006
6007 There are no rests in Gregorian Chant notation; instead, it uses
6008 @ref{Divisiones}.
6009
6010 @seealso
6011
6012 In this manual: @ref{Rests} gives a general introduction into the use of rests.
6013
6014
6015 @node Ancient clefs
6016 @subsection Ancient clefs
6017
6018 @cindex clefs
6019
6020
6021 LilyPond supports a variety of clefs, many of them ancient.
6022
6023 The following table shows all ancient clefs that are supported via the
6024 @code{\clef} command.  Some of the clefs use the same glyph, but
6025 differ only with respect to the line they are printed on.  In such
6026 cases, a trailing number in the name is used to enumerate these clefs.
6027 Still, you can manually force a clef glyph to be typeset on an
6028 arbitrary line, as described in @ref{Clef}.  The note printed to the
6029 right side of each clef in the example column denotes the @code{c'}
6030 with respect to that clef.
6031
6032 @multitable @columnfractions .4 .4 .2
6033 @item
6034 @b{Description}
6035 @tab
6036 @b{Supported Clefs}
6037 @tab
6038 @b{Example}
6039
6040 @item
6041 modern style mensural C clef
6042 @tab
6043 @code{neomensural-c1}, @code{neomensural-c2},@*
6044 @code{neomensural-c3}, @code{neomensural-c4}
6045 @tab
6046 @lilypond[fragment,relative=1,notime]
6047   \clef "neomensural-c2" c
6048 @end lilypond
6049
6050 @item
6051 petrucci style mensural C clefs, for use on different staff lines
6052 (the examples show the 2nd staff line C clef)
6053 @tab
6054 @code{petrucci-c1}, @code{petrucci-c2},@*
6055 @code{petrucci-c3}, @code{petrucci-c4},@*
6056 @code{petrucci-c5}
6057 @tab
6058 @lilypond[fragment,relative=1,notime]
6059   \clef "petrucci-c2" c
6060 @end lilypond
6061
6062 @item
6063 petrucci style mensural F clef
6064 @tab
6065 @code{petrucci-f}
6066 @tab
6067 @lilypond[fragment,relative=1,notime]
6068   \clef "petrucci-f" c
6069 @end lilypond
6070
6071 @item
6072 petrucci style mensural G clef
6073 @tab
6074 @code{petrucci-g}
6075 @tab
6076 @lilypond[fragment,relative=1,notime]
6077   \clef "petrucci-g" c
6078 @end lilypond
6079
6080 @item
6081 historic style mensural C clef
6082 @tab
6083 @code{mensural-c1}, @code{mensural-c2},@*
6084 @code{mensural-c3}, @code{mensural-c4}
6085 @tab
6086 @lilypond[fragment,relative=1,notime]
6087   \clef "mensural-c2" c
6088 @end lilypond
6089
6090 @item
6091 historic style mensural F clef
6092 @tab
6093 @code{mensural-f}
6094 @tab
6095 @lilypond[fragment,relative=1,notime]
6096   \clef "mensural-f" c
6097 @end lilypond
6098
6099 @item
6100 historic style mensural G clef
6101 @tab
6102 @code{mensural-g}
6103 @tab
6104 @lilypond[fragment,relative=1,notime]
6105   \clef "mensural-g" c
6106 @end lilypond
6107
6108 @item
6109 Editio Vaticana style do clef
6110 @tab
6111 @code{vaticana-do1}, @code{vaticana-do2},@*
6112 @code{vaticana-do3}
6113 @tab
6114 @lilypond[fragment,relative=1,notime]
6115   \override Staff.StaffSymbol #'line-count = #4
6116   \clef "vaticana-do2" c
6117 @end lilypond
6118
6119 @item
6120 Editio Vaticana style fa clef
6121 @tab
6122 @code{vaticana-fa1}, @code{vaticana-fa2}
6123 @tab
6124 @lilypond[fragment,relative=1,notime]
6125   \override Staff.StaffSymbol #'line-count = #4
6126   \clef "vaticana-fa2" c
6127 @end lilypond
6128
6129 @item
6130 Editio Medicaea style do clef
6131 @tab
6132 @code{medicaea-do1}, @code{medicaea-do2},@*
6133 @code{medicaea-do3}
6134 @tab
6135 @lilypond[fragment,relative=1,notime]
6136   \override Staff.StaffSymbol #'line-count = #4
6137   \clef "medicaea-do2" c
6138 @end lilypond
6139
6140 @item
6141 Editio Medicaea style fa clef
6142 @tab
6143 @code{medicaea-fa1}, @code{medicaea-fa2}
6144 @tab
6145 @lilypond[fragment,relative=1,notime]
6146   \override Staff.StaffSymbol #'line-count = #4
6147   \clef "medicaea-fa2" c
6148 @end lilypond
6149
6150 @item
6151 historic style hufnagel do clef
6152 @tab
6153 @code{hufnagel-do1}, @code{hufnagel-do2},@*
6154 @code{hufnagel-do3}
6155 @tab
6156 @lilypond[fragment,relative=1,notime]
6157   \override Staff.StaffSymbol #'line-count = #4
6158   \clef "hufnagel-do2" c
6159 @end lilypond
6160
6161 @item
6162 historic style hufnagel fa clef
6163 @tab
6164 @code{hufnagel-fa1}, @code{hufnagel-fa2}
6165 @tab
6166 @lilypond[fragment,relative=1,notime]
6167   \override Staff.StaffSymbol #'line-count = #4
6168   \clef "hufnagel-fa2" c
6169 @end lilypond
6170
6171 @item
6172 historic style hufnagel combined do/fa clef
6173 @tab
6174 @code{hufnagel-do-fa}
6175 @tab
6176 @lilypond[fragment,relative=1,notime]
6177   \clef "hufnagel-do-fa" c
6178 @end lilypond
6179 @end multitable
6180
6181
6182
6183 @emph{Modern style} means ``as is typeset in contemporary editions of
6184 transcribed mensural music''.
6185
6186 @emph{Petrucci style} means ``inspired by printings published by the
6187 famous engraver Petrucci (1466-1539)''.
6188
6189 @emph{Historic style} means ``as was typeset or written in historic
6190 editions (other than those of Petrucci)''.
6191
6192 @emph{Editio XXX style} means ``as is/was printed in Editio XXX''.
6193
6194 Petrucci used C clefs with differently balanced left-side vertical
6195 beams, depending on which staff line it is printed.
6196
6197 @seealso
6198
6199 In this manual: see @ref{Clef}.
6200
6201 @refbugs
6202
6203 The mensural g clef is mapped to the Petrucci g clef.
6204
6205
6206
6207 @node Ancient flags
6208 @subsection Ancient flags
6209
6210 @cindex flags
6211
6212
6213 Use the @code{flag-style} property of grob @internalsref{Stem} to
6214 select ancient flags.  Besides the @code{default} flag style,
6215 only the @code{mensural} style is supported
6216
6217 @lilypond[quote,fragment,raggedright,verbatim]
6218 \override Stem #'flag-style = #'mensural
6219 \override Stem #'thickness = #1.0
6220 \override NoteHead #'style = #'mensural
6221 \autoBeamOff
6222 c'8 d'8 e'8 f'8 c'16 d'16 e'16 f'16 c'32 d'32 e'32 f'32 s8
6223 c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
6224 @end lilypond
6225
6226 Note that the innermost flare of each mensural flag always is
6227 vertically aligned with a staff line.
6228
6229 There is no particular flag style for neo-mensural notation.  Hence,
6230 when typesetting the incipit of a transcribed piece of mensural
6231 music, the default flag style should be used.  There are no flags in
6232 Gregorian Chant notation.
6233
6234 @refbugs
6235
6236 The attachment of ancient flags to stems is slightly off due to a
6237 change in early 2.3.x.
6238
6239 Vertically aligning each flag with a staff line assumes that stems
6240 always end either exactly on or exactly in the middle between two
6241 staff lines.  This may not always be true when using advanced layout
6242 features of classical notation (which however are typically out of
6243 scope for mensural notation).
6244
6245 @node Ancient time signatures
6246 @subsection Ancient time signatures
6247
6248 @cindex time signatures
6249
6250
6251 There is limited support for mensural time signatures.   The
6252 glyphs are hard-wired to particular time fractions.  In other words,
6253 to get a particular mensural signature glyph with the @code{\time n/m}
6254 command, @code{n} and @code{m} have to be chosen according to the
6255 following table
6256
6257 @lilypond[quote,raggedright]
6258 \layout {
6259   indent = 0.0
6260   \context { \Staff
6261     \remove Staff_symbol_engraver
6262     \remove Clef_engraver
6263     \remove Time_signature_engraver
6264   }
6265 } {
6266   \set Score.timing = ##f
6267   \set Score.barAlways = ##t
6268   s_\markup { "$\\backslash$time 4/4" }
6269   ^\markup { "       " \musicglyph #"timesig-neomensural4/4" }
6270   s
6271   s_\markup { "$\\backslash$time 2/2" }
6272   ^\markup { "       " \musicglyph #"timesig-neomensural2/2" }
6273   s
6274   s_\markup { "$\\backslash$time 6/4" }
6275   ^\markup { "       " \musicglyph #"timesig-neomensural6/4" }
6276   s
6277   s_\markup { "$\\backslash$time 6/8" }
6278   ^\markup { "       " \musicglyph #"timesig-neomensural6/8" }
6279   \break
6280   s_\markup { "$\\backslash$time 3/2" }
6281   ^\markup { "       " \musicglyph #"timesig-neomensural3/2" }
6282   s
6283   s_\markup { "$\\backslash$time 3/4" }
6284   ^\markup { "       " \musicglyph #"timesig-neomensural3/4" }
6285   s
6286   s_\markup { "$\\backslash$time 9/4" }
6287   ^\markup { "       " \musicglyph #"timesig-neomensural9/4" }
6288   s
6289   s_\markup { "$\\backslash$time 9/8" }
6290   ^\markup { "       " \musicglyph #"timesig-neomensural9/8" }
6291   \break
6292   s_\markup { "$\\backslash$time 4/8" }
6293   ^\markup { "       " \musicglyph #"timesig-neomensural4/8" }
6294   s
6295   s_\markup { "$\\backslash$time 2/4" }
6296   ^\markup { "       " \musicglyph #"timesig-neomensural2/4" }
6297 }
6298 @end lilypond
6299
6300 Use the @code{style} property of grob @internalsref{TimeSignature} to
6301 select ancient time signatures.  Supported styles are
6302 @code{neomensural} and @code{mensural}.  The above table uses the
6303 @code{neomensural} style.  This style is appropriate for the
6304 incipit of transcriptions of mensural pieces.  The @code{mensural}
6305 style mimics the look of historical printings of the 16th century.
6306
6307 The following examples show the differences in style,
6308
6309 @lilypond[raggedright,fragment,relative=1,quote]
6310 {
6311   \fatText
6312   \time 2/2
6313   c1^\markup { \hspace #-2.0 \typewriter default }
6314
6315   \override Staff.TimeSignature #'style = #'numbered
6316   \time 2/2
6317   c1^\markup { \hspace #-2.0 \typewriter numbered }
6318
6319   \override Staff.TimeSignature #'style = #'mensural
6320   \time 2/2
6321   c1^\markup { \hspace #-2.0 \typewriter mensural }
6322
6323   \override Staff.TimeSignature #'style = #'neomensural
6324   \time 2/2
6325   c1^\markup { \hspace #-2.0 \typewriter neomensural }
6326   \override Staff.TimeSignature #'style = #'single-digit
6327   \time 2/2
6328   c1^\markup { \hspace #-2.0 \typewriter single-digit }
6329 }
6330 @end lilypond
6331
6332 @seealso
6333
6334 This manual: @ref{Time signature} gives a general introduction to
6335 the use of time signatures.
6336
6337 @refbugs
6338
6339 Ratios of note durations do not change with the time signature.  For
6340 example, the ratio of 1 brevis = 3 semibrevis (tempus perfectum) must
6341 be made by hand, by setting
6342
6343 @example
6344 breveTP = #(ly:make-duration -1 0 3 2)
6345 @dots{}
6346 @{ c\breveTP f1 @}
6347 @end example
6348
6349 @noindent
6350 This sets @code{breveTP} to 3/2 times 2 = 3 times a whole note.
6351
6352 The @code{old6/8alt} symbol (an alternate symbol for 6/8) is not
6353 addressable with @code{\time}.  Use a @code{\markup} instead
6354
6355 @node Ancient articulations
6356 @subsection Ancient articulations
6357
6358 @cindex articulations
6359
6360 In addition to the standard articulation signs described in section
6361 @ref{Articulations}, articulation signs for ancient notation are
6362 provided.  These are specifically designed for use with notation in
6363 Editio Vaticana style.
6364
6365 @lilypond[quote,raggedright,verbatim]
6366 \include "gregorian-init.ly"
6367 \score {
6368   \context VaticanaVoice {
6369     \override TextScript #'font-family = #'typewriter
6370     \override TextScript #'font-shape = #'upright
6371     \override Script #'padding = #-0.1
6372     a4\ictus_"ictus" s1
6373     a4\circulus_"circulus" s1
6374     a4\semicirculus_"semicirculus" s1 s
6375     a4\accentus_"accentus" s1
6376     \[ a4_"episem" \episemInitium \pes b \flexa a \episemFinis \]
6377   }
6378 }
6379 @end lilypond
6380
6381 @refbugs
6382
6383 Some articulations are vertically placed too closely to the
6384 correpsonding note heads.
6385
6386 @node Custodes
6387 @subsection Custodes
6388
6389 @cindex custos
6390 @cindex custodes
6391
6392 A @emph{custos} (plural: @emph{custodes}; Latin word for `guard') is a
6393 symbol that appears at the end of a staff.  It anticipates the pitch
6394 of the first note(s) of the following line thus helping the performer
6395 to manage line breaks during performance.
6396
6397 Custodes were frequently used in music notation until the 17th
6398 century.  Nowadays, they have survived only in a few particular forms
6399 of musical notation such as contemporary editions of Gregorian chant
6400 like the @emph{editio vaticana}.  There are different custos glyphs
6401 used in different flavors of notational style.
6402
6403 For typesetting custodes, just put a @internalsref{Custos_engraver} into the
6404 @internalsref{Staff} context when declaring the @code{\layout} block,
6405 as shown in the following example
6406
6407 @example
6408 \layout @{
6409   \context @{
6410     \Staff
6411     \consists Custos_engraver
6412     Custos \override #'style = #'mensural
6413   @}
6414 @}
6415 @end example
6416
6417 The result looks like this
6418
6419 @lilypond[quote,raggedright]
6420 \score {
6421 {
6422   a'1
6423   \override Staff.Custos #'style = #'mensural
6424   \break
6425   g'
6426 }
6427 \layout {
6428   \context { \Staff \consists Custos_engraver }
6429   }
6430 }
6431 @end lilypond
6432
6433 The custos glyph is selected by the @code{style} property.  The styles
6434 supported are @code{vaticana}, @code{medicaea}, @code{hufnagel}, and
6435 @code{mensural}.  They are demonstrated in the following fragment
6436
6437 @lilypond[quote,raggedright,fragment]
6438 \new Lyrics \lyricmode {
6439   \markup { \column <
6440     \typewriter "vaticana"
6441     { " " \musicglyph #"custodes-vaticana-u0" }
6442   > }
6443   \markup { \column <
6444     \typewriter "medicaea"
6445     { " " \musicglyph #"custodes-medicaea-u0" }
6446   >}
6447   \markup { \column <
6448     \typewriter "hufnagel"
6449     { " " \musicglyph #"custodes-hufnagel-u0" }
6450   >}
6451   \markup { \column <
6452     \typewriter "mensural"
6453     { " " \musicglyph #"custodes-mensural-u0" }
6454   >}
6455 }
6456 @end lilypond
6457
6458 @seealso
6459
6460 Program reference: @internalsref{Custos}.
6461
6462 Examples: @inputfileref{input/@/regression,custos@/.ly}.
6463
6464
6465 @node Divisiones
6466 @subsection Divisiones
6467
6468 @cindex divisio
6469 @cindex divisiones
6470 @cindex finalis
6471
6472 A @emph{divisio} (plural: @emph{divisiones}; Latin word for
6473 `division') is a staff context symbol that is used to structure
6474 Gregorian music into phrases and sections.  The musical meaning of
6475 @emph{divisio minima}, @emph{divisio maior}, and @emph{divisio maxima}
6476 can be characterized as short, medium, and long pause, somewhat like
6477 the breathmarks from @ref{Breath marks}.  The @emph{finalis} sign not
6478 only marks the end of a chant, but is also frequently used within a
6479 single antiphonal/responsorial chant to mark the end of each section.
6480
6481
6482 To use divisiones, include the file @file{gregorian@/-init@/.ly}.  It
6483 contains definitions that you can apply by just inserting
6484 @code{\divisioMinima}, @code{\divisioMaior}, @code{\divisioMaxima},
6485 and @code{\finalis} at proper places in the input.  Some editions use
6486 @emph{virgula} or @emph{caesura} instead of divisio minima.
6487 Therefore, @file{gregorian@/-init@/.ly} also defines @code{\virgula} and
6488 @code{\caesura}
6489
6490 @lilypondfile[quote,raggedright]{divisiones.ly}
6491
6492 @refcommands
6493
6494 @cindex @code{\virgula}
6495 @code{\virgula},
6496 @cindex @code{\caesura}
6497 @code{\caesura},
6498 @cindex @code{\divisioMinima}
6499 @code{\divisioMinima},
6500 @cindex @code{\divisioMaior}
6501 @code{\divisioMaior},
6502 @cindex @code{\divisioMaxima}
6503 @code{\divisioMaxima},
6504 @cindex @code{\finalis}
6505 @code{\finalis}.
6506
6507 @seealso
6508
6509 In this manual: @ref{Breath marks}.
6510
6511 Program reference: @internalsref{BreathingSign}, @internalsref{BreathingSignEvent}.
6512
6513 Examples: @inputfileref{input/@/test,divisiones@/.ly}.
6514
6515 @node Ligatures
6516 @subsection Ligatures
6517
6518 @cindex Ligatures
6519
6520 @c TODO: Should double check if I recalled things correctly when I wrote
6521 @c down the following paragraph by heart.
6522
6523 A ligature is a graphical symbol that represents at least two distinct
6524 notes.  Ligatures originally appeared in the manuscripts of Gregorian
6525 chant notation to denote ascending or descending sequences of notes.
6526
6527 Ligatures are entered by enclosing them in @code{\[} and @code{\]}.
6528 Some ligature styles may need additional input syntax specific for
6529 this particular type of ligature.  By default, the
6530 @internalsref{LigatureBracket} engraver just puts a square bracket
6531 above the ligature
6532
6533 @lilypond[quote,raggedright,verbatim]
6534 \transpose c c' {
6535   \[ g c a f d' \]
6536   a g f
6537   \[ e f a g \]
6538 }
6539 @end lilypond
6540
6541 To select a specific style of ligatures, a proper ligature engraver
6542 has to be added to the @internalsref{Voice} context, as explained in
6543 the following subsections.   Only white mensural ligatures
6544 are supported with certain limitations.
6545
6546
6547
6548 @refbugs
6549
6550 Ligatures need special spacing that has not yet been implemented.  As
6551 a result, there is too much space between ligatures most of the time,
6552 and line breaking often is unsatisfactory.  Also, lyrics do not
6553 correctly align with ligatures.
6554
6555 Accidentals must not be printed within a ligature, but instead need to
6556 be collected and printed in front of it.
6557
6558 Augmentum dots within ligatures are not handled correctly.
6559
6560
6561 @menu
6562 * White mensural ligatures::
6563 * Gregorian square neumes ligatures::
6564 @end menu
6565
6566 @node White mensural ligatures
6567 @subsubsection White mensural ligatures
6568
6569 @cindex Mensural ligatures
6570 @cindex White mensural ligatures
6571
6572 There is limited support for white mensural ligatures.
6573
6574 To engrave white mensural ligatures, in the layout block put the
6575 @internalsref{Mensural_ligature_engraver} into the
6576 @internalsref{Voice} context, and remove the
6577 @internalsref{Ligature_bracket_engraver}, like this
6578
6579 @example
6580 \layout @{
6581   \context @{
6582     \Voice
6583     \remove Ligature_bracket_engraver
6584     \consists Mensural_ligature_engraver
6585   @}
6586 @}
6587 @end example
6588
6589 There is no additional input language to describe the shape of a
6590 white mensural ligature.  The shape is rather determined solely from
6591 the pitch and duration of the enclosed notes.  While this approach may
6592 take a new user a while to get accustomed to, it has the great advantage
6593 that the full musical information of the ligature is known internally.
6594 This is not only required for correct MIDI output, but also allows for
6595 automatic transcription of the ligatures.
6596
6597 For example,
6598
6599 @example
6600 \set Score.timing = ##f
6601 \set Score.defaultBarType = "empty"
6602 \override NoteHead #'style = #'neomensural
6603 \override Staff.TimeSignature #'style = #'neomensural
6604 \clef "petrucci-g"
6605 \[ g\longa c\breve a\breve f\breve d'\longa \]
6606 s4
6607 \[ e1 f1 a\breve g\longa \]
6608 @end example
6609 @lilypond[quote,raggedright]
6610 \score {
6611   \transpose c c' {
6612     \set Score.timing = ##f
6613     \set Score.defaultBarType = "empty"
6614     \override NoteHead #'style = #'neomensural
6615     \override Staff.TimeSignature #'style = #'neomensural
6616     \clef "petrucci-g"
6617     \[ g\longa c\breve a\breve f\breve d'\longa \]
6618     s4
6619     \[ e1 f1 a\breve g\longa \]
6620   }
6621   \layout {
6622     \context {
6623       \Voice
6624       \remove Ligature_bracket_engraver
6625       \consists Mensural_ligature_engraver
6626     }
6627   }
6628 }
6629 @end lilypond
6630
6631 Without replacing @internalsref{Ligature_bracket_engraver} with
6632 @internalsref{Mensural_ligature_engraver}, the same music transcribes
6633 to the following
6634
6635 @lilypond[quote,raggedright]
6636 \transpose c c' {
6637   \set Score.timing = ##f
6638   \set Score.defaultBarType = "empty"
6639   \override NoteHead #'style = #'neomensural
6640   \override Staff.TimeSignature #'style = #'neomensural
6641   \clef "petrucci-g"
6642   \[ g\longa c\breve a\breve f\breve d'\longa \]
6643   s4
6644   \[ e1 f1 a\breve g\longa \]
6645 }
6646 @end lilypond
6647
6648 @refbugs
6649
6650 The implementation is experimental.  It may output strange warnings,
6651 incorrect results, and might even crash on more complex ligatures.
6652
6653 @node Gregorian square neumes ligatures
6654 @subsubsection Gregorian square neumes ligatures
6655
6656 @cindex Square neumes ligatures
6657 @cindex Gregorian square neumes ligatures
6658
6659 There is limited support for Gregorian square neumes notation
6660 (following the style of the Editio Vaticana).  Core ligatures can
6661 already be typeset, but essential issues for serious typesetting are
6662 still lacking, such as (among others) horizontal alignment of multiple
6663 ligatures, lyrics alignment and proper handling of accidentals.
6664
6665
6666 The following table contains the extended neumes table of the 2nd
6667 volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
6668 1983 by the monks of Solesmes.
6669
6670 @multitable @columnfractions .4 .2 .2 .2
6671
6672 @item
6673 @b{Neuma aut@*
6674 Neumarum Elementa}
6675 @tab
6676 @b{Figurae@*
6677 Rectae}
6678 @tab
6679 @b{Figurae@*
6680 Liquescentes@*
6681 Auctae}
6682 @tab
6683 @b{Figurae@*
6684 Liquescentes@*
6685 Deminutae}
6686
6687 @c TODO: \layout block is identical in all of the below examples.
6688 @c Therefore, it should somehow be included rather than duplicated all
6689 @c the time. --jr
6690
6691 @c why not make identifiers in ly/engraver-init.ly? --hwn
6692
6693 @c Because it's just used to typeset plain notes without
6694 @c a staff for demonstration purposes rather than something
6695 @c special of Gregorian chant notation. --jr
6696
6697 @item
6698 @code{1. Punctum}
6699 @tab
6700 @lilypond[staffsize=26,linewidth=1.5\cm]
6701 \include "gregorian-init.ly"
6702 \score {
6703   \transpose c c' {
6704     % Punctum
6705     \[ b \]
6706     \noBreak s^\markup {"a"} \noBreak
6707
6708     % Punctum Inclinatum
6709     \[ \inclinatum b \]
6710     \noBreak s^\markup {"b"}
6711   }
6712 \layout { \neumeDemoLayout }}
6713 @end lilypond
6714 @tab
6715 @lilypond[staffsize=26,linewidth=2.5\cm]
6716 \include "gregorian-init.ly"
6717 \score {
6718   \transpose c c' {
6719     % Punctum Auctum Ascendens
6720     \[ \auctum \ascendens b \]
6721     \noBreak s^\markup {"c"} \noBreak
6722
6723     % Punctum Auctum Descendens
6724     \[ \auctum \descendens b \]
6725     \noBreak s^\markup {"d"} \noBreak
6726
6727     % Punctum Inclinatum Auctum
6728     \[ \inclinatum \auctum b \]
6729     \noBreak s^\markup {"e"}
6730   }
6731 \layout { \neumeDemoLayout }}
6732 @end lilypond
6733 @tab
6734 @lilypond[staffsize=26,linewidth=1.0\cm]
6735 \include "gregorian-init.ly"
6736 \score {
6737   \transpose c c' {
6738     % Punctum Inclinatum Parvum
6739     \[ \inclinatum \deminutum b \]
6740     \noBreak s^\markup {"f"}
6741   }
6742 \layout { \neumeDemoLayout }}
6743 @end lilypond
6744
6745 @item
6746 @code{2. Virga}
6747 @tab
6748 @lilypond[staffsize=26,linewidth=1.0\cm]
6749 \include "gregorian-init.ly"
6750 \score {
6751   \transpose c c' {
6752     % Virga
6753     \[ \virga b \]
6754     \noBreak s^\markup {"g"}
6755   }
6756 \layout { \neumeDemoLayout }}
6757 @end lilypond
6758 @tab
6759 @tab
6760
6761 @item
6762 @code{3. Apostropha vel Stropha}
6763 @tab
6764 @lilypond[staffsize=26,linewidth=1.0\cm]
6765 \include "gregorian-init.ly"
6766 \score {
6767   \transpose c c' {
6768     % Stropha
6769     \[ \stropha b \]
6770     \noBreak s^\markup {"h"}
6771   }
6772 \layout { \neumeDemoLayout }}
6773 @end lilypond
6774 @tab
6775 @lilypond[staffsize=26,linewidth=1.0\cm]
6776 \include "gregorian-init.ly"
6777 \score {
6778   \transpose c c' {
6779     % Stropha Aucta
6780     \[ \stropha \auctum b \]
6781     \noBreak s^\markup {"i"}
6782   }
6783 \layout { \neumeDemoLayout }}
6784 @end lilypond
6785 @tab
6786
6787 @item
6788 @code{4. Oriscus}
6789 @tab
6790 @lilypond[staffsize=26,linewidth=1.0\cm]
6791 \include "gregorian-init.ly"
6792 \score {
6793   \transpose c c' {
6794     % Oriscus
6795     \[ \oriscus b \]
6796     \noBreak s^\markup {"j"}
6797   }
6798 \layout { \neumeDemoLayout }}
6799 @end lilypond
6800 @tab
6801 @tab
6802
6803 @item
6804 @code{5. Clivis vel Flexa}
6805 @tab
6806 @lilypond[staffsize=26,linewidth=1.0\cm]
6807 \include "gregorian-init.ly"
6808 \score {
6809   \transpose c c' {
6810     % Clivis vel Flexa
6811     \[ b \flexa g \]
6812     s^\markup {"k"}
6813   }
6814 \layout { \neumeDemoLayout }}
6815 @end lilypond
6816 @tab
6817 @lilypond[staffsize=26,linewidth=2.0\cm]
6818 \include "gregorian-init.ly"
6819 \score {
6820   \transpose c c' {
6821     % Clivis Aucta Descendens
6822     \[ b \flexa \auctum \descendens g \]
6823     \noBreak s^\markup {"l"} \noBreak
6824
6825     % Clivis Aucta Ascendens
6826     \[ b \flexa \auctum \ascendens g \]
6827     \noBreak s^\markup {"m"}
6828   }
6829 \layout { \neumeDemoLayout }}
6830 @end lilypond
6831 @tab
6832 @lilypond[staffsize=26,linewidth=1.0\cm]
6833 \include "gregorian-init.ly"
6834 \score {
6835   \transpose c c' {
6836     % Cephalicus
6837     \[ b \flexa \deminutum g \]
6838     s^\markup {"n"}
6839   }
6840 \layout { \neumeDemoLayout }}
6841 @end lilypond
6842
6843 @item
6844 @code{6. Podatus vel Pes}
6845 @tab
6846 @lilypond[staffsize=26,linewidth=1.0\cm]
6847 \include "gregorian-init.ly"
6848 \score {
6849   \transpose c c' {
6850     % Podatus vel Pes
6851     \[ g \pes b \]
6852     s^\markup {"o"}
6853   }
6854 \layout { \neumeDemoLayout }}
6855 @end lilypond
6856 @tab
6857 @lilypond[staffsize=26,linewidth=2.0\cm]
6858 \include "gregorian-init.ly"
6859 \score {
6860   \transpose c c' {
6861     % Pes Auctus Descendens
6862     \[ g \pes \auctum \descendens b \]
6863     \noBreak s^\markup {"p"} \noBreak
6864
6865     % Pes Auctus Ascendens
6866     \[ g \pes \auctum \ascendens b \]
6867     \noBreak s^\markup {"q"}
6868   }
6869 \layout { \neumeDemoLayout }}
6870 @end lilypond
6871 @tab
6872 @lilypond[staffsize=26,linewidth=1.0\cm]
6873 \include "gregorian-init.ly"
6874 \score {
6875   \transpose c c' {
6876     % Epiphonus
6877     \[ g \pes \deminutum b \]
6878     s^\markup {"r"}
6879   }
6880 \layout { \neumeDemoLayout }}
6881 @end lilypond
6882
6883 @item
6884 @code{7. Pes Quassus}
6885 @tab
6886 @lilypond[staffsize=26,linewidth=1.0\cm]
6887 \include "gregorian-init.ly"
6888 \score {
6889   \transpose c c' {
6890     % Pes Quassus
6891     \[ \oriscus g \pes \virga b \]
6892     s^\markup {"s"}
6893   }
6894 \layout { \neumeDemoLayout }}
6895 @end lilypond
6896 @tab
6897 @lilypond[staffsize=26,linewidth=1.0\cm]
6898 \include "gregorian-init.ly"
6899 \score {
6900   \transpose c c' {
6901     % Pes Quassus Auctus Descendens
6902     \[ \oriscus g \pes \auctum \descendens b \]
6903     s^\markup {"t"}
6904   }
6905 \layout { \neumeDemoLayout }}
6906 @end lilypond
6907 @tab
6908
6909 @item
6910 @code{8. Quilisma Pes}
6911 @tab
6912 @lilypond[staffsize=26,linewidth=1.0\cm]
6913 \include "gregorian-init.ly"
6914 \score {
6915   \transpose c c' {
6916     % Quilisma Pes
6917     \[ \quilisma g \pes b \]
6918     s^\markup {"u"}
6919   }
6920 \layout { \neumeDemoLayout }}
6921 @end lilypond
6922 @tab
6923 @lilypond[staffsize=26,linewidth=1.0\cm]
6924 \include "gregorian-init.ly"
6925 \score {
6926   \transpose c c' {
6927     % Quilisma Pes Auctus Descendens
6928     \[ \quilisma g \pes \auctum \descendens b \]
6929     s^\markup {"v"}
6930   }
6931 \layout { \neumeDemoLayout }}
6932 @end lilypond
6933 @tab
6934
6935 @item
6936 @code{9. Podatus Initio Debilis}
6937 @tab
6938 @lilypond[staffsize=26,linewidth=1.0\cm]
6939 \include "gregorian-init.ly"
6940 \score {
6941   \transpose c c' {
6942     % Pes Initio Debilis
6943     \[ \deminutum g \pes b \]
6944     s^\markup {"w"}
6945   }
6946 \layout { \neumeDemoLayout }}
6947 @end lilypond
6948 @tab
6949 @lilypond[staffsize=26,linewidth=1.0\cm]
6950 \include "gregorian-init.ly"
6951 \score {
6952   \transpose c c' {
6953     % Pes Auctus Descendens Initio Debilis
6954     \[ \deminutum g \pes \auctum \descendens b \]
6955     s^\markup {"x"}
6956   }
6957 \layout { \neumeDemoLayout }}
6958 @end lilypond
6959 @tab
6960
6961 @item
6962 @code{10. Torculus}
6963 @tab
6964 @lilypond[staffsize=26,linewidth=1.0\cm]
6965 \include "gregorian-init.ly"
6966 \score {
6967   \transpose c c' {
6968     % Torculus
6969     \[ a \pes b \flexa g \]
6970     s^\markup {"y"}
6971   }
6972 \layout { \neumeDemoLayout }}
6973 @end lilypond
6974 @tab
6975 @lilypond[staffsize=26,linewidth=1.0\cm]
6976 \include "gregorian-init.ly"
6977 \score {
6978   \transpose c c' {
6979     % Torculus Auctus Descendens
6980     \[ a \pes b \flexa \auctum \descendens g \]
6981     s^\markup {"z"}
6982   }
6983 \layout { \neumeDemoLayout }}
6984 @end lilypond
6985 @tab
6986 @lilypond[staffsize=26,linewidth=1.0\cm]
6987 \include "gregorian-init.ly"
6988 \score {
6989   \transpose c c' {
6990     % Torculus Deminutus
6991     \[ a \pes b \flexa \deminutum g \]
6992     s^\markup {"A"}
6993   }
6994 \layout { \neumeDemoLayout }}
6995 @end lilypond
6996
6997 @item
6998 @code{11. Torculus Initio Debilis}
6999 @tab
7000 @lilypond[staffsize=26,linewidth=1.0\cm]
7001 \include "gregorian-init.ly"
7002 \score {
7003   \transpose c c' {
7004     % Torculus Initio Debilis
7005     \[ \deminutum a \pes b \flexa g \]
7006     s^\markup {"B"}
7007   }
7008 \layout { \neumeDemoLayout }}
7009 @end lilypond
7010 @tab
7011 @lilypond[staffsize=26,linewidth=1.0\cm]
7012 \include "gregorian-init.ly"
7013 \score {
7014   \transpose c c' {
7015     % Torculus Auctus Descendens Initio Debilis
7016     \[ \deminutum a \pes b \flexa \auctum \descendens g \]
7017     s^\markup {"C"}
7018   }
7019 \layout { \neumeDemoLayout }}
7020 @end lilypond
7021 @tab
7022 @lilypond[staffsize=26,linewidth=1.0\cm]
7023 \include "gregorian-init.ly"
7024 \score {
7025   \transpose c c' {
7026     % Torculus Deminutus Initio Debilis
7027     \[ \deminutum a \pes b \flexa \deminutum g \]
7028     s^\markup {"D"}
7029   }
7030 \layout { \neumeDemoLayout }}
7031 @end lilypond
7032
7033 @item
7034 @code{12. Porrectus}
7035 @tab
7036 @lilypond[staffsize=26,linewidth=1.0\cm]
7037 \include "gregorian-init.ly"
7038 \score {
7039   \transpose c c' {
7040     % Porrectus
7041     \[ a \flexa g \pes b \]
7042     s^\markup {"E"}
7043   }
7044 \layout { \neumeDemoLayout }}
7045 @end lilypond
7046 @tab
7047 @lilypond[staffsize=26,linewidth=1.0\cm]
7048 \include "gregorian-init.ly"
7049 \score {
7050   \transpose c c' {
7051     % Porrectus Auctus Descendens
7052     \[ a \flexa g \pes \auctum \descendens b \]
7053     s^\markup {"F"}
7054   }
7055 \layout { \neumeDemoLayout }}
7056 @end lilypond
7057 @tab
7058 @lilypond[staffsize=26,linewidth=1.0\cm]
7059 \include "gregorian-init.ly"
7060 \score {
7061   \transpose c c' {
7062     % Porrectus Deminutus
7063     \[ a \flexa g \pes \deminutum b \]
7064     s^\markup {"G"}
7065   }
7066 \layout { \neumeDemoLayout }}
7067 @end lilypond
7068
7069 @item
7070 @code{13. Climacus}
7071 @tab
7072 @lilypond[staffsize=26,linewidth=1.0\cm]
7073 \include "gregorian-init.ly"
7074 \score {
7075   \transpose c c' {
7076     % Climacus
7077     \[ \virga b \inclinatum a \inclinatum g \]
7078     s^\markup {"H"}
7079   }
7080   \layout { \neumeDemoLayout }
7081 }
7082 @end lilypond
7083 @tab
7084 @lilypond[staffsize=26,linewidth=1.0\cm]
7085 \include "gregorian-init.ly"
7086 \score {
7087   \transpose c c' {
7088     % Climacus Auctus
7089     \[ \virga b \inclinatum a \inclinatum \auctum g \]
7090     s^\markup {"I"}
7091   }
7092 \layout { \neumeDemoLayout }}
7093 @end lilypond
7094 @tab
7095 @lilypond[staffsize=26,linewidth=1.0\cm]
7096 \include "gregorian-init.ly"
7097 \score {
7098   \transpose c c' {
7099     % Climacus Deminutus
7100     \[ \virga b \inclinatum a \inclinatum \deminutum g \]
7101     s^\markup {"J"}
7102   }
7103 \layout { \neumeDemoLayout }}
7104 @end lilypond
7105
7106 @item
7107 @code{14. Scandicus}
7108 @tab
7109 @lilypond[staffsize=26,linewidth=1.0\cm]
7110 \include "gregorian-init.ly"
7111 \score {
7112   \transpose c c' {
7113     % Scandicus
7114     \[ g \pes a \virga b \]
7115     s^\markup {"K"}
7116   }
7117 \layout { \neumeDemoLayout }}
7118 @end lilypond
7119 @tab
7120 @lilypond[staffsize=26,linewidth=1.0\cm]
7121 \include "gregorian-init.ly"
7122 \score {
7123   \transpose c c' {
7124     % Scandicus Auctus Descendens
7125     \[ g \pes a \pes \auctum \descendens b \]
7126     s^\markup {"L"}
7127   }
7128 \layout { \neumeDemoLayout }}
7129 @end lilypond
7130 @tab
7131 @lilypond[staffsize=26,linewidth=1.0\cm]
7132 \include "gregorian-init.ly"
7133 \score {
7134   \transpose c c' {
7135     % Scandicus Deminutus
7136     \[ g \pes a \pes \deminutum b \]
7137     s^\markup {"M"}
7138   }
7139 \layout { \neumeDemoLayout }}
7140 @end lilypond
7141
7142 @item
7143 @code{15. Salicus}
7144 @tab
7145 @lilypond[staffsize=26,linewidth=1.0\cm]
7146 \include "gregorian-init.ly"
7147 \score {
7148   \transpose c c' {
7149     % Salicus
7150     \[ g \oriscus a \pes \virga b \]
7151     s^\markup {"N"}
7152   }
7153 \layout { \neumeDemoLayout }}
7154 @end lilypond
7155 @tab
7156 @lilypond[staffsize=26,linewidth=1.0\cm]
7157 \include "gregorian-init.ly"
7158 \score {
7159   \transpose c c' {
7160     % Salicus Auctus Descendens
7161     \[ g \oriscus a \pes \auctum \descendens b \]
7162     s^\markup {"O"}
7163   }
7164 \layout { \neumeDemoLayout }}
7165 @end lilypond
7166 @tab
7167
7168 @item
7169 @code{16. Trigonus}
7170 @tab
7171 @lilypond[staffsize=26,linewidth=1.0\cm]
7172 \include "gregorian-init.ly"
7173 \score {
7174   \transpose c c' {
7175     % Trigonus
7176     \[ \stropha b \stropha b \stropha a \]
7177     s^\markup {"P"}
7178   }
7179   \layout { \neumeDemoLayout }
7180 }
7181 @end lilypond
7182 @tab
7183 @tab
7184
7185 @end multitable
7186
7187
7188 Unlike most other neumes notation systems, the input language for
7189 neumes does not reflect the typographical appearance, but is designed
7190 to focus on musical meaning.  For example, @code{\[ a \pes b
7191 \flexa g \]} produces a Torculus consisting of three Punctum heads,
7192 while @code{\[ a \flexa g \pes b \]} produces a Porrectus with a
7193 curved flexa shape and only a single Punctum head.  There is no
7194 command to explicitly typeset the curved flexa shape; the decision of
7195 when to typeset a curved flexa shape is based on the musical
7196 input.  The idea of this approach is to separate the musical aspects
7197 of the input from the notation style of the output.  This way, the
7198 same input can be reused to typeset the same music in a different
7199 style of Gregorian chant notation.
7200
7201 The following table shows the code fragments that produce the
7202 ligatures in the above neumes table.  The letter in the first column
7203 in each line of the below table indicates to which ligature in the
7204 above table it refers.  The second column gives the name of the
7205 ligature.  The third column shows the code fragment that produces this
7206 ligature, using @code{g}, @code{a}, and @code{b} as example pitches.
7207
7208 @multitable @columnfractions .02 .31 .67
7209 @item
7210 @b{#}
7211 @tab
7212 @b{Name}
7213 @tab
7214 @b{Input Language}
7215
7216 @item
7217 a
7218 @tab
7219 Punctum
7220 @tab
7221 @code{\[ b \]}
7222
7223 @item
7224 b
7225 @tab
7226 Punctum Inclinatum
7227 @tab
7228 @code{\[ \inclinatum b \]}
7229
7230 @item
7231 c
7232 @tab
7233 Punctum Auctum@*
7234 Ascendens
7235 @tab
7236 @code{\[ \auctum \ascendens b \]}
7237
7238 @item
7239 d
7240 @tab
7241 Punctum Auctum@*
7242 Descendens
7243 @tab
7244 @code{\[ \auctum \descendens b \]}
7245
7246 @item
7247 e
7248 @tab
7249 Punctum Inclinatum@*
7250 Auctum
7251 @tab
7252 @code{\[ \inclinatum \auctum b \]}
7253
7254 @item
7255 f
7256 @tab
7257 Punctum Inclinatum@*
7258 Parvum @tab
7259 @code{\[ \inclinatum \deminutum b \]}
7260
7261 @item
7262 g
7263 @tab
7264 Virga
7265 @tab
7266 @code{\[ \virga b \]}
7267
7268 @item
7269 h
7270 @tab
7271 Stropha
7272 @tab
7273 @code{\[ \stropha b \]}
7274
7275 @item
7276 i
7277 @tab
7278 Stropha Aucta
7279 @tab
7280 @code{\[ \stropha \auctum b \]}
7281
7282 @item
7283 j
7284 @tab
7285 Oriscus
7286 @tab
7287 @code{\[ \oriscus b \]}
7288
7289 @item
7290 k
7291 @tab
7292 Clivis vel Flexa
7293 @tab
7294 @code{\[ b \flexa g \]}
7295
7296 @item
7297 l
7298 @tab
7299 Clivis Aucta@*
7300 Descendens
7301 @tab
7302 @code{\[ b \flexa \auctum \descendens g \]}
7303
7304 @item
7305 m
7306 @tab
7307 Clivis Aucta@*
7308 Ascendens
7309 @tab
7310 @code{\[ b \flexa \auctum \ascendens g \]}
7311
7312 @item
7313 n
7314 @tab
7315 Cephalicus
7316 @tab
7317 @code{\[ b \flexa \deminutum g \]}
7318
7319 @item
7320 o
7321 @tab
7322 Podatus vel Pes
7323 @tab
7324 @code{\[ g \pes b \]}
7325
7326 @item
7327 p
7328 @tab
7329 Pes Auctus@*
7330 Descendens
7331 @tab
7332 @code{\[ g \pes \auctum \descendens b \]}
7333
7334 @item
7335 q
7336 @tab
7337 Pes Auctus@*
7338 Ascendens
7339 @tab
7340 @code{\[ g \pes \auctum \ascendens b \]}
7341
7342 @item
7343 r
7344 @tab
7345 Epiphonus
7346 @tab
7347 @code{\[ g \pes \deminutum b \]}
7348
7349 @item
7350 s
7351 @tab
7352 Pes Quassus
7353 @tab
7354 @code{\[ \oriscus g \pes \virga b \]}
7355
7356 @item
7357 t
7358 @tab
7359 Pes Quassus@*
7360 Auctus Descendens @tab
7361 @code{\[ \oriscus g \pes \auctum \descendens b \]}
7362
7363 @item
7364 u
7365 @tab
7366 Quilisma Pes
7367 @tab
7368 @code{\[ \quilisma g \pes b \]}
7369
7370 @item
7371 v
7372 @tab
7373 Quilisma Pes@*
7374 Auctus Descendens
7375 @tab
7376 @code{\[ \quilisma g \pes \auctum \descendens b \]}
7377
7378 @item
7379 w
7380 @tab
7381 Pes Initio Debilis
7382 @tab
7383 @code{\[ \deminutum g \pes b \]}
7384
7385 @item
7386 x
7387 @tab
7388 Pes Auctus Descendens@*
7389 Initio Debilis
7390 @tab
7391 @code{\[ \deminutum g \pes \auctum \descendens b \]}
7392
7393 @item
7394 y
7395 @tab
7396 Torculus
7397 @tab
7398 @code{\[ a \pes b \flexa g \]}
7399
7400 @item
7401 z
7402 @tab
7403 Torculus Auctus@*
7404 Descendens
7405 @tab
7406 @code{\[ a \pes b \flexa \auctum \descendens g \]}
7407
7408 @item
7409 A
7410 @tab
7411 Torculus Deminutus
7412 @tab
7413 @code{\[ a \pes b \flexa \deminutum g \]}
7414
7415 @item
7416 B
7417 @tab
7418 Torculus Initio Debilis
7419 @tab
7420 @code{\[ \deminutum a \pes b \flexa g \]}
7421
7422 @item
7423 C
7424 @tab
7425 Torculus Auctus@*
7426 Descendens Initio Debilis
7427 @tab
7428 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
7429
7430 @item
7431 D
7432 @tab
7433 Torculus Deminutus@*
7434 Initio Debilis
7435 @tab
7436 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
7437
7438 @item
7439 E
7440 @tab
7441 Porrectus
7442 @tab
7443 @code{\[ a \flexa g \pes b \]}
7444
7445 @item
7446 F
7447 @tab
7448 Porrectus Auctus@*
7449 Descendens
7450 @tab
7451 @code{\[ a \flexa g \pes \auctum \descendens b \]}
7452
7453 @item
7454 G
7455 @tab
7456 Porrectus Deminutus
7457 @tab
7458 @code{\[ a \flexa g \pes \deminutum b \]}
7459
7460 @item
7461 H
7462 @tab
7463 Climacus
7464 @tab
7465 @code{\[ \virga b \inclinatum a \inclinatum g \]}
7466
7467 @item
7468 I
7469 @tab
7470 Climacus Auctus
7471 @tab
7472 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
7473
7474 @item
7475 J
7476 @tab
7477 Climacus Deminutus
7478 @tab
7479 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
7480
7481 @item
7482 K
7483 @tab
7484 Scandicus
7485 @tab
7486 @code{\[ g \pes a \virga b \]}
7487
7488 @item
7489 L
7490 @tab
7491 Scandicus Auctus@*
7492 Descendens
7493 @tab
7494 @code{\[ g \pes a \pes \auctum \descendens b \]}
7495
7496 @item
7497 M
7498 @tab
7499 Scandicus Deminutus
7500 @tab
7501 @code{\[ g \pes a \pes \deminutum b \]}
7502
7503 @item
7504 N
7505 @tab
7506 Salicus
7507 @tab
7508 @code{\[ g \oriscus a \pes \virga b \]}
7509
7510 @item
7511 O
7512 @tab
7513 Salicus Auctus Descendens
7514 @tab
7515 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
7516
7517 @item
7518 P
7519 @tab
7520 Trigonus
7521 @tab
7522 @code{\[ \stropha b \stropha b \stropha a \]}
7523 @end multitable
7524
7525 @refcommands
7526
7527 The following head prefixes are supported
7528
7529 @cindex @code{\virga}
7530 @code{\virga},
7531 @cindex @code{\stropha}
7532 @code{\stropha},
7533 @cindex @code{\inclinatum}
7534 @code{\inclinatum},
7535 @cindex @code{\auctum}
7536 @code{\auctum},
7537 @cindex @code{\descendens}
7538 @code{\descendens},
7539 @cindex @code{\ascendens}
7540 @code{\ascendens},
7541 @cindex @code{\oriscus}
7542 @code{\oriscus},
7543 @cindex @code{\quilisma}
7544 @code{\quilisma},
7545 @cindex @code{\deminutum}
7546 @code{\deminutum}.
7547
7548 Head prefixes can be accumulated, though restrictions apply.  For
7549 example, either @code{\descendens} or @code{\ascendens} can be applied
7550 to a head, but not both to the same head.
7551
7552 @cindex @code{\pes}
7553 @cindex @code{\flexa}
7554 Two adjacent heads can be tied together with the @code{\pes} and
7555 @code{\flexa} infix commands for a rising and falling line of melody,
7556 respectively.
7557
7558
7559
7560 @node Gregorian Chant contexts
7561 @subsection Gregorian Chant contexts
7562
7563 @cindex VaticanaVoiceContext
7564 @cindex VaticanaStaffContext
7565
7566 The predefined @code{VaticanaVoiceContext} and
7567 @code{VaticanaStaffContext} can be used to engrave a piece of
7568 Gregorian Chant in the style of the Editio Vaticana.  These contexts
7569 initialize all relevant context properties and grob properties to
7570 proper values, so you can immediately go ahead entering the chant, as
7571 the following excerpt demonstrates
7572
7573 @lilypond[quote,raggedright,verbatim]
7574 \include "gregorian-init.ly"
7575 \score {
7576   <<
7577     \context VaticanaVoice = "cantus" {
7578       \override Score.BarNumber #'transparent = ##t {
7579         \[ c'\melisma c' \flexa a \]
7580         \[ a \flexa \deminutum g\melismaEnd \]
7581         f \divisioMinima
7582         \[ f\melisma \pes a c' c' \pes d'\melismaEnd \]
7583         c' \divisioMinima \break
7584         \[ c'\melisma c' \flexa a \]
7585         \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
7586       }
7587     }
7588     \lyricsto "cantus" \new Lyrics {
7589       San- ctus, San- ctus, San- ctus
7590     }
7591   >>
7592 }
7593 @end lilypond
7594
7595
7596 @node Mensural contexts
7597 @subsection Mensural contexts
7598
7599 @cindex MensuralVoiceContext
7600 @cindex MensuralStaffContext
7601
7602 The predefined @code{MensuralVoiceContext} and
7603 @code{MensuralStaffContext} can be used to engrave a piece in mensural
7604 style.  These contexts initialize all relevant context properties and
7605 grob properties to proper values, so you can immediately go ahead
7606 entering the chant, as the following excerpt demonstrates
7607
7608 @lilypond[quote,raggedright,verbatim]
7609 \score {
7610   <<
7611     \context MensuralVoice = "discantus" \transpose c c' {
7612       \override Score.BarNumber #'transparent = ##t {
7613         c'1\melisma bes a g\melismaEnd
7614         f\breve
7615         \[ f1\melisma a c'\breve d'\melismaEnd \]
7616         c'\longa
7617         c'\breve\melisma a1 g1\melismaEnd
7618         fis\longa^\signumcongruentiae
7619       }
7620     }
7621     \lyricsto "discantus" \new Lyrics {
7622       San -- ctus, San -- ctus, San -- ctus
7623     }
7624   >>
7625 }
7626 @end lilypond
7627
7628
7629 @node Figured bass
7630 @subsection Figured bass
7631
7632 @cindex Basso continuo
7633
7634 @c TODO: musicological blurb about FB
7635
7636
7637 LilyPond has limited support for figured bass
7638
7639 @lilypond[quote,raggedright,verbatim,fragment]
7640 <<
7641   \context Voice { \clef bass dis4 c d ais }
7642   \context FiguredBass \figuremode {
7643     < 6 >4 < 7 >8 < 6+ [_!] >
7644     < 6 >4 <6 5 [3+] >
7645   }
7646 >>
7647 @end lilypond
7648
7649 The support for figured bass consists of two parts: there is an input
7650 mode, introduced by @code{\figuremode}, where you can enter bass figures
7651 as numbers, and there is a context called @internalsref{FiguredBass} that
7652 takes care of making @internalsref{BassFigure} objects.
7653
7654 In figures input mode, a group of bass figures is delimited by
7655 @code{<} and @code{>}.  The duration is entered after the @code{>}
7656 @example
7657 <4 6>
7658 @end example
7659 @lilypond[quote,raggedright,fragment]
7660 \context FiguredBass
7661 \figuremode { <4 6> }
7662 @end lilypond
7663
7664 Accidentals are added when you append @code{-}, @code{!}, and @code{+}
7665 to the numbers
7666
7667 @example
7668 <4- 6+ 7!>
7669 @end example
7670 @lilypond[quote,raggedright,fragment]
7671 \context FiguredBass
7672 \figuremode { <4- 6+ 7!> }
7673 @end lilypond
7674
7675 Spaces or dashes may be inserted by using @code{_}.  Brackets are
7676 introduced with @code{[} and @code{]}
7677
7678 @example
7679 < [4 6] 8 [_! 12] >
7680 @end example
7681 @lilypond[quote,raggedright,fragment]
7682 \context FiguredBass
7683 \figuremode { < [4 6] 8 [_! 12] > }
7684 @end lilypond
7685
7686 Although the support for figured bass may superficially resemble chord
7687 support, it works much simpler.  The @code{\figuremode} mode simply
7688 stores the numbers and @internalsref{FiguredBass} context prints
7689 them as entered.  There is no conversion to pitches and no
7690 realizations of the bass are played in the MIDI file.
7691
7692 Internally, the code produces markup texts.  You can use any of the
7693 markup text properties to override formatting.  For example, the
7694 vertical spacing of the figures may be set with @code{baseline-skip}.
7695
7696 @seealso
7697
7698 Program reference: @internalsref{BassFigureEvent} music,
7699 @internalsref{BassFigure} object, and @internalsref{FiguredBass} context.
7700
7701 @refbugs
7702
7703 Slash notation for alterations is not supported.
7704
7705 @node Contemporary notation
7706 @section Contemporary notation
7707
7708 In the 20th century, composers have greatly expanded the musical
7709 vocabulary.  With this expansion, many innovations in musical notation
7710 have been tried.  The book ``Music Notation in the 20th century'' by
7711 Kurt Stone gives a comprehensive overview (see @ref{Literature
7712 list}).  In general, the use of new, innovative notation makes a piece
7713 harder to understand and perform and its use should therefore be
7714 avoided.  For this reason, support for contemporary notation in
7715 LilyPond is limited.
7716
7717
7718 @menu
7719 * Polymetric notation::
7720 * Clusters::
7721 * Special fermatas::
7722 * Feathered beams::
7723 @end menu
7724
7725 @node Polymetric notation
7726 @subsection Polymetric notation
7727
7728 Double time signatures are not supported explicitly, but they can be
7729 faked.  In the next example, the markup for the time signature is
7730 created with a markup text.  This markup text is inserted in the
7731 @internalsref{TimeSignature} grob.
7732
7733 @lilypond[verbatim,raggedright]
7734 % create 2/4 + 5/8
7735 tsMarkup =\markup {
7736   \number {
7737     \column < "2" "4" >
7738     \musicglyph #"scripts-stopped"
7739     \bracket \column < "5" "8" >
7740   }
7741 }
7742
7743 {
7744   \override Staff.TimeSignature #'print-function = #Text_interface::print
7745   \override Staff.TimeSignature #'text = #tsMarkup
7746   \time 3/2
7747   c'2 \bar ":" c'4 c'4.
7748 }
7749 @end lilypond
7750
7751 Each staff can also have its own time signature.  This is done by
7752 moving the @internalsref{Timing_engraver} to the @internalsref{Staff}
7753 context.
7754
7755 @example
7756 \layout @{
7757   \context @{ \Score \remove "Timing_engraver" @}
7758   \context @{ \Staff \consists "Timing_engraver" @}
7759 @}
7760 @end example
7761
7762
7763 Now, each staff has its own time signature.
7764 @example
7765 <<
7766   \new Staff @{
7767     \time 3/4
7768     c4 c c | c c c |
7769   @}
7770   \new Staff @{
7771     \time 2/4
7772     c4 c | c c | c c
7773   @}
7774   \new Staff @{
7775     \time 3/8
7776     c4. c8 c c c4. c8 c c
7777   @}
7778 >>
7779 @end example
7780
7781 @lilypond[quote,raggedright]
7782 \layout{
7783   \context{ \Score \remove "Timing_engraver" }
7784   \context{ \Staff \consists "Timing_engraver" }
7785 }
7786
7787 \relative c' <<
7788   \new Staff {
7789     \time 3/4
7790     c4 c c | c c c |
7791   }
7792   \new Staff {
7793     \time 2/4
7794     c4 c | c c | c c
7795   }
7796   \new Staff {
7797     \time 3/8
7798     c4. c8 c c c4. c8 c c
7799   }
7800 >>
7801 @end lilypond
7802
7803
7804 A different form of polymetric notation is where note lengths have
7805 different values across staves.
7806
7807 This notation can be created by setting a common time signature for
7808 each staff but replacing it manually using
7809 @code{timeSignatureFraction} to the desired fraction.  Then the printed
7810 durations in each staff are scaled to the common time signature.
7811 The latter is done with @code{\compressmusic}, which is similar to
7812 @code{\times}, but does not create a tuplet bracket.
7813
7814
7815 In this example, music with the time signatures of 3/4, 9/8, and 10/8 are
7816 used in parallel.  In the second staff, shown durations are multiplied by
7817 2/3, so that 2/3 * 9/8 = 3/4, and in the third staff, shown durations are
7818 multiplied by 3/5, so that 3/5 * 10/8 = 3/4.
7819
7820 @lilypond[quote,raggedright,verbatim,fragment]
7821 \relative c' { <<
7822   \new Staff {
7823     \time 3/4
7824     c4 c c | c c c |
7825   }
7826   \new Staff {
7827     \time 3/4
7828     \set Staff.timeSignatureFraction = #'(9 . 8)
7829     \compressmusic #'(2 . 3)
7830       \repeat unfold 6 { c8[ c c] }
7831   }
7832   \new Staff {
7833     \time 3/4
7834     \set Staff.timeSignatureFraction = #'(10 . 8)
7835     \compressmusic #'(3 . 5) {
7836       \repeat unfold 2 { c8[ c c] }
7837       \repeat unfold 2 { c8[ c] }
7838       | c4. c4. \times 2/3 { c8 c c } c4
7839     }
7840   }
7841 >> }
7842 @end lilypond
7843
7844
7845
7846
7847 @refbugs
7848
7849 When using different time signatures in parallel, the spacing is
7850 aligned vertically, but bar lines distort the regular spacing.
7851
7852
7853
7854 @node Clusters
7855 @subsection Clusters
7856
7857 @cindex cluster
7858
7859 A cluster indicates a continuous range of pitches to be played.  They
7860 can be denoted as the envelope of a set of notes.  They are entered by
7861 applying the function @code{makeClusters} to a sequence of
7862 chords, e.g.,
7863 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
7864 \makeClusters { <c e > <b f'> }
7865 @end lilypond
7866
7867 The following example (from
7868 @inputfileref{input/@/regression,cluster@/.ly}) shows what the result
7869 looks like
7870
7871 @lilypondfile[raggedright,quote]{cluster.ly}
7872
7873 Ordinary notes and clusters can be put together in the same staff,
7874 even simultaneously.  In such a case no attempt is made to
7875 automatically avoid collisions between ordinary notes and clusters.
7876
7877 @seealso
7878
7879 Program reference: @internalsref{ClusterSpanner},
7880 @internalsref{ClusterSpannerBeacon},
7881 @internalsref{Cluster_spanner_engraver}, and
7882 @internalsref{ClusterNoteEvent}.
7883
7884 Examples: @inputfileref{input/@/regression,cluster@/.ly}.
7885
7886 @refbugs
7887
7888 Music expressions like @code{<< @{ g8 e8 @} a4 >>} are not printed
7889 accurately.  Use @code{<g a>8 <e a>8} instead.
7890
7891
7892
7893 @node Special fermatas
7894 @subsection Special fermatas
7895
7896 @cindex fermatas, special
7897
7898 In contemporary music notation, special fermata symbols denote breaks
7899 of differing lengths.  The following fermatas are supported
7900
7901 @lilypond[quote,raggedright]
7902 <<
7903   \oldaddlyrics {
7904     b'2
7905     ^\shortfermata
7906     _\shortfermata
7907     r
7908
7909     b'
7910     ^\fermata
7911     _\fermata
7912     r
7913
7914     b'
7915     ^\longfermata
7916     _\longfermata
7917     r
7918
7919     b'
7920     ^\verylongfermata
7921     _\verylongfermata
7922     r
7923   }
7924   \context Lyrics \lyricmode {
7925     \override LyricText #'font-family = #'typewriter
7926     "shortfermata" "fermata" "longfermata" "verylongfermata"
7927   }
7928 >>
7929 @end lilypond
7930
7931 See @ref{Articulations} for general instructions how to apply scripts
7932 such as fermatas to notes.
7933
7934 @node Feathered beams
7935 @subsection Feathered beams
7936
7937 Feathered beams are not supported natively, but they can be faked by
7938 forcing two beams to overlap.  Here is an example,
7939
7940 @c don't change relative setting witout changing positions!
7941 @lilypond[raggedright,relative=1,fragment,verbatim]
7942 \new Staff <<
7943   \new Voice
7944   {
7945     \stemUp
7946     \once \override Voice.Beam #'positions = #'(0 . 0.5)
7947     c8[ c c c c ]
7948   }
7949   \new Voice {
7950     \stemUp
7951     \once \override Voice.Beam #'positions = #'(0 . -0.5)
7952     c[ c c c c]
7953   }
7954 >>
7955 @end lilypond
7956
7957
7958
7959 @node Educational use
7960 @section Educational use
7961
7962 With the amount of control that LilyPond offers, one can make great
7963 teaching tools in addition to great musical scores.
7964
7965 @menu
7966 * Balloon help::
7967 * Blank music sheet::
7968 * Hidden notes::
7969 * Easy Notation note heads::
7970 @end menu
7971
7972 @node Balloon help
7973 @subsection Balloon help
7974
7975 Elements of notation can be marked and named with the help of a square
7976 balloon.  The primary purpose of this feature is to explain notation.
7977
7978 The following example demonstrates its use.
7979
7980 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
7981 \context Voice {
7982   \applyoutput
7983     #(add-balloon-text 'NoteHead "heads, or tails?"
7984     '(1 . -3))
7985   c8
7986 }
7987 @end lilypond
7988
7989 @noindent
7990 The function @code{add-balloon-text} takes the name of a grob, the
7991 label to print, and the position where to put the label relative to
7992 the object.  In the above example, the text ``heads or tails?'' ends
7993 3 spaces below and 1 space to the right of the marked head.
7994
7995 @cindex balloon
7996 @cindex notation, explaining
7997
7998 @seealso
7999
8000 Program reference: @internalsref{text-balloon-interface}.
8001
8002 Examples: @inputfileref{input/@/regression,balloon@/.ly}.
8003
8004
8005
8006
8007 @node Blank music sheet
8008 @subsection Blank music sheet
8009
8010 A blank music sheet can be produced also by using invisible notes, and
8011 removing @code{Bar_number_engraver}.
8012
8013
8014 @lilypond[quote,verbatim]
8015 emptymusic = {
8016   \repeat unfold 2 % Change this for more lines.
8017   { s1\break }
8018   \bar "|."
8019 }
8020 \new Score \with {
8021   \override TimeSignature #'transparent = ##t
8022   defaultBarType = #""
8023   \remove Bar_number_engraver
8024 } <<
8025   \context Staff \emptymusic
8026   \context TabStaff \emptymusic
8027 >>
8028 @end lilypond
8029
8030
8031 @node Hidden notes
8032 @subsection Hidden notes
8033
8034 @cindex Hidden notes
8035 @cindex Invisible notes
8036 @cindex Transparent notes
8037
8038 Hidden (or invisible or transparent) notes can be useful in preparing theory
8039 or composition exercises.
8040
8041 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
8042 c4 d4
8043 \hideNotes
8044 e4 f4
8045 \unHideNotes
8046 g4 a
8047 @end lilypond
8048
8049 Hidden notes are also great for performing weird tricks.  For example,
8050 slurs cannot be attached to rests or spacer rests, but you may wish
8051 to include that in your score -- string instruments use this notation
8052 when doing pizzicato to indicate that the note should ring for as long
8053 as possible.
8054
8055 @lilypond[quote,raggedright,verbatim,relative=0,fragment]
8056 \clef bass
8057 << {
8058   c4^"pizz"( \hideNotes c)
8059   \unHideNotes c( \hideNotes c)
8060 } {
8061   s4 r s r
8062 } >>
8063 @end lilypond
8064
8065
8066 @node Easy Notation note heads
8067 @subsection Easy Notation note heads
8068
8069 @cindex easy notation
8070 @cindex Hal Leonard
8071
8072 The `easy play' note head includes a note name inside the head.  It is
8073 used in music for beginners
8074
8075 @lilypond[quote,raggedright,verbatim,fragment,staffsize=26]
8076   \setEasyHeads
8077   c'2 e'4 f' | g'1
8078 @end lilypond
8079
8080 The command @code{\setEasyHeads} overrides settings for the
8081 @internalsref{NoteHead} object.  To make the letters readable, it has
8082 to be printed in a large font size.  To print with a larger font, see
8083 @ref{Setting global staff size}.
8084
8085 @refcommands
8086
8087 @cindex @code{\setEasyHeads}
8088 @code{\setEasyHeads}
8089