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