]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/notation.itely
e66b2368a70ab6e2de52870fe3a33ae85f2a8d84
[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 The mark is incremented automatically if you use @code{\mark
4999 \default}, but you can also use an integer argument to set the mark
5000 manually.  The value to use is stored in the property
5001 @code{rehearsalMark}.
5002
5003 The style is defined by the property @code{markFormatter}.  It is a
5004 function taking the current mark (an integer) and the current context
5005 as argument.  It should return a markup object.  In the following
5006 example, @code{markFormatter} is set to a canned procedure.  After a
5007 few measures, it is set to function that produces a boxed number.
5008
5009 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
5010 \set Score.markFormatter = #format-mark-numbers
5011 c1 \mark \default
5012 c1 \mark \default
5013 \set Score.markFormatter
5014    = #(lambda (mark context)
5015        (make-bold-markup
5016         (make-box-markup (number->string mark))))
5017 c1 \mark \default
5018 c1 \mark \default
5019 c1
5020 @end lilypond
5021
5022 The file @file{scm/@/translation@/-functions@/.scm} contains the definitions
5023 of @code{format-mark-numbers} (the default format) and
5024 @code{format-mark-letters}.  These can be used as inspiration for other
5025 formatting functions.
5026
5027
5028 @cindex coda on bar line
5029 @cindex segno on bar line
5030 @cindex fermata on bar line
5031 @cindex bar lines, symbols on
5032
5033 The @code{\mark} command can also be used to put signs like coda,
5034 segno, and fermata on a bar line.  Use @code{\markup} to
5035 access the appropriate symbol
5036
5037 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
5038 c1 \mark \markup { \musicglyph #"scripts-ufermata" }
5039 c1
5040 @end lilypond
5041
5042 In the case of a line break, marks must also be printed at the end of
5043 the line, and not at the beginning.  Use the following to force that
5044 behavior
5045 @example
5046 \override Score.RehearsalMark
5047   #'break-visibility = #begin-of-line-invisible
5048 @end example
5049
5050 @cindex fermatas
5051 @cindex coda
5052 @cindex segno
5053 @cindex bar lines, putting symbols on
5054
5055 @seealso
5056
5057 Program reference: @internalsref{MarkEvent}, @internalsref{RehearsalMark}.
5058
5059 Init files: @file{scm/@/translation@/-functions@/.scm} contains the
5060 definition of @code{format-mark-numbers} and
5061 @code{format-mark-letters}.  They can be used as inspiration for other
5062 formatting functions.
5063
5064 Examples: @inputfileref{input/@/regression,rehearsal@/-mark@/-letter@/.ly},
5065
5066 @inputfileref{input/@/regression,rehearsal@/-mark@/-number@/.ly}.
5067
5068
5069 @node Bar numbers
5070 @subsection Bar numbers
5071
5072
5073 @cindex bar numbers
5074 @cindex measure numbers
5075 @cindex @code{currentBarNumber}
5076
5077 Bar numbers are printed by default at the start of the line.  The
5078 number itself is stored in the @code{currentBarNumber} property, which
5079 is normally updated automatically for every measure.
5080
5081 Bar numbers can be typeset at regular intervals instead of at the
5082 beginning of each line.  This is illustrated in the following example,
5083 whose source is available as
5084 @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}
5085
5086 @lilypondfile[raggedright,quote]{bar-number-regular-interval.ly}
5087
5088 Bar numbers can be manually changed by setting the
5089 @code{Staff.currentBarNumber} property
5090
5091 @lilypond[verbatim,raggedright,quote]
5092 \relative c' {
5093   \repeat unfold 4 {c4 c c c} \break
5094   \set Score.currentBarNumber = #50
5095   \repeat unfold 4 {c4 c c c}
5096 }
5097 @end lilypond
5098
5099 @seealso
5100
5101 Program reference: @internalsref{BarNumber}.
5102
5103 Examples:
5104 @inputfileref{input/@/test,bar@/-number@/-every@/-five@/-reset@/.ly},
5105 and @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}.
5106
5107 @refbugs
5108
5109 Bar numbers can collide with the @internalsref{StaffGroup} bracket, if
5110 there is one at the top.  To solve this, the
5111 @code{padding} property of @internalsref{BarNumber} can be
5112 used to position the number correctly.
5113
5114 @node Instrument names
5115 @subsection Instrument names
5116
5117 In an orchestral score, instrument names are printed at the left side
5118 of the staves.
5119
5120 This can be achieved by setting @internalsref{Staff}.@code{instrument}
5121 and @internalsref{Staff}.@code{instr}.  This will print a string before
5122 the start of the staff.  For the first staff, @code{instrument} is
5123 used, for the following ones, @code{instr} is used.
5124
5125 @lilypond[quote,verbatim,raggedright,relative=1,fragment]
5126 \set Staff.instrument = "Ploink "
5127 \set Staff.instr = "Plk "
5128 c1
5129 \break
5130 c''
5131 @end lilypond
5132
5133 You can also use markup texts to construct more complicated instrument
5134 names, for example
5135
5136 @lilypond[quote,fragment,verbatim,raggedright]
5137 \set Staff.instrument = \markup {
5138   \column < "Clarinetti"
5139             { "in B" \smaller \flat } > }
5140 c''1
5141 @end lilypond
5142
5143 For longer instrument names, it may be useful to increase the
5144 @code{indent} setting in the @code{\layout} block.
5145
5146 @seealso
5147
5148 Program reference: @internalsref{InstrumentName}.
5149
5150 @refbugs
5151
5152 When you put a name on a grand staff or piano staff, the width of the
5153 brace is not taken into account.  You must add extra spaces to the end of
5154 the name to avoid a collision.
5155
5156 @node Transpose
5157 @subsection Transpose
5158 @cindex Transpose
5159 @cindex transposition of pitches
5160 @cindex @code{\transpose}
5161
5162 A music expression can be transposed with @code{\transpose}.  The
5163 syntax is
5164 @example
5165 \transpose @var{from} @var{to} @var{musicexpr}
5166 @end example
5167
5168 This means that @var{musicexpr} is transposed by the interval between
5169 the pitches @var{from} and @var{to}: any note with pitch @code{from}
5170 is changed to @code{to}.
5171
5172
5173 For example, consider a piece written in the key of D-major.  If
5174 this piece is a little too low for its performer, it can be
5175 transposed up to E-major with
5176 @example
5177 \transpose d e @dots{}
5178 @end example
5179
5180 Consider a part written for violin (a C instrument).  If
5181 this part is to be played on the A clarinet, the following
5182 transposition will produce the appropriate part
5183
5184 @example
5185 \transpose a c @dots{}
5186 @end example
5187
5188 @code{\transpose} distinguishes between enharmonic pitches: both
5189 @code{\transpose c cis} or @code{\transpose c des} will transpose up
5190 half a tone.  The first version will print sharps and the second
5191 version will print flats
5192
5193 @lilypond[quote,raggedright,verbatim]
5194 mus = { \key d \major cis d fis g }
5195 \context Staff {
5196   \clef "F" \mus
5197   \clef "G"
5198   \transpose c g' \mus
5199   \transpose c f' \mus
5200 }
5201 @end lilypond
5202
5203
5204 @seealso
5205
5206 Program reference: @internalsref{TransposedMusic}, and
5207 @internalsref{UntransposableMusic}.
5208
5209 @refbugs
5210
5211 If you want to use both @code{\transpose} and @code{\relative},
5212 you must put @code{\transpose} outside of @code{\relative}, since
5213 @code{\relative} will have no effect music that appears inside a
5214 @code{\transpose}.
5215
5216 @node Instrument transpositions
5217 @subsection Instrument transpositions
5218
5219 The key of a transposing instrument can also be specified.  This
5220 applies to many wind instruments, for example, clarinets (B-flat, A, and
5221 E-flat), horn (F) and trumpet (B-flat, C, D, and E-flat).
5222
5223 The transposition is entered after the keyword @code{\transposition}
5224
5225 @example
5226 \transposition bes   %% B-flat clarinet
5227 @end example
5228
5229 @noindent
5230 This command sets the property @code{instrumentTransposition}.  The value of
5231 this property is used for MIDI output and quotations.  It does not
5232 affect how notes are printed in the current staff.
5233
5234 The pitch to use for @code{\transposition} should correspond to the
5235 transposition of the notes.  For example, when entering a score in
5236 concert pitch, typically all voices are entered in C, so
5237 they should be entered as
5238
5239 @example
5240 clarinet = @{
5241   \transposition c'
5242   ...
5243 @}
5244 saxophone = @{
5245   \transposition c'
5246   ...
5247 @}
5248 @end example
5249
5250 The command @code{\transposition} should be used when the music is
5251 entered from a (transposed) orchestral part.  For example, in
5252 classical horn parts, the tuning of the instrument is often changed
5253 during a piece.  When copying the notes from the part, use
5254 @code{\transposition}, e.g.,
5255
5256 @example
5257 \transposition d'
5258 c'4^"in D"
5259 ...
5260 \transposition g'
5261 c'4^"in G"
5262 ...
5263 @end example
5264
5265
5266
5267 @cindex transposition, MIDI
5268 @cindex transposition, instrument
5269
5270
5271 @node Multi measure rests
5272 @subsection Multi measure rests
5273 @cindex multi measure rests
5274 @cindex Rests, multi measure
5275
5276 @cindex @code{R}
5277
5278 Multi-measure rests are entered using `@code{R}'.  It is specifically
5279 meant for full bar rests and for entering parts: the rest can expand
5280 to fill a score with rests, or it can be printed as a single
5281 multi-measure rest.  This expansion is controlled by the property
5282 @code{Score.skipBars}.  If this is set to true, empty measures will not
5283 be expanded, and the appropriate number is added automatically
5284
5285 @lilypond[quote,raggedright,fragment,verbatim]
5286 \time 4/4 r1 | R1 | R1*2
5287 \set Score.skipBars = ##t R1*17 R1*4
5288 @end lilypond
5289
5290 The @code{1} in @code{R1} is similar to the duration notation used for
5291 notes.  Hence, for time signatures other than 4/4, you must enter other
5292 durations.  This can be done with augmentation dots or fractions
5293
5294 @lilypond[quote,raggedright,fragment,verbatim]
5295 \set Score.skipBars = ##t
5296 \time 3/4
5297 R2. | R2.*2
5298 \time 13/8
5299 R1*13/8
5300 R1*13/8*12 |
5301 \time 10/8 R4*5*4 |
5302 @end lilypond
5303
5304 An @code{R} spanning a single measure is printed as either a whole rest
5305 or a breve, centered in the measure regardless of the time signature.
5306
5307 If there are only a few measures of rest, LilyPond prints ``church rests''
5308 (a series of rectangles) in the staff.  To replace that with a simple
5309 rest, use @code{MultiMeasureRest.expand-limit}.
5310
5311 @lilypond[quote,raggedright,fragment,verbatim]
5312 \set Score.skipBars = ##t
5313 R1*2 | R1*5 | R1*9
5314 \override MultiMeasureRest #'expand-limit = 1
5315 R1*2 | R1*5 | R1*9
5316 @end lilypond
5317
5318
5319 @cindex text on multi-measure rest
5320 @cindex script on multi-measure rest
5321 @cindex fermata on multi-measure rest
5322
5323 Texts can be added to multi-measure rests by using the
5324 @var{note}-@code{markup} syntax (see @ref{Text markup}).
5325 A variable (@code{\fermataMarkup}) is provided for
5326 adding fermatas
5327
5328 @lilypond[quote,raggedright,verbatim,fragment]
5329 \set Score.skipBars = ##t
5330 \time 3/4
5331 R2.*10^\markup { \italic "ad lib." }
5332 R2.^\fermataMarkup
5333 @end lilypond
5334
5335 If you want to have text on the left end of a multi-measure rest,
5336 attach the text to a zero-length skip note, i.e.,
5337
5338 @example
5339 s1*0^"Allegro"
5340 R1*4
5341 @end example
5342
5343
5344 @cindex whole rests for a full measure
5345
5346 @seealso
5347
5348 Program reference: @internalsref{MultiMeasureRestEvent},
5349 @internalsref{MultiMeasureTextEvent},
5350 @internalsref{MultiMeasureRestMusicGroup}, and
5351 @internalsref{MultiMeasureRest}.
5352
5353 The layout object @internalsref{MultiMeasureRestNumber} is for the
5354 default number, and @internalsref{MultiMeasureRestText} for user
5355 specified texts.
5356
5357 @refbugs
5358
5359 It is not possible to use fingerings (e.g., @code{R1-4}) to put numbers
5360 over multi-measure rests.  And the pitch of multi-measure rests (or
5361 staff-centered rests) can not be influenced.
5362
5363 @cindex condensing rests
5364
5365 There is no way to automatically condense multiple rests into a single
5366 multi-measure rest.  Multi-measure rests do not take part in rest
5367 collisions.
5368
5369 Be careful when entering multi-measure rests followed by whole
5370 notes.  The following will enter two notes lasting four measures each
5371 @example
5372 R1*4 cis cis
5373 @end example
5374 When @code{skipBars} is set, the result will look OK, but the bar
5375 numbering will be off.
5376
5377 @node Automatic part combining
5378 @subsection Automatic part combining
5379 @cindex automatic part combining
5380 @cindex part combiner
5381
5382
5383 Automatic part combining is used to merge two parts of music onto a
5384 staff.  It is aimed at typesetting orchestral scores.  When the two
5385 parts are identical for a period of time, only one is shown.  In
5386 places where the two parts differ, they are typeset as separate
5387 voices, and stem directions are set automatically.  Also, solo and
5388 @emph{a due} parts are identified and can be marked.
5389
5390 The syntax for part combining is
5391
5392 @example
5393 \partcombine @var{musicexpr1} @var{musicexpr2}
5394 @end example
5395
5396
5397
5398 The following example demonstrates the basic functionality of the part
5399 combiner: putting parts on one staff, and setting stem directions and
5400 polyphony
5401
5402 @lilypond[quote,verbatim,raggedright,fragment]
5403 \new Staff \partcombine
5404   \relative g' { g g a( b) c c r r }
5405   \relative g' { g g r4 r e e g g }
5406 @end lilypond
5407
5408 The first @code{g} appears only once, although it was
5409 specified twice (once in each part).  Stem, slur, and tie directions are
5410 set automatically, depending whether there is a solo or unisono.  The
5411 first part (with context called @code{one}) always gets up stems, and
5412 `solo', while the second (called @code{two}) always gets down stems and
5413 `Solo II'.
5414
5415 If you just want the merging parts, and not the textual markings, you
5416 may set the property @code{printPartCombineTexts} to false
5417
5418 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
5419 \new Staff <<
5420   \set Staff.printPartCombineTexts = ##f
5421   \partcombine
5422     \relative g' { g a( b) r }
5423     \relative g' { g r4 r f }
5424 >>
5425 @end lilypond
5426
5427
5428 Both arguments to @code{\partcombine} will be interpreted as
5429 @internalsref{Voice} contexts.  If using relative octaves,
5430 @code{\relative} should be specified for both music expressions, i.e.,
5431
5432 @example
5433 \partcombine
5434   \relative @dots{} @var{musicexpr1}
5435   \relative @dots{} @var{musicexpr2}
5436 @end example
5437
5438 @noindent
5439 A @code{\relative} section that is outside of @code{\partcombine} has
5440 no effect on the pitches of @var{musicexpr1} and @var{musicexpr2}.
5441
5442 @seealso
5443
5444 Program reference: @internalsref{PartCombineMusic},
5445 @internalsref{SoloOneEvent}, and
5446 @internalsref{SoloTwoEvent}, and
5447 @internalsref{UnisonoEvent}.
5448
5449 @refbugs
5450
5451 When @code{printPartCombineTexts} is set, when the two voices play the
5452 same notes on and off, the part combiner may typeset @code{a2} more
5453 than once in a measure.
5454
5455 @code{\partcombine} cannot be inside @code{\times}.
5456
5457 @code{\partcombine} cannot be inside @code{\relative}.
5458
5459 Internally, the @code{\partcombine} interprets both arguments as
5460 @code{Voice}s named @code{one} and @code{two}, and then decides when
5461 the parts can be combined.  Consequently, if the arguments switch to
5462 differently named @internalsref{Voice} contexts, the events in those
5463 will be ignored.
5464
5465 @node Hiding staves
5466 @subsection Hiding staves
5467
5468 @cindex Frenched scores
5469 @cindex Hiding staves
5470
5471 In orchestral scores, staff lines that only have rests are usually
5472 removed.  This saves some space.  This style is called `French Score'.
5473 For @internalsref{Lyrics},
5474 @internalsref{ChordNames} and @internalsref{FiguredBass}, this is
5475 switched on by default.  When the lines of these contexts turn out
5476 empty after the line-breaking process, they are removed.
5477
5478 For normal staves, a specialized @internalsref{Staff} context is
5479 available, which does the same: staves containing nothing (or only
5480 multi-measure rests) are removed.  The context definition is stored in
5481 @code{\RemoveEmptyStaffContext} variable.  Observe how the second staff
5482 in this example disappears in the second line
5483
5484 @lilypond[quote,raggedright,verbatim]
5485 \layout {
5486   \context { \RemoveEmptyStaffContext }
5487 }
5488
5489 {
5490   \relative c' <<
5491     \new Staff { e4 f g a \break c1 }
5492     \new Staff { c4 d e f \break R1 }
5493   >>
5494 }
5495 @end lilypond
5496
5497 The first system shows all staves in full.  If empty staves should be
5498 removed from the first system too, set @code{remove-first} to false in
5499 @internalsref{RemoveEmptyVerticalGroup}.
5500
5501 Another application is making ossia sections, i.e., alternative
5502 melodies on a separate piece of staff, with help of a Frenched
5503 staff.  See @inputfileref{input/@/test,ossia@/.ly} for an example.
5504
5505
5506 @node Different editions from one source
5507 @subsection Different editions from one source
5508
5509 The @code{\tag} command marks music expressions with a name.  These
5510 tagged expressions can be filtered out later.  With this mechanism it
5511 is possible to make different versions of the same music source.
5512
5513 In the following example, we see two versions of a piece of music, one
5514 for the full score, and one with cue notes for the instrumental part
5515
5516 @example
5517 c1
5518 <<
5519   \tag #'part <<
5520     R1 \\
5521     @{
5522       \set fontSize = #-1
5523       c4_"cue" f2 g4 @}
5524   >>
5525   \tag #'score R1
5526 >>
5527 c1
5528 @end example
5529
5530 The same can be applied to articulations, texts, etc.: they are
5531 made by prepending
5532 @example
5533 -\tag #@var{your-tag}
5534 @end example
5535 to an articulation, for example,
5536 @example
5537 c1-\tag #'part ^4
5538 @end example
5539
5540 This defines a note with a conditional fingering indication.
5541
5542 By applying the @code{\keepWithTag} and @code{\removeWithTag}
5543 commands, tagged expressions can be filtered.  For example,
5544 @example
5545 <<
5546   @var{the music}
5547   \keepWithTag #'score @var{the music}
5548   \keepWithTag #'part @var{the music}
5549 >>
5550 @end example
5551 would yield
5552
5553 @lilypondfile[raggedright,quote]{tag-filter.ly}
5554
5555
5556 The argument of the @code{\tag} command should be a symbol, or a list
5557 of symbols, for example,
5558 @example
5559 \tag #'(original-part transposed-part) @dots{}
5560 @end example
5561
5562
5563
5564 @seealso
5565
5566 Examples: @inputfileref{input/@/regression,tag@/-filter@/.ly}.
5567
5568 @refbugs
5569
5570 Multiple rests are not merged if you create the score with both tagged
5571 sections.
5572  
5573
5574 @node Quoting other voices
5575 @subsection Quoting other voices
5576
5577 With quotations, fragments of other parts can be inserted into a part
5578 directly.  Before a part can be quoted, it must be marked especially as
5579 quotable.  This is done with the @code{\addquote} command.
5580
5581 @example
5582 \addquote @var{name} @var{music}
5583 @end example
5584
5585
5586 @noindent
5587 Here, @var{name} is an identifying string.  The @var{music} is any kind
5588 of music.  Here is an example of @code{\addquote}
5589
5590 @example
5591 \addquote clarinet \relative c' @{
5592   f4 fis g gis
5593 @}
5594 @end example
5595
5596 This command must be entered at toplevel, i.e., outside any music
5597 blocks.
5598
5599 After calling @code{\addquote}, the quotation may then be done with
5600 @code{\quoteDuring} or @code{\cueDuring},
5601
5602 @example
5603 \quoteDuring #@var{name} @var{music}
5604 @end example
5605
5606 During a part, a piece of music can be quoted with the @code{\quoteDuring}
5607 command.
5608
5609 @example
5610 \quoteDuring #"clarinet" @{ s2. @}
5611 @end example
5612
5613 This would cite three quarter notes (the duration of @code{s2.})  of
5614 the previously added @code{clarinet} voice.
5615
5616
5617 More precisely, it takes the current time-step of the part being
5618 printed, and extracts the notes at the corresponding point of the
5619 @code{\addquote}d voice.  Therefore, the argument to @code{\addquote}
5620 should be the entire part of the voice to be quoted, including any
5621 rests at the beginning.
5622
5623 Quotations take into account the transposition of both source and target
5624 instruments, if they are specified using the @code{\transposition} command.
5625
5626 @lilypond[quote,raggedright,verbatim]
5627 \addquote clarinet \relative c' {
5628   \transposition bes
5629   f4 fis g gis
5630 }
5631
5632 {
5633   e'8 f'8 \quoteDuring #"clarinet" { s2 }
5634 }
5635 @end lilypond
5636
5637 The type of events that are present in cue notes can be trimmed with
5638 the @code{quotedEventTypes} property.  The default value is
5639 @code{(note-event rest-event)}, which means that only notes and
5640 rests of the cued voice end up in the @code{\quoteDuring}.
5641 Setting
5642
5643 @example
5644 \set Staff.quotedEventTypes =
5645        #'(note-event articulation-event dynamic-event)
5646 @end example
5647
5648 @noindent
5649 will quote notes (but no rests), together with scripts and dynamics.
5650
5651 @refbugs
5652
5653 Only the contents of the first @internalsref{Voice} occurring in an
5654 @code{\addquote} command will be considered for quotation, so
5655 @var{music} can not contain @code{\new} and @code{\context Voice}
5656 statements that would switch to a different Voice.
5657
5658 Quoting grace notes is broken and can even cause LilyPond to crash.
5659
5660 @seealso
5661
5662 In this manual: @ref{Instrument transpositions}.
5663
5664 Examples: @inputfileref{input/@/regression,quote@/.ly}
5665 @inputfileref{input/@/regression,quote@/-transposition@/.ly}
5666
5667 Program reference: @internalsref{QuoteMusic}.
5668
5669 @node Formatting cue notes
5670 @subsection Formatting cue notes
5671
5672 The previous section deals with inserting notes from another voice.
5673 There is a more advanced music function called @code{\cueDuring},
5674 which makes formatting cue notes easier.
5675
5676 The syntax is
5677
5678 @example
5679   \cueDuring #@var{name} #@var{updown} @var{music}
5680 @end example
5681
5682 This will insert notes from the part @var{name} into a
5683 @internalsref{Voice} called @code{cue}. This happens simultaneously
5684 with @var{music}, which usually is a rest.  When the cue notes start,
5685 the staff in effect becomes polyphonic for a moment. The argument
5686 @var{updown} determines whether the cue notes should be notated as a
5687 first or second voice.
5688
5689
5690 @lilypond[verbatim,raggedright]
5691 smaller = {
5692   \set fontSize = #-2
5693   \override Stem #'length = #5.5
5694   \override Beam #'thickness = #0.384
5695   \override Beam #'space-function =
5696     #(lambda (beam mult) (* 0.8 (Beam::space_function beam mult)))
5697 }
5698
5699 \addquote clarinet \relative {
5700   R1*20
5701   r2 r8 c f f
5702
5703
5704 \new Staff \relative  <<
5705
5706   % setup a context for  cue  notes.
5707   \context Voice = cue { \smaller \skip 1*21 }
5708   
5709   \set Score.skipBars = ##t
5710   
5711   \new Voice {
5712     R1*20
5713     \cueDuring #"clarinet" #1 {
5714       R1
5715     }
5716     g4 g2. 
5717   }
5718 >>
5719 @end lilypond 
5720
5721
5722 Here are a couple of hints for successful cue notes
5723
5724 @itemize @bullet
5725 @item
5726 Cue notes have smaller font sizes.
5727 @item
5728  the cued part is marked with the instrument playing the cue.
5729 @item
5730  when the original part takes over again, this should be marked with
5731  the name of the original instrument.
5732
5733  @c really?  Are you sure about that last point?  I'll check after 3.0 -gp
5734
5735 @c Yes, this is good practice. Otherwise, the start of the original
5736 @c part can only be seen from the font size. This is not good enough
5737 @c for sight-reading. It is possilbe to use other
5738 @c markers (eg. a big close-bracket over the staff) to indicate the cue notes are
5739 @c finished.
5740 @c -hwn
5741
5742
5743  any other changes introduced by the cued part should also be
5744 undone. For example, if the cued instrument plays in a different clef,
5745 the original clef should be stated once again.
5746
5747 @end itemize
5748
5749
5750
5751
5752
5753 @node Ancient notation
5754 @section Ancient notation
5755
5756 @cindex Vaticana, Editio
5757 @cindex Medicaea, Editio
5758 @cindex hufnagel
5759 @cindex Petrucci
5760 @cindex mensural
5761
5762 Support for ancient notation includes features for mensural notation
5763 and Gregorian Chant notation.  There is also limited support for
5764 figured bass notation.
5765
5766 Many graphical objects provide a @code{style} property, see
5767 @itemize @bullet
5768 @item
5769 @ref{Ancient note heads},
5770 @item
5771 @ref{Ancient accidentals},
5772 @item
5773 @ref{Ancient rests},
5774 @item
5775 @ref{Ancient clefs},
5776 @item
5777 @ref{Ancient flags},
5778 @item
5779 @ref{Ancient time signatures}.
5780 @end itemize
5781
5782 By manipulating such a grob property, the typographical appearance of
5783 the affected graphical objects can be accommodated for a specific
5784 notation flavor without the need for introducing any new notational
5785 concept.
5786
5787 In addition to the standard articulation signs described in section
5788 @ref{Articulations}, specific articulation signs for ancient notation
5789 are provided.
5790
5791 @itemize @bullet
5792 @item
5793 @ref{Ancient articulations}
5794 @end itemize
5795
5796 Other aspects of ancient notation can not that easily be expressed
5797 in terms of just changing a style property of a graphical object or
5798 adding articulation signs.  Some notational concepts are introduced
5799 specifically for ancient notation,
5800
5801 @itemize @bullet
5802 @item
5803 @ref{Custodes},
5804 @item
5805 @ref{Divisiones},
5806 @item
5807 @ref{Ligatures}.
5808 @end itemize
5809
5810 If this all is too much of documentation for you, and you just want to
5811 dive into typesetting without worrying too much about the details on
5812 how to customize a context, you may have a look at the predefined
5813 contexts.  Use them to set up predefined style-specific voice and
5814 staff contexts, and directly go ahead with the note entry,
5815
5816 @itemize @bullet
5817 @item
5818 @ref{Gregorian Chant contexts},
5819 @item
5820 @ref{Mensural contexts}.
5821 @end itemize
5822
5823 There is limited support for figured bass notation which came
5824 up during the baroque period.
5825
5826 @itemize @bullet
5827 @item
5828 @ref{Figured bass}
5829 @end itemize
5830
5831 Here are all suptopics at a glance:
5832
5833 @menu
5834 * Ancient note heads::
5835 * Ancient accidentals::
5836 * Ancient rests::
5837 * Ancient clefs::
5838 * Ancient flags::
5839 * Ancient time signatures::
5840 * Ancient articulations::
5841 * Custodes::
5842 * Divisiones::
5843 * Ligatures::
5844 * Gregorian Chant contexts::
5845 * Mensural contexts::
5846 * Figured bass::
5847 @end menu
5848
5849
5850 @node Ancient note heads
5851 @subsection Ancient note heads
5852
5853 @cindex note heads
5854
5855
5856 For ancient notation, a note head style other than the @code{default}
5857 style may be chosen.  This is accomplished by setting the @code{style}
5858 property of the @internalsref{NoteHead} object to @code{baroque},
5859 @code{neomensural} or @code{mensural}.  The @code{baroque} style
5860 differs from the @code{default} style only in using a square shape
5861 for @code{\breve} note heads.  The @code{neomensural} style differs from
5862 the @code{baroque} style in that it uses rhomboidal heads for whole notes
5863 and all smaller durations.  Stems are centered on the note heads.
5864 This style is particularly useful when transcribing mensural music,
5865 e.g., for the incipit.  The @code{mensural} style finally produces note
5866 heads that mimic the look of note heads in historic printings of the
5867 16th century.
5868
5869 The following example demonstrates the @code{neomensural} style
5870
5871 @lilypond[quote,fragment,raggedright,verbatim]
5872 \set Score.skipBars = ##t
5873 \override NoteHead #'style = #'neomensural
5874 a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
5875 @end lilypond
5876
5877 When typesetting a piece in Gregorian Chant notation, the
5878 @internalsref{Gregorian_ligature_engraver} will automatically select
5879 the proper note heads, so there is no need to explicitly set the
5880 note head style.  Still, the note head style can be set, e.g., to
5881 @code{vaticana_punctum} to produce punctum neumes.  Similarly, a
5882 @internalsref{Mensural_ligature_engraver} is used to automatically
5883 assemble mensural ligatures.  See @ref{Ligatures} for how ligature
5884 engravers work.
5885
5886 @seealso
5887
5888 Examples: @inputfileref{input/@/regression,note@/-head@/-style@/.ly} gives an
5889 overview over all available note head styles.
5890
5891
5892 @node Ancient accidentals
5893 @subsection Ancient accidentals
5894
5895 @cindex accidentals
5896
5897
5898 Use the @code{style} property of grob @internalsref{Accidental} to
5899 select ancient accidentals.   Supported styles are
5900 @code{mensural}, @code{vaticana}, @code{hufnagel}, and @code{medicaea}.
5901
5902 @lilypond[quote,raggedright,staffsize=26]
5903 \score {
5904 {
5905   \fatText
5906   s^\markup {
5907     \column <
5908       "vaticana"
5909       { " " \musicglyph #"accidentals-vaticana-1"
5910       " " \musicglyph #"accidentals-vaticana0" }
5911     >
5912     \column <
5913       "medicaea"
5914       { " " \musicglyph #"accidentals-medicaea-1" }
5915     >
5916     \column <
5917       "hufnagel"
5918       { " " \musicglyph #"accidentals-hufnagel-1" }
5919     >
5920     \column <
5921       "mensural"
5922       { " " \musicglyph #"accidentals-mensural-1"
5923       " " \musicglyph #"accidentals-mensural1" }
5924     >
5925   }
5926 }
5927 \layout {
5928   interscoreline = 1
5929   \context { \Score \remove "Bar_number_engraver" }
5930   \context { \Staff
5931       \remove "Clef_engraver"
5932       \remove "Key_engraver"
5933       \remove "Time_signature_engraver"
5934       \remove "Staff_symbol_engraver"
5935       minimumVerticalExtent = ##f
5936     }
5937   }
5938 }
5939 @end lilypond
5940
5941 As shown, not all accidentals are supported by each style.  When
5942 trying to access an unsupported accidental, LilyPond will switch to a
5943 different style, as demonstrated in
5944 @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
5945
5946 Similarly to local accidentals, the style of the key signature can be
5947 controlled by the @code{style} property of the
5948 @internalsref{KeySignature} grob.
5949
5950 @seealso
5951
5952 In this manual: @ref{Pitches}, @ref{Chromatic alterations} and
5953 @ref{Accidentals} give a general introduction of the use of
5954 accidentals.  @ref{Key signature} gives a general introduction of
5955 the use of key signatures.
5956
5957 Program reference: @internalsref{KeySignature}.
5958
5959 Examples: @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
5960
5961 @node Ancient rests
5962 @subsection Ancient rests
5963
5964 @cindex rests
5965
5966
5967 Use the @code{style} property of grob @internalsref{Rest} to select
5968 ancient accidentals.   Supported styles are @code{classical},
5969 @code{neomensural}, and @code{mensural}.  @code{classical} differs
5970 from the @code{default} style only in that the quarter rest looks like
5971 a horizontally mirrored 8th rest.  The @code{neomensural} style suits
5972 well for, e.g., the incipit of a transcribed mensural piece of music.
5973 The @code{mensural} style finally mimics the appearance of rests as
5974 in historic prints of the 16th century.
5975
5976 The following example demonstrates the @code{neomensural} style
5977
5978 @lilypond[quote,fragment,raggedright,verbatim]
5979 \set Score.skipBars = ##t
5980 \override Rest #'style = #'neomensural
5981 r\longa r\breve r1 r2 r4 r8 r16
5982 @end lilypond
5983
5984 There are no 32th and 64th rests specifically for the mensural or
5985 neo-mensural style.  Instead, the rests from the default style will be
5986 taken.  See @inputfileref{input/@/test,rests@/.ly} for a chart of all
5987 rests.
5988
5989 There are no rests in Gregorian Chant notation; instead, it uses
5990 @ref{Divisiones}.
5991
5992 @seealso
5993
5994 In this manual: @ref{Rests} gives a general introduction into the use of rests.
5995
5996
5997 @node Ancient clefs
5998 @subsection Ancient clefs
5999
6000 @cindex clefs
6001
6002
6003 LilyPond supports a variety of clefs, many of them ancient.
6004
6005 The following table shows all ancient clefs that are supported via the
6006 @code{\clef} command.  Some of the clefs use the same glyph, but
6007 differ only with respect to the line they are printed on.  In such
6008 cases, a trailing number in the name is used to enumerate these clefs.
6009 Still, you can manually force a clef glyph to be typeset on an
6010 arbitrary line, as described in @ref{Clef}.  The note printed to the
6011 right side of each clef in the example column denotes the @code{c'}
6012 with respect to that clef.
6013
6014 @multitable @columnfractions .4 .4 .2
6015 @item
6016 @b{Description}
6017 @tab
6018 @b{Supported Clefs}
6019 @tab
6020 @b{Example}
6021
6022 @item
6023 modern style mensural C clef
6024 @tab
6025 @code{neomensural-c1}, @code{neomensural-c2},@*
6026 @code{neomensural-c3}, @code{neomensural-c4}
6027 @tab
6028 @lilypond[fragment,relative=1,notime]
6029   \clef "neomensural-c2" c
6030 @end lilypond
6031
6032 @item
6033 petrucci style mensural C clefs, for use on different staff lines
6034 (the examples show the 2nd staff line C clef)
6035 @tab
6036 @code{petrucci-c1}, @code{petrucci-c2},@*
6037 @code{petrucci-c3}, @code{petrucci-c4},@*
6038 @code{petrucci-c5}
6039 @tab
6040 @lilypond[fragment,relative=1,notime]
6041   \clef "petrucci-c2" c
6042 @end lilypond
6043
6044 @item
6045 petrucci style mensural F clef
6046 @tab
6047 @code{petrucci-f}
6048 @tab
6049 @lilypond[fragment,relative=1,notime]
6050   \clef "petrucci-f" c
6051 @end lilypond
6052
6053 @item
6054 petrucci style mensural G clef
6055 @tab
6056 @code{petrucci-g}
6057 @tab
6058 @lilypond[fragment,relative=1,notime]
6059   \clef "petrucci-g" c
6060 @end lilypond
6061
6062 @item
6063 historic style mensural C clef
6064 @tab
6065 @code{mensural-c1}, @code{mensural-c2},@*
6066 @code{mensural-c3}, @code{mensural-c4}
6067 @tab
6068 @lilypond[fragment,relative=1,notime]
6069   \clef "mensural-c2" c
6070 @end lilypond
6071
6072 @item
6073 historic style mensural F clef
6074 @tab
6075 @code{mensural-f}
6076 @tab
6077 @lilypond[fragment,relative=1,notime]
6078   \clef "mensural-f" c
6079 @end lilypond
6080
6081 @item
6082 historic style mensural G clef
6083 @tab
6084 @code{mensural-g}
6085 @tab
6086 @lilypond[fragment,relative=1,notime]
6087   \clef "mensural-g" c
6088 @end lilypond
6089
6090 @item
6091 Editio Vaticana style do clef
6092 @tab
6093 @code{vaticana-do1}, @code{vaticana-do2},@*
6094 @code{vaticana-do3}
6095 @tab
6096 @lilypond[fragment,relative=1,notime]
6097   \override Staff.StaffSymbol #'line-count = #4
6098   \clef "vaticana-do2" c
6099 @end lilypond
6100
6101 @item
6102 Editio Vaticana style fa clef
6103 @tab
6104 @code{vaticana-fa1}, @code{vaticana-fa2}
6105 @tab
6106 @lilypond[fragment,relative=1,notime]
6107   \override Staff.StaffSymbol #'line-count = #4
6108   \clef "vaticana-fa2" c
6109 @end lilypond
6110
6111 @item
6112 Editio Medicaea style do clef
6113 @tab
6114 @code{medicaea-do1}, @code{medicaea-do2},@*
6115 @code{medicaea-do3}
6116 @tab
6117 @lilypond[fragment,relative=1,notime]
6118   \override Staff.StaffSymbol #'line-count = #4
6119   \clef "medicaea-do2" c
6120 @end lilypond
6121
6122 @item
6123 Editio Medicaea style fa clef
6124 @tab
6125 @code{medicaea-fa1}, @code{medicaea-fa2}
6126 @tab
6127 @lilypond[fragment,relative=1,notime]
6128   \override Staff.StaffSymbol #'line-count = #4
6129   \clef "medicaea-fa2" c
6130 @end lilypond
6131
6132 @item
6133 historic style hufnagel do clef
6134 @tab
6135 @code{hufnagel-do1}, @code{hufnagel-do2},@*
6136 @code{hufnagel-do3}
6137 @tab
6138 @lilypond[fragment,relative=1,notime]
6139   \override Staff.StaffSymbol #'line-count = #4
6140   \clef "hufnagel-do2" c
6141 @end lilypond
6142
6143 @item
6144 historic style hufnagel fa clef
6145 @tab
6146 @code{hufnagel-fa1}, @code{hufnagel-fa2}
6147 @tab
6148 @lilypond[fragment,relative=1,notime]
6149   \override Staff.StaffSymbol #'line-count = #4
6150   \clef "hufnagel-fa2" c
6151 @end lilypond
6152
6153 @item
6154 historic style hufnagel combined do/fa clef
6155 @tab
6156 @code{hufnagel-do-fa}
6157 @tab
6158 @lilypond[fragment,relative=1,notime]
6159   \clef "hufnagel-do-fa" c
6160 @end lilypond
6161 @end multitable
6162
6163
6164
6165 @emph{Modern style} means ``as is typeset in contemporary editions of
6166 transcribed mensural music''.
6167
6168 @emph{Petrucci style} means ``inspired by printings published by the
6169 famous engraver Petrucci (1466-1539)''.
6170
6171 @emph{Historic style} means ``as was typeset or written in historic
6172 editions (other than those of Petrucci)''.
6173
6174 @emph{Editio XXX style} means ``as is/was printed in Editio XXX''.
6175
6176 Petrucci used C clefs with differently balanced left-side vertical
6177 beams, depending on which staff line it is printed.
6178
6179 @seealso
6180
6181 In this manual: see @ref{Clef}.
6182
6183 @refbugs
6184
6185 The mensural g clef is mapped to the Petrucci g clef.
6186
6187
6188
6189 @node Ancient flags
6190 @subsection Ancient flags
6191
6192 @cindex flags
6193
6194
6195 Use the @code{flag-style} property of grob @internalsref{Stem} to
6196 select ancient flags.  Besides the @code{default} flag style,
6197 only the @code{mensural} style is supported
6198
6199 @lilypond[quote,fragment,raggedright,verbatim]
6200 \override Stem #'flag-style = #'mensural
6201 \override Stem #'thickness = #1.0
6202 \override NoteHead #'style = #'mensural
6203 \autoBeamOff
6204 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
6205 c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
6206 @end lilypond
6207
6208 Note that the innermost flare of each mensural flag always is
6209 vertically aligned with a staff line.
6210
6211 There is no particular flag style for neo-mensural notation.  Hence,
6212 when typesetting the incipit of a transcribed piece of mensural
6213 music, the default flag style should be used.  There are no flags in
6214 Gregorian Chant notation.
6215
6216 @refbugs
6217
6218 The attachment of ancient flags to stems is slightly off due to a
6219 change in early 2.3.x.
6220
6221 Vertically aligning each flag with a staff line assumes that stems
6222 always end either exactly on or exactly in the middle between two
6223 staff lines.  This may not always be true when using advanced layout
6224 features of classical notation (which however are typically out of
6225 scope for mensural notation).
6226
6227 @node Ancient time signatures
6228 @subsection Ancient time signatures
6229
6230 @cindex time signatures
6231
6232
6233 There is limited support for mensural time signatures.   The
6234 glyphs are hard-wired to particular time fractions.  In other words,
6235 to get a particular mensural signature glyph with the @code{\time n/m}
6236 command, @code{n} and @code{m} have to be chosen according to the
6237 following table
6238
6239 @lilypond[quote,raggedright]
6240 \layout {
6241   indent = 0.0
6242   \context { \Staff
6243     \remove Staff_symbol_engraver
6244     \remove Clef_engraver
6245     \remove Time_signature_engraver
6246   }
6247 } {
6248   \set Score.timing = ##f
6249   \set Score.barAlways = ##t
6250   s_\markup { "$\\backslash$time 4/4" }
6251   ^\markup { "       " \musicglyph #"timesig-neomensural4/4" }
6252   s
6253   s_\markup { "$\\backslash$time 2/2" }
6254   ^\markup { "       " \musicglyph #"timesig-neomensural2/2" }
6255   s
6256   s_\markup { "$\\backslash$time 6/4" }
6257   ^\markup { "       " \musicglyph #"timesig-neomensural6/4" }
6258   s
6259   s_\markup { "$\\backslash$time 6/8" }
6260   ^\markup { "       " \musicglyph #"timesig-neomensural6/8" }
6261   \break
6262   s_\markup { "$\\backslash$time 3/2" }
6263   ^\markup { "       " \musicglyph #"timesig-neomensural3/2" }
6264   s
6265   s_\markup { "$\\backslash$time 3/4" }
6266   ^\markup { "       " \musicglyph #"timesig-neomensural3/4" }
6267   s
6268   s_\markup { "$\\backslash$time 9/4" }
6269   ^\markup { "       " \musicglyph #"timesig-neomensural9/4" }
6270   s
6271   s_\markup { "$\\backslash$time 9/8" }
6272   ^\markup { "       " \musicglyph #"timesig-neomensural9/8" }
6273   \break
6274   s_\markup { "$\\backslash$time 4/8" }
6275   ^\markup { "       " \musicglyph #"timesig-neomensural4/8" }
6276   s
6277   s_\markup { "$\\backslash$time 2/4" }
6278   ^\markup { "       " \musicglyph #"timesig-neomensural2/4" }
6279 }
6280 @end lilypond
6281
6282 Use the @code{style} property of grob @internalsref{TimeSignature} to
6283 select ancient time signatures.  Supported styles are
6284 @code{neomensural} and @code{mensural}.  The above table uses the
6285 @code{neomensural} style.  This style is appropriate for the
6286 incipit of transcriptions of mensural pieces.  The @code{mensural}
6287 style mimics the look of historical printings of the 16th century.
6288
6289 The following examples show the differences in style,
6290
6291 @lilypond[raggedright,fragment,relative=1,quote]
6292 {
6293   \fatText
6294   \time 2/2
6295   c1^\markup { \hspace #-2.0 \typewriter default }
6296
6297   \override Staff.TimeSignature #'style = #'numbered
6298   \time 2/2
6299   c1^\markup { \hspace #-2.0 \typewriter numbered }
6300
6301   \override Staff.TimeSignature #'style = #'mensural
6302   \time 2/2
6303   c1^\markup { \hspace #-2.0 \typewriter mensural }
6304
6305   \override Staff.TimeSignature #'style = #'neomensural
6306   \time 2/2
6307   c1^\markup { \hspace #-2.0 \typewriter neomensural }
6308   \override Staff.TimeSignature #'style = #'single-digit
6309   \time 2/2
6310   c1^\markup { \hspace #-2.0 \typewriter single-digit }
6311 }
6312 @end lilypond
6313
6314 @seealso
6315
6316 This manual: @ref{Time signature} gives a general introduction to
6317 the use of time signatures.
6318
6319 @refbugs
6320
6321 Ratios of note durations do not change with the time signature.  For
6322 example, the ratio of 1 brevis = 3 semibrevis (tempus perfectum) must
6323 be made by hand, by setting
6324
6325 @example
6326 breveTP = #(ly:make-duration -1 0 3 2)
6327 @dots{}
6328 @{ c\breveTP f1 @}
6329 @end example
6330
6331 @noindent
6332 This sets @code{breveTP} to 3/2 times 2 = 3 times a whole note.
6333
6334 The @code{old6/8alt} symbol (an alternate symbol for 6/8) is not
6335 addressable with @code{\time}.  Use a @code{\markup} instead
6336
6337 @node Ancient articulations
6338 @subsection Ancient articulations
6339
6340 @cindex articulations
6341
6342 In addition to the standard articulation signs described in section
6343 @ref{Articulations}, articulation signs for ancient notation are
6344 provided.  These are specifically designed for use with notation in
6345 Editio Vaticana style.
6346
6347 @lilypond[quote,raggedright,verbatim]
6348 \include "gregorian-init.ly"
6349 \score {
6350   \context VaticanaVoice {
6351     \override TextScript #'font-family = #'typewriter
6352     \override TextScript #'font-shape = #'upright
6353     \override Script #'padding = #-0.1
6354     a4\ictus_"ictus" s1
6355     a4\circulus_"circulus" s1
6356     a4\semicirculus_"semicirculus" s1 s
6357     a4\accentus_"accentus" s1
6358     \[ a4_"episem" \episemInitium \pes b \flexa a \episemFinis \]
6359   }
6360 }
6361 @end lilypond
6362
6363 @refbugs
6364
6365 Some articulations are vertically placed too closely to the
6366 correpsonding note heads.
6367
6368 @node Custodes
6369 @subsection Custodes
6370
6371 @cindex custos
6372 @cindex custodes
6373
6374 A @emph{custos} (plural: @emph{custodes}; Latin word for `guard') is a
6375 symbol that appears at the end of a staff.  It anticipates the pitch
6376 of the first note(s) of the following line thus helping the performer
6377 to manage line breaks during performance.
6378
6379 Custodes were frequently used in music notation until the 17th
6380 century.  Nowadays, they have survived only in a few particular forms
6381 of musical notation such as contemporary editions of Gregorian chant
6382 like the @emph{editio vaticana}.  There are different custos glyphs
6383 used in different flavors of notational style.
6384
6385 For typesetting custodes, just put a @internalsref{Custos_engraver} into the
6386 @internalsref{Staff} context when declaring the @code{\layout} block,
6387 as shown in the following example
6388
6389 @example
6390 \layout @{
6391   \context @{
6392     \Staff
6393     \consists Custos_engraver
6394     Custos \override #'style = #'mensural
6395   @}
6396 @}
6397 @end example
6398
6399 The result looks like this
6400
6401 @lilypond[quote,raggedright]
6402 \score {
6403 {
6404   a'1
6405   \override Staff.Custos #'style = #'mensural
6406   \break
6407   g'
6408 }
6409 \layout {
6410   \context { \Staff \consists Custos_engraver }
6411   }
6412 }
6413 @end lilypond
6414
6415 The custos glyph is selected by the @code{style} property.  The styles
6416 supported are @code{vaticana}, @code{medicaea}, @code{hufnagel}, and
6417 @code{mensural}.  They are demonstrated in the following fragment
6418
6419 @lilypond[quote,raggedright,fragment]
6420 \new Lyrics \lyricmode {
6421   \markup { \column <
6422     \typewriter "vaticana"
6423     { " " \musicglyph #"custodes-vaticana-u0" }
6424   > }
6425   \markup { \column <
6426     \typewriter "medicaea"
6427     { " " \musicglyph #"custodes-medicaea-u0" }
6428   >}
6429   \markup { \column <
6430     \typewriter "hufnagel"
6431     { " " \musicglyph #"custodes-hufnagel-u0" }
6432   >}
6433   \markup { \column <
6434     \typewriter "mensural"
6435     { " " \musicglyph #"custodes-mensural-u0" }
6436   >}
6437 }
6438 @end lilypond
6439
6440 @seealso
6441
6442 Program reference: @internalsref{Custos}.
6443
6444 Examples: @inputfileref{input/@/regression,custos@/.ly}.
6445
6446
6447 @node Divisiones
6448 @subsection Divisiones
6449
6450 @cindex divisio
6451 @cindex divisiones
6452 @cindex finalis
6453
6454 A @emph{divisio} (plural: @emph{divisiones}; Latin word for
6455 `division') is a staff context symbol that is used to structure
6456 Gregorian music into phrases and sections.  The musical meaning of
6457 @emph{divisio minima}, @emph{divisio maior}, and @emph{divisio maxima}
6458 can be characterized as short, medium, and long pause, somewhat like
6459 the breathmarks from @ref{Breath marks}.  The @emph{finalis} sign not
6460 only marks the end of a chant, but is also frequently used within a
6461 single antiphonal/responsorial chant to mark the end of each section.
6462
6463
6464 To use divisiones, include the file @file{gregorian@/-init@/.ly}.  It
6465 contains definitions that you can apply by just inserting
6466 @code{\divisioMinima}, @code{\divisioMaior}, @code{\divisioMaxima},
6467 and @code{\finalis} at proper places in the input.  Some editions use
6468 @emph{virgula} or @emph{caesura} instead of divisio minima.
6469 Therefore, @file{gregorian@/-init@/.ly} also defines @code{\virgula} and
6470 @code{\caesura}
6471
6472 @lilypondfile[quote,raggedright]{divisiones.ly}
6473
6474 @refcommands
6475
6476 @cindex @code{\virgula}
6477 @code{\virgula},
6478 @cindex @code{\caesura}
6479 @code{\caesura},
6480 @cindex @code{\divisioMinima}
6481 @code{\divisioMinima},
6482 @cindex @code{\divisioMaior}
6483 @code{\divisioMaior},
6484 @cindex @code{\divisioMaxima}
6485 @code{\divisioMaxima},
6486 @cindex @code{\finalis}
6487 @code{\finalis}.
6488
6489 @seealso
6490
6491 In this manual: @ref{Breath marks}.
6492
6493 Program reference: @internalsref{BreathingSign}, @internalsref{BreathingSignEvent}.
6494
6495 Examples: @inputfileref{input/@/test,divisiones@/.ly}.
6496
6497 @node Ligatures
6498 @subsection Ligatures
6499
6500 @cindex Ligatures
6501
6502 @c TODO: Should double check if I recalled things correctly when I wrote
6503 @c down the following paragraph by heart.
6504
6505 A ligature is a graphical symbol that represents at least two distinct
6506 notes.  Ligatures originally appeared in the manuscripts of Gregorian
6507 chant notation to denote ascending or descending sequences of notes.
6508
6509 Ligatures are entered by enclosing them in @code{\[} and @code{\]}.
6510 Some ligature styles may need additional input syntax specific for
6511 this particular type of ligature.  By default, the
6512 @internalsref{LigatureBracket} engraver just puts a square bracket
6513 above the ligature
6514
6515 @lilypond[quote,raggedright,verbatim]
6516 \transpose c c' {
6517   \[ g c a f d' \]
6518   a g f
6519   \[ e f a g \]
6520 }
6521 @end lilypond
6522
6523 To select a specific style of ligatures, a proper ligature engraver
6524 has to be added to the @internalsref{Voice} context, as explained in
6525 the following subsections.   Only white mensural ligatures
6526 are supported with certain limitations.
6527
6528
6529
6530 @refbugs
6531
6532 Ligatures need special spacing that has not yet been implemented.  As
6533 a result, there is too much space between ligatures most of the time,
6534 and line breaking often is unsatisfactory.  Also, lyrics do not
6535 correctly align with ligatures.
6536
6537 Accidentals must not be printed within a ligature, but instead need to
6538 be collected and printed in front of it.
6539
6540 Augmentum dots within ligatures are not handled correctly.
6541
6542
6543 @menu
6544 * White mensural ligatures::
6545 * Gregorian square neumes ligatures::
6546 @end menu
6547
6548 @node White mensural ligatures
6549 @subsubsection White mensural ligatures
6550
6551 @cindex Mensural ligatures
6552 @cindex White mensural ligatures
6553
6554 There is limited support for white mensural ligatures.
6555
6556 To engrave white mensural ligatures, in the layout block put the
6557 @internalsref{Mensural_ligature_engraver} into the
6558 @internalsref{Voice} context, and remove the
6559 @internalsref{Ligature_bracket_engraver}, like this
6560
6561 @example
6562 \layout @{
6563   \context @{
6564     \Voice
6565     \remove Ligature_bracket_engraver
6566     \consists Mensural_ligature_engraver
6567   @}
6568 @}
6569 @end example
6570
6571 There is no additional input language to describe the shape of a
6572 white mensural ligature.  The shape is rather determined solely from
6573 the pitch and duration of the enclosed notes.  While this approach may
6574 take a new user a while to get accustomed to, it has the great advantage
6575 that the full musical information of the ligature is known internally.
6576 This is not only required for correct MIDI output, but also allows for
6577 automatic transcription of the ligatures.
6578
6579 For example,
6580
6581 @example
6582 \set Score.timing = ##f
6583 \set Score.defaultBarType = "empty"
6584 \override NoteHead #'style = #'neomensural
6585 \override Staff.TimeSignature #'style = #'neomensural
6586 \clef "petrucci-g"
6587 \[ g\longa c\breve a\breve f\breve d'\longa \]
6588 s4
6589 \[ e1 f1 a\breve g\longa \]
6590 @end example
6591 @lilypond[quote,raggedright]
6592 \score {
6593   \transpose c c' {
6594     \set Score.timing = ##f
6595     \set Score.defaultBarType = "empty"
6596     \override NoteHead #'style = #'neomensural
6597     \override Staff.TimeSignature #'style = #'neomensural
6598     \clef "petrucci-g"
6599     \[ g\longa c\breve a\breve f\breve d'\longa \]
6600     s4
6601     \[ e1 f1 a\breve g\longa \]
6602   }
6603   \layout {
6604     \context {
6605       \Voice
6606       \remove Ligature_bracket_engraver
6607       \consists Mensural_ligature_engraver
6608     }
6609   }
6610 }
6611 @end lilypond
6612
6613 Without replacing @internalsref{Ligature_bracket_engraver} with
6614 @internalsref{Mensural_ligature_engraver}, the same music transcribes
6615 to the following
6616
6617 @lilypond[quote,raggedright]
6618 \transpose c c' {
6619   \set Score.timing = ##f
6620   \set Score.defaultBarType = "empty"
6621   \override NoteHead #'style = #'neomensural
6622   \override Staff.TimeSignature #'style = #'neomensural
6623   \clef "petrucci-g"
6624   \[ g\longa c\breve a\breve f\breve d'\longa \]
6625   s4
6626   \[ e1 f1 a\breve g\longa \]
6627 }
6628 @end lilypond
6629
6630 @refbugs
6631
6632 The implementation is experimental.  It may output strange warnings,
6633 incorrect results, and might even crash on more complex ligatures.
6634
6635 @node Gregorian square neumes ligatures
6636 @subsubsection Gregorian square neumes ligatures
6637
6638 @cindex Square neumes ligatures
6639 @cindex Gregorian square neumes ligatures
6640
6641 There is limited support for Gregorian square neumes notation
6642 (following the style of the Editio Vaticana).  Core ligatures can
6643 already be typeset, but essential issues for serious typesetting are
6644 still lacking, such as (among others) horizontal alignment of multiple
6645 ligatures, lyrics alignment and proper handling of accidentals.
6646
6647
6648 The following table contains the extended neumes table of the 2nd
6649 volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
6650 1983 by the monks of Solesmes.
6651
6652 @multitable @columnfractions .4 .2 .2 .2
6653
6654 @item
6655 @b{Neuma aut@*
6656 Neumarum Elementa}
6657 @tab
6658 @b{Figurae@*
6659 Rectae}
6660 @tab
6661 @b{Figurae@*
6662 Liquescentes@*
6663 Auctae}
6664 @tab
6665 @b{Figurae@*
6666 Liquescentes@*
6667 Deminutae}
6668
6669 @c TODO: \layout block is identical in all of the below examples.
6670 @c Therefore, it should somehow be included rather than duplicated all
6671 @c the time. --jr
6672
6673 @c why not make identifiers in ly/engraver-init.ly? --hwn
6674
6675 @c Because it's just used to typeset plain notes without
6676 @c a staff for demonstration purposes rather than something
6677 @c special of Gregorian chant notation. --jr
6678
6679 @item
6680 @code{1. Punctum}
6681 @tab
6682 @lilypond[staffsize=26,linewidth=1.5\cm]
6683 \include "gregorian-init.ly"
6684 \score {
6685   \transpose c c' {
6686     % Punctum
6687     \[ b \]
6688     \noBreak s^\markup {"a"} \noBreak
6689
6690     % Punctum Inclinatum
6691     \[ \inclinatum b \]
6692     \noBreak s^\markup {"b"}
6693   }
6694 \layout { \neumeDemoLayout }}
6695 @end lilypond
6696 @tab
6697 @lilypond[staffsize=26,linewidth=2.5\cm]
6698 \include "gregorian-init.ly"
6699 \score {
6700   \transpose c c' {
6701     % Punctum Auctum Ascendens
6702     \[ \auctum \ascendens b \]
6703     \noBreak s^\markup {"c"} \noBreak
6704
6705     % Punctum Auctum Descendens
6706     \[ \auctum \descendens b \]
6707     \noBreak s^\markup {"d"} \noBreak
6708
6709     % Punctum Inclinatum Auctum
6710     \[ \inclinatum \auctum b \]
6711     \noBreak s^\markup {"e"}
6712   }
6713 \layout { \neumeDemoLayout }}
6714 @end lilypond
6715 @tab
6716 @lilypond[staffsize=26,linewidth=1.0\cm]
6717 \include "gregorian-init.ly"
6718 \score {
6719   \transpose c c' {
6720     % Punctum Inclinatum Parvum
6721     \[ \inclinatum \deminutum b \]
6722     \noBreak s^\markup {"f"}
6723   }
6724 \layout { \neumeDemoLayout }}
6725 @end lilypond
6726
6727 @item
6728 @code{2. Virga}
6729 @tab
6730 @lilypond[staffsize=26,linewidth=1.0\cm]
6731 \include "gregorian-init.ly"
6732 \score {
6733   \transpose c c' {
6734     % Virga
6735     \[ \virga b \]
6736     \noBreak s^\markup {"g"}
6737   }
6738 \layout { \neumeDemoLayout }}
6739 @end lilypond
6740 @tab
6741 @tab
6742
6743 @item
6744 @code{3. Apostropha vel Stropha}
6745 @tab
6746 @lilypond[staffsize=26,linewidth=1.0\cm]
6747 \include "gregorian-init.ly"
6748 \score {
6749   \transpose c c' {
6750     % Stropha
6751     \[ \stropha b \]
6752     \noBreak s^\markup {"h"}
6753   }
6754 \layout { \neumeDemoLayout }}
6755 @end lilypond
6756 @tab
6757 @lilypond[staffsize=26,linewidth=1.0\cm]
6758 \include "gregorian-init.ly"
6759 \score {
6760   \transpose c c' {
6761     % Stropha Aucta
6762     \[ \stropha \auctum b \]
6763     \noBreak s^\markup {"i"}
6764   }
6765 \layout { \neumeDemoLayout }}
6766 @end lilypond
6767 @tab
6768
6769 @item
6770 @code{4. Oriscus}
6771 @tab
6772 @lilypond[staffsize=26,linewidth=1.0\cm]
6773 \include "gregorian-init.ly"
6774 \score {
6775   \transpose c c' {
6776     % Oriscus
6777     \[ \oriscus b \]
6778     \noBreak s^\markup {"j"}
6779   }
6780 \layout { \neumeDemoLayout }}
6781 @end lilypond
6782 @tab
6783 @tab
6784
6785 @item
6786 @code{5. Clivis vel Flexa}
6787 @tab
6788 @lilypond[staffsize=26,linewidth=1.0\cm]
6789 \include "gregorian-init.ly"
6790 \score {
6791   \transpose c c' {
6792     % Clivis vel Flexa
6793     \[ b \flexa g \]
6794     s^\markup {"k"}
6795   }
6796 \layout { \neumeDemoLayout }}
6797 @end lilypond
6798 @tab
6799 @lilypond[staffsize=26,linewidth=2.0\cm]
6800 \include "gregorian-init.ly"
6801 \score {
6802   \transpose c c' {
6803     % Clivis Aucta Descendens
6804     \[ b \flexa \auctum \descendens g \]
6805     \noBreak s^\markup {"l"} \noBreak
6806
6807     % Clivis Aucta Ascendens
6808     \[ b \flexa \auctum \ascendens g \]
6809     \noBreak s^\markup {"m"}
6810   }
6811 \layout { \neumeDemoLayout }}
6812 @end lilypond
6813 @tab
6814 @lilypond[staffsize=26,linewidth=1.0\cm]
6815 \include "gregorian-init.ly"
6816 \score {
6817   \transpose c c' {
6818     % Cephalicus
6819     \[ b \flexa \deminutum g \]
6820     s^\markup {"n"}
6821   }
6822 \layout { \neumeDemoLayout }}
6823 @end lilypond
6824
6825 @item
6826 @code{6. Podatus vel Pes}
6827 @tab
6828 @lilypond[staffsize=26,linewidth=1.0\cm]
6829 \include "gregorian-init.ly"
6830 \score {
6831   \transpose c c' {
6832     % Podatus vel Pes
6833     \[ g \pes b \]
6834     s^\markup {"o"}
6835   }
6836 \layout { \neumeDemoLayout }}
6837 @end lilypond
6838 @tab
6839 @lilypond[staffsize=26,linewidth=2.0\cm]
6840 \include "gregorian-init.ly"
6841 \score {
6842   \transpose c c' {
6843     % Pes Auctus Descendens
6844     \[ g \pes \auctum \descendens b \]
6845     \noBreak s^\markup {"p"} \noBreak
6846
6847     % Pes Auctus Ascendens
6848     \[ g \pes \auctum \ascendens b \]
6849     \noBreak s^\markup {"q"}
6850   }
6851 \layout { \neumeDemoLayout }}
6852 @end lilypond
6853 @tab
6854 @lilypond[staffsize=26,linewidth=1.0\cm]
6855 \include "gregorian-init.ly"
6856 \score {
6857   \transpose c c' {
6858     % Epiphonus
6859     \[ g \pes \deminutum b \]
6860     s^\markup {"r"}
6861   }
6862 \layout { \neumeDemoLayout }}
6863 @end lilypond
6864
6865 @item
6866 @code{7. Pes Quassus}
6867 @tab
6868 @lilypond[staffsize=26,linewidth=1.0\cm]
6869 \include "gregorian-init.ly"
6870 \score {
6871   \transpose c c' {
6872     % Pes Quassus
6873     \[ \oriscus g \pes \virga b \]
6874     s^\markup {"s"}
6875   }
6876 \layout { \neumeDemoLayout }}
6877 @end lilypond
6878 @tab
6879 @lilypond[staffsize=26,linewidth=1.0\cm]
6880 \include "gregorian-init.ly"
6881 \score {
6882   \transpose c c' {
6883     % Pes Quassus Auctus Descendens
6884     \[ \oriscus g \pes \auctum \descendens b \]
6885     s^\markup {"t"}
6886   }
6887 \layout { \neumeDemoLayout }}
6888 @end lilypond
6889 @tab
6890
6891 @item
6892 @code{8. Quilisma Pes}
6893 @tab
6894 @lilypond[staffsize=26,linewidth=1.0\cm]
6895 \include "gregorian-init.ly"
6896 \score {
6897   \transpose c c' {
6898     % Quilisma Pes
6899     \[ \quilisma g \pes b \]
6900     s^\markup {"u"}
6901   }
6902 \layout { \neumeDemoLayout }}
6903 @end lilypond
6904 @tab
6905 @lilypond[staffsize=26,linewidth=1.0\cm]
6906 \include "gregorian-init.ly"
6907 \score {
6908   \transpose c c' {
6909     % Quilisma Pes Auctus Descendens
6910     \[ \quilisma g \pes \auctum \descendens b \]
6911     s^\markup {"v"}
6912   }
6913 \layout { \neumeDemoLayout }}
6914 @end lilypond
6915 @tab
6916
6917 @item
6918 @code{9. Podatus Initio Debilis}
6919 @tab
6920 @lilypond[staffsize=26,linewidth=1.0\cm]
6921 \include "gregorian-init.ly"
6922 \score {
6923   \transpose c c' {
6924     % Pes Initio Debilis
6925     \[ \deminutum g \pes b \]
6926     s^\markup {"w"}
6927   }
6928 \layout { \neumeDemoLayout }}
6929 @end lilypond
6930 @tab
6931 @lilypond[staffsize=26,linewidth=1.0\cm]
6932 \include "gregorian-init.ly"
6933 \score {
6934   \transpose c c' {
6935     % Pes Auctus Descendens Initio Debilis
6936     \[ \deminutum g \pes \auctum \descendens b \]
6937     s^\markup {"x"}
6938   }
6939 \layout { \neumeDemoLayout }}
6940 @end lilypond
6941 @tab
6942
6943 @item
6944 @code{10. Torculus}
6945 @tab
6946 @lilypond[staffsize=26,linewidth=1.0\cm]
6947 \include "gregorian-init.ly"
6948 \score {
6949   \transpose c c' {
6950     % Torculus
6951     \[ a \pes b \flexa g \]
6952     s^\markup {"y"}
6953   }
6954 \layout { \neumeDemoLayout }}
6955 @end lilypond
6956 @tab
6957 @lilypond[staffsize=26,linewidth=1.0\cm]
6958 \include "gregorian-init.ly"
6959 \score {
6960   \transpose c c' {
6961     % Torculus Auctus Descendens
6962     \[ a \pes b \flexa \auctum \descendens g \]
6963     s^\markup {"z"}
6964   }
6965 \layout { \neumeDemoLayout }}
6966 @end lilypond
6967 @tab
6968 @lilypond[staffsize=26,linewidth=1.0\cm]
6969 \include "gregorian-init.ly"
6970 \score {
6971   \transpose c c' {
6972     % Torculus Deminutus
6973     \[ a \pes b \flexa \deminutum g \]
6974     s^\markup {"A"}
6975   }
6976 \layout { \neumeDemoLayout }}
6977 @end lilypond
6978
6979 @item
6980 @code{11. Torculus Initio Debilis}
6981 @tab
6982 @lilypond[staffsize=26,linewidth=1.0\cm]
6983 \include "gregorian-init.ly"
6984 \score {
6985   \transpose c c' {
6986     % Torculus Initio Debilis
6987     \[ \deminutum a \pes b \flexa g \]
6988     s^\markup {"B"}
6989   }
6990 \layout { \neumeDemoLayout }}
6991 @end lilypond
6992 @tab
6993 @lilypond[staffsize=26,linewidth=1.0\cm]
6994 \include "gregorian-init.ly"
6995 \score {
6996   \transpose c c' {
6997     % Torculus Auctus Descendens Initio Debilis
6998     \[ \deminutum a \pes b \flexa \auctum \descendens g \]
6999     s^\markup {"C"}
7000   }
7001 \layout { \neumeDemoLayout }}
7002 @end lilypond
7003 @tab
7004 @lilypond[staffsize=26,linewidth=1.0\cm]
7005 \include "gregorian-init.ly"
7006 \score {
7007   \transpose c c' {
7008     % Torculus Deminutus Initio Debilis
7009     \[ \deminutum a \pes b \flexa \deminutum g \]
7010     s^\markup {"D"}
7011   }
7012 \layout { \neumeDemoLayout }}
7013 @end lilypond
7014
7015 @item
7016 @code{12. Porrectus}
7017 @tab
7018 @lilypond[staffsize=26,linewidth=1.0\cm]
7019 \include "gregorian-init.ly"
7020 \score {
7021   \transpose c c' {
7022     % Porrectus
7023     \[ a \flexa g \pes b \]
7024     s^\markup {"E"}
7025   }
7026 \layout { \neumeDemoLayout }}
7027 @end lilypond
7028 @tab
7029 @lilypond[staffsize=26,linewidth=1.0\cm]
7030 \include "gregorian-init.ly"
7031 \score {
7032   \transpose c c' {
7033     % Porrectus Auctus Descendens
7034     \[ a \flexa g \pes \auctum \descendens b \]
7035     s^\markup {"F"}
7036   }
7037 \layout { \neumeDemoLayout }}
7038 @end lilypond
7039 @tab
7040 @lilypond[staffsize=26,linewidth=1.0\cm]
7041 \include "gregorian-init.ly"
7042 \score {
7043   \transpose c c' {
7044     % Porrectus Deminutus
7045     \[ a \flexa g \pes \deminutum b \]
7046     s^\markup {"G"}
7047   }
7048 \layout { \neumeDemoLayout }}
7049 @end lilypond
7050
7051 @item
7052 @code{13. Climacus}
7053 @tab
7054 @lilypond[staffsize=26,linewidth=1.0\cm]
7055 \include "gregorian-init.ly"
7056 \score {
7057   \transpose c c' {
7058     % Climacus
7059     \[ \virga b \inclinatum a \inclinatum g \]
7060     s^\markup {"H"}
7061   }
7062   \layout { \neumeDemoLayout }
7063 }
7064 @end lilypond
7065 @tab
7066 @lilypond[staffsize=26,linewidth=1.0\cm]
7067 \include "gregorian-init.ly"
7068 \score {
7069   \transpose c c' {
7070     % Climacus Auctus
7071     \[ \virga b \inclinatum a \inclinatum \auctum g \]
7072     s^\markup {"I"}
7073   }
7074 \layout { \neumeDemoLayout }}
7075 @end lilypond
7076 @tab
7077 @lilypond[staffsize=26,linewidth=1.0\cm]
7078 \include "gregorian-init.ly"
7079 \score {
7080   \transpose c c' {
7081     % Climacus Deminutus
7082     \[ \virga b \inclinatum a \inclinatum \deminutum g \]
7083     s^\markup {"J"}
7084   }
7085 \layout { \neumeDemoLayout }}
7086 @end lilypond
7087
7088 @item
7089 @code{14. Scandicus}
7090 @tab
7091 @lilypond[staffsize=26,linewidth=1.0\cm]
7092 \include "gregorian-init.ly"
7093 \score {
7094   \transpose c c' {
7095     % Scandicus
7096     \[ g \pes a \virga b \]
7097     s^\markup {"K"}
7098   }
7099 \layout { \neumeDemoLayout }}
7100 @end lilypond
7101 @tab
7102 @lilypond[staffsize=26,linewidth=1.0\cm]
7103 \include "gregorian-init.ly"
7104 \score {
7105   \transpose c c' {
7106     % Scandicus Auctus Descendens
7107     \[ g \pes a \pes \auctum \descendens b \]
7108     s^\markup {"L"}
7109   }
7110 \layout { \neumeDemoLayout }}
7111 @end lilypond
7112 @tab
7113 @lilypond[staffsize=26,linewidth=1.0\cm]
7114 \include "gregorian-init.ly"
7115 \score {
7116   \transpose c c' {
7117     % Scandicus Deminutus
7118     \[ g \pes a \pes \deminutum b \]
7119     s^\markup {"M"}
7120   }
7121 \layout { \neumeDemoLayout }}
7122 @end lilypond
7123
7124 @item
7125 @code{15. Salicus}
7126 @tab
7127 @lilypond[staffsize=26,linewidth=1.0\cm]
7128 \include "gregorian-init.ly"
7129 \score {
7130   \transpose c c' {
7131     % Salicus
7132     \[ g \oriscus a \pes \virga b \]
7133     s^\markup {"N"}
7134   }
7135 \layout { \neumeDemoLayout }}
7136 @end lilypond
7137 @tab
7138 @lilypond[staffsize=26,linewidth=1.0\cm]
7139 \include "gregorian-init.ly"
7140 \score {
7141   \transpose c c' {
7142     % Salicus Auctus Descendens
7143     \[ g \oriscus a \pes \auctum \descendens b \]
7144     s^\markup {"O"}
7145   }
7146 \layout { \neumeDemoLayout }}
7147 @end lilypond
7148 @tab
7149
7150 @item
7151 @code{16. Trigonus}
7152 @tab
7153 @lilypond[staffsize=26,linewidth=1.0\cm]
7154 \include "gregorian-init.ly"
7155 \score {
7156   \transpose c c' {
7157     % Trigonus
7158     \[ \stropha b \stropha b \stropha a \]
7159     s^\markup {"P"}
7160   }
7161   \layout { \neumeDemoLayout }
7162 }
7163 @end lilypond
7164 @tab
7165 @tab
7166
7167 @end multitable
7168
7169
7170 Unlike most other neumes notation systems, the input language for
7171 neumes does not reflect the typographical appearance, but is designed
7172 to focus on musical meaning.  For example, @code{\[ a \pes b
7173 \flexa g \]} produces a Torculus consisting of three Punctum heads,
7174 while @code{\[ a \flexa g \pes b \]} produces a Porrectus with a
7175 curved flexa shape and only a single Punctum head.  There is no
7176 command to explicitly typeset the curved flexa shape; the decision of
7177 when to typeset a curved flexa shape is based on the musical
7178 input.  The idea of this approach is to separate the musical aspects
7179 of the input from the notation style of the output.  This way, the
7180 same input can be reused to typeset the same music in a different
7181 style of Gregorian chant notation.
7182
7183 The following table shows the code fragments that produce the
7184 ligatures in the above neumes table.  The letter in the first column
7185 in each line of the below table indicates to which ligature in the
7186 above table it refers.  The second column gives the name of the
7187 ligature.  The third column shows the code fragment that produces this
7188 ligature, using @code{g}, @code{a}, and @code{b} as example pitches.
7189
7190 @multitable @columnfractions .02 .31 .67
7191 @item
7192 @b{#}
7193 @tab
7194 @b{Name}
7195 @tab
7196 @b{Input Language}
7197
7198 @item
7199 a
7200 @tab
7201 Punctum
7202 @tab
7203 @code{\[ b \]}
7204
7205 @item
7206 b
7207 @tab
7208 Punctum Inclinatum
7209 @tab
7210 @code{\[ \inclinatum b \]}
7211
7212 @item
7213 c
7214 @tab
7215 Punctum Auctum@*
7216 Ascendens
7217 @tab
7218 @code{\[ \auctum \ascendens b \]}
7219
7220 @item
7221 d
7222 @tab
7223 Punctum Auctum@*
7224 Descendens
7225 @tab
7226 @code{\[ \auctum \descendens b \]}
7227
7228 @item
7229 e
7230 @tab
7231 Punctum Inclinatum@*
7232 Auctum
7233 @tab
7234 @code{\[ \inclinatum \auctum b \]}
7235
7236 @item
7237 f
7238 @tab
7239 Punctum Inclinatum@*
7240 Parvum @tab
7241 @code{\[ \inclinatum \deminutum b \]}
7242
7243 @item
7244 g
7245 @tab
7246 Virga
7247 @tab
7248 @code{\[ \virga b \]}
7249
7250 @item
7251 h
7252 @tab
7253 Stropha
7254 @tab
7255 @code{\[ \stropha b \]}
7256
7257 @item
7258 i
7259 @tab
7260 Stropha Aucta
7261 @tab
7262 @code{\[ \stropha \auctum b \]}
7263
7264 @item
7265 j
7266 @tab
7267 Oriscus
7268 @tab
7269 @code{\[ \oriscus b \]}
7270
7271 @item
7272 k
7273 @tab
7274 Clivis vel Flexa
7275 @tab
7276 @code{\[ b \flexa g \]}
7277
7278 @item
7279 l
7280 @tab
7281 Clivis Aucta@*
7282 Descendens
7283 @tab
7284 @code{\[ b \flexa \auctum \descendens g \]}
7285
7286 @item
7287 m
7288 @tab
7289 Clivis Aucta@*
7290 Ascendens
7291 @tab
7292 @code{\[ b \flexa \auctum \ascendens g \]}
7293
7294 @item
7295 n
7296 @tab
7297 Cephalicus
7298 @tab
7299 @code{\[ b \flexa \deminutum g \]}
7300
7301 @item
7302 o
7303 @tab
7304 Podatus vel Pes
7305 @tab
7306 @code{\[ g \pes b \]}
7307
7308 @item
7309 p
7310 @tab
7311 Pes Auctus@*
7312 Descendens
7313 @tab
7314 @code{\[ g \pes \auctum \descendens b \]}
7315
7316 @item
7317 q
7318 @tab
7319 Pes Auctus@*
7320 Ascendens
7321 @tab
7322 @code{\[ g \pes \auctum \ascendens b \]}
7323
7324 @item
7325 r
7326 @tab
7327 Epiphonus
7328 @tab
7329 @code{\[ g \pes \deminutum b \]}
7330
7331 @item
7332 s
7333 @tab
7334 Pes Quassus
7335 @tab
7336 @code{\[ \oriscus g \pes \virga b \]}
7337
7338 @item
7339 t
7340 @tab
7341 Pes Quassus@*
7342 Auctus Descendens @tab
7343 @code{\[ \oriscus g \pes \auctum \descendens b \]}
7344
7345 @item
7346 u
7347 @tab
7348 Quilisma Pes
7349 @tab
7350 @code{\[ \quilisma g \pes b \]}
7351
7352 @item
7353 v
7354 @tab
7355 Quilisma Pes@*
7356 Auctus Descendens
7357 @tab
7358 @code{\[ \quilisma g \pes \auctum \descendens b \]}
7359
7360 @item
7361 w
7362 @tab
7363 Pes Initio Debilis
7364 @tab
7365 @code{\[ \deminutum g \pes b \]}
7366
7367 @item
7368 x
7369 @tab
7370 Pes Auctus Descendens@*
7371 Initio Debilis
7372 @tab
7373 @code{\[ \deminutum g \pes \auctum \descendens b \]}
7374
7375 @item
7376 y
7377 @tab
7378 Torculus
7379 @tab
7380 @code{\[ a \pes b \flexa g \]}
7381
7382 @item
7383 z
7384 @tab
7385 Torculus Auctus@*
7386 Descendens
7387 @tab
7388 @code{\[ a \pes b \flexa \auctum \descendens g \]}
7389
7390 @item
7391 A
7392 @tab
7393 Torculus Deminutus
7394 @tab
7395 @code{\[ a \pes b \flexa \deminutum g \]}
7396
7397 @item
7398 B
7399 @tab
7400 Torculus Initio Debilis
7401 @tab
7402 @code{\[ \deminutum a \pes b \flexa g \]}
7403
7404 @item
7405 C
7406 @tab
7407 Torculus Auctus@*
7408 Descendens Initio Debilis
7409 @tab
7410 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
7411
7412 @item
7413 D
7414 @tab
7415 Torculus Deminutus@*
7416 Initio Debilis
7417 @tab
7418 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
7419
7420 @item
7421 E
7422 @tab
7423 Porrectus
7424 @tab
7425 @code{\[ a \flexa g \pes b \]}
7426
7427 @item
7428 F
7429 @tab
7430 Porrectus Auctus@*
7431 Descendens
7432 @tab
7433 @code{\[ a \flexa g \pes \auctum \descendens b \]}
7434
7435 @item
7436 G
7437 @tab
7438 Porrectus Deminutus
7439 @tab
7440 @code{\[ a \flexa g \pes \deminutum b \]}
7441
7442 @item
7443 H
7444 @tab
7445 Climacus
7446 @tab
7447 @code{\[ \virga b \inclinatum a \inclinatum g \]}
7448
7449 @item
7450 I
7451 @tab
7452 Climacus Auctus
7453 @tab
7454 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
7455
7456 @item
7457 J
7458 @tab
7459 Climacus Deminutus
7460 @tab
7461 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
7462
7463 @item
7464 K
7465 @tab
7466 Scandicus
7467 @tab
7468 @code{\[ g \pes a \virga b \]}
7469
7470 @item
7471 L
7472 @tab
7473 Scandicus Auctus@*
7474 Descendens
7475 @tab
7476 @code{\[ g \pes a \pes \auctum \descendens b \]}
7477
7478 @item
7479 M
7480 @tab
7481 Scandicus Deminutus
7482 @tab
7483 @code{\[ g \pes a \pes \deminutum b \]}
7484
7485 @item
7486 N
7487 @tab
7488 Salicus
7489 @tab
7490 @code{\[ g \oriscus a \pes \virga b \]}
7491
7492 @item
7493 O
7494 @tab
7495 Salicus Auctus Descendens
7496 @tab
7497 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
7498
7499 @item
7500 P
7501 @tab
7502 Trigonus
7503 @tab
7504 @code{\[ \stropha b \stropha b \stropha a \]}
7505 @end multitable
7506
7507 @refcommands
7508
7509 The following head prefixes are supported
7510
7511 @cindex @code{\virga}
7512 @code{\virga},
7513 @cindex @code{\stropha}
7514 @code{\stropha},
7515 @cindex @code{\inclinatum}
7516 @code{\inclinatum},
7517 @cindex @code{\auctum}
7518 @code{\auctum},
7519 @cindex @code{\descendens}
7520 @code{\descendens},
7521 @cindex @code{\ascendens}
7522 @code{\ascendens},
7523 @cindex @code{\oriscus}
7524 @code{\oriscus},
7525 @cindex @code{\quilisma}
7526 @code{\quilisma},
7527 @cindex @code{\deminutum}
7528 @code{\deminutum}.
7529
7530 Head prefixes can be accumulated, though restrictions apply.  For
7531 example, either @code{\descendens} or @code{\ascendens} can be applied
7532 to a head, but not both to the same head.
7533
7534 @cindex @code{\pes}
7535 @cindex @code{\flexa}
7536 Two adjacent heads can be tied together with the @code{\pes} and
7537 @code{\flexa} infix commands for a rising and falling line of melody,
7538 respectively.
7539
7540
7541
7542 @node Gregorian Chant contexts
7543 @subsection Gregorian Chant contexts
7544
7545 @cindex VaticanaVoiceContext
7546 @cindex VaticanaStaffContext
7547
7548 The predefined @code{VaticanaVoiceContext} and
7549 @code{VaticanaStaffContext} can be used to engrave a piece of
7550 Gregorian Chant in the style of the Editio Vaticana.  These contexts
7551 initialize all relevant context properties and grob properties to
7552 proper values, so you can immediately go ahead entering the chant, as
7553 the following excerpt demonstrates
7554
7555 @lilypond[quote,raggedright,verbatim]
7556 \include "gregorian-init.ly"
7557 \score {
7558   <<
7559     \context VaticanaVoice = "cantus" {
7560       \override Score.BarNumber #'transparent = ##t {
7561         \[ c'\melisma c' \flexa a \]
7562         \[ a \flexa \deminutum g\melismaEnd \]
7563         f \divisioMinima
7564         \[ f\melisma \pes a c' c' \pes d'\melismaEnd \]
7565         c' \divisioMinima \break
7566         \[ c'\melisma c' \flexa a \]
7567         \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
7568       }
7569     }
7570     \lyricsto "cantus" \new Lyrics {
7571       San- ctus, San- ctus, San- ctus
7572     }
7573   >>
7574 }
7575 @end lilypond
7576
7577
7578 @node Mensural contexts
7579 @subsection Mensural contexts
7580
7581 @cindex MensuralVoiceContext
7582 @cindex MensuralStaffContext
7583
7584 The predefined @code{MensuralVoiceContext} and
7585 @code{MensuralStaffContext} can be used to engrave a piece in mensural
7586 style.  These contexts initialize all relevant context properties and
7587 grob properties to proper values, so you can immediately go ahead
7588 entering the chant, as the following excerpt demonstrates
7589
7590 @lilypond[quote,raggedright,verbatim]
7591 \score {
7592   <<
7593     \context MensuralVoice = "discantus" \transpose c c' {
7594       \override Score.BarNumber #'transparent = ##t {
7595         c'1\melisma bes a g\melismaEnd
7596         f\breve
7597         \[ f1\melisma a c'\breve d'\melismaEnd \]
7598         c'\longa
7599         c'\breve\melisma a1 g1\melismaEnd
7600         fis\longa^\signumcongruentiae
7601       }
7602     }
7603     \lyricsto "discantus" \new Lyrics {
7604       San -- ctus, San -- ctus, San -- ctus
7605     }
7606   >>
7607 }
7608 @end lilypond
7609
7610
7611 @node Figured bass
7612 @subsection Figured bass
7613
7614 @cindex Basso continuo
7615
7616 @c TODO: musicological blurb about FB
7617
7618
7619 LilyPond has limited support for figured bass
7620
7621 @lilypond[quote,raggedright,verbatim,fragment]
7622 <<
7623   \context Voice { \clef bass dis4 c d ais }
7624   \context FiguredBass \figuremode {
7625     < 6 >4 < 7 >8 < 6+ [_!] >
7626     < 6 >4 <6 5 [3+] >
7627   }
7628 >>
7629 @end lilypond
7630
7631 The support for figured bass consists of two parts: there is an input
7632 mode, introduced by @code{\figuremode}, where you can enter bass figures
7633 as numbers, and there is a context called @internalsref{FiguredBass} that
7634 takes care of making @internalsref{BassFigure} objects.
7635
7636 In figures input mode, a group of bass figures is delimited by
7637 @code{<} and @code{>}.  The duration is entered after the @code{>}
7638 @example
7639 <4 6>
7640 @end example
7641 @lilypond[quote,raggedright,fragment]
7642 \context FiguredBass
7643 \figuremode { <4 6> }
7644 @end lilypond
7645
7646 Accidentals are added when you append @code{-}, @code{!}, and @code{+}
7647 to the numbers
7648
7649 @example
7650 <4- 6+ 7!>
7651 @end example
7652 @lilypond[quote,raggedright,fragment]
7653 \context FiguredBass
7654 \figuremode { <4- 6+ 7!> }
7655 @end lilypond
7656
7657 Spaces or dashes may be inserted by using @code{_}.  Brackets are
7658 introduced with @code{[} and @code{]}
7659
7660 @example
7661 < [4 6] 8 [_! 12] >
7662 @end example
7663 @lilypond[quote,raggedright,fragment]
7664 \context FiguredBass
7665 \figuremode { < [4 6] 8 [_! 12] > }
7666 @end lilypond
7667
7668 Although the support for figured bass may superficially resemble chord
7669 support, it works much simpler.  The @code{\figuremode} mode simply
7670 stores the numbers and @internalsref{FiguredBass} context prints
7671 them as entered.  There is no conversion to pitches and no
7672 realizations of the bass are played in the MIDI file.
7673
7674 Internally, the code produces markup texts.  You can use any of the
7675 markup text properties to override formatting.  For example, the
7676 vertical spacing of the figures may be set with @code{baseline-skip}.
7677
7678 @seealso
7679
7680 Program reference: @internalsref{BassFigureEvent} music,
7681 @internalsref{BassFigure} object, and @internalsref{FiguredBass} context.
7682
7683 @refbugs
7684
7685 Slash notation for alterations is not supported.
7686
7687 @node Contemporary notation
7688 @section Contemporary notation
7689
7690 In the 20th century, composers have greatly expanded the musical
7691 vocabulary.  With this expansion, many innovations in musical notation
7692 have been tried.  The book ``Music Notation in the 20th century'' by
7693 Kurt Stone gives a comprehensive overview (see @ref{Literature
7694 list}).  In general, the use of new, innovative notation makes a piece
7695 harder to understand and perform and its use should therefore be
7696 avoided.  For this reason, support for contemporary notation in
7697 LilyPond is limited.
7698
7699
7700 @menu
7701 * Polymetric notation::
7702 * Clusters::
7703 * Special fermatas::
7704 * Feathered beams::
7705 @end menu
7706
7707 @node Polymetric notation
7708 @subsection Polymetric notation
7709
7710 Double time signatures are not supported explicitly, but they can be
7711 faked.  In the next example, the markup for the time signature is
7712 created with a markup text.  This markup text is inserted in the
7713 @internalsref{TimeSignature} grob.
7714
7715 @lilypond[verbatim,raggedright]
7716 % create 2/4 + 5/8
7717 tsMarkup =\markup {
7718   \number {
7719     \column < "2" "4" >
7720     \musicglyph #"scripts-stopped"
7721     \bracket \column < "5" "8" >
7722   }
7723 }
7724
7725 {
7726   \override Staff.TimeSignature #'print-function = #Text_interface::print
7727   \override Staff.TimeSignature #'text = #tsMarkup
7728   \time 3/2
7729   c'2 \bar ":" c'4 c'4.
7730 }
7731 @end lilypond
7732
7733 Each staff can also have its own time signature.  This is done by
7734 moving the @internalsref{Timing_engraver} to the @internalsref{Staff}
7735 context.
7736
7737 @example
7738 \layout @{
7739   \context @{ \Score \remove "Timing_engraver" @}
7740   \context @{ \Staff \consists "Timing_engraver" @}
7741 @}
7742 @end example
7743
7744
7745 Now, each staff has its own time signature.
7746 @example
7747 <<
7748   \new Staff @{
7749     \time 3/4
7750     c4 c c | c c c |
7751   @}
7752   \new Staff @{
7753     \time 2/4
7754     c4 c | c c | c c
7755   @}
7756   \new Staff @{
7757     \time 3/8
7758     c4. c8 c c c4. c8 c c
7759   @}
7760 >>
7761 @end example
7762
7763 @lilypond[quote,raggedright]
7764 \layout{
7765   \context{ \Score \remove "Timing_engraver" }
7766   \context{ \Staff \consists "Timing_engraver" }
7767 }
7768
7769 \relative c' <<
7770   \new Staff {
7771     \time 3/4
7772     c4 c c | c c c |
7773   }
7774   \new Staff {
7775     \time 2/4
7776     c4 c | c c | c c
7777   }
7778   \new Staff {
7779     \time 3/8
7780     c4. c8 c c c4. c8 c c
7781   }
7782 >>
7783 @end lilypond
7784
7785
7786 A different form of polymetric notation is where note lengths have
7787 different values across staves.
7788
7789 This notation can be created by setting a common time signature for
7790 each staff but replacing it manually using
7791 @code{timeSignatureFraction} to the desired fraction.  Then the printed
7792 durations in each staff are scaled to the common time signature.
7793 The latter is done with @code{\compressmusic}, which is similar to
7794 @code{\times}, but does not create a tuplet bracket.
7795
7796
7797 In this example, music with the time signatures of 3/4, 9/8, and 10/8 are
7798 used in parallel.  In the second staff, shown durations are multiplied by
7799 2/3, so that 2/3 * 9/8 = 3/4, and in the third staff, shown durations are
7800 multiplied by 3/5, so that 3/5 * 10/8 = 3/4.
7801
7802 @lilypond[quote,raggedright,verbatim,fragment]
7803 \relative c' { <<
7804   \new Staff {
7805     \time 3/4
7806     c4 c c | c c c |
7807   }
7808   \new Staff {
7809     \time 3/4
7810     \set Staff.timeSignatureFraction = #'(9 . 8)
7811     \compressmusic #'(2 . 3)
7812       \repeat unfold 6 { c8[ c c] }
7813   }
7814   \new Staff {
7815     \time 3/4
7816     \set Staff.timeSignatureFraction = #'(10 . 8)
7817     \compressmusic #'(3 . 5) {
7818       \repeat unfold 2 { c8[ c c] }
7819       \repeat unfold 2 { c8[ c] }
7820       | c4. c4. \times 2/3 { c8 c c } c4
7821     }
7822   }
7823 >> }
7824 @end lilypond
7825
7826
7827
7828
7829 @refbugs
7830
7831 When using different time signatures in parallel, the spacing is
7832 aligned vertically, but bar lines distort the regular spacing.
7833
7834
7835
7836 @node Clusters
7837 @subsection Clusters
7838
7839 @cindex cluster
7840
7841 A cluster indicates a continuous range of pitches to be played.  They
7842 can be denoted as the envelope of a set of notes.  They are entered by
7843 applying the function @code{makeClusters} to a sequence of
7844 chords, e.g.,
7845 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
7846 \makeClusters { <c e > <b f'> }
7847 @end lilypond
7848
7849 The following example (from
7850 @inputfileref{input/@/regression,cluster@/.ly}) shows what the result
7851 looks like
7852
7853 @lilypondfile[raggedright,quote]{cluster.ly}
7854
7855 Ordinary notes and clusters can be put together in the same staff,
7856 even simultaneously.  In such a case no attempt is made to
7857 automatically avoid collisions between ordinary notes and clusters.
7858
7859 @seealso
7860
7861 Program reference: @internalsref{ClusterSpanner},
7862 @internalsref{ClusterSpannerBeacon},
7863 @internalsref{Cluster_spanner_engraver}, and
7864 @internalsref{ClusterNoteEvent}.
7865
7866 Examples: @inputfileref{input/@/regression,cluster@/.ly}.
7867
7868 @refbugs
7869
7870 Music expressions like @code{<< @{ g8 e8 @} a4 >>} are not printed
7871 accurately.  Use @code{<g a>8 <e a>8} instead.
7872
7873
7874
7875 @node Special fermatas
7876 @subsection Special fermatas
7877
7878 @cindex fermatas, special
7879
7880 In contemporary music notation, special fermata symbols denote breaks
7881 of differing lengths.  The following fermatas are supported
7882
7883 @lilypond[quote,raggedright]
7884 <<
7885   \oldaddlyrics {
7886     b'2
7887     ^\shortfermata
7888     _\shortfermata
7889     r
7890
7891     b'
7892     ^\fermata
7893     _\fermata
7894     r
7895
7896     b'
7897     ^\longfermata
7898     _\longfermata
7899     r
7900
7901     b'
7902     ^\verylongfermata
7903     _\verylongfermata
7904     r
7905   }
7906   \context Lyrics \lyricmode {
7907     \override LyricText #'font-family = #'typewriter
7908     "shortfermata" "fermata" "longfermata" "verylongfermata"
7909   }
7910 >>
7911 @end lilypond
7912
7913 See @ref{Articulations} for general instructions how to apply scripts
7914 such as fermatas to notes.
7915
7916 @node Feathered beams
7917 @subsection Feathered beams
7918
7919 Feathered beams are not supported natively, but they can be faked by
7920 forcing two beams to overlap.  Here is an example,
7921
7922 @c don't change relative setting witout changing positions!
7923 @lilypond[raggedright,relative=1,fragment,verbatim]
7924 \new Staff <<
7925   \new Voice
7926   {
7927     \stemUp
7928     \once \override Voice.Beam #'positions = #'(0 . 0.5)
7929     c8[ c c c c ]
7930   }
7931   \new Voice {
7932     \stemUp
7933     \once \override Voice.Beam #'positions = #'(0 . -0.5)
7934     c[ c c c c]
7935   }
7936 >>
7937 @end lilypond
7938
7939
7940
7941 @node Educational use
7942 @section Educational use
7943
7944 With the amount of control that LilyPond offers, one can make great
7945 teaching tools in addition to great musical scores.
7946
7947 @menu
7948 * Balloon help::
7949 * Blank music sheet::
7950 * Hidden notes::
7951 * Easy Notation note heads::
7952 @end menu
7953
7954 @node Balloon help
7955 @subsection Balloon help
7956
7957 Elements of notation can be marked and named with the help of a square
7958 balloon.  The primary purpose of this feature is to explain notation.
7959
7960 The following example demonstrates its use.
7961
7962 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
7963 \context Voice {
7964   \applyoutput
7965     #(add-balloon-text 'NoteHead "heads, or tails?"
7966     '(1 . -3))
7967   c8
7968 }
7969 @end lilypond
7970
7971 @noindent
7972 The function @code{add-balloon-text} takes the name of a grob, the
7973 label to print, and the position where to put the label relative to
7974 the object.  In the above example, the text ``heads or tails?'' ends
7975 3 spaces below and 1 space to the right of the marked head.
7976
7977 @cindex balloon
7978 @cindex notation, explaining
7979
7980 @seealso
7981
7982 Program reference: @internalsref{text-balloon-interface}.
7983
7984 Examples: @inputfileref{input/@/regression,balloon@/.ly}.
7985
7986
7987
7988
7989 @node Blank music sheet
7990 @subsection Blank music sheet
7991
7992 A blank music sheet can be produced also by using invisible notes, and
7993 removing @code{Bar_number_engraver}.
7994
7995
7996 @lilypond[quote,verbatim]
7997 emptymusic = {
7998   \repeat unfold 2 % Change this for more lines.
7999   { s1\break }
8000   \bar "|."
8001 }
8002 \new Score \with {
8003   \override TimeSignature #'transparent = ##t
8004   defaultBarType = #""
8005   \remove Bar_number_engraver
8006 } <<
8007   \context Staff \emptymusic
8008   \context TabStaff \emptymusic
8009 >>
8010 @end lilypond
8011
8012
8013 @node Hidden notes
8014 @subsection Hidden notes
8015
8016 @cindex Hidden notes
8017 @cindex Invisible notes
8018 @cindex Transparent notes
8019
8020 Hidden (or invisible or transparent) notes can be useful in preparing theory
8021 or composition exercises.
8022
8023 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
8024 c4 d4
8025 \hideNotes
8026 e4 f4
8027 \unHideNotes
8028 g4 a
8029 @end lilypond
8030
8031 Hidden notes are also great for performing weird tricks.  For example,
8032 slurs cannot be attached to rests or spacer rests, but you may wish
8033 to include that in your score -- string instruments use this notation
8034 when doing pizzicato to indicate that the note should ring for as long
8035 as possible.
8036
8037 @lilypond[quote,raggedright,verbatim,relative=0,fragment]
8038 \clef bass
8039 << {
8040   c4^"pizz"( \hideNotes c)
8041   \unHideNotes c( \hideNotes c)
8042 } {
8043   s4 r s r
8044 } >>
8045 @end lilypond
8046
8047
8048 @node Easy Notation note heads
8049 @subsection Easy Notation note heads
8050
8051 @cindex easy notation
8052 @cindex Hal Leonard
8053
8054 The `easy play' note head includes a note name inside the head.  It is
8055 used in music for beginners
8056
8057 @lilypond[quote,raggedright,verbatim,fragment,staffsize=26]
8058   \setEasyHeads
8059   c'2 e'4 f' | g'1
8060 @end lilypond
8061
8062 The command @code{\setEasyHeads} overrides settings for the
8063 @internalsref{NoteHead} object.  To make the letters readable, it has
8064 to be printed in a large font size.  To print with a larger font, see
8065 @ref{Setting global staff size}.
8066
8067 @refcommands
8068
8069 @cindex @code{\setEasyHeads}
8070 @code{\setEasyHeads}
8071