]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/notation.itely
*** empty log message ***
[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 that 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 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 accidents 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 which 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 then
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 As @code{#(set-accidental-style 'piano)} but with the extra accidentals
1913 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 @c
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 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 @c
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
2394 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2395 <a_\thumb a'-3>8 <b_\thumb b'-3>
2396 @end lilypond
2397
2398 Fingerings for chords can also be added to individual notes
2399 of the chord by adding them after the pitches
2400 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2401 < c-1 e-2 g-3 b-5 >4
2402 @end lilypond
2403
2404 @noindent
2405 In this case, setting @code{fingeringOrientations} will put fingerings next
2406 to note heads
2407
2408 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
2409 \set fingeringOrientations = #'(left down)
2410 <c-1 es-2 g-4 bes-5 > 4
2411 \set fingeringOrientations = #'(up right down)
2412 <c-1 es-2 g-4 bes-5 > 4
2413 @end lilypond
2414
2415 Using this feature, it is also possible to put fingering instructions
2416 very close to note heads in monophonic music,
2417
2418 @lilypond[verbatim,raggedright,quote,fragment]
2419 \set fingeringOrientations = #'(right)
2420 <es'-2>4
2421 @end lilypond
2422
2423
2424 @seealso
2425
2426 Program reference: @internalsref{FingerEvent}, and @internalsref{Fingering}.
2427
2428 Examples: @inputfileref{input/@/regression,finger@/-chords@/.ly}.
2429
2430
2431
2432
2433 @node Grace notes
2434 @subsection Grace notes
2435
2436
2437 @c should have blurb about accaciatura / appogiatura
2438
2439 @cindex @code{\grace}
2440 @cindex ornaments
2441 @cindex grace notes
2442
2443 Grace notes are ornaments that are written out.  The most common ones
2444 are acciaccatura, which should be played as very short.  It is denoted
2445 by a slurred small note with a slashed stem.  The appoggiatura is a
2446 grace note that takes a fixed fraction of the main note, and is
2447 denoted as a slurred note in small print without a slash.  They
2448 are entered with the commands @code{\acciaccatura} and
2449 @code{\appoggiatura}, as demonstrated in the following example
2450
2451
2452 @cindex appoggiatura
2453 @cindex acciaccatura
2454
2455 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
2456 b4 \acciaccatura d8 c4 \appoggiatura e8 d4
2457 \acciaccatura { g16[ f] } e4
2458 @end lilypond
2459
2460 Both are special forms of the @code{\grace} command.  By prefixing this
2461 keyword to a music expression, a new one is formed, which will be
2462 printed in a smaller font and takes up no logical time in a measure.
2463
2464 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
2465 c4 \grace c16 c4
2466 \grace { c16[ d16] } c2 c4
2467 @end lilypond
2468
2469 @noindent
2470 Unlike @code{\acciaccatura} and @code{\appoggiatura}, the
2471 @code{\grace} command does not start a slur.
2472
2473 Internally, timing for grace notes is done using a second, `grace'
2474 time.  Every point in time consists of two rational numbers: one
2475 denotes the logical time, one denotes the grace timing.  The above
2476 example is shown here with timing tuples
2477
2478 @lilypond[quote,raggedright]
2479 <<
2480   \relative c''{
2481     c4 \grace c16 c4 \grace {
2482     c16[ d16] } c2 c4
2483   }
2484   \new Lyrics \lyricmode {
2485     \override LyricText #'font-family = #'typewriter
2486
2487     \markup { (0,0) } 4
2488     \grace { \markup {
2489       ( \fraction 1 4 , \fraction -1 16 ) } 16 }
2490     \markup { (\fraction 1 4 , 0 ) } 4
2491     \grace {
2492       \markup { (\fraction 2 4 , \fraction "-1" 8 ) } 16
2493       \markup { (\fraction 2 4 , \fraction "-1" 16 ) } 16
2494     }
2495     \markup { ( \fraction 2 4 , 0 ) }
2496   }
2497 >>
2498 @end lilypond
2499
2500
2501 The placement of grace notes is synchronized between different staves.
2502 In the following example, there are two sixteenth graces notes for
2503 every eighth grace note
2504
2505 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
2506 << \new Staff { e4 \grace { c16[ d e f] } e4 }
2507    \new Staff { c4 \grace { g8[ b] } c4 } >>
2508 @end lilypond
2509
2510
2511
2512 If you want to end a note with a grace, the standard trick is to put
2513 the grace notes after a ``space note''
2514
2515 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2516 \context Voice {
2517   << { d1^\trill_( }
2518      { s2 \grace { c16[ d] } } >>
2519   c4)
2520 }
2521 @end lilypond
2522
2523 @noindent
2524 By adjusting the duration of the skip note (here it is a half-note),
2525 the space between the main-note and the grace is adjusted.
2526
2527
2528 A @code{\grace} section will introduce special typesetting settings,
2529 for example, to produce smaller type, and set directions.  Hence, when
2530 introducing layout tweaks, they should be inside the grace section,
2531 for example,
2532 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2533 \new Voice {
2534   \acciaccatura {
2535     \stemDown
2536     f16->
2537     \stemNeutral
2538   }
2539   g4
2540 }
2541 @end lilypond
2542
2543 @noindent
2544 The overrides should also be reverted inside the grace section.
2545
2546 The layout of grace sections can be changed throughout the music using
2547 the function @code{add-grace-property}.  The following example
2548 undefines the Stem direction for this grace, so stems do not always
2549 point up.
2550
2551 @example
2552 \new Staff @{
2553   #(add-grace-property 'Voice 'Stem 'direction '())
2554   @dots{}
2555 @}
2556 @end example
2557
2558 @noindent
2559 Another option is to change the variables @code{startGraceMusic},
2560 @code{stopGraceMusic}, @code{startAcciaccaturaMusic},
2561 @code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic},
2562 @code{stopAppoggiaturaMusic}.  More information is in the file
2563 @file{ly/@/grace@/-init@/.ly}.
2564
2565
2566 @seealso
2567
2568 Program reference: @internalsref{GraceMusic}.
2569
2570 @refbugs
2571
2572 A score that starts with a @code{\grace} section needs an explicit
2573 @code{\context Voice} declaration, otherwise the main note and grace
2574 note end up on different staves.
2575
2576 Grace note synchronization can also lead to surprises.  Staff notation,
2577 such as key signatures, bar lines, etc., are also synchronized.  Take
2578 care when you mix staves with grace notes and staves without, for example,
2579
2580 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
2581 << \new Staff { e4 \bar "|:" \grace c16 d4 }
2582    \new Staff { c4 \bar "|:" d4 } >>
2583 @end lilypond
2584
2585 @noindent
2586 This can be remedied by inserting grace skips, for the above example
2587
2588 @example
2589 \new Staff @{ c4 \bar "|:" \grace s16 d4 @}
2590 @end example
2591
2592 Grace sections should only be used within sequential music
2593 expressions.  Nesting or juxtaposing grace sections is not supported,
2594 and might produce crashes or other errors.
2595
2596
2597 @node Glissando
2598 @subsection Glissando
2599 @cindex Glissando
2600
2601 @cindex @code{\glissando}
2602
2603 A glissando is a smooth change in pitch.  It is denoted by a line or a
2604 wavy line between two notes.  It is requested by attaching
2605 @code{\glissando} to a note
2606
2607 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
2608 c\glissando c'
2609 @end lilypond
2610
2611 @seealso
2612
2613 Program reference: @internalsref{Glissando}, and @internalsref{GlissandoEvent}.
2614
2615 Example files: @file{input/@/regression/@/glissando@/.ly}.
2616
2617
2618
2619 @refbugs
2620
2621 Printing text over the line (such as @emph{gliss.}) is not supported.
2622
2623
2624 @node Dynamics
2625 @subsection Dynamics
2626 @cindex Dynamics
2627
2628
2629
2630 @cindex @code{\ppp}
2631 @cindex @code{\pp}
2632 @cindex @code{\p}
2633 @cindex @code{\mp}
2634 @cindex @code{\mf}
2635 @cindex @code{\f}
2636 @cindex @code{\ff}
2637 @cindex @code{\fff}
2638 @cindex @code{\ffff}
2639 @cindex @code{\fp}
2640 @cindex @code{\sf}
2641 @cindex @code{\sff}
2642 @cindex @code{\sp}
2643 @cindex @code{\spp}
2644 @cindex @code{\sfz}
2645 @cindex @code{\rfz}
2646
2647
2648 Absolute dynamic marks are specified using a command after a note
2649 @code{c4\ff}.  The available dynamic marks are @code{\ppp},
2650 @code{\pp}, @code{\p}, @code{\mp}, @code{\mf}, @code{\f}, @code{\ff},
2651 @code{\fff}, @code{\fff}, @code{\fp}, @code{\sf}, @code{\sff},
2652 @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}
2653
2654 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2655 c\ppp c\pp c \p c\mp c\mf c\f c\ff c\fff
2656 c2\fp c\sf c\sff c\sp c\spp c\sfz c\rfz
2657 @end lilypond
2658
2659 @cindex @code{\<}
2660 @cindex @code{\>}
2661 @cindex @code{\"!}
2662
2663
2664
2665 A crescendo mark is started with @code{\<} and terminated with
2666 @code{\!}.  A decrescendo is started with @code{\>} and also terminated
2667 with @code{\!}.  Because these marks are bound to notes, if you must
2668 use spacer notes if multiple marks are needed during one note
2669
2670 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2671 c\< c\! d\> e\!
2672 << f1 { s4 s4\< s4\! \> s4\! } >>
2673 @end lilypond
2674 This may give rise to very short hairpins.  Use @code{minimum-length}
2675 in @internalsref{Voice}.@internalsref{Hairpin} to lengthen them, for
2676 example
2677
2678 @example
2679 \override Staff.Hairpin #'minimum-length = #5
2680 @end example
2681
2682 You can also use a text saying @emph{cresc.} instead of hairpins.  Here
2683 is an example how to do it
2684
2685 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
2686 \setTextCresc
2687 c \< d e f\!
2688 \setHairpinCresc
2689 e\> d c b\!
2690 @end lilypond
2691
2692 @cindex crescendo
2693 @cindex decrescendo
2694
2695 You can also supply your own texts
2696 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2697 \set crescendoText = \markup { \italic "cresc. poco" }
2698 \set crescendoSpanner = #'dashed-line
2699 a'2\< a a a\!\mf
2700 @end lilypond
2701
2702 @cindex diminuendo
2703
2704
2705 @refcommands
2706
2707 @cindex @code{\dynamicUp}
2708 @code{\dynamicUp},
2709 @cindex @code{\dynamicDown}
2710 @code{\dynamicDown},
2711 @cindex @code{\dynamicNeutral}
2712 @code{\dynamicNeutral}.
2713
2714 @cindex direction, of dynamics
2715
2716 @seealso
2717
2718 Program reference: @internalsref{CrescendoEvent},
2719 @internalsref{DecrescendoEvent}, and
2720 @internalsref{AbsoluteDynamicEvent}.
2721
2722 Dynamics are @internalsref{DynamicText} and @internalsref{Hairpin}
2723 objects.  Vertical positioning of these symbols is handled by the
2724 @internalsref{DynamicLineSpanner} object.
2725
2726
2727 @node Repeats
2728 @section Repeats
2729
2730 Repetition is a central concept in music, and multiple notations exist
2731 for repetitions.
2732
2733 @menu
2734 * Repeat types::
2735 * Repeat syntax::
2736 * Repeats and MIDI::
2737 * Manual repeat commands::
2738 * Tremolo repeats::
2739 * Tremolo subdivisions::
2740 * Measure repeats::
2741 @end menu
2742
2743 @node Repeat types
2744 @subsection Repeat types
2745
2746 @cindex repeats
2747 @cindex @code{\repeat}
2748
2749 The following types of repetition are supported
2750
2751 @table @code
2752 @item unfold
2753 Repeated music is fully written (played) out.  This is useful when
2754 entering repetitious music.  This is the only kind of repeat that
2755 is included in MIDI output.
2756
2757 @item volta
2758 Repeats are not written out, but alternative endings (volte) are
2759 printed, left to right with brackets.  This is the standard notation
2760 for repeats with alternatives.  These are not played in MIDI output by default.
2761
2762 @ignore
2763 @item fold
2764 Alternative endings are written stacked.  This has limited use but may be
2765 used to typeset two lines of lyrics in songs with repeats, see
2766 @inputfileref{input,star-spangled-banner@/.ly}.
2767 @end ignore
2768
2769 @c tremolo, beamed
2770 @item tremolo
2771 Make tremolo beams.  These are not played in MIDI output by default.
2772
2773 @item percent
2774 Make beat or measure repeats.  These look like percent signs.  These are not played
2775 in MIDI output by default.
2776
2777 @end table
2778
2779 @node Repeat syntax
2780 @subsection Repeat syntax
2781
2782
2783 LilyPond has one syntactic construct for specifying different types of
2784 repeats.  The syntax is
2785
2786 @example
2787 \repeat @var{variant} @var{repeatcount} @var{repeatbody}
2788 @end example
2789
2790 If you have alternative endings, you may add
2791 @cindex @code{\alternative}
2792 @example
2793 \alternative @{ @var{alternative1}
2794                @var{alternative2}
2795                @var{alternative3} @dots{} @}
2796 @end example
2797 where each @var{alternative} is a music expression.  If you do not
2798 give enough alternatives for all of the repeats, the first alternative
2799 is assumed to be played more than once.
2800
2801 Standard repeats are used like this
2802 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2803 c1
2804 \repeat volta 2 { c4 d e f }
2805 \repeat volta 2 { f e d c }
2806 @end lilypond
2807
2808 With alternative endings
2809 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2810 c1
2811 \repeat volta 2 {c4 d e f}
2812 \alternative { {d2 d} {f f,} }
2813 @end lilypond
2814
2815
2816 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2817 \context Staff {
2818   \partial 4
2819   \repeat volta 4 { e | c2 d2 | e2 f2 | }
2820   \alternative { { g4 g g } { a | a a a a | b2. } }
2821 }
2822 @end lilypond
2823
2824 It is possible to shorten volta brackets
2825 by setting @code{voltaSpannerDuration}.  In the next example, the
2826 bracket only lasts one measure, which is a duration of 3/4.
2827
2828
2829
2830 @lilypond[verbatim,raggedright,quote]
2831 \relative c''{
2832   \time 3/4
2833   c c c
2834   \set Staff.voltaSpannerDuration = #(ly:make-moment 3 4)
2835   \repeat "volta" 5 { d d d }
2836   \alternative { { e e e f f f }
2837   { g g g } }
2838 }
2839 @end lilypond
2840
2841
2842 @seealso
2843
2844 Examples:
2845
2846 Brackets for the repeat are normally only printed over the topmost
2847 staff.  This can be adjusted by setting the @code{voltaOnThisStaff}
2848 property @inputfileref{input/@/regression,volta@/-multi@/-staff@/.ly},
2849 @inputfileref{input/@/regression,volta@/-chord@/-names@/.ly}
2850
2851
2852 @refbugs
2853
2854 A nested repeat like
2855
2856 @example
2857 \repeat @dots{}
2858 \repeat @dots{}
2859 \alternative
2860 @end example
2861
2862 @noindent
2863 is ambiguous, since it is is not clear to which @code{\repeat} the
2864 @code{\alternative} belongs.  This ambiguity is resolved by always
2865 having the @code{\alternative} belong to the inner @code{\repeat}.
2866 For clarity, it is advisable to use braces in such situations.
2867 @cindex ambiguity
2868
2869
2870
2871 Timing information is not remembered at the start of an alternative,
2872 so after a repeat timing information must be reset by hand, for
2873 example by setting @code{Score.measurePosition} or entering
2874 @code{\partial}.  Similarly, slurs or ties are also not repeated.
2875
2876
2877
2878
2879 @node Repeats and MIDI
2880 @subsection Repeats and MIDI
2881
2882 @cindex expanding repeats
2883
2884 With a little bit of tweaking, all types of repeats can be present
2885 in the MIDI output.  This is achieved by applying the
2886 @code{\unfoldrepeats} music function.  This functions changes all
2887 repeats to unfold repeats.
2888
2889 @lilypond[quote,verbatim,fragment,linewidth=8.0\cm]
2890 \unfoldrepeats {
2891   \repeat tremolo 8 {c'32 e' }
2892   \repeat percent 2 { c''8 d'' }
2893   \repeat volta 2 {c'4 d' e' f'}
2894   \alternative {
2895     { g' a' a' g' }
2896     {f' e' d' c' }
2897   }
2898 }
2899 \bar "|."
2900 @end lilypond
2901
2902 When creating a score file using @code{\unfoldrepeats} for midi, then
2903 it is necessary to make two @code{\score} blocks.  One for MIDI (with
2904 unfolded repeats) and one for notation (with volta, tremolo, and
2905 percent repeats).  For example,
2906
2907 @example
2908 \score @{
2909   @var{..music..}
2910   \layout @{ .. @}
2911 @}
2912 \score @{
2913   \unfoldrepeats @var{..music..}
2914   \midi @{ .. @}
2915 @}
2916 @end example
2917
2918 @node Manual repeat commands
2919 @subsection Manual repeat commands
2920
2921 @cindex @code{repeatCommands}
2922
2923 The property @code{repeatCommands} can be used to control the layout of
2924 repeats.  Its value is a Scheme list of repeat commands.
2925
2926 @table @asis
2927 @item @code{start-repeat}
2928 Print a @code{|:} bar line.
2929
2930 @item @code{end-repeat}
2931 Print a @code{:|} bar line.
2932
2933 @item @code{(volta @var{text})}
2934 Print a volta bracket saying @var{text}: The text can be specified as
2935 a text string or as a markup text, see @ref{Text markup}.  Do not
2936 forget to change the font, as the default number font does not contain
2937 alphabetic characters;
2938
2939 @item @code{(volta #f)}
2940 Stop a running volta bracket.
2941 @end table
2942
2943 @lilypond[quote,raggedright,verbatim,fragment,relative=2]
2944 c4
2945   \set Score.repeatCommands = #'((volta "93") end-repeat)
2946 c4 c4
2947   \set Score.repeatCommands = #'((volta #f))
2948 c4 c4
2949 @end lilypond
2950
2951
2952
2953 @seealso
2954
2955 Program reference: @internalsref{VoltaBracket}, @internalsref{RepeatedMusic},
2956 @internalsref{VoltaRepeatedMusic},
2957 @internalsref{UnfoldedRepeatedMusic}, and
2958 @internalsref{FoldedRepeatedMusic}.
2959
2960 @node Tremolo repeats
2961 @subsection Tremolo repeats
2962 @cindex tremolo beams
2963
2964 To place tremolo marks between notes, use @code{\repeat} with tremolo
2965 style
2966 @lilypond[quote,verbatim,raggedright]
2967 \new Voice \relative c' {
2968   \repeat "tremolo" 8 { c16 d16 }
2969   \repeat "tremolo" 4 { c16 d16 }
2970   \repeat "tremolo" 2 { c16 d16 }
2971 }
2972 @end lilypond
2973
2974 Tremolo marks can also be put on a single note.  In this case, the
2975 note should not be surrounded by braces.
2976 @lilypond[quote,verbatim,raggedright]
2977 \repeat "tremolo" 4 c'16
2978 @end lilypond
2979
2980 Similar output is obtained using the tremolo subdivision, described in
2981 @ref{Tremolo subdivisions}.
2982
2983 @seealso
2984
2985 In this manual: @ref{Tremolo subdivisions}, @ref{Repeats}.
2986
2987 Program reference: tremolo beams are @internalsref{Beam} objects.  Single stem
2988 tremolos are @internalsref{StemTremolo} objects.  The music expression is
2989 @internalsref{TremoloEvent}.
2990
2991 Example files: @inputfileref{input/@/regression,chord@/-tremolo@/.ly},
2992 @inputfileref{input/@/regression,stem@/-tremolo@/.ly}.
2993
2994 @node Tremolo subdivisions
2995 @subsection Tremolo subdivisions
2996 @cindex tremolo marks
2997 @cindex @code{tremoloFlags}
2998
2999 Tremolo marks can be printed on a single note by adding
3000 `@code{:}[@var{number}]' after the note.  The number indicates the
3001 duration of the subdivision, and it must be at least 8.  A
3002 @var{length} value of 8 gives one line across the note stem.  If the
3003 length is omitted, the last value (stored in @code{tremoloFlags}) is
3004 used
3005
3006 @lilypond[quote,raggedright,verbatim,fragment]
3007 c'2:8 c':32 | c': c': |
3008 @end lilypond
3009
3010 @c [TODO: stok is te kort bij 32en]
3011 @c   somebody want to translate that into English?
3012 @c   `Stem is too short for 32nds' (wl)
3013
3014 @refbugs
3015
3016 Tremolos entered in this way do not carry over into the MIDI output.
3017
3018 @seealso
3019
3020 In this manual: @ref{Tremolo repeats}.
3021
3022 Elsewhere: @internalsref{StemTremolo}, @internalsref{TremoloEvent}.
3023
3024 @node Measure repeats
3025 @subsection Measure repeats
3026
3027 @cindex percent repeats
3028 @cindex measure repeats
3029
3030 In the @code{percent} style, a note pattern can be repeated.  It is
3031 printed once, and then the pattern is replaced with a special sign.
3032 Patterns of one and two measures are replaced by percent-like signs,
3033 patterns that divide the measure length are replaced by slashes
3034
3035 @lilypond[quote,verbatim,raggedright]
3036 \new Voice \relative c' {
3037   \repeat "percent" 4 { c4 }
3038   \repeat "percent" 2 { c2 es2 f4 fis4 g4 c4 }
3039 }
3040 @end lilypond
3041
3042 @seealso
3043
3044 Program reference: @internalsref{RepeatSlash}, @internalsref{PercentRepeat},
3045 @internalsref{PercentRepeatedMusic}, and
3046 @internalsref{DoublePercentRepeat}.
3047
3048
3049
3050 @node Rhythmic music
3051 @section Rhythmic music
3052
3053 Rhythmic music is primarily used for percussion and drum notation, but it can
3054 also be used to show the rhythms of melodies.
3055
3056 @menu
3057 * Showing melody rhythms::
3058 * Entering percussion::
3059 * Percussion staves::
3060 @end menu
3061
3062
3063 @node Showing melody rhythms
3064 @subsection Showing melody rhythms
3065
3066 Sometimes you might want to show only the rhythm of a melody.  This
3067 can be done with the rhythmic staff.  All pitches of notes on such a
3068 staff are squashed, and the staff itself has a single line
3069
3070 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3071 \context RhythmicStaff {
3072   \time 4/4
3073   c4 e8 f g2 | r4 g r2 | g1:32 | r1 |
3074 }
3075 @end lilypond
3076
3077 @seealso
3078
3079 Program reference: @internalsref{RhythmicStaff}.
3080
3081 Examples: @inputfileref{input/@/regression,rhythmic@/-staff@/.ly}.
3082
3083
3084 @node Entering percussion
3085 @subsection Entering percussion
3086
3087 @cindex percussion
3088 @cindex drums
3089
3090
3091 Percussion notes may be entered in @code{\drummode} mode, which is
3092 similar to the standard mode for entering notes.  Each piece of
3093 percussion has a full name and an abbreviated name, and both can be used
3094 in input files
3095
3096 @lilypond[quote,raggedright,verbatim]
3097 \drums {
3098   hihat hh bassdrum bd
3099 }
3100 @end lilypond
3101
3102 The complete list of drum names is in the init file
3103 @file{ly/@/drumpitch@/-init@/.ly}.
3104 @c TODO: properly document this.
3105
3106 @seealso
3107
3108 Program reference: @internalsref{DrumNoteEvent}.
3109
3110 @node Percussion staves
3111 @subsection Percussion staves
3112 @cindex percussion
3113 @cindex drums
3114
3115 A percussion part for more than one instrument typically uses a
3116 multi line staff where each position in the staff refers to one piece
3117 of percussion.
3118
3119
3120 To typeset the music, the notes must be interpreted in a
3121 @internalsref{DrumStaff} and @internalsref{DrumVoice} contexts
3122
3123 @c
3124 @lilypond[quote,raggedright,verbatim]
3125 up = \drummode { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
3126 down = \drummode { bassdrum4 snare8 bd r bd sn4 }
3127   \new DrumStaff <<
3128     \new DrumVoice { \voiceOne \up }
3129     \new DrumVoice { \voiceTwo \down }
3130   >>
3131 @end lilypond
3132
3133 The above example shows verbose polyphonic notation.  The short
3134 polyphonic notation, described in @ref{Polyphony}, can also be used if
3135 the @internalsref{DrumVoices} are instantiated by hand first.  For example,
3136
3137 @lilypond[quote,raggedright,fragment,verbatim]
3138 \new DrumStaff <<
3139   \context DrumVoice = "1" { s1 *2 }
3140   \context DrumVoice = "2" { s1 *2 }
3141   \drummode {
3142     bd4 sn4 bd4 sn4
3143     <<
3144       { \repeat unfold 16 hh16 }
3145       \\
3146       { bd4 sn4 bd4 sn4 }
3147     >>
3148   }
3149 >>
3150 @end lilypond
3151
3152
3153 There are also other layout possibilities.  To use these, set the
3154 property @code{drumStyleTable} in context @internalsref{DrumVoice}.
3155 The following variables have been predefined
3156
3157 @table @code
3158 @item drums-style
3159 This is the default.  It typesets a typical drum kit on a five-line staff
3160
3161 @lilypond[quote,linewidth=10.0\cm]
3162 nam = \lyricmode {
3163   cymc cyms cymr hh hhc hho hhho hhp
3164   cb hc bd sn ss tomh tommh tomml toml tomfh tomfl }
3165 mus = \drummode {
3166   cymc cyms cymr hh hhc hho hhho hhp \break
3167   cb hc bd sn ss tomh tommh tomml toml tomfh tomfl s16 }
3168 \score {
3169   << \new DrumStaff \with {
3170        \remove Bar_engraver
3171        \remove Time_signature_engraver
3172        \override Stem #'transparent = ##t
3173        \override Stem #'Y-extent-callback = ##f
3174        minimumVerticalExtent = #'(-4.0 . 5.0)
3175      } \mus
3176      \context Lyrics \nam
3177   >>
3178   \layout {
3179     \context {
3180       \Score
3181       \override LyricText #'font-family = #'typewriter
3182       \override BarNumber #'transparent =##T
3183     }
3184   }
3185 }
3186 @end lilypond
3187
3188 The drum scheme supports six different toms.  When there fewer toms, simply
3189 select the toms that produce the desired result, i.e., to get toms on
3190 the three middle lines you use @code{tommh}, @code{tomml} and
3191 @code{tomfh}.
3192
3193 @item timbales-style
3194 This typesets timbales on a two line staff
3195
3196 @lilypond[quote,raggedright]
3197 nam = \lyricmode { timh ssh timl ssl cb }
3198 mus = \drummode { timh ssh timl ssl cb s16 }
3199
3200 <<
3201   \context DrumStaff \with {
3202     \remove Bar_engraver
3203     \remove Time_signature_engraver
3204     \override Stem #'transparent = ##t
3205     \override Stem #'Y-extent-callback = ##f
3206     \override StaffSymbol #'line-count = #2
3207     \override StaffSymbol #'staff-space = #2
3208     minimumVerticalExtent = #'(-3.0 . 4.0)
3209     drumStyleTable = #timbales-style
3210   } \mus
3211   \context Lyrics {
3212     \override LyricText #'font-family = #'typewriter
3213     \nam
3214   }
3215 >>
3216 @end lilypond
3217
3218 @item congas-style
3219 This typesets congas on a two line staff
3220
3221 @lilypond[quote,raggedright]
3222 nam = \lyricmode { cgh cgho cghm ssh cgl cglo cglm ssl }
3223 mus = \drummode { cgh cgho cghm ssh cgl cglo cglm ssl s16 }
3224
3225 <<
3226   \context DrumStaff \with {
3227     \remove Bar_engraver
3228     \remove Time_signature_engraver
3229     drumStyleTable = #congas-style
3230     \override StaffSymbol #'line-count = #2
3231
3232     %% this sucks; it will lengthen stems.
3233     \override StaffSymbol #'staff-space = #2
3234     \override Stem #'transparent = ##t
3235     \override Stem #'Y-extent-callback = ##f
3236   } \mus
3237   \context Lyrics {
3238     \override LyricText #'font-family = #'typewriter
3239     \nam
3240   }
3241 >>
3242 @end lilypond
3243
3244 @item bongos-style
3245 This typesets bongos on a two line staff
3246
3247 @lilypond[quote,raggedright]
3248 nam = \lyricmode { boh boho bohm ssh bol bolo bolm ssl }
3249 mus = \drummode { boh boho bohm ssh bol bolo bolm ssl s16 }
3250
3251 <<
3252   \context DrumStaff\with {
3253     \remove Bar_engraver
3254     \remove Time_signature_engraver
3255     \override StaffSymbol #'line-count = #2
3256     drumStyleTable = #bongos-style
3257
3258     %% this sucks; it will lengthen stems.
3259     \override StaffSymbol #'staff-space = #2
3260     \override Stem #'transparent = ##t
3261     \override Stem #'Y-extent-callback = ##f
3262   } \mus
3263   \context Lyrics {
3264     \override LyricText #'font-family = #'typewriter
3265     \nam
3266   }
3267 >>
3268 @end lilypond
3269
3270 @item percussion-style
3271 To typeset all kinds of simple percussion on one line staves.
3272
3273 @lilypond[quote,raggedright]
3274 nam = \lyricmode { tri trio trim gui guis guil cb cl tamb cab mar hc }
3275 mus = \drummode { tri trio trim gui guis guil cb cl tamb cab mar hc s16 }
3276
3277 <<
3278   \context DrumStaff\with{
3279     \remove Bar_engraver
3280     drumStyleTable = #percussion-style
3281     \override StaffSymbol #'line-count = #1
3282     \remove Time_signature_engraver
3283     \override Stem #'transparent = ##t
3284     \override Stem #'Y-extent-callback = ##f
3285   } \mus
3286   \context Lyrics {
3287     \override LyricText #'font-family = #'typewriter
3288     \nam
3289   }
3290 >>
3291 @end lilypond
3292 @end table
3293
3294 If you do not like any of the predefined lists you can define your own
3295 list at the top of your file
3296
3297 @lilypond[quote,raggedright,verbatim]
3298 #(define mydrums '(
3299          (bassdrum     default   #f         -1)
3300          (snare        default   #f         0)
3301          (hihat        cross     #f         1)
3302          (pedalhihat   xcircle   "stopped"  2)
3303          (lowtom       diamond   #f         3)))
3304 up = \drummode { hh8 hh hh hh hhp4 hhp }
3305 down = \drummode { bd4 sn bd toml8 toml }
3306
3307 \new DrumStaff <<
3308   \set DrumStaff.drumStyleTable = #(alist->hash-table mydrums)
3309   \new DrumVoice { \voiceOne \up }
3310   \new DrumVoice { \voiceTwo \down }
3311 >>
3312 @end lilypond
3313
3314
3315 @seealso
3316
3317 Init files: @file{ly/@/drumpitch@/-init@/.ly}.
3318
3319 Program reference: @internalsref{DrumStaff}, @internalsref{DrumVoice}.
3320
3321 @refbugs
3322
3323 Because general MIDI does not contain rim shots, the sidestick is used
3324 for this purpose instead.
3325
3326 @node Piano music
3327 @section Piano music
3328
3329 Piano staves are two normal staves coupled with a brace.  The staves
3330 are largely independent, but sometimes voices can cross between the
3331 two staves.  The same notation is also used for harps and other key
3332 instruments.  The @internalsref{PianoStaff} is especially built to
3333 handle this cross-staffing behavior.  In this section we discuss the
3334 @internalsref{PianoStaff} and some other pianistic peculiarities.
3335
3336
3337 @menu
3338 * Automatic staff changes::
3339 * Manual staff switches::
3340 * Pedals::
3341 * Arpeggio::
3342 * Staff switch lines::
3343 * Cross staff stems::
3344 @end menu
3345
3346 @refbugs
3347
3348 Dynamics are not centered, but workarounds do exist.  See the
3349 ``piano centered dynamics'' template in @ref{Piano templates}.
3350
3351 @cindex cross staff stem
3352 @cindex stem, cross staff
3353 @cindex distance between staves in piano music
3354
3355 The distance between the two staves is the same for all systems in the
3356 score.  It is possible to override this per system, but it does require
3357 an arcane command incantation.  See
3358 @inputfileref{input/@/test,piano@/-staff@/-distance@/.ly}.
3359
3360
3361 @node Automatic staff changes
3362 @subsection Automatic staff changes
3363 @cindex Automatic staff changes
3364
3365 Voices can be made to switch automatically between the top and the bottom
3366 staff.  The syntax for this is
3367
3368 @quotation
3369 @example
3370 \autochange @dots{}@var{music}@dots{}
3371 @end example
3372 @end quotation
3373
3374 @noindent
3375 This will create two staves inside the current PianoStaff, called
3376 @code{up} and @code{down}.  The lower staff will be in bass clef by
3377 default.
3378
3379 A @code{\relative} section that is outside of @code{\autochange} has
3380 no effect on the pitches of @var{music}, so, if necessary, put
3381 @code{\relative} inside @code{\autochange} like
3382
3383 @quotation
3384 @example
3385 \autochange \relative @dots{} @dots{}
3386 @end example
3387 @end quotation
3388
3389
3390 The autochanger switches on basis of pitch (middle C is the turning
3391 point), and it looks ahead skipping over rests to switch in
3392 advance.  Here is a practical example
3393
3394 @lilypond[quote,verbatim,raggedright]
3395 \context PianoStaff
3396   \autochange \relative c'
3397   {
3398     g4 a b c d r4 a g
3399   }
3400 @end lilypond
3401
3402
3403 @seealso
3404
3405 In this manual: @ref{Manual staff switches}.
3406
3407 Program reference: @internalsref{AutoChangeMusic}.
3408
3409
3410
3411 @refbugs
3412
3413 The staff switches may not end up in optimal places.  For high
3414 quality output, staff switches should be specified manually.
3415
3416
3417 @code{\autochange} cannot be inside @code{\times}.
3418
3419 Internally, the @code{\partcombine} interprets both arguments as
3420 @code{Voice}s named @code{one} and @code{two}, and then decides when
3421 the parts can be combined.  Consequently, if the arguments switch to
3422 differently named @internalsref{Voice} contexts, the events in those
3423 will be ignored.
3424
3425
3426 @node Manual staff switches
3427 @subsection Manual staff switches
3428
3429 @cindex manual staff switches
3430 @cindex staff switch, manual
3431
3432 Voices can be switched between staves manually, using the command
3433 @example
3434 \change Staff = @var{staffname} @var{music}
3435 @end example
3436
3437 @noindent
3438 The string @var{staffname} is the name of the staff.  It switches the
3439 current voice from its current staff to the Staff called
3440 @var{staffname}.  Typically @var{staffname} is @code{"up"} or
3441 @code{"down"}.  The @context{Staff} referred to must already exist, so
3442 usually the setup for a score will start with a setup of the staves,
3443
3444 @example
3445 <<
3446   \context Staff = up @{
3447     \skip 1 * 10  % @emph{keep staff alive}
3448     @}
3449   \context Staff = down @{
3450     \skip 1 * 10  % @emph{idem}
3451     @}
3452 >>
3453 @end example
3454
3455
3456 and the @context{Voice} is inserted afterwards
3457
3458 @example
3459 \context Staff = down
3460   \new Voice @{ @dots{} \change Staff = up @dots{} @}
3461 @end example
3462
3463
3464 @node Pedals
3465 @subsection Pedals
3466 @cindex Pedals
3467
3468 Pianos have pedals that alter the way sound is produced.  Generally, a
3469 piano has three pedals, sustain, una corda, and sostenuto.
3470
3471
3472 Piano pedal instruction can be expressed by attaching
3473 @code{\sustainDown}, @code{\sustainUp}, @code{\unaCorda},
3474 @code{\treCorde}, @code{\sostenutoDown} and @code{\sostenutoUp} to a
3475 note or chord
3476
3477 @lilypond[quote,raggedright,fragment,verbatim]
3478 c'4\sustainDown c'4\sustainUp
3479 @end lilypond
3480
3481 What is printed can be modified by setting @code{pedal@var{X}Strings},
3482 where @var{X} is one of the pedal types: @code{Sustain},
3483 @code{Sostenuto} or @code{UnaCorda}.  Refer to
3484 @internalsref{SustainPedal} in the program reference for more
3485 information.
3486
3487 Pedals can also be indicated by a sequence of brackets, by setting the
3488 @code{pedalSustainStyle} property to bracket objects
3489
3490 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
3491 \set Staff.pedalSustainStyle = #'bracket
3492 c\sustainDown d e
3493 b\sustainUp\sustainDown
3494 b g \sustainUp a \sustainDown \bar "|."
3495 @end lilypond
3496
3497 A third style of pedal notation is a mixture of text and brackets,
3498 obtained by setting the @code{pedalSustainStyle} style property to
3499 @code{mixed}
3500
3501 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
3502 \set Staff.pedalSustainStyle = #'mixed
3503 c\sustainDown d e
3504 b\sustainUp\sustainDown
3505 b g \sustainUp a \sustainDown \bar "|."
3506 @end lilypond
3507
3508 The default `*Ped.' style for sustain and damper pedals corresponds to
3509 style @code{#'text}.  The sostenuto pedal uses @code{mixed} style by
3510 default.
3511
3512 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
3513 c\sostenutoDown d e c, f g a\sostenutoUp
3514 @end lilypond
3515
3516 For fine-tuning of the appearance of a pedal bracket, the properties
3517 @code{edge-width}, @code{edge-height}, and @code{shorten-pair} of
3518 @code{PianoPedalBracket} objects (see
3519 @internalsref{PianoPedalBracket} in the Program reference) can be modified.  For example, the
3520 bracket may be extended to the right edge 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 The chords which cross staves may be produced by increasing the length
3641 of the stem in the lower stave, so it reaches the stem in the upper
3642 stave, 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 texts, 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 to 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 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 which 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 to use 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 @c
3881 notes of the @internalsref{Voice} context called @var{name}, which has
3882 to exist.  Therefore, normally the @code{Voice} is specified first, and
3883 then the lyrics are specified with @code{\lyricsto}.  The command
3884 @code{\lyricsto} switches to @code{\lyricmode} mode automatically, so the
3885 @code{\lyricmode} keyword may be omitted.
3886
3887 For different or more complex orderings, the best way is to setup the
3888 hierarchy of staves and lyrics first, e.g.
3889 @example
3890 \context ChoirStaff <<
3891   \context Lyrics = sopranoLyrics @{ s1 @}
3892   \context Voice = soprano @{ @emph{music} @}
3893   \context Lyrics = tenorLyrics @{ s1 @}
3894   \context Voice = tenor @{ @emph{music} @}
3895 >>
3896 @end example
3897 and then combine the appropriate melodies and lyric lines
3898 @example
3899 \lyricsto "soprano" \context Lyrics = sopranoLyrics
3900   @emph{the lyrics}
3901 @end example
3902
3903 @noindent
3904 The final input would resemble
3905
3906 @example
3907 <<\context ChoirStaff << @emph{setup the music} >>
3908   \lyricsto "soprano" @emph{etc}
3909   \lyricsto "alto" @emph{etc}
3910   @emph{etc}
3911 >>
3912 @end example
3913
3914
3915 The @code{\lyricsto} command detects melismata: it only puts one
3916 syllable under a tied or slurred group of notes.  If you want to force
3917 an unslurred group of notes to be a melisma, insert @code{\melisma}
3918 after the first note of the group, and @code{\melismaEnd} after the
3919 last one, e.g.
3920
3921 @lilypond[quote,relative=2,raggedright,fragment,verbatim]
3922 <<
3923   \context Voice = "lala" {
3924     \time 3/4
3925     f4 g8
3926     \melisma
3927     f e f
3928     \melismaEnd
3929     e2
3930   }
3931   \lyricsto "lala" \new Lyrics {
3932     la di __ daah
3933   }
3934 >>
3935 @end lilypond
3936
3937 In addition, notes are considered a melisma if they are manually
3938 beamed, and automatic beaming (see @ref{Setting automatic beam
3939 behavior}) is switched off.
3940
3941 @ignore
3942
3943 @c nonformation:
3944
3945 The criteria for deciding melismata can
3946 be tuned with the property @code{melismaBusyProperties}.  See
3947 @internalsref{Melisma_translator} in the program reference for more
3948 information.
3949
3950 @end ignore
3951
3952 Lyrics can also be entered without @code{\lyricsto}.  In this case the
3953 durations of each syllable must be entered explicitly, for example,
3954
3955 @example
3956 play2 the4 game2.
3957 sink2 or4 swim2.
3958 @end example
3959
3960 The alignment to a melody can be specified with the
3961 @code{associatedVoice} property,
3962
3963 @example
3964 \set associatedVoice = #"lala"
3965 @end example
3966
3967 @noindent
3968 The value of the property (here: @code{"lala"}) should be the name of
3969 a @internalsref{Voice} context.  Without this setting, extender lines
3970 will not be formatted properly.
3971
3972 Here is an example demonstrating manual lyric durations,
3973
3974 @lilypond[relative=1,raggedright,verbatim,fragment,quote]
3975 << \context Voice = melody {
3976      \time 3/4
3977      c2 e4 g2.
3978   }
3979   \new Lyrics \lyricmode {
3980     \set associatedVoice = #"melody"
3981     play2 the4 game2.
3982   } >>
3983 @end lilypond
3984
3985 @cindex SATB
3986 @cindex choral score
3987
3988 A complete example of a SATB score setup is in section
3989 @ref{Small ensembles}.
3990
3991
3992 @refcommands
3993
3994 @code{\melisma}, @code{\melismaEnd}
3995 @cindex @code{\melismaEnd}
3996 @cindex @code{\melisma}
3997
3998 @seealso
3999
4000 Program reference: @internalsref{LyricCombineMusic},
4001 @internalsref{Lyrics}, @internalsref{Melisma_translator}.
4002
4003 Examples: @ref{Small ensembles},
4004 @inputfileref{input/@/regression,lyric@/-combine@/-new@/.ly},
4005 @c TODO: make separate section for melismata
4006 @inputfileref{input/@/test,lyrics@/-melisma@/-variants@/.ly}.
4007 @inputfileref{input/@/test,lyrics@/-melisma@/-faster@/.ly}.
4008
4009 @refbugs
4010
4011 Melismata are not detected automatically, and extender lines must be
4012 inserted by hand.
4013
4014
4015 @c TODO: document \new Staff << Voice \lyricsto >> bug
4016
4017 @node Flexibility in alignment
4018 @subsection Flexibility in alignment
4019
4020
4021 Often, different stanzas of one song are put to one melody in slightly
4022 differing ways.  Such variations can still be captured with
4023 @code{\lyricsto}.
4024
4025 One possibility is that the text has a melisma in one stanza, but
4026 multiple syllables in another one.  One solution is to make the faster
4027 voice ignore the melisma.  This is done by setting
4028 @code{ignoreMelismata} in the Lyrics context.
4029
4030 There has one tricky aspect.  The setting for @code{ignoreMelismata}
4031 must be set one syllable @emph{before} the non-melismatic syllable
4032 in the text, as shown here,
4033
4034 @lilypond[verbatim,raggedright,quote]
4035 <<
4036   \relative \context Voice = "lahlah" {
4037     \set Staff.autoBeaming = ##f
4038     c4
4039     \slurDotted
4040     f8.[( g16])
4041     a4
4042   }
4043   \new Lyrics \lyricsto "lahlah" {
4044     more slow -- ly
4045   }
4046   \new Lyrics \lyricsto "lahlah" {
4047     \set ignoreMelismata = ##t % applies to "fas"
4048     go fas -- ter
4049     \unset ignoreMelismata
4050     still
4051   }
4052 >>
4053 @end lilypond
4054
4055
4056 The @code{ignoreMelismata} applies to the syllable ``fas'', so it
4057 should be entered before ``go''.
4058
4059 The reverse is also possible: making a lyric line slower than the
4060 standard.  This can be achieved by insert @code{\skip}s into the
4061 lyrics.  For every @code{\skip}, the text will be delayed another note.
4062 For example,
4063
4064 @lilypond[verbatim,raggedright,quote]
4065 \relative { c c g' }
4066 \addlyrics {
4067   twin -- \skip 4
4068   kle
4069 }
4070 @end lilypond
4071
4072 More complex variations in text underlay are possible.  It is possible
4073 to switch the melody for a line of lyrics during the text.  This is
4074 done by setting the @code{associatedVoice} property.  In the example
4075
4076 @lilypond[raggedright,quote]
4077 <<
4078   \relative \context Voice = "lahlah" {
4079     \set Staff.autoBeaming = ##f
4080     c4
4081     <<
4082       \context Voice = alternative {
4083         \voiceOne
4084         \times 2/3 {
4085           % show associations clearly.
4086           \override NoteColumn #'force-hshift = #-3
4087           f8 f g
4088         }
4089       }
4090       {
4091         \voiceTwo
4092         f8.[ g16]
4093         \oneVoice
4094       } >>
4095     a8( b) c
4096   }
4097   \new Lyrics \lyricsto "lahlah" {
4098     Ju -- ras -- sic Park
4099   }
4100   \new Lyrics \lyricsto "lahlah" {
4101     % Tricky: need to set associatedVoice
4102     % one syllable too soon!
4103     \set associatedVoice = alternative % applies to "ran"
4104     Ty --
4105     ran --
4106     no --
4107     \set associatedVoice = lahlah % applies to "rus"
4108     sau -- rus Rex
4109   } >>
4110 @end lilypond
4111
4112 @noindent
4113 the text for the first stanza is set to a melody called ``lahlah'',
4114
4115 @example
4116 \new Lyrics \lyricsto "lahlah" @{
4117   Ju -- ras -- sic Park
4118 @}
4119 @end example
4120
4121
4122 The second stanza initially is set to the @code{lahlah} context, but
4123 for the syllable ``ran'', it switches to a different melody.
4124 This is achieved with
4125 @example
4126 \set associatedVoice = alternative
4127 @end example
4128
4129 @noindent
4130 Here, @code{alternative} is the name of the @code{Voice} context
4131 containing the triplet.
4132
4133 Again, the command must be one syllable too early, before ``Ty'' in
4134 this case.
4135
4136 @example
4137 \new Lyrics \lyricsto "lahlah" @{
4138   \set associatedVoice = alternative % applies to "ran"
4139   Ty --
4140   ran --
4141   no --
4142   \set associatedVoice = lahlah % applies to "rus"
4143   sau -- rus Rex
4144 @}
4145 @end example
4146
4147 @noindent
4148 The underlay is switched back to the starting situation by assigning
4149 @code{lahlah} to @code{associatedVoice}.
4150
4151
4152
4153
4154 @node More stanzas
4155 @subsection More stanzas
4156
4157 @cindex phrasing, in lyrics
4158
4159
4160 @cindex stanza number
4161 @cindex singer's names
4162 @cindex name of singer
4163
4164 Stanza numbers can be added by setting @code{stanza}, e.g.
4165
4166 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
4167 \new Voice {
4168   \time 3/4 g2 e4 a2 f4 g2.
4169 } \addlyrics {
4170   \set stanza = "1. "
4171   Hi, my name is Bert.
4172 } \addlyrics {
4173   \set stanza = "2. "
4174   Oh, che -- ri, je t'aime
4175 }
4176 @end lilypond
4177
4178 These numbers are put just before the start of first syllable.
4179
4180 Names of singers can also be added.  They are printed at the start of
4181 the line, just like instrument names.  They are created by setting
4182 @code{vocalName}.  A short version may be entered as @code{vocNam}.
4183
4184
4185 @lilypond[fragment,raggedright,quote,verbatim,relative=2]
4186 \new Voice {
4187   \time 3/4 g2 e4 a2 f4 g2.
4188 } \addlyrics {
4189   \set vocalName = "Bert "
4190   Hi, my name is Bert.
4191 } \addlyrics {
4192   \set vocalName = "Ernie "
4193   Oh, che -- ri, je t'aime
4194 }
4195 @end lilypond
4196
4197 @seealso
4198
4199 Program reference: Layout objects @internalsref{LyricText} and
4200 @internalsref{VocalName}.  Music expressions
4201 @internalsref{LyricEvent}.
4202
4203
4204
4205 @node Ambitus
4206 @subsection Ambitus
4207 @cindex ambitus
4208
4209 The term @emph{ambitus} denotes a range of pitches for a given voice
4210 in a part of music.  It also may denote the pitch range that a musical
4211 instrument is capable of playing.  Ambits are printed on vocal parts,
4212 so performers can easily determine it meets their capabilities.
4213
4214 It denoted at the beginning of a piece near the initial clef.  The
4215 range is graphically specified by two note heads, that represent the
4216 minimum and maximum pitch.  To print such ambits, add the
4217 @internalsref{Ambitus_engraver} to the @internalsref{Voice} context,
4218 for example,
4219
4220 @example
4221 \layout @{
4222   \context @{
4223     \Voice
4224     \consists Ambitus_engraver
4225   @}
4226 @}
4227 @end example
4228
4229 This results in the following output
4230
4231 @lilypond[quote,raggedright]
4232 \layout {
4233   \context {
4234     \Staff
4235     \consists Ambitus_engraver
4236   }
4237 }
4238
4239 \relative \new Staff {
4240   as'' c e2 cis,2
4241 }
4242 @end lilypond
4243
4244 If you have multiple voices in a single staff, and you want a single
4245 ambitus per staff rather than per each voice, add the
4246 @internalsref{Ambitus_engraver} to the @internalsref{Staff} context
4247 rather than to the @internalsref{Voice} context.  Here is an example,
4248
4249 @lilypond[verbatim,raggedright,quote]
4250 \new Staff <<
4251   \new Voice \with {
4252     \consists "Ambitus_engraver"
4253   } \relative c'' {
4254     \override Ambitus #'X-offset-callbacks
4255       = #(list (lambda (grob axis) -1.0))
4256     \voiceOne
4257     c4 a d e f2
4258   }
4259   \new Voice \with {
4260     \consists "Ambitus_engraver"
4261   } \relative c' {
4262     \voiceTwo
4263     es4 f g as b2
4264   }
4265 >>
4266 @end lilypond
4267
4268 @noindent
4269 This example uses one advanced feature,
4270
4271 @example
4272 \override Ambitus #'X-offset-callbacks
4273   = #(list (lambda (grob axis) -1.0))
4274 @end example
4275
4276 @noindent
4277 This code moves the ambitus to the left.  The same effect could have
4278 been achieved with @code{extra-offset}, but then the formatting system
4279 would not reserve space for the moved object.
4280
4281 @seealso
4282
4283 Program reference: @internalsref{Ambitus},
4284 @internalsref{AmbitusLine}, @internalsref{AmbitusNoteHead},
4285 @internalsref{AmbitusAccidental}.
4286
4287 Examples: @inputfileref{input/@/regression,ambitus@/.ly}.
4288
4289 @refbugs
4290
4291 There is no collision handling in the case of multiple per-voice
4292 ambitus.
4293
4294 @node Other instrument specific notation, Tablatures, Vocal music, Notation manual
4295 @section Other instrument specific notation
4296
4297 This section includes extra information for writing string music, and may
4298 include extra information for other instruments in the future.
4299
4300 @menu
4301 * Harmonic notes::
4302 @end menu
4303
4304 @node Harmonic notes, , Other instrument specific notation, Other instrument specific notation
4305 @subsection Harmonic notes
4306
4307 @cindex artificial harmonics
4308 @cindex harmonics
4309
4310 Artificial harmonics are notated with a different notehead style.  They
4311 are entered by
4312 marking the harmonic pitch with @code{\harmonic}.
4313
4314 @lilypond[raggedright,verbatim,quote,fragment]
4315 <c' g'\harmonic>4
4316 @end lilypond
4317
4318
4319 @node Tablatures, Popular music, Other instrument specific notation, Notation manual
4320 @section Tablatures
4321
4322 @cindex tablature
4323 @cindex guitar tablature
4324
4325 Tablature notation is used for notating music for plucked string
4326 instruments.  Pitches are not denoted with note heads, but by
4327 indicating on which string and fret a note must be played.  LilyPond
4328 offers limited support for tablature.
4329
4330 @menu
4331 * Tablatures basic::
4332 * Non-guitar tablatures::
4333 @end menu
4334
4335 @node Tablatures basic, Non-guitar tablatures, Tablatures, Tablatures
4336 @subsection Tablatures basic
4337 @cindex Tablatures basic
4338
4339 The string number associated to a note is given as a backslash
4340 followed by a number, e.g., @code{c4\3} for a C quarter on the third
4341 string.  By default, string 1 is the highest one, and the tuning
4342 defaults to the standard guitar tuning (with 6 strings).  The notes
4343 are printed as tablature, by using @internalsref{TabStaff} and
4344 @internalsref{TabVoice} contexts
4345
4346 @lilypond[quote,raggedright,fragment,verbatim]
4347 \context TabStaff {
4348   a,4\5 c'\2 a\3 e'\1
4349   e\4 c'\2 a\3 e'\1
4350 }
4351 @end lilypond
4352
4353 @cindex @code{minimumFret}
4354 @cindex fret
4355
4356 When no string is specified, the first string that does not give a
4357 fret number less than @code{minimumFret} is selected.  The default
4358 value for @code{minimumFret} is 0
4359
4360
4361 @example
4362 e16 fis gis a b4
4363 \set TabStaff.minimumFret = #8
4364 e16 fis gis a b4
4365 @end example
4366 @lilypond[quote,raggedright]
4367 frag = {
4368   \key e \major
4369   e16 fis gis a b4
4370   \set TabStaff.minimumFret = #8
4371   e16 fis gis a b4
4372 }
4373   \context StaffGroup <<
4374     \context Staff { \clef "G_8" \frag }
4375     \context TabStaff { \frag }
4376   >>
4377 @end lilypond
4378
4379 @seealso
4380
4381 Program reference: @internalsref{TabStaff}, @internalsref{TabVoice}, and
4382 @internalsref{StringNumberEvent}.
4383
4384 @refbugs
4385
4386 Chords are not handled in a special way, and hence the automatic
4387 string selector may easily select the same string to two notes in a
4388 chord.
4389
4390
4391 @node Non-guitar tablatures, , Tablatures basic, Tablatures
4392 @subsection Non-guitar tablatures
4393 @cindex Non-guitar tablatures
4394
4395 You can change the number of strings, by setting the number of lines
4396 in the @internalsref{TabStaff}.
4397
4398 You can change the tuning of the strings.  A string tuning is given as
4399 a Scheme list with one integer number for each string, the number
4400 being the pitch (measured in semitones relative to middle C) of an
4401 open string.  The numbers specified for @code{stringTuning} are the
4402 numbers of semitones to subtract or add, starting the specified pitch
4403 by default middle C, in string order.  In the next example,
4404 @code{stringTunings} is set for the pitches e, a, d, and g
4405
4406 @lilypond[quote,raggedright,fragment,verbatim]
4407 \context TabStaff <<
4408   \set TabStaff.stringTunings = #'(-5 -10 -15 -20)
4409   {
4410     a,4 c' a e' e c' a e'
4411   }
4412 >>
4413 @end lilypond
4414
4415 @refbugs
4416
4417 No guitar special effects have been implemented.
4418
4419 @seealso
4420
4421 Program reference: @internalsref{Tab_note_heads_engraver}.
4422
4423
4424 @node Popular music, Orchestral music, Tablatures, Notation manual
4425 @section Popular music
4426
4427 This section discusses issues that arise when writing popular music.
4428
4429 @menu
4430 * Chord names::
4431 * Chords mode::
4432 * Printing chord names::
4433 * Fret diagrams::
4434 * Improvisation::
4435 @end menu
4436
4437 @node Chord names, Chords mode, Popular music, Popular music
4438 @subsection Chord names
4439 @cindex Chords
4440
4441 LilyPond has support for printing chord names.  Chords may be entered
4442 in musical chord notation, i.e., @code{< .. >}, but they can also be
4443 entered by name.  Internally, the chords are represented as a set of
4444 pitches, so they can be transposed
4445
4446
4447 @lilypond[quote,raggedright,verbatim,raggedright]
4448 twoWays = \transpose c c' {
4449   \chordmode {
4450     c1 f:sus4 bes/f
4451   }
4452   <c e g>
4453   <f bes c'>
4454   <f bes d'>
4455 }
4456
4457 << \context ChordNames \twoWays
4458    \context Voice \twoWays >>
4459 @end lilypond
4460
4461 This example also shows that the chord printing routines do not try to
4462 be intelligent.  The last chord (@code{f bes d}) is not interpreted as
4463 an inversion.
4464
4465 @c this menu isn't needed.
4466 @ignore
4467 @menu
4468 * Chords mode::
4469 * Printing chord names::
4470 @end menu
4471 @end ignore
4472
4473 @node Chords mode
4474 @subsection Chords mode
4475 @cindex Chords mode
4476
4477 In chord mode sets of pitches (chords) are entered with normal note
4478 names.  A chord is entered by the root, which is entered like a
4479 normal pitch
4480
4481 @lilypond[quote,raggedright,fragment,verbatim]
4482 \chordmode { es4. d8 c2 }
4483 @end lilypond
4484
4485 @noindent
4486 The mode is introduced by the keyword @code{\chordmode}.
4487
4488 @cindex chord entry
4489 @cindex chord mode
4490
4491 Other chords may be entered by suffixing a colon and introducing a
4492 modifier (which may include a number if desired)
4493 @c
4494 @lilypond[quote,fragment,verbatim]
4495 \chordmode { e1:m e1:7 e1:m7 }
4496 @end lilypond
4497 The first number following the root is taken to be the `type' of the
4498 chord, thirds are added to the root until it reaches the specified
4499 number
4500 @lilypond[quote,fragment,verbatim]
4501 \chordmode { c:3 c:5 c:6 c:7 c:8 c:9 c:10 c:11 }
4502 @end lilypond
4503
4504 @cindex root of chord
4505 @cindex additions, in chords
4506 @cindex removals, in chords
4507
4508 More complex chords may also be constructed adding separate steps
4509 to a chord.  Additions are added after the number following
4510 the colon, and are separated by dots
4511 @c
4512 @lilypond[quote,verbatim,fragment]
4513 \chordmode { c:5.6 c:3.7.8 c:3.6.13 }
4514 @end lilypond
4515 Chord steps can be altered by suffixing a @code{-} or @code{+} sign
4516 to the number
4517 @lilypond[quote,verbatim,fragment]
4518 \chordmode { c:7+ c:5+.3- c:3-.5-.7- }
4519 @end lilypond
4520 Removals are specified similarly, and are introduced by a caret.  They
4521 must come after the additions
4522 @lilypond[quote,verbatim,fragment]
4523 \chordmode { c^3 c:7^5 c:9^3.5 }
4524 @end lilypond
4525
4526 Modifiers can be used to change pitches.  The following modifiers are
4527 supported
4528
4529 @table @code
4530 @item m
4531 The minor chord.  This modifier lowers the 3rd and (if present) the 7th step.
4532
4533 @item dim
4534 The diminished chord.  This modifier lowers the 3rd, 5th and (if present)
4535 the 7th step.
4536
4537 @item aug
4538 The augmented chord.  This modifier raises the 5th step.
4539
4540 @item maj
4541 The major 7th chord.  This modifier raises the 7th step if present.
4542
4543 @item sus
4544 The suspended 4th or 2nd.  This modifier removes the 3rd
4545 step.  Append either @code{2} or @code{4} to add the 2nd or 4th step to
4546 the chord.
4547 @end table
4548
4549 Modifiers can be mixed with additions
4550 @lilypond[quote,verbatim,fragment]
4551   \chordmode { c:sus4 c:7sus4 c:dim7 c:m6 }
4552 @end lilypond
4553
4554 @cindex modifiers, in chords.
4555 @cindex @code{aug}
4556 @cindex @code{dim}
4557 @cindex @code{maj}
4558 @cindex @code{sus}
4559 @cindex @code{m}
4560
4561 Since an unaltered 11 does not sound good when combined with an
4562 unaltered 3, the 11 is removed in this case (unless it is added
4563 explicitly)
4564 @c
4565 @lilypond[quote,raggedright,fragment,verbatim]
4566 \chordmode { c:13 c:13.11 c:m13 }
4567 @end lilypond
4568
4569 @cindex @code{/}
4570
4571 An inversion (putting one pitch of the chord on the bottom), as well
4572 as bass notes, can be specified by appending
4573 @code{/}@var{pitch} to the chord
4574 @lilypond[quote,raggedright,fragment,verbatim]
4575 \chordmode { c1 c/g c/f }
4576 @end lilypond
4577 @cindex @code{/+}
4578
4579 A bass note can be added instead of transposed out of the chord,
4580 by using @code{/+}@var{pitch}.
4581
4582 @lilypond[quote,raggedright,fragment,verbatim]
4583 \chordmode { c1 c/+g c/+f }
4584 @end lilypond
4585
4586 Chords is a mode similar to @code{\lyricmode} etc.  Most
4587 of the commands continue to work, for example, @code{r} and
4588 @code{\skip} can be used to insert rests and spaces, and property
4589 commands may be used to change various settings.
4590
4591
4592
4593 @refbugs
4594
4595 Each step can only be present in a chord once.  The following
4596 simply produces the augmented chord, since @code{5+} is interpreted
4597 last
4598 @cindex clusters
4599 @lilypond[quote,raggedright,verbatim,fragment]
4600 \chordmode { c:5.5-.5+ }
4601 @end lilypond
4602
4603
4604 @node Printing chord names
4605 @subsection Printing chord names
4606
4607 @cindex printing chord names
4608 @cindex chord names
4609 @cindex chords
4610
4611 For displaying printed chord names, use the @internalsref{ChordNames} context.
4612 The chords may be entered either using the notation
4613 described above, or directly using @code{<} and @code{>}
4614
4615 @lilypond[quote,verbatim,raggedright]
4616 harmonies = {
4617   \chordmode {a1 b c} <d' f' a'> <e' g' b'>
4618 }
4619 <<
4620   \context ChordNames \harmonies
4621   \context Staff \harmonies
4622 >>
4623 @end lilypond
4624
4625 You can make the chord changes stand out by setting
4626 @internalsref{ChordNames}.@code{chordChanges} to true.  This will only
4627 display chord names when there is a change in the chords scheme and at
4628 the start of a new line
4629
4630 @lilypond[quote,verbatim,raggedright]
4631 harmonies = \chordmode {
4632   c1:m c:m \break c:m c:m d
4633 }
4634 <<
4635   \context ChordNames {
4636     \set chordChanges = ##t
4637     \harmonies }
4638   \context Staff \transpose c c' \harmonies
4639 >>
4640 @end lilypond
4641
4642 The previous examples all show chords over a staff.  This is not
4643 necessary.  Chords may also be printed separately.  It may be necessary
4644 to add @internalsref{Volta_engraver} and @internalsref{Bar_engraver}
4645 for showing repeats.
4646
4647 @lilypond[raggedright,verbatim]
4648 \new ChordNames \with {
4649   \override BarLine #'bar-size = #4
4650   voltaOnThisStaff = ##t
4651   \consists Bar_engraver
4652   \consists "Volta_engraver"
4653 }
4654 \repeat volta 2 \chordmode {
4655   f1:maj f:7 bes:7
4656   c:maj
4657 } \alternative {
4658   es e
4659 }
4660 @end lilypond
4661
4662
4663 The default chord name layout is a system for Jazz music, proposed by
4664 Klaus Ignatzek (see @ref{Literature list}).  It can be tuned through the
4665 following properties
4666
4667 @table @code
4668 @cindex @code{chordNameExceptions}
4669 @item chordNameExceptions
4670 This is a list that contains the chords that have special formatting.
4671
4672 The exceptions list should be encoded as
4673 @example
4674 @{ <c f g bes>1 \markup @{ \super "7" "wahh" @} @}
4675 @end example
4676
4677 To get this information into @code{chordNameExceptions} takes a little
4678 manoeuvring.  The following code transforms @code{chExceptionMusic}
4679 (which is a sequential music) into a list of exceptions.
4680 @example
4681 (sequential-music-to-chord-exceptions chExceptionMusic #t)
4682 @end example
4683 Then,
4684 @example
4685 (append
4686  (sequential-music-to-chord-exceptions chExceptionMusic #t)
4687  ignatzekExceptions)
4688 @end example
4689 adds the new exceptions to the default ones, which are defined in
4690 @file{ly/@/chord@/-modifier@/-init@/.ly}.
4691
4692 For an example of tuning this property, see also
4693 @inputfileref{input/@/regression,chord@/-name@/-exceptions@/.ly}.
4694 @cindex exceptions, chord names.
4695
4696
4697 @cindex @code{majorSevenSymbol}
4698 @item majorSevenSymbol
4699 This property contains the markup object used for the 7th step, when
4700 it is major.  Predefined options are @code{whiteTriangleMarkup} and
4701 @code{blackTriangleMarkup}.  See
4702 @inputfileref{input/@/regression,chord@/-name@/-major7@/.ly} for an example.
4703
4704 @cindex @code{chordNameSeparator}
4705 @item chordNameSeparator
4706 Different parts of a chord name are normally separated by a
4707 slash.  By setting @code{chordNameSeparator}, you can specify other
4708 separators, e.g.
4709 @lilypond[quote,raggedright,fragment,verbatim]
4710 \context ChordNames \chordmode {
4711   c:7sus4
4712   \set chordNameSeparator
4713     = \markup { \typewriter "|" }
4714   c:7sus4
4715 }
4716 @end lilypond
4717
4718 @cindex @code{chordRootNamer}
4719 @item chordRootNamer
4720 The root of a chord is usually printed as a letter with an optional
4721 alteration.  The transformation from pitch to letter is done by this
4722 function.  Special note names (for example, the German ``H'' for a
4723 B-chord) can be produced by storing a new function in this property.
4724
4725 @cindex @code{chordNoteNamer}
4726 @item chordNoteNamer
4727 The default is to print single pitch, e.g., the bass note, using the
4728 @code{chordRootNamer}.  The @code{chordNoteNamer} property can be set
4729 to a specialized function to change this behavior.  For example, the
4730 base can be printed in lower case.
4731
4732 @end table
4733
4734 The predefined variables @code{\germanChords},
4735 @code{\semiGermanChords} set these variables.  The effect is
4736 demonstrated here,
4737
4738 @lilypondfile[raggedright]{chord-names-german.ly}
4739
4740 There are also two other chord name schemes implemented: an alternate
4741 Jazz chord notation, and a systematic scheme called Banter chords.  The
4742 alternate jazz notation is also shown on the chart in @ref{Chord name
4743 chart}.  Turning on these styles is described in the input file
4744 @inputfileref{input/@/test,chord@/-names@/-jazz@/.ly}.
4745
4746 @cindex Banter
4747 @cindex jazz chords
4748 @cindex chords, jazz
4749
4750
4751 @refcommands
4752
4753 @cindex @code{\germanChords}
4754 @code{\germanChords},
4755 @cindex @code{\semiGermanChords}
4756 @code{\semiGermanChords}.
4757
4758
4759
4760
4761 @seealso
4762
4763 Examples: @inputfileref{input/@/regression,chord@/-name@/-major7@/.ly},
4764 @inputfileref{input/@/regression,chord@/-name@/-exceptions@/.ly},
4765 @inputfileref{input/@/test,chord@/-names@/-jazz@/.ly},
4766 @inputfileref{input/@/test,chords@/-without@/-melody@/.ly}.
4767
4768
4769 Init files: @file{scm/@/chords@/-ignatzek@/.scm}, and
4770 @file{scm/@/chord@/-entry@/.scm}.
4771
4772
4773 @refbugs
4774
4775 Chord names are determined solely from the list of pitches.  Chord
4776 inversions are not identified, and neither are added bass notes.  This
4777 may result in strange chord names when chords are entered with the
4778 @code{< .. >} syntax.
4779
4780
4781 @node Fret diagrams
4782 @subsection Fret diagrams
4783 @cindex fret diagrams
4784 @cindex chord diagrams
4785
4786 Fret diagrams can be added to music as a markup to the desired note.  The
4787 markup contains information about the desired fret diagram, as shown in the
4788 following example
4789
4790 @lilypond[verbatim, raggedright, quote]
4791 \context Voice {
4792   d' ^\markup \fret-diagram #"6-x;5-x;4-o;3-2;2-3;1-2;"
4793   d' d' d'
4794   fis' ^\markup \override #'(size . 0.75) {
4795     \override #'(finger-code . below-string) {
4796       \fret-diagram-verbose #'((place-fret 6 2 1) (barre 6 1 2)
4797                                (place-fret 5 4 3) (place-fret 4 4 4)
4798                                (place-fret 3 3 2) (place-fret 2 2 1)
4799                                (place-fret 1 2 1))
4800     }
4801   }
4802   fis' fis' fis'
4803   c' ^\markup \override #'(dot-radius . 0.35) {
4804     \override #'(finger-code . in-dot) {
4805       \override #'(dot-color . white) {
4806         \fret-diagram-terse #"x;3-1-(;5-2;5-3;5-4;3-1-);"
4807       }
4808     }
4809   }
4810   c' c' c'
4811 }
4812 @end lilypond
4813
4814
4815 There are three different fret-diagram markup interfaces: standard, terse,
4816 and verbose.  The three interfaces produce equivalent markups, but have
4817 varying amounts of information in the markup string.  Details about the
4818 markup interfaces are found at @ref{Overview of text markup commands}.
4819
4820 You can set a number of graphical properties according to your preference.
4821 Details about the property interface to fret diagrams are found at
4822 @internalsref{fret-diagram-interface}.
4823
4824
4825 @seealso
4826
4827 Examples: @inputfileref{input/@/test,fret@/-diagram@/.ly}
4828
4829
4830 @node Improvisation
4831 @subsection Improvisation
4832
4833 Improvisation is sometimes denoted with slashed note heads.  Such note
4834 heads can be created by adding a @internalsref{Pitch_squash_engraver}
4835 to the @internalsref{Staff} or @internalsref{Voice} context.  Then, the
4836 following command
4837
4838 @example
4839 \set squashedPosition = #0
4840 \override NoteHead #'style = #'slash
4841 @end example
4842
4843 @noindent
4844 switches on the slashes.
4845
4846 There are shortcuts @code{\improvisationOn} (and an accompanying
4847 @code{\improvisationOff}) for this command sequence.  They are used in
4848 the following example
4849
4850 @lilypond[verbatim,raggedright,quote]
4851 \new Staff \with {
4852   \consists Pitch_squash_engraver
4853 } \transpose c c' {
4854   e8 e g a a16(bes)(a8) g \improvisationOn
4855   e8
4856   ~e2~e8 f4 fis8
4857   ~fis2 \improvisationOff a16(bes) a8 g e
4858 }
4859 @end lilypond
4860
4861
4862
4863 @node Orchestral music
4864 @section Orchestral music
4865
4866 @cindex Writing parts
4867
4868 Orchestral music involves some special notation, both in the full
4869 score and the individual parts.  This section explains how to tackle
4870 some common problems in orchestral music.
4871
4872
4873
4874 @menu
4875 * System start delimiters::
4876 * Aligning to cadenzas::
4877 * Rehearsal marks::
4878 * Bar numbers::
4879 * Instrument names::
4880 * Transpose::
4881 * Instrument transpositions::
4882 * Multi measure rests::
4883 * Automatic part combining::
4884 * Hiding staves::
4885 * Different editions from one source::
4886 * Quoting other voices::
4887 * Formatting cue notes::
4888 @end menu
4889
4890 @node System start delimiters
4891 @subsection System start delimiters
4892
4893 Polyphonic scores consist of many staves.  These staves can be
4894 constructed in three different ways
4895 @itemize @bullet
4896 @item The group is started with a brace at the left, and bar lines are
4897 connected.  This is done with the @internalsref{GrandStaff} context.
4898
4899 @lilypond[verbatim,raggedright,quote]
4900 \new GrandStaff
4901 \relative <<
4902   \new Staff { c1 c }
4903   \new Staff { c c }
4904 >>
4905 @end lilypond
4906
4907
4908 @item The group is started with a bracket, and bar lines are connected.  This is done with the
4909 @internalsref{StaffGroup} context
4910
4911 @lilypond[verbatim,raggedright,quote]
4912 \new StaffGroup
4913 \relative <<
4914   \new Staff { c1 c }
4915   \new Staff { c c }
4916 >>
4917 @end lilypond
4918
4919
4920 @item The group is started with a vertical line.  Bar lines are not
4921 connected.  This is the default for the score.
4922
4923 @lilypond[verbatim,raggedright,quote]
4924 \relative <<
4925   \new Staff { c1 c }
4926   \new Staff { c c }
4927 >>
4928 @end lilypond
4929
4930 @end itemize
4931
4932 @cindex Staff, multiple
4933 @cindex bracket, vertical
4934 @cindex brace, vertical
4935 @cindex grand staff
4936 @cindex staff group
4937
4938
4939 @seealso
4940
4941 The bar lines at the start of each system are
4942 @internalsref{SystemStartBar}, @internalsref{SystemStartBrace}, and
4943 @internalsref{SystemStartBracket}.  Only one of these types is created
4944 in every context, and that type is determined by the property
4945 @code{systemStartDelimiter}.
4946
4947 @node Aligning to cadenzas
4948 @subsection Aligning to cadenzas
4949
4950
4951 In an orchestral context, cadenzas present a special problem:
4952 when constructing a score that includes a cadenza, all other
4953 instruments should skip just as many notes as the length of the
4954 cadenza, otherwise they will start too soon or too late.
4955
4956 A solution to this problem are the functions @code{mmrest-of-length}
4957 and @code{skip-of-length}.  These Scheme functions take a piece music
4958 as argument, and generate a @code{\skip} or multi rest, exactly as
4959 long as the piece.  The use of @code{mmrest-of-length} is demonstrated
4960 in the following example.
4961
4962 @lilypond[verbatim,raggedright,quote]
4963 cadenza = \relative c' {
4964   c4 d8 << { e f g } \\ { d4. } >>
4965   g4 f2 g4 g
4966 }
4967
4968 \new GrandStaff <<
4969   \new Staff { \cadenza c'4 }
4970   \new Staff {
4971     #(ly:export (mmrest-of-length cadenza))
4972     c'4
4973   }
4974 >>
4975 @end lilypond
4976
4977
4978
4979
4980
4981 @node Rehearsal marks
4982 @subsection Rehearsal marks
4983 @cindex Rehearsal marks
4984 @cindex mark
4985 @cindex @code{\mark}
4986
4987 To print a rehearsal mark, use the @code{\mark} command
4988
4989 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
4990 c1 \mark \default
4991 c1 \mark \default
4992 c1 \mark #8
4993 c1 \mark \default
4994 c1 \mark \default
4995 @end lilypond
4996
4997 @noindent
4998 (The letter@tie{}`I' is skipped in accordance with engraving traditions.)
4999 @c umm, is the manual the right place for feature requests?  :)  -gp
5000 @c FIXME - should make that tunable.
5001
5002 The mark is incremented automatically if you use @code{\mark
5003 \default}, but you can also use an integer argument to set the mark
5004 manually.  The value to use is stored in the property
5005 @code{rehearsalMark}.
5006
5007 The style is defined by the property @code{markFormatter}.  It is a
5008 function taking the current mark (an integer) and the current context
5009 as argument.  It should return a markup object.  In the following
5010 example, @code{markFormatter} is set to a canned procedure.  After a
5011 few measures, it is set to function that produces a boxed number.
5012
5013 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
5014 \set Score.markFormatter = #format-mark-numbers
5015 c1 \mark \default
5016 c1 \mark \default
5017 \set Score.markFormatter
5018    = #(lambda (mark context)
5019        (make-bold-markup
5020         (make-box-markup (number->string mark))))
5021 c1 \mark \default
5022 c1 \mark \default
5023 c1
5024 @end lilypond
5025
5026 The file @file{scm/@/translation@/-functions@/.scm} contains the definitions
5027 of @code{format-mark-numbers} (the default format) and
5028 @code{format-mark-letters}.  These can be used as inspiration for other
5029 formatting functions.
5030
5031
5032 @cindex coda on bar line
5033 @cindex segno on bar line
5034 @cindex fermata on bar line
5035 @cindex bar lines, symbols on
5036
5037 The @code{\mark} command can also be used to put signs like coda,
5038 segno and fermatas on a bar line.  Use @code{\markup} to
5039 to access the appropriate symbol
5040
5041 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
5042 c1 \mark \markup { \musicglyph #"scripts-ufermata" }
5043 c1
5044 @end lilypond
5045
5046 In the case of a line break, marks must also be printed at the end of
5047 the line, and not at the beginning.  Use the following to force that
5048 behavior
5049 @example
5050 \override Score.RehearsalMark
5051   #'break-visibility = #begin-of-line-invisible
5052 @end example
5053
5054 @cindex fermatas
5055 @cindex coda
5056 @cindex segno
5057 @cindex bar lines, putting symbols on
5058
5059 @seealso
5060
5061 Program reference: @internalsref{MarkEvent}, @internalsref{RehearsalMark}.
5062
5063 Init files: @file{scm/@/translation@/-functions@/.scm} contains the
5064 definition of @code{format-mark-numbers} and
5065 @code{format-mark-letters}.  They can be used as inspiration for other
5066 formatting functions.
5067
5068 Examples: @inputfileref{input/@/regression,rehearsal@/-mark@/-letter@/.ly},
5069
5070 @inputfileref{input/@/regression,rehearsal@/-mark@/-number@/.ly}.
5071
5072
5073 @node Bar numbers
5074 @subsection Bar numbers
5075
5076
5077 @cindex bar numbers
5078 @cindex measure numbers
5079 @cindex @code{currentBarNumber}
5080
5081 Bar numbers are printed by default at the start of the line.  The
5082 number itself is stored in the @code{currentBarNumber} property, which
5083 is normally updated automatically for every measure.
5084
5085 Bar numbers can be typeset at regular intervals instead of at the
5086 beginning of each line.  This is illustrated in the following example,
5087 whose source is available as
5088 @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}
5089
5090 @lilypondfile[raggedright,quote]{bar-number-regular-interval.ly}
5091
5092 Bar numbers can be manually changed by setting the
5093 @code{Staff.currentBarNumber} property
5094
5095 @lilypond[verbatim,raggedright,quote]
5096 \relative c' {
5097   \repeat unfold 4 {c4 c c c} \break
5098   \set Score.currentBarNumber = #50
5099   \repeat unfold 4 {c4 c c c}
5100 }
5101 @end lilypond
5102
5103 @seealso
5104
5105 Program reference: @internalsref{BarNumber}.
5106
5107 Examples:
5108 @inputfileref{input/@/test,bar@/-number@/-every@/-five@/-reset@/.ly},
5109 and @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}.
5110
5111 @refbugs
5112
5113 Bar numbers can collide with the @internalsref{StaffGroup} bracket, if
5114 there is one at the top.  To solve this, the
5115 @code{padding} property of @internalsref{BarNumber} can be
5116 used to position the number correctly.
5117
5118 @node Instrument names
5119 @subsection Instrument names
5120
5121 In an orchestral score, instrument names are printed left side of the
5122 staves.
5123
5124 This can be achieved by setting @internalsref{Staff}.@code{instrument}
5125 and @internalsref{Staff}.@code{instr}.  This will print a string before
5126 the start of the staff.  For the first start, @code{instrument} is
5127 used, for the next ones @code{instr} is used.
5128
5129 @lilypond[quote,verbatim,raggedright,relative=1,fragment]
5130 \set Staff.instrument = "Ploink "
5131 \set Staff.instr = "Plk "
5132 c1
5133 \break
5134 c''
5135 @end lilypond
5136
5137 You can also use markup texts to construct more complicated instrument
5138 names, for example
5139
5140 @lilypond[quote,fragment,verbatim,raggedright]
5141 \set Staff.instrument = \markup {
5142   \column < "Clarinetti"
5143             { "in B" \smaller \flat } > }
5144 c''1
5145 @end lilypond
5146
5147 For longer instrument names, it may be useful to increase the
5148 @code{indent} setting in the @code{\layout} block.
5149
5150 @seealso
5151
5152 Program reference: @internalsref{InstrumentName}.
5153
5154 @refbugs
5155
5156 When you put a name on a grand staff or piano staff the width of the
5157 brace is not taken into account.  You must add extra spaces to the end of
5158 the name to avoid a collision.
5159
5160 @node Transpose
5161 @subsection Transpose
5162 @cindex Transpose
5163 @cindex transposition of pitches
5164 @cindex @code{\transpose}
5165
5166 A music expression can be transposed with @code{\transpose}.  The
5167 syntax is
5168 @example
5169 \transpose @var{from} @var{to} @var{musicexpr}
5170 @end example
5171
5172 This means that @var{musicexpr} is transposed by the interval between
5173 the pitches @var{from} and @var{to}: any note with pitch @code{from}
5174 is changed to @code{to}.
5175
5176
5177 For example, consider a piece written in the key of D@tie{}major.  If
5178 this piece is a little too low for its performer, it can be
5179 transposed up to E major with
5180 @example
5181 \transpose d e @dots{}
5182 @end example
5183
5184 Consider a part written for violin (a C instrument).  If
5185 this part is to be played on the A clarinet, the following
5186 transposition will produce the appropriate part
5187
5188 @example
5189 \transpose a c @dots{}
5190 @end example
5191
5192 @code{\transpose} distinguishes between enharmonic pitches: both
5193 @code{\transpose c cis} or @code{\transpose c des} will transpose up
5194 half a tone.  The first version will print sharps and the second
5195 version will print flats
5196
5197 @lilypond[quote,raggedright,verbatim]
5198 mus = { \key d \major cis d fis g }
5199 \context Staff {
5200   \clef "F" \mus
5201   \clef "G"
5202   \transpose c g' \mus
5203   \transpose c f' \mus
5204 }
5205 @end lilypond
5206
5207
5208 @seealso
5209
5210 Program reference: @internalsref{TransposedMusic}, and
5211 @internalsref{UntransposableMusic}.
5212
5213 @refbugs
5214
5215 If you want to use both @code{\transpose} and @code{\relative},
5216 you must put @code{\transpose} outside of @code{\relative}, since
5217 @code{\relative} will have no effect music that appears inside a
5218 @code{\transpose}.
5219
5220 @node Instrument transpositions
5221 @subsection Instrument transpositions
5222
5223 The key of a transposing instrument can also be specified.  This
5224 applies to many wind instruments, for example, clarinets (B-flat, A and
5225 E-flat), horn (F) and trumpet (B-flat, C, D and E-flat).
5226
5227 The transposition is entered after the keyword @code{\transposition}
5228
5229 @example
5230 \transposition bes   %% B-flat clarinet
5231 @end example
5232
5233 @noindent
5234 This command sets the property @code{instrumentTransposition}.  The value of
5235 this property is used for MIDI output and quotations.  It does not
5236 affect how notes are printed in the current staff.
5237
5238 The pitch to use for @code{\transposition} should correspond to the
5239 transposition of the notes.  For example, when entering a score in
5240 concert pitch, typically all voices are entered in C, so
5241 they should be entered as
5242
5243 @example
5244 clarinet = @{
5245   \transposition c'
5246   ...
5247 @}
5248 saxophone = @{
5249   \transposition c'
5250   ...
5251 @}
5252 @end example
5253
5254 The command @code{\transposition} should be used when the music is
5255 entered from a (transposed) orchestral part.  For example, in
5256 classical horn parts, the tuning of the instrument is often changed
5257 during a piece.  When copying the notes from the part, use
5258 @code{\transposition}, e.g.
5259
5260 @example
5261 \transposition d'
5262 c'4^"in D"
5263 ...
5264 \transposition g'
5265 c'4^"in G"
5266 ...
5267 @end example
5268
5269
5270
5271 @cindex transposition, MIDI
5272 @cindex transposition, instrument
5273
5274
5275 @node Multi measure rests
5276 @subsection Multi measure rests
5277 @cindex multi measure rests
5278 @cindex Rests, multi measure
5279
5280 @cindex @code{R}
5281
5282 Multi measure rests are entered using `@code{R}'.  It is specifically
5283 meant for full bar rests and for entering parts: the rest can expand
5284 to fill a score with rests, or it can be printed as a single
5285 multimeasure rest.  This expansion is controlled by the property
5286 @code{Score.skipBars}.  If this is set to true, empty measures will not
5287 be expanded, and the appropriate number is added automatically
5288
5289 @lilypond[quote,raggedright,fragment,verbatim]
5290 \time 4/4 r1 | R1 | R1*2
5291 \set Score.skipBars = ##t R1*17 R1*4
5292 @end lilypond
5293
5294 The @code{1} in @code{R1} is similar to the duration notation used for
5295 notes.  Hence, for time signatures other than 4/4, you must enter other
5296 durations.  This can be done with augmentation dots or fractions
5297
5298 @lilypond[quote,raggedright,fragment,verbatim]
5299 \set Score.skipBars = ##t
5300 \time 3/4
5301 R2. | R2.*2
5302 \time 13/8
5303 R1*13/8
5304 R1*13/8*12 |
5305 \time 10/8 R4*5*4 |
5306 @end lilypond
5307
5308 An @code{R} spanning a single measure is printed as either a whole rest
5309 or a breve, centered in the measure regardless of the time signature.
5310
5311 If there are only a few measures of rest, LilyPond prints ``church rests''
5312 (a series of rectangles) in the staff.  To replace that with a simple
5313 rest, use @code{MultiMeasureRest.expand-limit}.
5314
5315 @lilypond[quote,raggedright,fragment,verbatim]
5316 \set Score.skipBars = ##t
5317 R1*2 | R1*5 | R1*9
5318 \override MultiMeasureRest #'expand-limit = 1
5319 R1*2 | R1*5 | R1*9
5320 @end lilypond
5321
5322
5323 @cindex text on multi-measure rest
5324 @cindex script on multi-measure rest
5325 @cindex fermata on multi-measure rest
5326
5327 Texts can be added to multi-measure rests by using the
5328 @var{note}-@code{markup} syntax (see @ref{Text markup}).
5329 A variable (@code{\fermataMarkup}) is provided for
5330 adding fermatas
5331
5332
5333 @lilypond[quote,raggedright,verbatim,fragment]
5334 \set Score.skipBars = ##t
5335 \time 3/4
5336 R2.*10^\markup { \italic "ad lib." }
5337 R2.^\fermataMarkup
5338 @end lilypond
5339
5340 If you want to have a text on the left end of a multi-measure rest,
5341 attach the text to a zero-length skip note, i.e.
5342
5343 @example
5344 s1*0^"Allegro"
5345 R1*4
5346 @end example
5347
5348
5349 @cindex whole rests for a full measure
5350
5351 @seealso
5352
5353 Program reference: @internalsref{MultiMeasureRestEvent},
5354 @internalsref{MultiMeasureTextEvent},
5355 @internalsref{MultiMeasureRestMusicGroup}, and
5356 @internalsref{MultiMeasureRest}.
5357
5358 The layout object @internalsref{MultiMeasureRestNumber} is for the
5359 default number, and @internalsref{MultiMeasureRestText} for user
5360 specified texts.
5361
5362 @refbugs
5363
5364 It is not possible to use fingerings (e.g., @code{R1-4}) to put numbers
5365 over multi-measure rests.
5366
5367 @cindex condensing rests
5368
5369 There is no way to automatically condense multiple rests into a single
5370 multimeasure rest.  Multi measure rests do not take part in rest
5371 collisions.
5372
5373 Be careful when entering multimeasure rests followed by whole
5374 notes.  The following will enter two notes lasting four measures each
5375 @example
5376 R1*4 cis cis
5377 @end example
5378 When @code{skipBars} is set, the result will look OK, but the bar
5379 numbering will be off.
5380
5381 @node Automatic part combining
5382 @subsection Automatic part combining
5383 @cindex automatic part combining
5384 @cindex part combiner
5385
5386
5387 Automatic part combining is used to merge two parts of music onto a
5388 staff.  It is aimed at typesetting orchestral scores.  When the two
5389 parts are identical for a period of time, only one is shown.  In
5390 places where the two parts differ, they are typeset as separate
5391 voices, and stem directions are set automatically.  Also, solo and
5392 @emph{a due} parts are identified and can be marked.
5393
5394 The syntax for part combining is
5395
5396 @example
5397 \partcombine @var{musicexpr1} @var{musicexpr2}
5398 @end example
5399
5400
5401
5402 The following example demonstrates the basic functionality of the part
5403 combiner: putting parts on one staff, and setting stem directions and
5404 polyphony
5405
5406 @lilypond[quote,verbatim,raggedright,fragment]
5407 \new Staff \partcombine
5408   \relative g' { g g a( b) c c r r }
5409   \relative g' { g g r4 r e e g g }
5410 @end lilypond
5411
5412 The first @code{g} appears only once, although it was
5413 specified twice (once in each part).  Stem, slur and tie directions are
5414 set automatically, depending whether there is a solo or unisono.  The
5415 first part (with context called @code{one}) always gets up stems, and
5416 `solo', while the second (called @code{two}) always gets down stems and
5417 `Solo II'.
5418
5419 If you just want the merging parts, and not the textual markings, you
5420 may set the property @code{printPartCombineTexts} to false
5421
5422 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
5423 \new Staff <<
5424   \set Staff.printPartCombineTexts = ##f
5425   \partcombine
5426     \relative g' { g a( b) r }
5427     \relative g' { g r4 r f }
5428 >>
5429 @end lilypond
5430
5431
5432 Both arguments to @code{\partcombine} will be interpreted as
5433 @internalsref{Voice} contexts.  If using relative octaves,
5434 @code{\relative} should be specified for both music expressions, i.e.
5435
5436 @example
5437 \partcombine
5438   \relative @dots{} @var{musicexpr1}
5439   \relative @dots{} @var{musicexpr2}
5440 @end example
5441
5442 @noindent
5443 A @code{\relative} section that is outside of @code{\partcombine} has
5444 no effect on the pitches of @var{musicexpr1} and @var{musicexpr2}.
5445
5446 @seealso
5447
5448 Program reference: @internalsref{PartCombineMusic},
5449 @internalsref{SoloOneEvent}, and
5450 @internalsref{SoloTwoEvent}, and
5451 @internalsref{UnisonoEvent}.
5452
5453 @refbugs
5454
5455 When @code{printPartCombineTexts} is set, when the two voices play the
5456 same notes on and off, the part combiner may typeset @code{a2} more
5457 than once in a measure.
5458
5459 @code{\partcombine} cannot be inside @code{\times}.
5460
5461 @code{\partcombine} cannot be inside @code{\relative}.
5462
5463 Internally, the @code{\partcombine} interprets both arguments as
5464 @code{Voice}s named @code{one} and @code{two}, and then decides when
5465 the parts can be combined.  Consequently, if the arguments switch to
5466 differently named @internalsref{Voice} contexts, the events in those
5467 will be ignored.
5468
5469 @node Hiding staves
5470 @subsection Hiding staves
5471
5472 @cindex Frenched scores
5473 @cindex Hiding staves
5474
5475 In orchestral scores, staff lines that only have rests are usually
5476 removed.  This saves some space.  This style is called `French Score'.
5477 For @internalsref{Lyrics},
5478 @internalsref{ChordNames} and @internalsref{FiguredBass}, this is
5479 switched on by default.  When these line of these contexts turn out
5480 empty after the line-breaking process, they are removed.
5481
5482 For normal staves, a specialized @internalsref{Staff} context is
5483 available, which does the same: staves containing nothing (or only
5484 multi measure rests) are removed.  The context definition is stored in
5485 @code{\RemoveEmptyStaffContext} variable.  Observe how the second staff
5486 in this example disappears in the second line
5487
5488
5489 @lilypond[quote,raggedright,verbatim]
5490 \layout {
5491   \context { \RemoveEmptyStaffContext }
5492 }
5493
5494 {
5495   \relative c' <<
5496     \new Staff { e4 f g a \break c1 }
5497     \new Staff { c4 d e f \break R1 }
5498   >>
5499 }
5500 @end lilypond
5501
5502 The first system shows all staves in full.  If empty staves should be
5503 removed from the first system too, set @code{remove-first} to false in
5504 @internalsref{RemoveEmptyVerticalGroup}.
5505
5506 Another application is making ossia sections, i.e., alternative
5507 melodies on a separate piece of staff, with help of a Frenched
5508 staff.  See @inputfileref{input/@/test,ossia@/.ly} for an example.
5509
5510
5511 @node Different editions from one source
5512 @subsection Different editions from one source
5513
5514 The @code{\tag} command marks music expressions with a name.  These
5515 tagged expressions can be filtered out later.  With this mechanism it
5516 is possible to make different versions of the same music source.
5517
5518 In the following example, we see two versions of a piece of music, one
5519 for the full score, and one with cue notes for the instrumental part
5520
5521 @example
5522 c1
5523 <<
5524   \tag #'part <<
5525     R1 \\
5526     @{
5527       \set fontSize = #-1
5528       c4_"cue" f2 g4 @}
5529   >>
5530   \tag #'score R1
5531 >>
5532 c1
5533 @end example
5534
5535 The same can be applied to articulations, texts, etc.: they are
5536 made by prepending
5537 @example
5538 -\tag #@var{your-tag}
5539 @end example
5540 to an articulation, for example,
5541 @example
5542 c1-\tag #'part ^4
5543 @end example
5544
5545 This defines a note with a conditional fingering indication.
5546
5547 By applying the @code{\keepWithTag} and @code{\removeWithTag}
5548 commands, tagged expressions can be filtered.  For example,
5549 @example
5550 <<
5551   @var{the music}
5552   \keepWithTag #'score @var{the music}
5553   \keepWithTag #'part @var{the music}
5554 >>
5555 @end example
5556 would yield
5557
5558 @lilypondfile[raggedright,quote]{tag-filter.ly}
5559
5560
5561 The argument of the @code{\tag} command should be a symbol, or a list
5562 of symbols, for example,
5563 @example
5564 \tag #'(original-part transposed-part) @dots{}
5565 @end example
5566
5567
5568
5569 @seealso
5570
5571 Examples: @inputfileref{input/@/regression,tag@/-filter@/.ly}.
5572
5573 @refbugs
5574
5575 Multiple rests are not merged if you create the score with both tagged
5576 sections.
5577  
5578
5579 @node Quoting other voices
5580 @subsection Quoting other voices
5581
5582 With quotations, fragments of other parts can be inserted into a part
5583 directly.  Before a part can be quoted, it must be marked especially as
5584 quotable.  This is done with code @code{\addquote} command.
5585
5586 @example
5587 \addquote @var{name} @var{music}
5588 @end example
5589
5590
5591 @noindent
5592 Here, @var{name} is an identifying string.  The @var{music} is any kind
5593 of music.  This is an example of @code{\addquote}
5594
5595 @example
5596 \addquote clarinet \relative c' @{
5597   f4 fis g gis
5598 @}
5599 @end example
5600
5601 This command must be entered at toplevel, i.e.  outside any music
5602 blocks.
5603
5604 After calling @code{\addquote}, the quotation may then be done with
5605 @code{\quoteDuring} or @code{\cueDuring},
5606
5607 @example
5608 \quoteDuring #@var{name} @var{music}
5609 @end example
5610
5611 During a part, a piece of music can be quoted with the @code{\quoteDuring}
5612 command.
5613
5614 @example
5615 \quoteDuring #"clarinet" @{ s2. @}
5616 @end example
5617
5618 This would cite three quarter notes (the duration of @code{s2.})  of
5619 the previously added @code{clarinet} voice.
5620
5621
5622 More precisely, it takes the current time-step of the part being
5623 printed, and extracts the notes at the corresponding point of the
5624 @code{\addquote}d voice.  Therefore, the argument to @code{\addquote}
5625 should be the entire part of the voice to be quoted, including any
5626 rests at the beginning.
5627
5628 Quotations take into account the transposition of both source and target
5629 instruments, if they are specified using the @code{\transposition} command.
5630
5631 @lilypond[quote,raggedright,verbatim]
5632 \addquote clarinet \relative c' {
5633   \transposition bes
5634   f4 fis g gis
5635 }
5636
5637 {
5638   e'8 f'8 \quoteDuring #"clarinet" { s2 }
5639 }
5640 @end lilypond
5641
5642 The type of events that are present in cue notes can be trimmed with
5643 the @code{quotedEventTypes} property.  The default value is
5644 @code{(note-event rest-event)}, which means that only notes of and
5645 rests of the cued voice end up in the @code{\quoteDuring}.
5646 Setting
5647
5648 @example
5649 \set Staff.quotedEventTypes =
5650        #'(note-event articulation-event dynamic-event)
5651 @end example
5652
5653 @noindent
5654 will quote notes (but no rests), together with scripts and dynamics.
5655
5656 @refbugs
5657
5658 Only the contents of the first @internalsref{Voice} occurring in an
5659 @code{\addquote} command will be considered for quotation, so
5660 @var{music} can not contain @code{\new} and @code{\context Voice}
5661 statements that would switch to a different Voice.
5662
5663 Quoting grace notes is broken and can even cause LilyPond to crash.
5664
5665 @seealso
5666
5667 In this manual: @ref{Instrument transpositions}.
5668
5669 Examples: @inputfileref{input/@/regression,quote@/.ly}
5670 @inputfileref{input/@/regression,quote@/-transposition@/.ly}
5671
5672 Program reference: @internalsref{QuoteMusic}.
5673
5674 @node Formatting cue notes
5675 @subsection Formatting cue notes
5676
5677 The previous section deals with inserting notes from another voice.
5678 There is a more advanced music function called @code{\cueDuring},
5679 which makes formatting cue notes easier.
5680
5681 The syntax is
5682
5683 @example
5684   \cueDuring #@var{name} #@var{updown} @var{music}
5685 @end example
5686
5687 This will insert notes from the part @var{name} into a
5688 @internalsref{Voice} called @code{cue}. This happens simultaneously
5689 with @var{music}, which usually is a rest.  When the cue notes start,
5690 the staff in effect becomes polyphonic for a moment. The argument
5691 @var{updown} determines whether the cue notes should be notated as a
5692 first or second voice.
5693
5694
5695 @lilypond[verbatim,raggedright]
5696 smaller = {
5697   \set fontSize = #-2
5698   \override Stem #'length = #5.5
5699   \override Beam #'thickness = #0.384
5700   \override Beam #'space-function =
5701     #(lambda (beam mult) (* 0.8 (Beam::space_function beam mult)))
5702 }
5703
5704 \addquote clarinet \relative {
5705   R1*20
5706   r2 r8 c f f
5707
5708
5709 \new Staff \relative  <<
5710
5711   % setup a context for  cue  notes.
5712   \context Voice = cue { \smaller \skip 1*21 }
5713   
5714   \set Score.skipBars = ##t
5715   
5716   \new Voice {
5717     R1*20
5718     \cueDuring #"clarinet" #1 {
5719       R1
5720     }
5721     g4 g2. 
5722   }
5723 >>
5724 @end lilypond 
5725
5726
5727 Here are a couple of hints for successful cue notes
5728
5729 @itemize @bullet
5730 @item
5731 Cue notes have smaller font sizes.
5732 @item
5733  the cued part is marked with the instrument playing the cue.
5734 @item
5735  when the original part takes over again, this should be marked with
5736  the name of the original instrument.
5737
5738  @c really?  Are you sure about that last point?  I'll check after 3.0 -gp
5739
5740 @c Yes, this is good practice. Otherwise, the start of the original
5741 @c part can only be seen from the font size. This is not good enough
5742 @c for sight-reading. It is possilbe to use other
5743 @c markers (eg. a big close-bracket over the staff) to indicate the cue notes are
5744 @c finished.
5745 @c -hwn
5746
5747
5748  any other changes introduced by the cued part should also be
5749 undone. For example, if the cued instrument plays in a different clef,
5750 the original clef should be stated once again.
5751
5752 @end itemize
5753
5754
5755
5756
5757
5758 @node Ancient notation
5759 @section Ancient notation
5760
5761 @cindex Vaticana, Editio
5762 @cindex Medicaea, Editio
5763 @cindex hufnagel
5764 @cindex Petrucci
5765 @cindex mensural
5766
5767 Support for ancient notation includes features for mensural notation
5768 and Gregorian Chant notation.  There is also limited support for
5769 figured bass notation.
5770
5771 Many graphical objects provide a @code{style} property, see
5772 @itemize @bullet
5773 @item
5774 @ref{Ancient note heads},
5775 @item
5776 @ref{Ancient accidentals},
5777 @item
5778 @ref{Ancient rests},
5779 @item
5780 @ref{Ancient clefs},
5781 @item
5782 @ref{Ancient flags},
5783 @item
5784 @ref{Ancient time signatures}.
5785 @end itemize
5786
5787 By manipulating such a grob property, the typographical appearance of
5788 the affected graphical objects can be accommodated for a specific
5789 notation flavor without need for introducing any new notational
5790 concept.
5791
5792 In addition to the standard articulation signs described in section
5793 @ref{Articulations}, specific articulation signs for ancient notation
5794 are provided.
5795
5796 @itemize @bullet
5797 @item
5798 @ref{Ancient articulations}
5799 @end itemize
5800
5801 Other aspects of ancient notation can not that easily be expressed as
5802 in terms of just changing a style property of a graphical object or
5803 adding articulation signs.  Some notational concepts are introduced
5804 specifically for ancient notation,
5805
5806 @itemize @bullet
5807 @item
5808 @ref{Custodes},
5809 @item
5810 @ref{Divisiones},
5811 @item
5812 @ref{Ligatures}.
5813 @end itemize
5814
5815 If this all is too much of documentation for you, and you just want to
5816 dive into typesetting without worrying too much about the details on
5817 how to customize a context, you may have a look at the predefined
5818 contexts.  Use them to set up predefined style-specific voice and
5819 staff contexts, and directly go ahead with the note entry,
5820
5821 @itemize @bullet
5822 @item
5823 @ref{Gregorian Chant contexts},
5824 @item
5825 @ref{Mensural contexts}.
5826 @end itemize
5827
5828 There is limited support for figured bass notation which came
5829 up during the baroque period.
5830
5831 @itemize @bullet
5832 @item
5833 @ref{Figured bass}
5834 @end itemize
5835
5836 Here are all suptopics at a glance:
5837
5838 @menu
5839 * Ancient note heads::
5840 * Ancient accidentals::
5841 * Ancient rests::
5842 * Ancient clefs::
5843 * Ancient flags::
5844 * Ancient time signatures::
5845 * Ancient articulations::
5846 * Custodes::
5847 * Divisiones::
5848 * Ligatures::
5849 * Gregorian Chant contexts::
5850 * Mensural contexts::
5851 * Figured bass::
5852 @end menu
5853
5854
5855 @node Ancient note heads
5856 @subsection Ancient note heads
5857
5858 @cindex note heads
5859
5860
5861 For ancient notation, a note head style other than the @code{default}
5862 style may be chosen.  This is accomplished by setting the @code{style}
5863 property of the NoteHead object to @code{baroque}, @code{neomensural}
5864 or @code{mensural}.  The @code{baroque} style differs from the
5865 @code{default} style only in using a square shape for @code{\breve}
5866 note heads.  The @code{neomensural} style differs from the
5867 @code{baroque} style in that it uses rhomboidal heads for whole notes
5868 and all smaller durations.  Stems are centered on the note heads.
5869 This style is in particular useful when transcribing mensural music,
5870 e.g., for the incipit.  The @code{mensural} style finally produces note
5871 heads that mimic the look of note heads in historic printings of the
5872 16th century.
5873
5874 The following example demonstrates the @code{neomensural} style
5875
5876 @lilypond[quote,fragment,raggedright,verbatim]
5877 \set Score.skipBars = ##t
5878 \override NoteHead #'style = #'neomensural
5879 a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
5880 @end lilypond
5881
5882 When typesetting a piece in Gregorian Chant notation, the
5883 @internalsref{Gregorian_ligature_engraver} will automatically select
5884 the proper note heads, such there is no need to explicitly set the
5885 note head style.  Still, the note head style can be set e.g.@: to
5886 @code{vaticana_punctum} to produce punctum neumes.  Similarly, a
5887 @internalsref{Mensural_ligature_engraver} is used to automatically
5888 assemble mensural ligatures.  See @ref{Ligatures} for how ligature
5889 engravers work.
5890
5891 @seealso
5892
5893 Examples: @inputfileref{input/@/regression,note@/-head@/-style@/.ly} gives an
5894 overview over all available note head styles.
5895
5896
5897 @node Ancient accidentals
5898 @subsection Ancient accidentals
5899
5900 @cindex accidentals
5901
5902
5903 Use the @code{style} property of grob @internalsref{Accidental} to
5904 select ancient accidentals.   Supported styles are
5905 @code{mensural}, @code{vaticana}, @code{hufnagel} and @code{medicaea}.
5906
5907 @lilypond[quote,raggedright,staffsize=26]
5908 \score {
5909 {
5910   \fatText
5911   s^\markup {
5912     \column <
5913       "vaticana"
5914       { " " \musicglyph #"accidentals-vaticana-1"
5915       " " \musicglyph #"accidentals-vaticana0" }
5916     >
5917     \column <
5918       "medicaea"
5919       { " " \musicglyph #"accidentals-medicaea-1" }
5920     >
5921     \column <
5922       "hufnagel"
5923       { " " \musicglyph #"accidentals-hufnagel-1" }
5924     >
5925     \column <
5926       "mensural"
5927       { " " \musicglyph #"accidentals-mensural-1"
5928       " " \musicglyph #"accidentals-mensural1" }
5929     >
5930   }
5931 }
5932 \layout {
5933   interscoreline = 1
5934   \context { \Score \remove "Bar_number_engraver" }
5935   \context { \Staff
5936       \remove "Clef_engraver"
5937       \remove "Key_engraver"
5938       \remove "Time_signature_engraver"
5939       \remove "Staff_symbol_engraver"
5940       minimumVerticalExtent = ##f
5941     }
5942   }
5943 }
5944 @end lilypond
5945
5946 As shown, not all accidentals are supported by each style.  When
5947 trying to access an unsupported accidental, LilyPond will switch to a
5948 different style, as demonstrated in
5949 @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
5950
5951 Similarly to local accidentals, the style of the key signature can be
5952 controlled by the @code{style} property of the
5953 @internalsref{KeySignature} grob.
5954
5955 @seealso
5956
5957 In this manual: @ref{Pitches}, @ref{Chromatic alterations} and
5958 @ref{Accidentals} give a general introduction into the use of
5959 accidentals.  @ref{Key signature} gives a general introduction into
5960 the use of key signatures.
5961
5962 Program reference: @internalsref{KeySignature}.
5963
5964 Examples: @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
5965
5966 @node Ancient rests
5967 @subsection Ancient rests
5968
5969 @cindex rests
5970
5971
5972 Use the @code{style} property of grob @internalsref{Rest} to select
5973 ancient accidentals.   Supported styles are @code{classical},
5974 @code{neomensural} and @code{mensural}.  @code{classical} differs
5975 from the @code{default} style only in that the quarter rest looks like
5976 a horizontally mirrored 8th rest.  The @code{neomensural} style suits
5977 well for e.g., the incipit of a transcribed mensural piece of music.
5978 The @code{mensural} style finally mimics the appearance of rests as
5979 in historic prints of the 16th century.
5980
5981 The following example demonstrates the @code{neomensural} style
5982
5983 @lilypond[quote,fragment,raggedright,verbatim]
5984 \set Score.skipBars = ##t
5985 \override Rest #'style = #'neomensural
5986 r\longa r\breve r1 r2 r4 r8 r16
5987 @end lilypond
5988
5989 There are no 32th and 64th rests specifically for the mensural or
5990 neo-mensural style.  Instead, the rests from the default style will be
5991 taken.  See @inputfileref{input/@/test,rests@/.ly} for a chart of all
5992 rests.
5993
5994 There are no rests in Gregorian Chant notation; instead, it uses
5995 @ref{Divisiones}.
5996
5997 @seealso
5998
5999 In this manual: @ref{Rests} gives a general introduction into the use of rests.
6000
6001
6002 @node Ancient clefs
6003 @subsection Ancient clefs
6004
6005 @cindex clefs
6006
6007
6008 LilyPond supports a variety of clefs, many of them ancient.
6009
6010 The following table shows all ancient clefs that are supported via the
6011 @code{\clef} command.  Some of the clefs use the same glyph, but
6012 differ only with respect to the line they are printed on.  In such
6013 cases, a trailing number in the name is used to enumerate these clefs.
6014 Still, you can manually force a clef glyph to be typeset on an
6015 arbitrary line, as described in @ref{Clef}.  The note printed to the
6016 right side of each clef in the example column denotes the @code{c'}
6017 with respect to that clef.
6018
6019 @multitable @columnfractions .4 .4 .2
6020 @item
6021 @b{Description}
6022 @tab
6023 @b{Supported Clefs}
6024 @tab
6025 @b{Example}
6026
6027 @item
6028 modern style mensural C clef
6029 @tab
6030 @code{neomensural-c1}, @code{neomensural-c2},@*
6031 @code{neomensural-c3}, @code{neomensural-c4}
6032 @tab
6033 @lilypond[fragment,relative=1,notime]
6034   \clef "neomensural-c2" c
6035 @end lilypond
6036
6037 @item
6038 petrucci style mensural C clefs, for use on different staff lines
6039 (the examples shows the 2nd staff line C clef)
6040 @tab
6041 @code{petrucci-c1}, @code{petrucci-c2},@*
6042 @code{petrucci-c3}, @code{petrucci-c4},@*
6043 @code{petrucci-c5}
6044 @tab
6045 @lilypond[fragment,relative=1,notime]
6046   \clef "petrucci-c2" c
6047 @end lilypond
6048
6049 @item
6050 petrucci style mensural F clef
6051 @tab
6052 @code{petrucci-f}
6053 @tab
6054 @lilypond[fragment,relative=1,notime]
6055   \clef "petrucci-f" c
6056 @end lilypond
6057
6058 @item
6059 petrucci style mensural G clef
6060 @tab
6061 @code{petrucci-g}
6062 @tab
6063 @lilypond[fragment,relative=1,notime]
6064   \clef "petrucci-g" c
6065 @end lilypond
6066
6067 @item
6068 historic style mensural C clef
6069 @tab
6070 @code{mensural-c1}, @code{mensural-c2},@*
6071 @code{mensural-c3}, @code{mensural-c4}
6072 @tab
6073 @lilypond[fragment,relative=1,notime]
6074   \clef "mensural-c2" c
6075 @end lilypond
6076
6077 @item
6078 historic style mensural F clef
6079 @tab
6080 @code{mensural-f}
6081 @tab
6082 @lilypond[fragment,relative=1,notime]
6083   \clef "mensural-f" c
6084 @end lilypond
6085
6086 @item
6087 historic style mensural G clef
6088 @tab
6089 @code{mensural-g}
6090 @tab
6091 @lilypond[fragment,relative=1,notime]
6092   \clef "mensural-g" c
6093 @end lilypond
6094
6095 @item
6096 Editio Vaticana style do clef
6097 @tab
6098 @code{vaticana-do1}, @code{vaticana-do2},@*
6099 @code{vaticana-do3}
6100 @tab
6101 @lilypond[fragment,relative=1,notime]
6102   \override Staff.StaffSymbol #'line-count = #4
6103   \clef "vaticana-do2" c
6104 @end lilypond
6105
6106 @item
6107 Editio Vaticana style fa clef
6108 @tab
6109 @code{vaticana-fa1}, @code{vaticana-fa2}
6110 @tab
6111 @lilypond[fragment,relative=1,notime]
6112   \override Staff.StaffSymbol #'line-count = #4
6113   \clef "vaticana-fa2" c
6114 @end lilypond
6115
6116 @item
6117 Editio Medicaea style do clef
6118 @tab
6119 @code{medicaea-do1}, @code{medicaea-do2},@*
6120 @code{medicaea-do3}
6121 @tab
6122 @lilypond[fragment,relative=1,notime]
6123   \override Staff.StaffSymbol #'line-count = #4
6124   \clef "medicaea-do2" c
6125 @end lilypond
6126
6127 @item
6128 Editio Medicaea style fa clef
6129 @tab
6130 @code{medicaea-fa1}, @code{medicaea-fa2}
6131 @tab
6132 @lilypond[fragment,relative=1,notime]
6133   \override Staff.StaffSymbol #'line-count = #4
6134   \clef "medicaea-fa2" c
6135 @end lilypond
6136
6137 @item
6138 historic style hufnagel do clef
6139 @tab
6140 @code{hufnagel-do1}, @code{hufnagel-do2},@*
6141 @code{hufnagel-do3}
6142 @tab
6143 @lilypond[fragment,relative=1,notime]
6144   \override Staff.StaffSymbol #'line-count = #4
6145   \clef "hufnagel-do2" c
6146 @end lilypond
6147
6148 @item
6149 historic style hufnagel fa clef
6150 @tab
6151 @code{hufnagel-fa1}, @code{hufnagel-fa2}
6152 @tab
6153 @lilypond[fragment,relative=1,notime]
6154   \override Staff.StaffSymbol #'line-count = #4
6155   \clef "hufnagel-fa2" c
6156 @end lilypond
6157
6158 @item
6159 historic style hufnagel combined do/fa clef
6160 @tab
6161 @code{hufnagel-do-fa}
6162 @tab
6163 @lilypond[fragment,relative=1,notime]
6164   \clef "hufnagel-do-fa" c
6165 @end lilypond
6166 @end multitable
6167
6168
6169
6170 @emph{Modern style} means ``as is typeset in contemporary editions of
6171 transcribed mensural music''.
6172
6173 @emph{Petrucci style} means ``inspired by printings published by the
6174 famous engraver Petrucci (1466-1539)''.
6175
6176 @emph{Historic style} means ``as was typeset or written in historic
6177 editions (other than those of Petrucci)''.
6178
6179 @emph{Editio XXX style} means ``as is/was printed in Editio XXX''.
6180
6181 Petrucci used C clefs with differently balanced left-side vertical
6182 beams, depending on which staff line it is printed.
6183
6184 @seealso
6185
6186 In this manual: see @ref{Clef}.
6187
6188 @refbugs
6189
6190 The mensural g clef is mapped to the Petrucci g clef.
6191
6192
6193
6194 @node Ancient flags
6195 @subsection Ancient flags
6196
6197 @cindex flags
6198
6199
6200 Use the @code{flag-style} property of grob @internalsref{Stem} to
6201 select ancient flags.  Besides the @code{default} flag style,
6202  only @code{mensural} style is supported
6203
6204 @lilypond[quote,fragment,raggedright,verbatim]
6205 \override Stem #'flag-style = #'mensural
6206 \override Stem #'thickness = #1.0
6207 \override NoteHead #'style = #'mensural
6208 \autoBeamOff
6209 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
6210 c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
6211 @end lilypond
6212
6213 Note that the innermost flare of each mensural flag always is
6214 vertically aligned with a staff line.
6215
6216 There is no particular flag style for neo-mensural notation.  Hence,
6217 when typesetting the incipit of a transcribed piece of mensural
6218 music, the default flag style should be used.  There are no flags in
6219 Gregorian Chant notation.
6220
6221 @refbugs
6222
6223 The attachment of ancient flags to stems is slightly off due to a
6224 change in early 2.3.x.
6225
6226 Vertically aligning each flag with a staff line assumes that stems
6227 always end either exactly on or exactly in the middle between two
6228 staff lines.  This may not always be true when using advanced layout
6229 features of classical notation (which however are typically out of
6230 scope for mensural notation).
6231
6232 @node Ancient time signatures
6233 @subsection Ancient time signatures
6234
6235 @cindex time signatures
6236
6237
6238 There is limited support for mensural time signatures.   The
6239 glyphs are hard-wired to particular time fractions.  In other words,
6240 to get a particular mensural signature glyph with the @code{\time n/m}
6241 command, @code{n} and @code{m} have to be chosen according to the
6242 following table
6243
6244 @lilypond[quote,raggedright]
6245 \layout {
6246   indent = 0.0
6247   \context { \Staff
6248     \remove Staff_symbol_engraver
6249     \remove Clef_engraver
6250     \remove Time_signature_engraver
6251   }
6252 } {
6253   \set Score.timing = ##f
6254   \set Score.barAlways = ##t
6255   s_\markup { "$\\backslash$time 4/4" }
6256   ^\markup { "       " \musicglyph #"timesig-neomensural4/4" }
6257   s
6258   s_\markup { "$\\backslash$time 2/2" }
6259   ^\markup { "       " \musicglyph #"timesig-neomensural2/2" }
6260   s
6261   s_\markup { "$\\backslash$time 6/4" }
6262   ^\markup { "       " \musicglyph #"timesig-neomensural6/4" }
6263   s
6264   s_\markup { "$\\backslash$time 6/8" }
6265   ^\markup { "       " \musicglyph #"timesig-neomensural6/8" }
6266   \break
6267   s_\markup { "$\\backslash$time 3/2" }
6268   ^\markup { "       " \musicglyph #"timesig-neomensural3/2" }
6269   s
6270   s_\markup { "$\\backslash$time 3/4" }
6271   ^\markup { "       " \musicglyph #"timesig-neomensural3/4" }
6272   s
6273   s_\markup { "$\\backslash$time 9/4" }
6274   ^\markup { "       " \musicglyph #"timesig-neomensural9/4" }
6275   s
6276   s_\markup { "$\\backslash$time 9/8" }
6277   ^\markup { "       " \musicglyph #"timesig-neomensural9/8" }
6278   \break
6279   s_\markup { "$\\backslash$time 4/8" }
6280   ^\markup { "       " \musicglyph #"timesig-neomensural4/8" }
6281   s
6282   s_\markup { "$\\backslash$time 2/4" }
6283   ^\markup { "       " \musicglyph #"timesig-neomensural2/4" }
6284 }
6285 @end lilypond
6286
6287 Use the @code{style} property of grob @internalsref{TimeSignature} to
6288 select ancient time signatures.  Supported styles are
6289 @code{neomensural} and @code{mensural}.  The above table uses the
6290 @code{neomensural} style.  This style is appropriate for the
6291 incipit of transcriptions of mensural pieces.  The @code{mensural}
6292 style mimics the look of historical printings of the 16th century.
6293
6294 The following examples shows the differences in style,
6295
6296 @lilypond[raggedright,fragment,relative=1,quote]
6297 {
6298   \fatText
6299   \time 2/2
6300   c1^\markup { \hspace #-2.0 \typewriter default }
6301
6302   \override Staff.TimeSignature #'style = #'numbered
6303   \time 2/2
6304   c1^\markup { \hspace #-2.0 \typewriter numbered }
6305
6306   \override Staff.TimeSignature #'style = #'mensural
6307   \time 2/2
6308   c1^\markup { \hspace #-2.0 \typewriter mensural }
6309
6310   \override Staff.TimeSignature #'style = #'neomensural
6311   \time 2/2
6312   c1^\markup { \hspace #-2.0 \typewriter neomensural }
6313   \override Staff.TimeSignature #'style = #'single-digit
6314   \time 2/2
6315   c1^\markup { \hspace #-2.0 \typewriter single-digit }
6316 }
6317 @end lilypond
6318
6319 @seealso
6320
6321 This manual: @ref{Time signature} gives a general introduction into
6322 the use of time signatures.
6323
6324 @refbugs
6325
6326 Ratios of note durations do not change with the time signature.  For
6327 example, the ratio of 1 brevis = 3 semibrevis (tempus perfectum) must
6328 be made by hand, by setting
6329
6330 @example
6331 breveTP = #(ly:make-duration -1 0 3 2)
6332 @dots{}
6333 @{ c\breveTP f1 @}
6334 @end example
6335
6336 @noindent
6337 This sets @code{breveTP} to 3/2 times 2 = 3 times a whole note.
6338
6339 The @code{old6/8alt} symbol (an alternate symbol for 6/8) is not
6340 addressable with @code{\time}.  Use a @code{\markup} instead
6341
6342 @node Ancient articulations
6343 @subsection Ancient articulations
6344
6345 @cindex articulations
6346
6347 In addition to the standard articulation signs described in section
6348 @ref{Articulations}, articulation signs for ancient notation are
6349 provided.  These are specifically designed for use with notation in
6350 Editio Vaticana style.
6351
6352 @lilypond[quote,raggedright,verbatim]
6353 \include "gregorian-init.ly"
6354 \score {
6355   \context VaticanaVoice {
6356     \override TextScript #'font-family = #'typewriter
6357     \override TextScript #'font-shape = #'upright
6358     \override Script #'padding = #-0.1
6359     a4\ictus_"ictus" s1
6360     a4\circulus_"circulus" s1
6361     a4\semicirculus_"semicirculus" s1 s
6362     a4\accentus_"accentus" s1
6363     \[ a4_"episem" \episemInitium \pes b \flexa a \episemFinis \]
6364   }
6365 }
6366 @end lilypond
6367
6368 @refbugs
6369
6370 Some articulations are vertically placed too closely to the
6371 correpsonding note heads.
6372
6373 @node Custodes
6374 @subsection Custodes
6375
6376 @cindex custos
6377 @cindex custodes
6378
6379 A @emph{custos} (plural: @emph{custodes}; Latin word for `guard') is a
6380 symbol that appears at the end of a staff.  It anticipates the pitch
6381 of the first note(s) of the following line thus helping the performer
6382 to manage line breaks during performance.
6383
6384 Custodes were frequently used in music notation until the 17th
6385 century.  Nowadays, they have survived only in a few particular forms
6386 of musical notation such as contemporary editions of Gregorian chant
6387 like the @emph{editio vaticana}.  There are different custos glyphs
6388 used in different flavors of notational style.
6389
6390 For typesetting custodes, just put a @internalsref{Custos_engraver} into the
6391 @internalsref{Staff} context when declaring the @code{\layout} block,
6392 as shown in the following example
6393
6394 @example
6395 \layout @{
6396   \context @{
6397     \Staff
6398     \consists Custos_engraver
6399     Custos \override #'style = #'mensural
6400   @}
6401 @}
6402 @end example
6403
6404 The result looks like this
6405
6406 @lilypond[quote,raggedright]
6407 \score {
6408 {
6409   a'1
6410   \override Staff.Custos #'style = #'mensural
6411   \break
6412   g'
6413 }
6414 \layout {
6415   \context { \Staff \consists Custos_engraver }
6416   }
6417 }
6418 @end lilypond
6419
6420 The custos glyph is selected by the @code{style} property.  The styles
6421 supported are @code{vaticana}, @code{medicaea}, @code{hufnagel} and
6422 @code{mensural}.  They are demonstrated in the following fragment
6423
6424 @lilypond[quote,raggedright,fragment]
6425 \new Lyrics \lyricmode {
6426   \markup { \column <
6427     \typewriter "vaticana"
6428     { " " \musicglyph #"custodes-vaticana-u0" }
6429   > }
6430   \markup { \column <
6431     \typewriter "medicaea"
6432     { " " \musicglyph #"custodes-medicaea-u0" }
6433   >}
6434   \markup { \column <
6435     \typewriter "hufnagel"
6436     { " " \musicglyph #"custodes-hufnagel-u0" }
6437   >}
6438   \markup { \column <
6439     \typewriter "mensural"
6440     { " " \musicglyph #"custodes-mensural-u0" }
6441   >}
6442 }
6443 @end lilypond
6444
6445 @seealso
6446
6447 Program reference: @internalsref{Custos}.
6448
6449 Examples: @inputfileref{input/@/regression,custos@/.ly}.
6450
6451
6452 @node Divisiones
6453 @subsection Divisiones
6454
6455 @cindex divisio
6456 @cindex divisiones
6457 @cindex finalis
6458
6459 A @emph{divisio} (plural: @emph{divisiones}; Latin word for
6460 `division') is a staff context symbol that is used to structure
6461 Gregorian music into phrases and sections.  The musical meaning of
6462 @emph{divisio minima}, @emph{divisio maior} and @emph{divisio maxima}
6463 can be characterized as short, medium and long pause, somewhat like
6464 the breathmarks from @ref{Breath marks}.  The @emph{finalis} sign not
6465 only marks the end of a chant, but is also frequently used within a
6466 single antiphonal/responsorial chant to mark the end of each section.
6467
6468
6469 To use divisiones, include the file @file{gregorian@/-init@/.ly}.  It
6470 contains definitions that you can apply by just inserting
6471 @code{\divisioMinima}, @code{\divisioMaior}, @code{\divisioMaxima},
6472 and @code{\finalis} at proper places in the input.  Some editions use
6473 @emph{virgula} or @emph{caesura} instead of divisio minima.
6474 Therefore, @file{gregorian@/-init@/.ly} also defines @code{\virgula} and
6475 @code{\caesura}
6476
6477 @lilypondfile[quote,raggedright]{divisiones.ly}
6478
6479 @refcommands
6480
6481 @cindex @code{\virgula}
6482 @code{\virgula},
6483 @cindex @code{\caesura}
6484 @code{\caesura},
6485 @cindex @code{\divisioMinima}
6486 @code{\divisioMinima},
6487 @cindex @code{\divisioMaior}
6488 @code{\divisioMaior},
6489 @cindex @code{\divisioMaxima}
6490 @code{\divisioMaxima},
6491 @cindex @code{\finalis}
6492 @code{\finalis}.
6493
6494 @seealso
6495
6496 In this manual: @ref{Breath marks}.
6497
6498 Program reference: @internalsref{BreathingSign}, @internalsref{BreathingSignEvent}.
6499
6500 Examples: @inputfileref{input/@/test,divisiones@/.ly}.
6501
6502 @node Ligatures
6503 @subsection Ligatures
6504
6505 @cindex Ligatures
6506
6507 @c TODO: Should double check if I recalled things correctly when I wrote
6508 @c down the following paragraph by heart.
6509
6510 A ligature is a graphical symbol that represents at least two distinct
6511 notes.  Ligatures originally appeared in the manuscripts of Gregorian
6512 chant notation to denote ascending or descending sequences of notes.
6513
6514 Ligatures are entered by enclosing them in @code{\[} and @code{\]}.
6515 Some ligature styles may need additional input syntax specific for
6516 this particular type of ligature.  By default, the
6517 @internalsref{LigatureBracket} engraver just puts a square bracket
6518 above the ligature
6519
6520 @lilypond[quote,raggedright,verbatim]
6521 \transpose c c' {
6522   \[ g c a f d' \]
6523   a g f
6524   \[ e f a g \]
6525 }
6526 @end lilypond
6527
6528 To select a specific style of ligatures, a proper ligature engraver
6529 has to be added to the @internalsref{Voice} context, as explained in
6530 the following subsections.   Only white mensural ligatures
6531 are supported with certain limitations.
6532
6533
6534
6535 @refbugs
6536
6537 Ligatures need special spacing that has not yet been implemented.  As
6538 a result, there is too much space between ligatures most of the time,
6539 and line breaking often is unsatisfactory.  Also, lyrics do not
6540 correctly align with ligatures.
6541
6542 Accidentals must not be printed within a ligature, but instead need to
6543 be collected and printed in front of it.
6544
6545 Augmentum dots within ligatures are not handled correctly.
6546
6547
6548 @menu
6549 * White mensural ligatures::
6550 * Gregorian square neumes ligatures::
6551 @end menu
6552
6553 @node White mensural ligatures
6554 @subsubsection White mensural ligatures
6555
6556 @cindex Mensural ligatures
6557 @cindex White mensural ligatures
6558
6559 There is limited support for white mensural ligatures.
6560
6561 To engrave white mensural ligatures, in the layout block the
6562 @internalsref{Mensural_ligature_engraver} has to be put into the
6563 @internalsref{Voice} context, and remove the
6564 @internalsref{Ligature_bracket_engraver}
6565
6566 @example
6567 \layout @{
6568   \context @{
6569     \Voice
6570     \remove Ligature_bracket_engraver
6571     \consists Mensural_ligature_engraver
6572   @}
6573 @}
6574 @end example
6575
6576 There is no additional input language to describe the shape of a
6577 white mensural ligature.  The shape is rather determined solely from
6578 the pitch and duration of the enclosed notes.  While this approach may
6579 take a new user a while to get accustomed, it has the great advantage
6580 that the full musical information of the ligature is known internally.
6581 This is not only required for correct MIDI output, but also allows for
6582 automatic transcription of the ligatures.
6583
6584 For example,
6585
6586 @example
6587 \set Score.timing = ##f
6588 \set Score.defaultBarType = "empty"
6589 \override NoteHead #'style = #'neomensural
6590 \override Staff.TimeSignature #'style = #'neomensural
6591 \clef "petrucci-g"
6592 \[ g\longa c\breve a\breve f\breve d'\longa \]
6593 s4
6594 \[ e1 f1 a\breve g\longa \]
6595 @end example
6596 @lilypond[quote,raggedright]
6597 \score {
6598   \transpose c c' {
6599     \set Score.timing = ##f
6600     \set Score.defaultBarType = "empty"
6601     \override NoteHead #'style = #'neomensural
6602     \override Staff.TimeSignature #'style = #'neomensural
6603     \clef "petrucci-g"
6604     \[ g\longa c\breve a\breve f\breve d'\longa \]
6605     s4
6606     \[ e1 f1 a\breve g\longa \]
6607   }
6608   \layout {
6609     \context {
6610       \Voice
6611       \remove Ligature_bracket_engraver
6612       \consists Mensural_ligature_engraver
6613     }
6614   }
6615 }
6616 @end lilypond
6617
6618 Without replacing @internalsref{Ligature_bracket_engraver} with
6619 @internalsref{Mensural_ligature_engraver}, the same music transcribes
6620 to the following
6621
6622 @lilypond[quote,raggedright]
6623 \transpose c c' {
6624   \set Score.timing = ##f
6625   \set Score.defaultBarType = "empty"
6626   \override NoteHead #'style = #'neomensural
6627   \override Staff.TimeSignature #'style = #'neomensural
6628   \clef "petrucci-g"
6629   \[ g\longa c\breve a\breve f\breve d'\longa \]
6630   s4
6631   \[ e1 f1 a\breve g\longa \]
6632 }
6633 @end lilypond
6634
6635 @refbugs
6636
6637 The implementation is experimental.  It may output strange warnings,
6638 incorrect results, and might even crash on more complex ligatures.
6639
6640 @node Gregorian square neumes ligatures
6641 @subsubsection Gregorian square neumes ligatures
6642
6643 @cindex Square neumes ligatures
6644 @cindex Gregorian square neumes ligatures
6645
6646 There is limited support for Gregorian square neumes notation
6647 (following the style of the Editio Vaticana).  Core ligatures can
6648 already be typeset, but essential issues for serious typesetting are
6649 still lacking, such as (among others) horizontal alignment of multiple
6650 ligatures, lyrics alignment and proper accidentals handling.
6651
6652
6653 The following table contains the extended neumes table of the 2nd
6654 volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
6655 1983 by the monks of Solesmes.
6656
6657 @multitable @columnfractions .4 .2 .2 .2
6658
6659 @item
6660 @b{Neuma aut@*
6661 Neumarum Elementa}
6662 @tab
6663 @b{Figurae@*
6664 Rectae}
6665 @tab
6666 @b{Figurae@*
6667 Liquescentes@*
6668 Auctae}
6669 @tab
6670 @b{Figurae@*
6671 Liquescentes@*
6672 Deminutae}
6673
6674 @c TODO: \layout block is identical in all of the below examples.
6675 @c Therefore, it should somehow be included rather than duplicated all
6676 @c the time. --jr
6677
6678 @c why not make identifiers in ly/engraver-init.ly? --hwn
6679
6680 @c Because it's just used to typeset plain notes without
6681 @c a staff for demonstration purposes rather than something
6682 @c special of Gregorian chant notation. --jr
6683
6684 @item
6685 @code{1. Punctum}
6686 @tab
6687 @lilypond[staffsize=26,linewidth=1.5\cm]
6688 \include "gregorian-init.ly"
6689 \score {
6690   \transpose c c' {
6691     % Punctum
6692     \[ b \]
6693     \noBreak s^\markup {"a"} \noBreak
6694
6695     % Punctum Inclinatum
6696     \[ \inclinatum b \]
6697     \noBreak s^\markup {"b"}
6698   }
6699 \layout { \neumeDemoLayout }}
6700 @end lilypond
6701 @tab
6702 @lilypond[staffsize=26,linewidth=2.5\cm]
6703 \include "gregorian-init.ly"
6704 \score {
6705   \transpose c c' {
6706     % Punctum Auctum Ascendens
6707     \[ \auctum \ascendens b \]
6708     \noBreak s^\markup {"c"} \noBreak
6709
6710     % Punctum Auctum Descendens
6711     \[ \auctum \descendens b \]
6712     \noBreak s^\markup {"d"} \noBreak
6713
6714     % Punctum Inclinatum Auctum
6715     \[ \inclinatum \auctum b \]
6716     \noBreak s^\markup {"e"}
6717   }
6718 \layout { \neumeDemoLayout }}
6719 @end lilypond
6720 @tab
6721 @lilypond[staffsize=26,linewidth=1.0\cm]
6722 \include "gregorian-init.ly"
6723 \score {
6724   \transpose c c' {
6725     % Punctum Inclinatum Parvum
6726     \[ \inclinatum \deminutum b \]
6727     \noBreak s^\markup {"f"}
6728   }
6729 \layout { \neumeDemoLayout }}
6730 @end lilypond
6731
6732 @item
6733 @code{2. Virga}
6734 @tab
6735 @lilypond[staffsize=26,linewidth=1.0\cm]
6736 \include "gregorian-init.ly"
6737 \score {
6738   \transpose c c' {
6739     % Virga
6740     \[ \virga b \]
6741     \noBreak s^\markup {"g"}
6742   }
6743 \layout { \neumeDemoLayout }}
6744 @end lilypond
6745 @tab
6746 @tab
6747
6748 @item
6749 @code{3. Apostropha vel Stropha}
6750 @tab
6751 @lilypond[staffsize=26,linewidth=1.0\cm]
6752 \include "gregorian-init.ly"
6753 \score {
6754   \transpose c c' {
6755     % Stropha
6756     \[ \stropha b \]
6757     \noBreak s^\markup {"h"}
6758   }
6759 \layout { \neumeDemoLayout }}
6760 @end lilypond
6761 @tab
6762 @lilypond[staffsize=26,linewidth=1.0\cm]
6763 \include "gregorian-init.ly"
6764 \score {
6765   \transpose c c' {
6766     % Stropha Aucta
6767     \[ \stropha \auctum b \]
6768     \noBreak s^\markup {"i"}
6769   }
6770 \layout { \neumeDemoLayout }}
6771 @end lilypond
6772 @tab
6773
6774 @item
6775 @code{4. Oriscus}
6776 @tab
6777 @lilypond[staffsize=26,linewidth=1.0\cm]
6778 \include "gregorian-init.ly"
6779 \score {
6780   \transpose c c' {
6781     % Oriscus
6782     \[ \oriscus b \]
6783     \noBreak s^\markup {"j"}
6784   }
6785 \layout { \neumeDemoLayout }}
6786 @end lilypond
6787 @tab
6788 @tab
6789
6790 @item
6791 @code{5. Clivis vel Flexa}
6792 @tab
6793 @lilypond[staffsize=26,linewidth=1.0\cm]
6794 \include "gregorian-init.ly"
6795 \score {
6796   \transpose c c' {
6797     % Clivis vel Flexa
6798     \[ b \flexa g \]
6799     s^\markup {"k"}
6800   }
6801 \layout { \neumeDemoLayout }}
6802 @end lilypond
6803 @tab
6804 @lilypond[staffsize=26,linewidth=2.0\cm]
6805 \include "gregorian-init.ly"
6806 \score {
6807   \transpose c c' {
6808     % Clivis Aucta Descendens
6809     \[ b \flexa \auctum \descendens g \]
6810     \noBreak s^\markup {"l"} \noBreak
6811
6812     % Clivis Aucta Ascendens
6813     \[ b \flexa \auctum \ascendens g \]
6814     \noBreak s^\markup {"m"}
6815   }
6816 \layout { \neumeDemoLayout }}
6817 @end lilypond
6818 @tab
6819 @lilypond[staffsize=26,linewidth=1.0\cm]
6820 \include "gregorian-init.ly"
6821 \score {
6822   \transpose c c' {
6823     % Cephalicus
6824     \[ b \flexa \deminutum g \]
6825     s^\markup {"n"}
6826   }
6827 \layout { \neumeDemoLayout }}
6828 @end lilypond
6829
6830 @item
6831 @code{6. Podatus vel Pes}
6832 @tab
6833 @lilypond[staffsize=26,linewidth=1.0\cm]
6834 \include "gregorian-init.ly"
6835 \score {
6836   \transpose c c' {
6837     % Podatus vel Pes
6838     \[ g \pes b \]
6839     s^\markup {"o"}
6840   }
6841 \layout { \neumeDemoLayout }}
6842 @end lilypond
6843 @tab
6844 @lilypond[staffsize=26,linewidth=2.0\cm]
6845 \include "gregorian-init.ly"
6846 \score {
6847   \transpose c c' {
6848     % Pes Auctus Descendens
6849     \[ g \pes \auctum \descendens b \]
6850     \noBreak s^\markup {"p"} \noBreak
6851
6852     % Pes Auctus Ascendens
6853     \[ g \pes \auctum \ascendens b \]
6854     \noBreak s^\markup {"q"}
6855   }
6856 \layout { \neumeDemoLayout }}
6857 @end lilypond
6858 @tab
6859 @lilypond[staffsize=26,linewidth=1.0\cm]
6860 \include "gregorian-init.ly"
6861 \score {
6862   \transpose c c' {
6863     % Epiphonus
6864     \[ g \pes \deminutum b \]
6865     s^\markup {"r"}
6866   }
6867 \layout { \neumeDemoLayout }}
6868 @end lilypond
6869
6870 @item
6871 @code{7. Pes Quassus}
6872 @tab
6873 @lilypond[staffsize=26,linewidth=1.0\cm]
6874 \include "gregorian-init.ly"
6875 \score {
6876   \transpose c c' {
6877     % Pes Quassus
6878     \[ \oriscus g \pes \virga b \]
6879     s^\markup {"s"}
6880   }
6881 \layout { \neumeDemoLayout }}
6882 @end lilypond
6883 @tab
6884 @lilypond[staffsize=26,linewidth=1.0\cm]
6885 \include "gregorian-init.ly"
6886 \score {
6887   \transpose c c' {
6888     % Pes Quassus Auctus Descendens
6889     \[ \oriscus g \pes \auctum \descendens b \]
6890     s^\markup {"t"}
6891   }
6892 \layout { \neumeDemoLayout }}
6893 @end lilypond
6894 @tab
6895
6896 @item
6897 @code{8. Quilisma Pes}
6898 @tab
6899 @lilypond[staffsize=26,linewidth=1.0\cm]
6900 \include "gregorian-init.ly"
6901 \score {
6902   \transpose c c' {
6903     % Quilisma Pes
6904     \[ \quilisma g \pes b \]
6905     s^\markup {"u"}
6906   }
6907 \layout { \neumeDemoLayout }}
6908 @end lilypond
6909 @tab
6910 @lilypond[staffsize=26,linewidth=1.0\cm]
6911 \include "gregorian-init.ly"
6912 \score {
6913   \transpose c c' {
6914     % Quilisma Pes Auctus Descendens
6915     \[ \quilisma g \pes \auctum \descendens b \]
6916     s^\markup {"v"}
6917   }
6918 \layout { \neumeDemoLayout }}
6919 @end lilypond
6920 @tab
6921
6922 @item
6923 @code{9. Podatus Initio Debilis}
6924 @tab
6925 @lilypond[staffsize=26,linewidth=1.0\cm]
6926 \include "gregorian-init.ly"
6927 \score {
6928   \transpose c c' {
6929     % Pes Initio Debilis
6930     \[ \deminutum g \pes b \]
6931     s^\markup {"w"}
6932   }
6933 \layout { \neumeDemoLayout }}
6934 @end lilypond
6935 @tab
6936 @lilypond[staffsize=26,linewidth=1.0\cm]
6937 \include "gregorian-init.ly"
6938 \score {
6939   \transpose c c' {
6940     % Pes Auctus Descendens Initio Debilis
6941     \[ \deminutum g \pes \auctum \descendens b \]
6942     s^\markup {"x"}
6943   }
6944 \layout { \neumeDemoLayout }}
6945 @end lilypond
6946 @tab
6947
6948 @item
6949 @code{10. Torculus}
6950 @tab
6951 @lilypond[staffsize=26,linewidth=1.0\cm]
6952 \include "gregorian-init.ly"
6953 \score {
6954   \transpose c c' {
6955     % Torculus
6956     \[ a \pes b \flexa g \]
6957     s^\markup {"y"}
6958   }
6959 \layout { \neumeDemoLayout }}
6960 @end lilypond
6961 @tab
6962 @lilypond[staffsize=26,linewidth=1.0\cm]
6963 \include "gregorian-init.ly"
6964 \score {
6965   \transpose c c' {
6966     % Torculus Auctus Descendens
6967     \[ a \pes b \flexa \auctum \descendens g \]
6968     s^\markup {"z"}
6969   }
6970 \layout { \neumeDemoLayout }}
6971 @end lilypond
6972 @tab
6973 @lilypond[staffsize=26,linewidth=1.0\cm]
6974 \include "gregorian-init.ly"
6975 \score {
6976   \transpose c c' {
6977     % Torculus Deminutus
6978     \[ a \pes b \flexa \deminutum g \]
6979     s^\markup {"A"}
6980   }
6981 \layout { \neumeDemoLayout }}
6982 @end lilypond
6983
6984 @item
6985 @code{11. Torculus Initio Debilis}
6986 @tab
6987 @lilypond[staffsize=26,linewidth=1.0\cm]
6988 \include "gregorian-init.ly"
6989 \score {
6990   \transpose c c' {
6991     % Torculus Initio Debilis
6992     \[ \deminutum a \pes b \flexa g \]
6993     s^\markup {"B"}
6994   }
6995 \layout { \neumeDemoLayout }}
6996 @end lilypond
6997 @tab
6998 @lilypond[staffsize=26,linewidth=1.0\cm]
6999 \include "gregorian-init.ly"
7000 \score {
7001   \transpose c c' {
7002     % Torculus Auctus Descendens Initio Debilis
7003     \[ \deminutum a \pes b \flexa \auctum \descendens g \]
7004     s^\markup {"C"}
7005   }
7006 \layout { \neumeDemoLayout }}
7007 @end lilypond
7008 @tab
7009 @lilypond[staffsize=26,linewidth=1.0\cm]
7010 \include "gregorian-init.ly"
7011 \score {
7012   \transpose c c' {
7013     % Torculus Deminutus Initio Debilis
7014     \[ \deminutum a \pes b \flexa \deminutum g \]
7015     s^\markup {"D"}
7016   }
7017 \layout { \neumeDemoLayout }}
7018 @end lilypond
7019
7020 @item
7021 @code{12. Porrectus}
7022 @tab
7023 @lilypond[staffsize=26,linewidth=1.0\cm]
7024 \include "gregorian-init.ly"
7025 \score {
7026   \transpose c c' {
7027     % Porrectus
7028     \[ a \flexa g \pes b \]
7029     s^\markup {"E"}
7030   }
7031 \layout { \neumeDemoLayout }}
7032 @end lilypond
7033 @tab
7034 @lilypond[staffsize=26,linewidth=1.0\cm]
7035 \include "gregorian-init.ly"
7036 \score {
7037   \transpose c c' {
7038     % Porrectus Auctus Descendens
7039     \[ a \flexa g \pes \auctum \descendens b \]
7040     s^\markup {"F"}
7041   }
7042 \layout { \neumeDemoLayout }}
7043 @end lilypond
7044 @tab
7045 @lilypond[staffsize=26,linewidth=1.0\cm]
7046 \include "gregorian-init.ly"
7047 \score {
7048   \transpose c c' {
7049     % Porrectus Deminutus
7050     \[ a \flexa g \pes \deminutum b \]
7051     s^\markup {"G"}
7052   }
7053 \layout { \neumeDemoLayout }}
7054 @end lilypond
7055
7056 @item
7057 @code{13. Climacus}
7058 @tab
7059 @lilypond[staffsize=26,linewidth=1.0\cm]
7060 \include "gregorian-init.ly"
7061 \score {
7062   \transpose c c' {
7063     % Climacus
7064     \[ \virga b \inclinatum a \inclinatum g \]
7065     s^\markup {"H"}
7066   }
7067   \layout { \neumeDemoLayout }
7068 }
7069 @end lilypond
7070 @tab
7071 @lilypond[staffsize=26,linewidth=1.0\cm]
7072 \include "gregorian-init.ly"
7073 \score {
7074   \transpose c c' {
7075     % Climacus Auctus
7076     \[ \virga b \inclinatum a \inclinatum \auctum g \]
7077     s^\markup {"I"}
7078   }
7079 \layout { \neumeDemoLayout }}
7080 @end lilypond
7081 @tab
7082 @lilypond[staffsize=26,linewidth=1.0\cm]
7083 \include "gregorian-init.ly"
7084 \score {
7085   \transpose c c' {
7086     % Climacus Deminutus
7087     \[ \virga b \inclinatum a \inclinatum \deminutum g \]
7088     s^\markup {"J"}
7089   }
7090 \layout { \neumeDemoLayout }}
7091 @end lilypond
7092
7093 @item
7094 @code{14. Scandicus}
7095 @tab
7096 @lilypond[staffsize=26,linewidth=1.0\cm]
7097 \include "gregorian-init.ly"
7098 \score {
7099   \transpose c c' {
7100     % Scandicus
7101     \[ g \pes a \virga b \]
7102     s^\markup {"K"}
7103   }
7104 \layout { \neumeDemoLayout }}
7105 @end lilypond
7106 @tab
7107 @lilypond[staffsize=26,linewidth=1.0\cm]
7108 \include "gregorian-init.ly"
7109 \score {
7110   \transpose c c' {
7111     % Scandicus Auctus Descendens
7112     \[ g \pes a \pes \auctum \descendens b \]
7113     s^\markup {"L"}
7114   }
7115 \layout { \neumeDemoLayout }}
7116 @end lilypond
7117 @tab
7118 @lilypond[staffsize=26,linewidth=1.0\cm]
7119 \include "gregorian-init.ly"
7120 \score {
7121   \transpose c c' {
7122     % Scandicus Deminutus
7123     \[ g \pes a \pes \deminutum b \]
7124     s^\markup {"M"}
7125   }
7126 \layout { \neumeDemoLayout }}
7127 @end lilypond
7128
7129 @item
7130 @code{15. Salicus}
7131 @tab
7132 @lilypond[staffsize=26,linewidth=1.0\cm]
7133 \include "gregorian-init.ly"
7134 \score {
7135   \transpose c c' {
7136     % Salicus
7137     \[ g \oriscus a \pes \virga b \]
7138     s^\markup {"N"}
7139   }
7140 \layout { \neumeDemoLayout }}
7141 @end lilypond
7142 @tab
7143 @lilypond[staffsize=26,linewidth=1.0\cm]
7144 \include "gregorian-init.ly"
7145 \score {
7146   \transpose c c' {
7147     % Salicus Auctus Descendens
7148     \[ g \oriscus a \pes \auctum \descendens b \]
7149     s^\markup {"O"}
7150   }
7151 \layout { \neumeDemoLayout }}
7152 @end lilypond
7153 @tab
7154
7155 @item
7156 @code{16. Trigonus}
7157 @tab
7158 @lilypond[staffsize=26,linewidth=1.0\cm]
7159 \include "gregorian-init.ly"
7160 \score {
7161   \transpose c c' {
7162     % Trigonus
7163     \[ \stropha b \stropha b \stropha a \]
7164     s^\markup {"P"}
7165   }
7166   \layout { \neumeDemoLayout }
7167 }
7168 @end lilypond
7169 @tab
7170 @tab
7171
7172 @end multitable
7173
7174
7175 Unlike most other neumes notation systems, the input language for
7176 neumes does not reflect the typographical appearance, but is designed
7177 to focus on musical meaning.  For example, @code{\[ a \pes b
7178 \flexa g \]} produces a Torculus consisting of three Punctum heads,
7179 while @code{\[ a \flexa g \pes b \]} produces a Porrectus with a
7180 curved flexa shape and only a single Punctum head.  There is no
7181 command to explicitly typeset the curved flexa shape; the decision of
7182 when to typeset a curved flexa shape is based on the musical
7183 input.  The idea of this approach is to separate the musical aspects
7184 of the input from the notation style of the output.  This way, the
7185 same input can be reused to typeset the same music in a different
7186 style of Gregorian chant notation.
7187
7188 The following table shows the code fragments that produce the
7189 ligatures in the above neumes table.  The letter in the first column
7190 in each line of the below table indicates to which ligature in the
7191 above table it refers.  The second column gives the name of the
7192 ligature.  The third column shows the code fragment that produces this
7193 ligature, using @code{g}, @code{a} and @code{b} as example pitches.
7194
7195 @multitable @columnfractions .02 .31 .67
7196 @item
7197 @b{#}
7198 @tab
7199 @b{Name}
7200 @tab
7201 @b{Input Language}
7202
7203 @item
7204 a
7205 @tab
7206 Punctum
7207 @tab
7208 @code{\[ b \]}
7209
7210 @item
7211 b
7212 @tab
7213 Punctum Inclinatum
7214 @tab
7215 @code{\[ \inclinatum b \]}
7216
7217 @item
7218 c
7219 @tab
7220 Punctum Auctum@*
7221 Ascendens
7222 @tab
7223 @code{\[ \auctum \ascendens b \]}
7224
7225 @item
7226 d
7227 @tab
7228 Punctum Auctum@*
7229 Descendens
7230 @tab
7231 @code{\[ \auctum \descendens b \]}
7232
7233 @item
7234 e
7235 @tab
7236 Punctum Inclinatum@*
7237 Auctum
7238 @tab
7239 @code{\[ \inclinatum \auctum b \]}
7240
7241 @item
7242 f
7243 @tab
7244 Punctum Inclinatum@*
7245 Parvum @tab
7246 @code{\[ \inclinatum \deminutum b \]}
7247
7248 @item
7249 g
7250 @tab
7251 Virga
7252 @tab
7253 @code{\[ \virga b \]}
7254
7255 @item
7256 h
7257 @tab
7258 Stropha
7259 @tab
7260 @code{\[ \stropha b \]}
7261
7262 @item
7263 i
7264 @tab
7265 Stropha Aucta
7266 @tab
7267 @code{\[ \stropha \auctum b \]}
7268
7269 @item
7270 j
7271 @tab
7272 Oriscus
7273 @tab
7274 @code{\[ \oriscus b \]}
7275
7276 @item
7277 k
7278 @tab
7279 Clivis vel Flexa
7280 @tab
7281 @code{\[ b \flexa g \]}
7282
7283 @item
7284 l
7285 @tab
7286 Clivis Aucta@*
7287 Descendens
7288 @tab
7289 @code{\[ b \flexa \auctum \descendens g \]}
7290
7291 @item
7292 m
7293 @tab
7294 Clivis Aucta@*
7295 Ascendens
7296 @tab
7297 @code{\[ b \flexa \auctum \ascendens g \]}
7298
7299 @item
7300 n
7301 @tab
7302 Cephalicus
7303 @tab
7304 @code{\[ b \flexa \deminutum g \]}
7305
7306 @item
7307 o
7308 @tab
7309 Podatus vel Pes
7310 @tab
7311 @code{\[ g \pes b \]}
7312
7313 @item
7314 p
7315 @tab
7316 Pes Auctus@*
7317 Descendens
7318 @tab
7319 @code{\[ g \pes \auctum \descendens b \]}
7320
7321 @item
7322 q
7323 @tab
7324 Pes Auctus@*
7325 Ascendens
7326 @tab
7327 @code{\[ g \pes \auctum \ascendens b \]}
7328
7329 @item
7330 r
7331 @tab
7332 Epiphonus
7333 @tab
7334 @code{\[ g \pes \deminutum b \]}
7335
7336 @item
7337 s
7338 @tab
7339 Pes Quassus
7340 @tab
7341 @code{\[ \oriscus g \pes \virga b \]}
7342
7343 @item
7344 t
7345 @tab
7346 Pes Quassus@*
7347 Auctus Descendens @tab
7348 @code{\[ \oriscus g \pes \auctum \descendens b \]}
7349
7350 @item
7351 u
7352 @tab
7353 Quilisma Pes
7354 @tab
7355 @code{\[ \quilisma g \pes b \]}
7356
7357 @item
7358 v
7359 @tab
7360 Quilisma Pes@*
7361 Auctus Descendens
7362 @tab
7363 @code{\[ \quilisma g \pes \auctum \descendens b \]}
7364
7365 @item
7366 w
7367 @tab
7368 Pes Initio Debilis
7369 @tab
7370 @code{\[ \deminutum g \pes b \]}
7371
7372 @item
7373 x
7374 @tab
7375 Pes Auctus Descendens@*
7376 Initio Debilis
7377 @tab
7378 @code{\[ \deminutum g \pes \auctum \descendens b \]}
7379
7380 @item
7381 y
7382 @tab
7383 Torculus
7384 @tab
7385 @code{\[ a \pes b \flexa g \]}
7386
7387 @item
7388 z
7389 @tab
7390 Torculus Auctus@*
7391 Descendens
7392 @tab
7393 @code{\[ a \pes b \flexa \auctum \descendens g \]}
7394
7395 @item
7396 A
7397 @tab
7398 Torculus Deminutus
7399 @tab
7400 @code{\[ a \pes b \flexa \deminutum g \]}
7401
7402 @item
7403 B
7404 @tab
7405 Torculus Initio Debilis
7406 @tab
7407 @code{\[ \deminutum a \pes b \flexa g \]}
7408
7409 @item
7410 C
7411 @tab
7412 Torculus Auctus@*
7413 Descendens Initio Debilis
7414 @tab
7415 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
7416
7417 @item
7418 D
7419 @tab
7420 Torculus Deminutus@*
7421 Initio Debilis
7422 @tab
7423 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
7424
7425 @item
7426 E
7427 @tab
7428 Porrectus
7429 @tab
7430 @code{\[ a \flexa g \pes b \]}
7431
7432 @item
7433 F
7434 @tab
7435 Porrectus Auctus@*
7436 Descendens
7437 @tab
7438 @code{\[ a \flexa g \pes \auctum \descendens b \]}
7439
7440 @item
7441 G
7442 @tab
7443 Porrectus Deminutus
7444 @tab
7445 @code{\[ a \flexa g \pes \deminutum b \]}
7446
7447 @item
7448 H
7449 @tab
7450 Climacus
7451 @tab
7452 @code{\[ \virga b \inclinatum a \inclinatum g \]}
7453
7454 @item
7455 I
7456 @tab
7457 Climacus Auctus
7458 @tab
7459 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
7460
7461 @item
7462 J
7463 @tab
7464 Climacus Deminutus
7465 @tab
7466 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
7467
7468 @item
7469 K
7470 @tab
7471 Scandicus
7472 @tab
7473 @code{\[ g \pes a \virga b \]}
7474
7475 @item
7476 L
7477 @tab
7478 Scandicus Auctus@*
7479 Descendens
7480 @tab
7481 @code{\[ g \pes a \pes \auctum \descendens b \]}
7482
7483 @item
7484 M
7485 @tab
7486 Scandicus Deminutus
7487 @tab
7488 @code{\[ g \pes a \pes \deminutum b \]}
7489
7490 @item
7491 N
7492 @tab
7493 Salicus
7494 @tab
7495 @code{\[ g \oriscus a \pes \virga b \]}
7496
7497 @item
7498 O
7499 @tab
7500 Salicus Auctus Descendens
7501 @tab
7502 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
7503
7504 @item
7505 P
7506 @tab
7507 Trigonus
7508 @tab
7509 @code{\[ \stropha b \stropha b \stropha a \]}
7510 @end multitable
7511
7512 @refcommands
7513
7514 The following head prefixes are supported
7515
7516 @cindex @code{\virga}
7517 @code{\virga},
7518 @cindex @code{\stropha}
7519 @code{\stropha},
7520 @cindex @code{\inclinatum}
7521 @code{\inclinatum},
7522 @cindex @code{\auctum}
7523 @code{\auctum},
7524 @cindex @code{\descendens}
7525 @code{\descendens},
7526 @cindex @code{\ascendens}
7527 @code{\ascendens},
7528 @cindex @code{\oriscus}
7529 @code{\oriscus},
7530 @cindex @code{\quilisma}
7531 @code{\quilisma},
7532 @cindex @code{\deminutum}
7533 @code{\deminutum}.
7534
7535 Head prefixes can be accumulated, though restrictions apply.  For
7536 example, either @code{\descendens} or @code{\ascendens} can be applied
7537 to a head, but not both to the same head.
7538
7539 @cindex @code{\pes}
7540 @cindex @code{\flexa}
7541 Two adjacent heads can be tied together with the @code{\pes} and
7542 @code{\flexa} infix commands for a rising and falling line of melody,
7543 respectively.
7544
7545
7546
7547 @node Gregorian Chant contexts
7548 @subsection Gregorian Chant contexts
7549
7550 @cindex VaticanaVoiceContext
7551 @cindex VaticanaStaffContext
7552
7553 The predefined @code{VaticanaVoiceContext} and
7554 @code{VaticanaStaffContext} can be used to engrave a piece of
7555 Gregorian Chant in the style of the Editio Vaticana.  These contexts
7556 initialize all relevant context properties and grob properties to
7557 proper values, so you can immediately go ahead entering the chant, as
7558 the following excerpt demonstrates
7559
7560 @lilypond[quote,raggedright,verbatim]
7561 \include "gregorian-init.ly"
7562 \score {
7563   <<
7564     \context VaticanaVoice = "cantus" {
7565       \override Score.BarNumber #'transparent = ##t {
7566         \[ c'\melisma c' \flexa a \]
7567         \[ a \flexa \deminutum g\melismaEnd \]
7568         f \divisioMinima
7569         \[ f\melisma \pes a c' c' \pes d'\melismaEnd \]
7570         c' \divisioMinima \break
7571         \[ c'\melisma c' \flexa a \]
7572         \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
7573       }
7574     }
7575     \lyricsto "cantus" \new Lyrics {
7576       San- ctus, San- ctus, San- ctus
7577     }
7578   >>
7579 }
7580 @end lilypond
7581
7582
7583 @node Mensural contexts
7584 @subsection Mensural contexts
7585
7586 @cindex MensuralVoiceContext
7587 @cindex MensuralStaffContext
7588
7589 The predefined @code{MensuralVoiceContext} and
7590 @code{MensuralStaffContext} can be used to engrave a piece in mensural
7591 style.  These contexts initialize all relevant context properties and
7592 grob properties to proper values, so you can immediately go ahead
7593 entering the chant, as the following excerpt demonstrates
7594
7595 @lilypond[quote,raggedright,verbatim]
7596 \score {
7597   <<
7598     \context MensuralVoice = "discantus" \transpose c c' {
7599       \override Score.BarNumber #'transparent = ##t {
7600         c'1\melisma bes a g\melismaEnd
7601         f\breve
7602         \[ f1\melisma a c'\breve d'\melismaEnd \]
7603         c'\longa
7604         c'\breve\melisma a1 g1\melismaEnd
7605         fis\longa^\signumcongruentiae
7606       }
7607     }
7608     \lyricsto "discantus" \new Lyrics {
7609       San -- ctus, San -- ctus, San -- ctus
7610     }
7611   >>
7612 }
7613 @end lilypond
7614
7615
7616 @node Figured bass
7617 @subsection Figured bass
7618
7619 @cindex Basso continuo
7620
7621 @c TODO: musicological blurb about FB
7622
7623
7624 LilyPond has limited support for figured bass
7625
7626 @lilypond[quote,raggedright,verbatim,fragment]
7627 <<
7628   \context Voice { \clef bass dis4 c d ais }
7629   \context FiguredBass \figuremode {
7630     < 6 >4 < 7 >8 < 6+ [_!] >
7631     < 6 >4 <6 5 [3+] >
7632   }
7633 >>
7634 @end lilypond
7635
7636 The support for figured bass consists of two parts: there is an input
7637 mode, introduced by @code{\figuremode}, where you can enter bass figures
7638 as numbers, and there is a context called @internalsref{FiguredBass} that
7639 takes care of making @internalsref{BassFigure} objects.
7640
7641 In figures input mode, a group of bass figures is delimited by
7642 @code{<} and @code{>}.  The duration is entered after the @code{>}
7643 @example
7644 <4 6>
7645 @end example
7646 @lilypond[quote,raggedright,fragment]
7647 \context FiguredBass
7648 \figuremode { <4 6> }
7649 @end lilypond
7650
7651 Accidentals are added when you append @code{-}, @code{!} and @code{+}
7652 to the numbers
7653
7654 @example
7655 <4- 6+ 7!>
7656 @end example
7657 @lilypond[quote,raggedright,fragment]
7658 \context FiguredBass
7659 \figuremode { <4- 6+ 7!> }
7660 @end lilypond
7661
7662 Spaces or dashes may be inserted by using @code{_}.  Brackets are
7663 introduced with @code{[} and @code{]}
7664
7665 @example
7666 < [4 6] 8 [_! 12] >
7667 @end example
7668 @lilypond[quote,raggedright,fragment]
7669 \context FiguredBass
7670 \figuremode { < [4 6] 8 [_! 12] > }
7671 @end lilypond
7672
7673 Although the support for figured bass may superficially resemble chord
7674 support, it works much simpler.  The @code{\figuremode} mode simply
7675 stores the numbers , and @internalsref{FiguredBass} context prints
7676 them as entered.  There is no conversion to pitches, and no
7677 realizations of the bass are played in the MIDI file.
7678
7679 Internally, the code produces markup texts.  You can use any of the
7680 markup text properties to override formatting.  For example, the
7681 vertical spacing of the figures may be set with @code{baseline-skip}.
7682
7683 @seealso
7684
7685 Program reference: @internalsref{BassFigureEvent} music, @internalsref{BassFigure} object,
7686 and @internalsref{FiguredBass} context.
7687
7688 @refbugs
7689
7690 Slash notation for alterations is not supported.
7691
7692 @node Contemporary notation
7693 @section Contemporary notation
7694
7695 In the 20th century, composers have greatly expanded the musical
7696 vocabulary.  With this expansion, many innovations in musical notation
7697 have been tried.  The book ``Music Notation in the 20th century'' by
7698 Kurt Stone gives a comprehensive overview (see @ref{Literature
7699 list}).  In general, the use of new, innovative notation makes a piece
7700 harder to understand and perform and its use should therefore be
7701 avoided.  For this reason, support for contemporary notation in
7702 LilyPond is limited.
7703
7704
7705 @menu
7706 * Polymetric notation::
7707 * Clusters::
7708 * Special fermatas::
7709 * Feathered beams::
7710 @end menu
7711
7712 @node Polymetric notation
7713 @subsection Polymetric notation
7714
7715 Double time signatures are not supported explicitly, but they can be
7716 faked.  In the next example, the markup for the time signature is
7717 created with a markup text.  This markup text is inserted in the
7718 @internalsref{TimeSignature} grob.
7719
7720 @lilypond[verbatim,raggedright]
7721 % create 2/4 + 5/8
7722 tsMarkup =\markup {
7723   \number {
7724     \column < "2" "4" >
7725     \musicglyph #"scripts-stopped"
7726     \bracket \column < "5" "8" >
7727   }
7728 }
7729
7730 {
7731   \override Staff.TimeSignature #'print-function = #Text_interface::print
7732   \override Staff.TimeSignature #'text = #tsMarkup
7733   \time 3/2
7734   c'2 \bar ":" c'4 c'4.
7735 }
7736 @end lilypond
7737
7738 Each staff can also have its own time signature.  This is done by
7739 moving the @internalsref{Timing_engraver} to @internalsref{Staff}
7740 context.
7741
7742 @example
7743 \layout @{
7744   \context @{ \Score \remove "Timing_engraver" @}
7745   \context @{ \Staff \consists "Timing_engraver" @}
7746 @}
7747 @end example
7748
7749
7750 Now, each staff has its own time signature.
7751 @example
7752 <<
7753   \new Staff @{
7754     \time 3/4
7755     c4 c c | c c c |
7756   @}
7757   \new Staff @{
7758     \time 2/4
7759     c4 c | c c | c c
7760   @}
7761   \new Staff @{
7762     \time 3/8
7763     c4. c8 c c c4. c8 c c
7764   @}
7765 >>
7766 @end example
7767
7768 @lilypond[quote,raggedright]
7769 \layout{
7770   \context{ \Score \remove "Timing_engraver" }
7771   \context{ \Staff \consists "Timing_engraver" }
7772 }
7773
7774 \relative c' <<
7775   \new Staff {
7776     \time 3/4
7777     c4 c c | c c c |
7778   }
7779   \new Staff {
7780     \time 2/4
7781     c4 c | c c | c c
7782   }
7783   \new Staff {
7784     \time 3/8
7785     c4. c8 c c c4. c8 c c
7786   }
7787 >>
7788 @end lilypond
7789
7790
7791 A different form of polymetric notation is where note lengths have
7792 different values across staves.
7793
7794 This notation can be created by setting a common time signature for
7795 each staff but replacing it manually using
7796 @code{timeSignatureFraction} to the desired fraction.  Then the printed
7797 durations in each staff are scaled to the common time signature.
7798 The latter is done with @code{\compressmusic}, which is similar to
7799 @code{\times}, but does not create a tuplet bracket.
7800
7801
7802 In this example, music with the time signatures of 3/4, 9/8 and 10/8 are
7803 used in parallel.  In the second staff, shown durations are multiplied by
7804 2/3, so that 2/3 * 9/8 = 3/4, and in the third staff, shown durations are
7805 multiplied by 3/5, so that 3/5 * 10/8 = 3/4.
7806
7807 @lilypond[quote,raggedright,verbatim,fragment]
7808 \relative c' { <<
7809   \new Staff {
7810     \time 3/4
7811     c4 c c | c c c |
7812   }
7813   \new Staff {
7814     \time 3/4
7815     \set Staff.timeSignatureFraction = #'(9 . 8)
7816     \compressmusic #'(2 . 3)
7817       \repeat unfold 6 { c8[ c c] }
7818   }
7819   \new Staff {
7820     \time 3/4
7821     \set Staff.timeSignatureFraction = #'(10 . 8)
7822     \compressmusic #'(3 . 5) {
7823       \repeat unfold 2 { c8[ c c] }
7824       \repeat unfold 2 { c8[ c] }
7825       | c4. c4. \times 2/3 { c8 c c } c4
7826     }
7827   }
7828 >> }
7829 @end lilypond
7830
7831
7832
7833
7834 @refbugs
7835
7836 When using different time signatures in parallel, the spacing is
7837 aligned vertically, but bar lines distort the regular spacing.
7838
7839
7840
7841 @node Clusters
7842 @subsection Clusters
7843
7844 @cindex cluster
7845
7846 A cluster indicates a continuous range of pitches to be played.  They
7847 can be denoted as the envelope of a set of notes.  They are entered by
7848 applying the function @code{makeClusters} to a sequence of
7849 chords, e.g.
7850 @c
7851 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
7852 \makeClusters { <c e > <b f'> }
7853 @end lilypond
7854
7855 The following example (from
7856 @inputfileref{input/@/regression,cluster@/.ly}) shows what the result
7857 looks like
7858
7859 @lilypondfile[raggedright,quote]{cluster.ly}
7860
7861 Ordinary notes and clusters can be put together in the same staff,
7862 even simultaneously.  In such a case no attempt is made to
7863 automatically avoid collisions between ordinary notes and clusters.
7864
7865 @seealso
7866
7867 Program reference: @internalsref{ClusterSpanner},
7868 @internalsref{ClusterSpannerBeacon},
7869 @internalsref{Cluster_spanner_engraver}, and
7870 @internalsref{ClusterNoteEvent}.
7871
7872 Examples: @inputfileref{input/@/regression,cluster@/.ly}.
7873
7874 @refbugs
7875
7876 Music expressions like @code{<< @{ g8 e8 @} a4 >>} are not printed
7877 accurately.  Use @code{<g a>8 <e a>8} instead.
7878
7879
7880
7881 @node Special fermatas
7882 @subsection Special fermatas
7883
7884 @cindex fermatas, special
7885
7886 In contemporary music notation, special fermata symbols denote breaks
7887 of differing lengths.  The following fermatas are supported
7888
7889 @lilypond[quote,raggedright]
7890 <<
7891   \oldaddlyrics {
7892     b'2
7893     ^\shortfermata
7894     _\shortfermata
7895     r
7896
7897     b'
7898     ^\fermata
7899     _\fermata
7900     r
7901
7902     b'
7903     ^\longfermata
7904     _\longfermata
7905     r
7906
7907     b'
7908     ^\verylongfermata
7909     _\verylongfermata
7910     r
7911   }
7912   \context Lyrics \lyricmode {
7913     \override LyricText #'font-family = #'typewriter
7914     "shortfermata" "fermata" "longfermata" "verylongfermata"
7915   }
7916 >>
7917 @end lilypond
7918
7919 See @ref{Articulations} for general instructions how to apply scripts
7920 such as fermatas to notes.
7921
7922 @node Feathered beams
7923 @subsection Feathered beams
7924
7925 Feathered beams are not supported natively, but they can be faked by
7926 forcing two beams to overlap.  Here is an example,
7927
7928 @c don't change relative setting witout changing positions!
7929 @lilypond[raggedright,relative=1,fragment,verbatim]
7930 \new Staff <<
7931   \new Voice
7932   {
7933     \stemUp
7934     \once \override Voice.Beam #'positions = #'(0 . 0.5)
7935     c8[ c c c c ]
7936   }
7937   \new Voice {
7938     \stemUp
7939     \once \override Voice.Beam #'positions = #'(0 . -0.5)
7940     c[ c c c c]
7941   }
7942 >>
7943 @end lilypond
7944
7945
7946
7947 @node Educational use
7948 @section Educational use
7949
7950 With the amount of control that LilyPond offers, one can make great
7951 teaching tools in addition to great musical scores.
7952
7953 @menu
7954 * Balloon help::
7955 * Blank music sheet::
7956 * Hidden notes::
7957 * Easy Notation note heads::
7958 @end menu
7959
7960 @node Balloon help
7961 @subsection Balloon help
7962
7963 Elements of notation can be marked and named with the help of a square
7964 balloon.  The primary purpose of this feature is to explain notation.
7965
7966 The following example demonstrates its use.
7967
7968 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
7969 \context Voice {
7970   \applyoutput
7971     #(add-balloon-text 'NoteHead "heads, or tails?"
7972     '(1 . -3))
7973   c8
7974 }
7975 @end lilypond
7976
7977 @noindent
7978 The function @code{add-balloon-text} takes the name of a grob, the
7979 label to print, and the position where to put the label relative to
7980 the object.  In the above example, the text ``heads or tails?'' ends
7981 3 spaces below and 1 space to the right of the marked head.
7982
7983 @cindex balloon
7984 @cindex notation, explaining
7985
7986 @seealso
7987
7988 Program reference: @internalsref{text-balloon-interface}.
7989
7990 Examples: @inputfileref{input/@/regression,balloon@/.ly}.
7991
7992
7993
7994
7995 @node Blank music sheet
7996 @subsection Blank music sheet
7997
7998 A blank music sheet can be produced also by using invisible notes, and
7999 removing @code{Bar_number_engraver}.
8000
8001
8002 @lilypond[quote,verbatim]
8003 emptymusic = {
8004   \repeat unfold 2 % Change this for more lines.
8005   { s1\break }
8006   \bar "|."
8007 }
8008 \new Score \with {
8009   \override TimeSignature #'transparent = ##t
8010   defaultBarType = #""
8011   \remove Bar_number_engraver
8012 } <<
8013   \context Staff \emptymusic
8014   \context TabStaff \emptymusic
8015 >>
8016 @end lilypond
8017
8018
8019 @node Hidden notes
8020 @subsection Hidden notes
8021
8022 @cindex Hidden notes
8023 @cindex Invisible notes
8024 @cindex Transparent notes
8025
8026 Hidden (or invisible or transparent) notes can be useful in preparing theory
8027 or composition exercises.
8028
8029 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
8030 c4 d4
8031 \hideNotes
8032 e4 f4
8033 \unHideNotes
8034 g4 a
8035 @end lilypond
8036
8037 Hidden notes are also great for performing weird tricks.  For example,
8038 slurs cannot be attached to rests or spacer rests, but you may with
8039 to include that in your score -- string instruments use this notation
8040 when doing pizzicato to indicate that the note should ring for as long
8041 as possible.
8042
8043 @lilypond[quote,raggedright,verbatim,relative=0,fragment]
8044 \clef bass
8045 << {
8046   c4^"pizz"( \hideNotes c)
8047   \unHideNotes c( \hideNotes c)
8048 } {
8049   s4 r s r
8050 } >>
8051 @end lilypond
8052
8053
8054 @node Easy Notation note heads
8055 @subsection Easy Notation note heads
8056
8057 @cindex easy notation
8058 @cindex Hal Leonard
8059
8060 The `easy play' note head includes a note name inside the head.  It is
8061 used in music for beginners
8062
8063 @lilypond[quote,raggedright,verbatim,fragment,staffsize=26]
8064   \setEasyHeads
8065   c'2 e'4 f' | g'1
8066 @end lilypond
8067
8068 The command @code{\setEasyHeads} overrides settings for the
8069 @internalsref{NoteHead} object.  To make the letters readable, it has
8070 to be printed in a large font size.  To print with a larger font, see
8071 @ref{Setting global staff size}.
8072
8073 @refcommands
8074
8075 @cindex @code{\setEasyHeads}
8076 @code{\setEasyHeads}
8077