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