]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/notation.itely
(all-grob-descriptions): remove all
[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{middleCPosition} 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 @{ 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{Vocal 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
4078 @c link broken:
4079 @c Examples: @ref{Small ensembles},
4080
4081
4082 @inputfileref{input/@/regression,lyric@/-combine@/-new@/.ly}.
4083 @c TODO: make separate section for melismata
4084
4085 @c  I can't find these examples in 2.0 or 2.2; remove. -gp
4086 @c @inputfileref{input/@/test,lyrics@/-melisma@/-variants@/.ly}.
4087 @c @inputfileref{input/@/test,lyrics@/-melisma@/-faster@/.ly}.
4088
4089 @refbugs
4090
4091 Melismata are not detected automatically, and extender lines must be
4092 inserted by hand.
4093
4094
4095 @c TODO: document \new Staff << Voice \lyricsto >> bug
4096
4097 @node Flexibility in alignment
4098 @subsection Flexibility in alignment
4099
4100
4101 Often, different stanzas of one song are put to one melody in slightly
4102 differing ways.  Such variations can still be captured with
4103 @code{\lyricsto}.
4104
4105 One possibility is that the text has a melisma in one stanza, but
4106 multiple syllables in another one.  One solution is to make the faster
4107 voice ignore the melisma.  This is done by setting
4108 @code{ignoreMelismata} in the Lyrics context.
4109
4110 There has one tricky aspect.  The setting for @code{ignoreMelismata}
4111 must be set one syllable @emph{before} the non-melismatic syllable
4112 in the text, as shown here,
4113
4114 @lilypond[verbatim,raggedright,quote]
4115 <<
4116   \relative \context Voice = "lahlah" {
4117     \set Staff.autoBeaming = ##f
4118     c4
4119     \slurDotted
4120     f8.[( g16])
4121     a4
4122   }
4123   \new Lyrics \lyricsto "lahlah" {
4124     more slow -- ly
4125   }
4126   \new Lyrics \lyricsto "lahlah" {
4127     \set ignoreMelismata = ##t % applies to "fas"
4128     go fas -- ter
4129     \unset ignoreMelismata
4130     still
4131   }
4132 >>
4133 @end lilypond
4134
4135
4136 The @code{ignoreMelismata} applies to the syllable ``fas'', so it
4137 should be entered before ``go''.
4138
4139 The reverse is also possible: making a lyric line slower than the
4140 standard.  This can be achieved by insert @code{\skip}s into the
4141 lyrics.  For every @code{\skip}, the text will be delayed another note.
4142 For example,
4143
4144 @lilypond[verbatim,raggedright,quote]
4145 \relative { c c g' }
4146 \addlyrics {
4147   twin -- \skip 4
4148   kle
4149 }
4150 @end lilypond
4151
4152 More complex variations in text underlay are possible.  It is possible
4153 to switch the melody for a line of lyrics during the text.  This is
4154 done by setting the @code{associatedVoice} property.  In the example
4155
4156 @lilypond[raggedright,quote]
4157 <<
4158   \relative \context Voice = "lahlah" {
4159     \set Staff.autoBeaming = ##f
4160     c4
4161     <<
4162       \context Voice = alternative {
4163         \voiceOne
4164         \times 2/3 {
4165           % show associations clearly.
4166           \override NoteColumn #'force-hshift = #-3
4167           f8 f g
4168         }
4169       }
4170       {
4171         \voiceTwo
4172         f8.[ g16]
4173         \oneVoice
4174       } >>
4175     a8( b) c
4176   }
4177   \new Lyrics \lyricsto "lahlah" {
4178     Ju -- ras -- sic Park
4179   }
4180   \new Lyrics \lyricsto "lahlah" {
4181     % Tricky: need to set associatedVoice
4182     % one syllable too soon!
4183     \set associatedVoice = alternative % applies to "ran"
4184     Ty --
4185     ran --
4186     no --
4187     \set associatedVoice = lahlah % applies to "rus"
4188     sau -- rus Rex
4189   } >>
4190 @end lilypond
4191
4192 @noindent
4193 the text for the first stanza is set to a melody called ``lahlah'',
4194
4195 @example
4196 \new Lyrics \lyricsto "lahlah" @{
4197   Ju -- ras -- sic Park
4198 @}
4199 @end example
4200
4201
4202 The second stanza initially is set to the @code{lahlah} context, but
4203 for the syllable ``ran'', it switches to a different melody.
4204 This is achieved with
4205 @example
4206 \set associatedVoice = alternative
4207 @end example
4208
4209 @noindent
4210 Here, @code{alternative} is the name of the @code{Voice} context
4211 containing the triplet.
4212
4213 Again, the command must be one syllable too early, before ``Ty'' in
4214 this case.
4215
4216 @example
4217 \new Lyrics \lyricsto "lahlah" @{
4218   \set associatedVoice = alternative % applies to "ran"
4219   Ty --
4220   ran --
4221   no --
4222   \set associatedVoice = lahlah % applies to "rus"
4223   sau -- rus Rex
4224 @}
4225 @end example
4226
4227 @noindent
4228 The underlay is switched back to the starting situation by assigning
4229 @code{lahlah} to @code{associatedVoice}.
4230
4231
4232
4233
4234 @node More stanzas
4235 @subsection More stanzas
4236
4237 @cindex phrasing, in lyrics
4238
4239
4240 @cindex stanza number
4241 @cindex singer's names
4242 @cindex name of singer
4243
4244 Stanza numbers can be added by setting @code{stanza}, e.g.,
4245
4246 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
4247 \new Voice {
4248   \time 3/4 g2 e4 a2 f4 g2.
4249 } \addlyrics {
4250   \set stanza = "1. "
4251   Hi, my name is Bert.
4252 } \addlyrics {
4253   \set stanza = "2. "
4254   Oh, che -- ri, je t'aime
4255 }
4256 @end lilypond
4257
4258 These numbers are put just before the start of first syllable.
4259
4260 Names of singers can also be added.  They are printed at the start of
4261 the line, just like instrument names.  They are created by setting
4262 @code{vocalName}.  A short version may be entered as @code{vocNam}.
4263
4264
4265 @lilypond[fragment,raggedright,quote,verbatim,relative=2]
4266 \new Voice {
4267   \time 3/4 g2 e4 a2 f4 g2.
4268 } \addlyrics {
4269   \set vocalName = "Bert "
4270   Hi, my name is Bert.
4271 } \addlyrics {
4272   \set vocalName = "Ernie "
4273   Oh, che -- ri, je t'aime
4274 }
4275 @end lilypond
4276
4277 @seealso
4278
4279 Program reference: Layout objects @internalsref{LyricText} and
4280 @internalsref{VocalName}.  Music expressions
4281 @internalsref{LyricEvent}.
4282
4283
4284
4285 @node Ambitus
4286 @subsection Ambitus
4287 @cindex ambitus
4288
4289 The term @emph{ambitus} denotes a range of pitches for a given voice
4290 in a part of music.  It may also denote the pitch range that a musical
4291 instrument is capable of playing.  Ambits are printed on vocal parts,
4292 so performers can easily determine it meets their capabilities.
4293
4294 Ambits are denoted at the beginning of a piece near the initial clef.
4295 The range is graphically specified by two note heads that represent the
4296 minimum and maximum pitch.  To print such ambits, add the
4297 @internalsref{Ambitus_engraver} to the @internalsref{Voice} context,
4298 for example,
4299
4300 @example
4301 \layout @{
4302   \context @{
4303     \Voice
4304     \consists Ambitus_engraver
4305   @}
4306 @}
4307 @end example
4308
4309 This results in the following output
4310
4311 @lilypond[quote,raggedright]
4312 \layout {
4313   \context {
4314     \Staff
4315     \consists Ambitus_engraver
4316   }
4317 }
4318
4319 \relative \new Staff {
4320   as'' c e2 cis,2
4321 }
4322 @end lilypond
4323
4324 If you have multiple voices in a single staff and you want a single
4325 ambitus per staff rather than per each voice, add the
4326 @internalsref{Ambitus_engraver} to the @internalsref{Staff} context
4327 rather than to the @internalsref{Voice} context.  Here is an example,
4328
4329 @lilypond[verbatim,raggedright,quote]
4330 \new Staff <<
4331   \new Voice \with {
4332     \consists "Ambitus_engraver"
4333   } \relative c'' {
4334     \override Ambitus #'X-offset-callbacks
4335       = #(list (lambda (grob axis) -1.0))
4336     \voiceOne
4337     c4 a d e f2
4338   }
4339   \new Voice \with {
4340     \consists "Ambitus_engraver"
4341   } \relative c' {
4342     \voiceTwo
4343     es4 f g as b2
4344   }
4345 >>
4346 @end lilypond
4347
4348 @noindent
4349 This example uses one advanced feature,
4350
4351 @example
4352 \override Ambitus #'X-offset-callbacks
4353   = #(list (lambda (grob axis) -1.0))
4354 @end example
4355
4356 @noindent
4357 This code moves the ambitus to the left.  The same effect could have
4358 been achieved with @code{extra-offset}, but then the formatting system
4359 would not reserve space for the moved object.
4360
4361 @seealso
4362
4363 Program reference: @internalsref{Ambitus},
4364 @internalsref{AmbitusLine}, @internalsref{AmbitusNoteHead},
4365 @internalsref{AmbitusAccidental}.
4366
4367 Examples: @inputfileref{input/@/regression,ambitus@/.ly}.
4368
4369 @refbugs
4370
4371 There is no collision handling in the case of multiple per-voice
4372 ambitus.
4373
4374 @node Other instrument specific notation, Tablatures, Vocal music, Notation manual
4375 @section Other instrument specific notation
4376
4377 This section includes extra information for writing string music, and may
4378 include extra information for other instruments in the future.
4379
4380 @menu
4381 * Harmonic notes::              
4382 @end menu
4383
4384 @node Harmonic notes, , Other instrument specific notation, Other instrument specific notation
4385 @subsection Harmonic notes
4386
4387 @cindex artificial harmonics
4388 @cindex harmonics
4389
4390 Artificial harmonics are notated with a different notehead style.  They
4391 are entered by marking the harmonic pitch with @code{\harmonic}.
4392
4393 @lilypond[raggedright,verbatim,quote,fragment]
4394 <c' g'\harmonic>4
4395 @end lilypond
4396
4397
4398 @node Tablatures, Popular music, Other instrument specific notation, Notation manual
4399 @section Tablatures
4400
4401 @cindex tablature
4402 @cindex guitar tablature
4403
4404 Tablature notation is used for notating music for plucked string
4405 instruments.  Pitches are not denoted with note heads, but by
4406 indicating on which string and fret a note must be played.  LilyPond
4407 offers limited support for tablature.
4408
4409 @menu
4410 * Tablatures basic::            
4411 * Non-guitar tablatures::       
4412 @end menu
4413
4414 @node Tablatures basic, Non-guitar tablatures, Tablatures, Tablatures
4415 @subsection Tablatures basic
4416 @cindex Tablatures basic
4417
4418 The string number associated to a note is given as a backslash
4419 followed by a number, e.g., @code{c4\3} for a C quarter on the third
4420 string.  By default, string 1 is the highest one, and the tuning
4421 defaults to the standard guitar tuning (with 6 strings).  The notes
4422 are printed as tablature, by using @internalsref{TabStaff} and
4423 @internalsref{TabVoice} contexts
4424
4425 @lilypond[quote,raggedright,fragment,verbatim]
4426 \context TabStaff {
4427   a,4\5 c'\2 a\3 e'\1
4428   e\4 c'\2 a\3 e'\1
4429 }
4430 @end lilypond
4431
4432 @cindex @code{minimumFret}
4433 @cindex fret
4434
4435 When no string is specified, the first string that does not give a
4436 fret number less than @code{minimumFret} is selected.  The default
4437 value for @code{minimumFret} is 0
4438
4439
4440 @example
4441 e16 fis gis a b4
4442 \set TabStaff.minimumFret = #8
4443 e16 fis gis a b4
4444 @end example
4445 @lilypond[quote,raggedright]
4446 frag = {
4447   \key e \major
4448   e16 fis gis a b4
4449   \set TabStaff.minimumFret = #8
4450   e16 fis gis a b4
4451 }
4452   \context StaffGroup <<
4453     \context Staff { \clef "G_8" \frag }
4454     \context TabStaff { \frag }
4455   >>
4456 @end lilypond
4457
4458 @seealso
4459
4460 Program reference: @internalsref{TabStaff}, @internalsref{TabVoice}, and
4461 @internalsref{StringNumberEvent}.
4462
4463 @refbugs
4464
4465 Chords are not handled in a special way, and hence the automatic
4466 string selector may easily select the same string to two notes in a
4467 chord.
4468
4469
4470 @node Non-guitar tablatures, , Tablatures basic, Tablatures
4471 @subsection Non-guitar tablatures
4472 @cindex Non-guitar tablatures
4473
4474 You can change the number of strings, by setting the number of lines
4475 in the @internalsref{TabStaff}.
4476
4477 You can change the tuning of the strings.  A string tuning is given as
4478 a Scheme list with one integer number for each string, the number
4479 being the pitch (measured in semitones relative to middle C) of an
4480 open string.  The numbers specified for @code{stringTuning} are the
4481 numbers of semitones to subtract or add, starting the specified pitch
4482 by default middle C, in string order.  In the next example,
4483 @code{stringTunings} is set for the pitches e, a, d, and g
4484
4485 @lilypond[quote,raggedright,fragment,verbatim]
4486 \context TabStaff <<
4487   \set TabStaff.stringTunings = #'(-5 -10 -15 -20)
4488   {
4489     a,4 c' a e' e c' a e'
4490   }
4491 >>
4492 @end lilypond
4493
4494 @refbugs
4495
4496 No guitar special effects have been implemented.
4497
4498 @seealso
4499
4500 Program reference: @internalsref{Tab_note_heads_engraver}.
4501
4502
4503 @node Popular music, Orchestral music, Tablatures, Notation manual
4504 @section Popular music
4505
4506 This section discusses issues that arise when writing popular music.
4507
4508 @menu
4509 * Chord names::                 
4510 * Chords mode::                 
4511 * Printing chord names::        
4512 * Fret diagrams::               
4513 * Improvisation::               
4514 @end menu
4515
4516 @node Chord names, Chords mode, Popular music, Popular music
4517 @subsection Chord names
4518 @cindex Chords
4519
4520 LilyPond has support for printing chord names.  Chords may be entered
4521 in musical chord notation, i.e., @code{< .. >}, but they can also be
4522 entered by name.  Internally, the chords are represented as a set of
4523 pitches, so they can be transposed
4524
4525
4526 @lilypond[quote,raggedright,verbatim,raggedright]
4527 twoWays = \transpose c c' {
4528   \chordmode {
4529     c1 f:sus4 bes/f
4530   }
4531   <c e g>
4532   <f bes c'>
4533   <f bes d'>
4534 }
4535
4536 << \context ChordNames \twoWays
4537    \context Voice \twoWays >>
4538 @end lilypond
4539
4540 This example also shows that the chord printing routines do not try to
4541 be intelligent.  The last chord (@code{f bes d}) is not interpreted as
4542 an inversion.
4543
4544 @c this menu isn't needed.
4545 @ignore
4546 @menu
4547 * Chords mode::
4548 * Printing chord names::
4549 @end menu
4550 @end ignore
4551
4552 @node Chords mode
4553 @subsection Chords mode
4554 @cindex Chords mode
4555
4556 In chord mode sets of pitches (chords) are entered with normal note
4557 names.  A chord is entered by the root, which is entered like a
4558 normal pitch
4559
4560 @lilypond[quote,raggedright,fragment,verbatim]
4561 \chordmode { es4. d8 c2 }
4562 @end lilypond
4563
4564 @noindent
4565 The mode is introduced by the keyword @code{\chordmode}.
4566
4567 @cindex chord entry
4568 @cindex chord mode
4569
4570 Other chords may be entered by suffixing a colon and introducing a
4571 modifier (which may include a number if desired)
4572 @lilypond[quote,fragment,verbatim]
4573 \chordmode { e1:m e1:7 e1:m7 }
4574 @end lilypond
4575 The first number following the root is taken to be the `type' of the
4576 chord, thirds are added to the root until it reaches the specified
4577 number
4578 @lilypond[quote,fragment,verbatim]
4579 \chordmode { c:3 c:5 c:6 c:7 c:8 c:9 c:10 c:11 }
4580 @end lilypond
4581
4582 @cindex root of chord
4583 @cindex additions, in chords
4584 @cindex removals, in chords
4585
4586 More complex chords may also be constructed adding separate steps
4587 to a chord.  Additions are added after the number following
4588 the colon and are separated by dots
4589 @lilypond[quote,verbatim,fragment]
4590 \chordmode { c:5.6 c:3.7.8 c:3.6.13 }
4591 @end lilypond
4592 Chord steps can be altered by suffixing a @code{-} or @code{+} sign
4593 to the number
4594 @lilypond[quote,verbatim,fragment]
4595 \chordmode { c:7+ c:5+.3- c:3-.5-.7- }
4596 @end lilypond
4597 Removals are specified similarly and are introduced by a caret.  They
4598 must come after the additions
4599 @lilypond[quote,verbatim,fragment]
4600 \chordmode { c^3 c:7^5 c:9^3.5 }
4601 @end lilypond
4602
4603 Modifiers can be used to change pitches.  The following modifiers are
4604 supported
4605
4606 @table @code
4607 @item m
4608 The minor chord.  This modifier lowers the 3rd and (if present) the 7th step.
4609
4610 @item dim
4611 The diminished chord.  This modifier lowers the 3rd, 5th and (if present)
4612 the 7th step.
4613
4614 @item aug
4615 The augmented chord.  This modifier raises the 5th step.
4616
4617 @item maj
4618 The major 7th chord.  This modifier raises the 7th step if present.
4619
4620 @item sus
4621 The suspended 4th or 2nd.  This modifier removes the 3rd
4622 step.  Append either @code{2} or @code{4} to add the 2nd or 4th step to
4623 the chord.
4624 @end table
4625
4626 Modifiers can be mixed with additions
4627 @lilypond[quote,verbatim,fragment]
4628   \chordmode { c:sus4 c:7sus4 c:dim7 c:m6 }
4629 @end lilypond
4630
4631 @cindex modifiers, in chords.
4632 @cindex @code{aug}
4633 @cindex @code{dim}
4634 @cindex @code{maj}
4635 @cindex @code{sus}
4636 @cindex @code{m}
4637
4638 Since an unaltered 11 does not sound good when combined with an
4639 unaltered 3, the 11 is removed in this case (unless it is added
4640 explicitly)
4641 @lilypond[quote,raggedright,fragment,verbatim]
4642 \chordmode { c:13 c:13.11 c:m13 }
4643 @end lilypond
4644
4645 @cindex @code{/}
4646
4647 An inversion (putting one pitch of the chord on the bottom), as well
4648 as bass notes, can be specified by appending
4649 @code{/}@var{pitch} to the chord
4650 @lilypond[quote,raggedright,fragment,verbatim]
4651 \chordmode { c1 c/g c/f }
4652 @end lilypond
4653 @cindex @code{/+}
4654
4655 A bass note can be added instead transposed out of the chord,
4656 by using @code{/+}@var{pitch}.
4657
4658 @lilypond[quote,raggedright,fragment,verbatim]
4659 \chordmode { c1 c/+g c/+f }
4660 @end lilypond
4661
4662 Chords is a mode similar to @code{\lyricmode}, etc.  Most
4663 of the commands continue to work, for example, @code{r} and
4664 @code{\skip} can be used to insert rests and spaces, and property
4665 commands may be used to change various settings.
4666
4667
4668
4669 @refbugs
4670
4671 Each step can only be present in a chord once.  The following
4672 simply produces the augmented chord, since @code{5+} is interpreted
4673 last
4674 @cindex clusters
4675 @lilypond[quote,raggedright,verbatim,fragment]
4676 \chordmode { c:5.5-.5+ }
4677 @end lilypond
4678
4679
4680 @node Printing chord names
4681 @subsection Printing chord names
4682
4683 @cindex printing chord names
4684 @cindex chord names
4685 @cindex chords
4686
4687 For displaying printed chord names, use the @internalsref{ChordNames} context.
4688 The chords may be entered either using the notation
4689 described above, or directly using @code{<} and @code{>}
4690
4691 @lilypond[quote,verbatim,raggedright]
4692 harmonies = {
4693   \chordmode {a1 b c} <d' f' a'> <e' g' b'>
4694 }
4695 <<
4696   \context ChordNames \harmonies
4697   \context Staff \harmonies
4698 >>
4699 @end lilypond
4700
4701 You can make the chord changes stand out by setting
4702 @internalsref{ChordNames}.@code{chordChanges} to true.  This will only
4703 display chord names when there is a change in the chords scheme and at
4704 the start of a new line
4705
4706 @lilypond[quote,verbatim,raggedright]
4707 harmonies = \chordmode {
4708   c1:m c:m \break c:m c:m d
4709 }
4710 <<
4711   \context ChordNames {
4712     \set chordChanges = ##t
4713     \harmonies }
4714   \context Staff \transpose c c' \harmonies
4715 >>
4716 @end lilypond
4717
4718 The previous examples all show chords over a staff.  This is not
4719 necessary.  Chords may also be printed separately.  It may be necessary
4720 to add @internalsref{Volta_engraver} and @internalsref{Bar_engraver}
4721 for showing repeats.
4722
4723 @lilypond[raggedright,verbatim]
4724 \new ChordNames \with {
4725   \override BarLine #'bar-size = #4
4726   voltaOnThisStaff = ##t
4727   \consists Bar_engraver
4728   \consists "Volta_engraver"
4729 }
4730 \repeat volta 2 \chordmode {
4731   f1:maj f:7 bes:7
4732   c:maj
4733 } \alternative {
4734   es e
4735 }
4736 @end lilypond
4737
4738
4739 The default chord name layout is a system for Jazz music, proposed by
4740 Klaus Ignatzek (see @ref{Literature list}).  It can be tuned through the
4741 following properties
4742
4743 @table @code
4744 @cindex @code{chordNameExceptions}
4745 @item chordNameExceptions
4746 This is a list that contains the chords that have special formatting.
4747
4748 The exceptions list should be encoded as
4749 @example
4750 @{ <c f g bes>1 \markup @{ \super "7" "wahh" @} @}
4751 @end example
4752
4753 To get this information into @code{chordNameExceptions} takes a little
4754 manoeuvring.  The following code transforms @code{chExceptionMusic}
4755 (which is a sequential music) into a list of exceptions.
4756 @example
4757 (sequential-music-to-chord-exceptions chExceptionMusic #t)
4758 @end example
4759 Then,
4760 @example
4761 (append
4762  (sequential-music-to-chord-exceptions chExceptionMusic #t)
4763  ignatzekExceptions)
4764 @end example
4765 adds the new exceptions to the default ones, which are defined in
4766 @file{ly/@/chord@/-modifier@/-init@/.ly}.
4767
4768 For an example of tuning this property, see also
4769 @inputfileref{input/@/regression,chord@/-name@/-exceptions@/.ly}.
4770 @cindex exceptions, chord names.
4771
4772
4773 @cindex @code{majorSevenSymbol}
4774 @item majorSevenSymbol
4775 This property contains the markup object used for the 7th step, when
4776 it is major.  Predefined options are @code{whiteTriangleMarkup} and
4777 @code{blackTriangleMarkup}.  See
4778 @inputfileref{input/@/regression,chord@/-name@/-major7@/.ly} for an example.
4779
4780 @cindex @code{chordNameSeparator}
4781 @item chordNameSeparator
4782 Different parts of a chord name are normally separated by a
4783 slash.  By setting @code{chordNameSeparator}, you can specify other
4784 separators, e.g.,
4785 @lilypond[quote,raggedright,fragment,verbatim]
4786 \context ChordNames \chordmode {
4787   c:7sus4
4788   \set chordNameSeparator
4789     = \markup { \typewriter "|" }
4790   c:7sus4
4791 }
4792 @end lilypond
4793
4794 @cindex @code{chordRootNamer}
4795 @item chordRootNamer
4796 The root of a chord is usually printed as a letter with an optional
4797 alteration.  The transformation from pitch to letter is done by this
4798 function.  Special note names (for example, the German ``H'' for a
4799 B-chord) can be produced by storing a new function in this property.
4800
4801 @cindex @code{chordNoteNamer}
4802 @item chordNoteNamer
4803 The default is to print single pitch, e.g., the bass note, using the
4804 @code{chordRootNamer}.  The @code{chordNoteNamer} property can be set
4805 to a specialized function to change this behavior.  For example, the
4806 base can be printed in lower case.
4807
4808 @end table
4809
4810 The predefined variables @code{\germanChords},
4811 @code{\semiGermanChords} set these variables.  The effect is
4812 demonstrated here,
4813
4814 @lilypondfile[raggedright]{chord-names-german.ly}
4815
4816 There are also two other chord name schemes implemented: an alternate
4817 Jazz chord notation, and a systematic scheme called Banter chords.  The
4818 alternate Jazz notation is also shown on the chart in @ref{Chord name
4819 chart}.  Turning on these styles is described in the input file
4820 @inputfileref{input/@/test,chord@/-names@/-jazz@/.ly}.
4821
4822 @cindex Banter
4823 @cindex jazz chords
4824 @cindex chords, jazz
4825
4826
4827 @refcommands
4828
4829 @cindex @code{\germanChords}
4830 @code{\germanChords},
4831 @cindex @code{\semiGermanChords}
4832 @code{\semiGermanChords}.
4833
4834
4835
4836
4837 @seealso
4838
4839 Examples: @inputfileref{input/@/regression,chord@/-name@/-major7@/.ly},
4840 @inputfileref{input/@/regression,chord@/-name@/-exceptions@/.ly},
4841 @inputfileref{input/@/test,chord@/-names@/-jazz@/.ly}.
4842
4843
4844 Init files: @file{scm/@/chords@/-ignatzek@/.scm}, and
4845 @file{scm/@/chord@/-entry@/.scm}.
4846
4847
4848 @refbugs
4849
4850 Chord names are determined solely from the list of pitches.  Chord
4851 inversions are not identified, and neither are added bass notes.  This
4852 may result in strange chord names when chords are entered with the
4853 @code{< .. >} syntax.
4854
4855
4856 @node Fret diagrams
4857 @subsection Fret diagrams
4858 @cindex fret diagrams
4859 @cindex chord diagrams
4860
4861 Fret diagrams can be added to music as a markup to the desired note.  The
4862 markup contains information about the desired fret diagram, as shown in the
4863 following example
4864
4865 @lilypond[verbatim, raggedright, quote]
4866 \context Voice {
4867   d' ^\markup \fret-diagram #"6-x;5-x;4-o;3-2;2-3;1-2;"
4868   d' d' d'
4869   fis' ^\markup \override #'(size . 0.75) {
4870     \override #'(finger-code . below-string) {
4871       \fret-diagram-verbose #'((place-fret 6 2 1) (barre 6 1 2)
4872                                (place-fret 5 4 3) (place-fret 4 4 4)
4873                                (place-fret 3 3 2) (place-fret 2 2 1)
4874                                (place-fret 1 2 1))
4875     }
4876   }
4877   fis' fis' fis'
4878   c' ^\markup \override #'(dot-radius . 0.35) {
4879     \override #'(finger-code . in-dot) {
4880       \override #'(dot-color . white) {
4881         \fret-diagram-terse #"x;3-1-(;5-2;5-3;5-4;3-1-);"
4882       }
4883     }
4884   }
4885   c' c' c'
4886 }
4887 @end lilypond
4888
4889
4890 There are three different fret-diagram markup interfaces: standard, terse,
4891 and verbose.  The three interfaces produce equivalent markups, but have
4892 varying amounts of information in the markup string.  Details about the
4893 markup interfaces are found at @ref{Overview of text markup commands}.
4894
4895 You can set a number of graphical properties according to your preference.
4896 Details about the property interface to fret diagrams are found at
4897 @internalsref{fret-diagram-interface}.
4898
4899
4900 @seealso
4901
4902 Examples: @inputfileref{input/@/test,fret@/-diagram@/.ly}
4903
4904
4905 @node Improvisation
4906 @subsection Improvisation
4907
4908 Improvisation is sometimes denoted with slashed note heads.  Such note
4909 heads can be created by adding a @internalsref{Pitch_squash_engraver}
4910 to the @internalsref{Staff} or @internalsref{Voice} context.  Then, the
4911 following command
4912
4913 @example
4914 \set squashedPosition = #0
4915 \override NoteHead #'style = #'slash
4916 @end example
4917
4918 @noindent
4919 switches on the slashes.
4920
4921 There are shortcuts @code{\improvisationOn} (and an accompanying
4922 @code{\improvisationOff}) for this command sequence.  They are used in
4923 the following example
4924
4925 @lilypond[verbatim,raggedright,quote]
4926 \new Staff \with {
4927   \consists Pitch_squash_engraver
4928 } \transpose c c' {
4929   e8 e g a a16(bes)(a8) g \improvisationOn
4930   e8
4931   ~e2~e8 f4 fis8
4932   ~fis2 \improvisationOff a16(bes) a8 g e
4933 }
4934 @end lilypond
4935
4936
4937
4938 @node Orchestral music
4939 @section Orchestral music
4940
4941 @cindex Writing parts
4942
4943 Orchestral music involves some special notation, both in the full
4944 score and the individual parts.  This section explains how to tackle
4945 some common problems in orchestral music.
4946
4947
4948
4949 @menu
4950 * System start delimiters::     
4951 * Aligning to cadenzas::        
4952 * Rehearsal marks::             
4953 * Bar numbers::                 
4954 * Instrument names::            
4955 * Transpose::                   
4956 * Instrument transpositions::   
4957 * Multi measure rests::         
4958 * Automatic part combining::    
4959 * Hiding staves::               
4960 * Different editions from one source::  
4961 * Quoting other voices::        
4962 * Formatting cue notes::        
4963 @end menu
4964
4965 @node System start delimiters
4966 @subsection System start delimiters
4967
4968 Polyphonic scores consist of many staves.  These staves can be
4969 constructed in three different ways
4970 @itemize @bullet
4971 @item The group is started with a brace at the left, and bar lines are
4972 connected.  This is done with the @internalsref{GrandStaff} context.
4973
4974 @lilypond[verbatim,raggedright,quote]
4975 \new GrandStaff
4976 \relative <<
4977   \new Staff { c1 c }
4978   \new Staff { c c }
4979 >>
4980 @end lilypond
4981
4982
4983 @item The group is started with a bracket, and bar lines are connected.
4984 This is done with the
4985 @internalsref{StaffGroup} context
4986
4987 @lilypond[verbatim,raggedright,quote]
4988 \new StaffGroup
4989 \relative <<
4990   \new Staff { c1 c }
4991   \new Staff { c c }
4992 >>
4993 @end lilypond
4994
4995
4996 @item The group is started with a vertical line.  Bar lines are not
4997 connected.  This is the default for the score.
4998
4999 @lilypond[verbatim,raggedright,quote]
5000 \relative <<
5001   \new Staff { c1 c }
5002   \new Staff { c c }
5003 >>
5004 @end lilypond
5005
5006 @end itemize
5007
5008 @cindex Staff, multiple
5009 @cindex bracket, vertical
5010 @cindex brace, vertical
5011 @cindex grand staff
5012 @cindex staff group
5013
5014
5015 @seealso
5016
5017 The bar lines at the start of each system are
5018 @internalsref{SystemStartBar}, @internalsref{SystemStartBrace}, and
5019 @internalsref{SystemStartBracket}.  Only one of these types is created
5020 in every context, and that type is determined by the property
5021 @code{systemStartDelimiter}.
5022
5023 @node Aligning to cadenzas
5024 @subsection Aligning to cadenzas
5025
5026
5027 In an orchestral context, cadenzas present a special problem:
5028 when constructing a score that includes a cadenza, all other
5029 instruments should skip just as many notes as the length of the
5030 cadenza, otherwise they will start too soon or too late.
5031
5032 A solution to this problem are the functions @code{mmrest-of-length}
5033 and @code{skip-of-length}.  These Scheme functions take a piece of music
5034 as argument, and generate a @code{\skip} or multi-rest, exactly as
5035 long as the piece.  The use of @code{mmrest-of-length} is demonstrated
5036 in the following example.
5037
5038 @lilypond[verbatim,raggedright,quote]
5039 cadenza = \relative c' {
5040   c4 d8 << { e f g } \\ { d4. } >>
5041   g4 f2 g4 g
5042 }
5043
5044 \new GrandStaff <<
5045   \new Staff { \cadenza c'4 }
5046   \new Staff {
5047     #(ly:export (mmrest-of-length cadenza))
5048     c'4
5049   }
5050 >>
5051 @end lilypond
5052
5053
5054
5055
5056
5057 @node Rehearsal marks
5058 @subsection Rehearsal marks
5059 @cindex Rehearsal marks
5060 @cindex mark
5061 @cindex @code{\mark}
5062
5063 To print a rehearsal mark, use the @code{\mark} command
5064
5065 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
5066 c1 \mark \default
5067 c1 \mark \default
5068 c1 \mark #8
5069 c1 \mark \default
5070 c1 \mark \default
5071 @end lilypond
5072
5073 @noindent
5074 (The letter@tie{}`I' is skipped in accordance with engraving traditions.)
5075 @c umm, is the manual the right place for feature requests?  :)  -gp
5076 @c FIXME - should make that tunable.
5077
5078 The mark is incremented automatically if you use @code{\mark
5079 \default}, but you can also use an integer argument to set the mark
5080 manually.  The value to use is stored in the property
5081 @code{rehearsalMark}.
5082
5083 The style is defined by the property @code{markFormatter}.  It is a
5084 function taking the current mark (an integer) and the current context
5085 as argument.  It should return a markup object.  In the following
5086 example, @code{markFormatter} is set to a canned procedure.  After a
5087 few measures, it is set to function that produces a boxed number.
5088
5089 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
5090 \set Score.markFormatter = #format-mark-numbers
5091 c1 \mark \default
5092 c1 \mark \default
5093 \set Score.markFormatter = #format-mark-box-numbers
5094 c1 \mark \default
5095 c1 \mark \default
5096 c1
5097 @end lilypond
5098
5099 The file @file{scm/@/translation@/-functions@/.scm} contains the definitions
5100 of @code{format-mark-numbers} (the default format), @code{format-mark-box-numbers},
5101 @code{format-mark-letters} and @code{format-mark-box-letters}.
5102 These can be used as inspiration for other formatting functions.
5103
5104
5105 @cindex coda on bar line
5106 @cindex segno on bar line
5107 @cindex fermata on bar line
5108 @cindex bar lines, symbols on
5109
5110 The @code{\mark} command can also be used to put signs like coda,
5111 segno, and fermata on a bar line.  Use @code{\markup} to
5112 access the appropriate symbol
5113
5114 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
5115 c1 \mark \markup { \musicglyph #"scripts-ufermata" }
5116 c1
5117 @end lilypond
5118
5119 In the case of a line break, marks must also be printed at the end of
5120 the line, and not at the beginning.  Use the following to force that
5121 behavior
5122 @example
5123 \override Score.RehearsalMark
5124   #'break-visibility = #begin-of-line-invisible
5125 @end example
5126
5127 @cindex fermatas
5128 @cindex coda
5129 @cindex segno
5130 @cindex bar lines, putting symbols on
5131
5132 @seealso
5133
5134 Program reference: @internalsref{MarkEvent}, @internalsref{RehearsalMark}.
5135
5136 Init files: @file{scm/@/translation@/-functions@/.scm} contains the
5137 definition of @code{format-mark-numbers} and
5138 @code{format-mark-letters}.  They can be used as inspiration for other
5139 formatting functions.
5140
5141 Examples: @inputfileref{input/@/regression,rehearsal@/-mark@/-letter@/.ly},
5142
5143 @inputfileref{input/@/regression,rehearsal@/-mark@/-number@/.ly}.
5144
5145
5146 @node Bar numbers
5147 @subsection Bar numbers
5148
5149
5150 @cindex Bar numbers
5151 @cindex measure numbers
5152 @cindex @code{currentBarNumber}
5153
5154 Bar numbers are printed by default at the start of the line.  The
5155 number itself is stored in the @code{currentBarNumber} property, which
5156 is normally updated automatically for every measure.
5157
5158 Bar numbers can be typeset at regular intervals instead of at the
5159 beginning of each line.  This is illustrated in the following example,
5160 whose source is available as
5161 @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}
5162
5163 @lilypondfile[raggedright,quote]{bar-number-regular-interval.ly}
5164
5165 Bar numbers can be typeset manually by tweaking the
5166 @code{markFormatter} property
5167
5168 @lilypond[verbatim,raggedright,quote]
5169 \relative c' {
5170   \set Score.markFormatter
5171     = #(lambda (mark context)
5172       (make-bold-markup
5173         (make-box-markup
5174           (number->string (ly:context-property context
5175                                                'currentBarNumber)))))
5176
5177   c1 \bar "||" \mark \default c1 c1 \mark \default c1 \bar "|."
5178 }
5179 @end lilypond
5180
5181 Bar numbers can be manually changed by setting the
5182 @code{Staff.currentBarNumber} property
5183
5184 @lilypond[verbatim,raggedright,quote]
5185 \relative c' {
5186   \repeat unfold 4 {c4 c c c} \break
5187   \set Score.currentBarNumber = #50
5188   \repeat unfold 4 {c4 c c c}
5189 }
5190 @end lilypond
5191
5192 @seealso
5193
5194 Program reference: @internalsref{BarNumber}.
5195
5196 Examples:
5197 @inputfileref{input/@/test,bar@/-number@/-every@/-five@/-reset@/.ly},
5198 and @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}.
5199
5200 @refbugs
5201
5202 Bar numbers can collide with the @internalsref{StaffGroup} bracket, if
5203 there is one at the top.  To solve this, the
5204 @code{padding} property of @internalsref{BarNumber} can be
5205 used to position the number correctly.
5206
5207 @node Instrument names
5208 @subsection Instrument names
5209
5210 In an orchestral score, instrument names are printed at the left side
5211 of the staves.
5212
5213 This can be achieved by setting @internalsref{Staff}.@code{instrument}
5214 and @internalsref{Staff}.@code{instr}.  This will print a string before
5215 the start of the staff.  For the first staff, @code{instrument} is
5216 used, for the following ones, @code{instr} is used.
5217
5218 @lilypond[quote,verbatim,raggedright,relative=1,fragment]
5219 \set Staff.instrument = "Ploink "
5220 \set Staff.instr = "Plk "
5221 c1
5222 \break
5223 c''
5224 @end lilypond
5225
5226 You can also use markup texts to construct more complicated instrument
5227 names, for example
5228
5229 @lilypond[quote,fragment,verbatim,raggedright]
5230 \set Staff.instrument = \markup {
5231   \column { "Clarinetti"
5232             \line { "in B" \smaller \flat } } }
5233 c''1
5234 @end lilypond
5235
5236 For longer instrument names, it may be useful to increase the
5237 @code{indent} setting in the @code{\layout} block.
5238
5239 @seealso
5240
5241 Program reference: @internalsref{InstrumentName}.
5242
5243 @refbugs
5244
5245 When you put a name on a grand staff or piano staff, the width of the
5246 brace is not taken into account.  You must add extra spaces to the end of
5247 the name to avoid a collision.
5248
5249 @node Transpose
5250 @subsection Transpose
5251 @cindex Transpose
5252 @cindex transposition of pitches
5253 @cindex @code{\transpose}
5254
5255 A music expression can be transposed with @code{\transpose}.  The
5256 syntax is
5257 @example
5258 \transpose @var{from} @var{to} @var{musicexpr}
5259 @end example
5260
5261 This means that @var{musicexpr} is transposed by the interval between
5262 the pitches @var{from} and @var{to}: any note with pitch @code{from}
5263 is changed to @code{to}.
5264
5265
5266 For example, consider a piece written in the key of D-major.  If
5267 this piece is a little too low for its performer, it can be
5268 transposed up to E-major with
5269 @example
5270 \transpose d e @dots{}
5271 @end example
5272
5273 Consider a part written for violin (a C instrument).  If
5274 this part is to be played on the A clarinet, the following
5275 transposition will produce the appropriate part
5276
5277 @example
5278 \transpose a c @dots{}
5279 @end example
5280
5281 @code{\transpose} distinguishes between enharmonic pitches: both
5282 @code{\transpose c cis} or @code{\transpose c des} will transpose up
5283 half a tone.  The first version will print sharps and the second
5284 version will print flats
5285
5286 @lilypond[quote,raggedright,verbatim]
5287 mus = { \key d \major cis d fis g }
5288 \context Staff {
5289   \clef "F" \mus
5290   \clef "G"
5291   \transpose c g' \mus
5292   \transpose c f' \mus
5293 }
5294 @end lilypond
5295
5296
5297 @seealso
5298
5299 Program reference: @internalsref{TransposedMusic}, and
5300 @internalsref{UntransposableMusic}.
5301
5302 @refbugs
5303
5304 If you want to use both @code{\transpose} and @code{\relative},
5305 you must put @code{\transpose} outside of @code{\relative}, since
5306 @code{\relative} will have no effect music that appears inside a
5307 @code{\transpose}.
5308
5309 @node Instrument transpositions
5310 @subsection Instrument transpositions
5311
5312 The key of a transposing instrument can also be specified.  This
5313 applies to many wind instruments, for example, clarinets (B-flat, A, and
5314 E-flat), horn (F) and trumpet (B-flat, C, D, and E-flat).
5315
5316 The transposition is entered after the keyword @code{\transposition}
5317
5318 @example
5319 \transposition bes   %% B-flat clarinet
5320 @end example
5321
5322 @noindent
5323 This command sets the property @code{instrumentTransposition}.  The value of
5324 this property is used for MIDI output and quotations.  It does not
5325 affect how notes are printed in the current staff.
5326
5327 The pitch to use for @code{\transposition} should correspond to the
5328 transposition of the notes.  For example, when entering a score in
5329 concert pitch, typically all voices are entered in C, so
5330 they should be entered as
5331
5332 @example
5333 clarinet = @{
5334   \transposition c'
5335   ...
5336 @}
5337 saxophone = @{
5338   \transposition c'
5339   ...
5340 @}
5341 @end example
5342
5343 The command @code{\transposition} should be used when the music is
5344 entered from a (transposed) orchestral part.  For example, in
5345 classical horn parts, the tuning of the instrument is often changed
5346 during a piece.  When copying the notes from the part, use
5347 @code{\transposition}, e.g.,
5348
5349 @example
5350 \transposition d'
5351 c'4^"in D"
5352 ...
5353 \transposition g'
5354 c'4^"in G"
5355 ...
5356 @end example
5357
5358
5359
5360 @cindex transposition, MIDI
5361 @cindex transposition, instrument
5362
5363
5364 @node Multi measure rests
5365 @subsection Multi measure rests
5366 @cindex multi measure rests
5367 @cindex Rests, multi measure
5368
5369 @cindex @code{R}
5370
5371 Multi-measure rests are entered using `@code{R}'.  It is specifically
5372 meant for full bar rests and for entering parts: the rest can expand
5373 to fill a score with rests, or it can be printed as a single
5374 multi-measure rest.  This expansion is controlled by the property
5375 @code{Score.skipBars}.  If this is set to true, empty measures will not
5376 be expanded, and the appropriate number is added automatically
5377
5378 @lilypond[quote,raggedright,fragment,verbatim]
5379 \time 4/4 r1 | R1 | R1*2
5380 \set Score.skipBars = ##t R1*17 R1*4
5381 @end lilypond
5382
5383 The @code{1} in @code{R1} is similar to the duration notation used for
5384 notes.  Hence, for time signatures other than 4/4, you must enter other
5385 durations.  This can be done with augmentation dots or fractions
5386
5387 @lilypond[quote,raggedright,fragment,verbatim]
5388 \set Score.skipBars = ##t
5389 \time 3/4
5390 R2. | R2.*2
5391 \time 13/8
5392 R1*13/8
5393 R1*13/8*12 |
5394 \time 10/8 R4*5*4 |
5395 @end lilypond
5396
5397 An @code{R} spanning a single measure is printed as either a whole rest
5398 or a breve, centered in the measure regardless of the time signature.
5399
5400 If there are only a few measures of rest, LilyPond prints ``church rests''
5401 (a series of rectangles) in the staff.  To replace that with a simple
5402 rest, use @code{MultiMeasureRest.expand-limit}.
5403
5404 @lilypond[quote,raggedright,fragment,verbatim]
5405 \set Score.skipBars = ##t
5406 R1*2 | R1*5 | R1*9
5407 \override MultiMeasureRest #'expand-limit = 1
5408 R1*2 | R1*5 | R1*9
5409 @end lilypond
5410
5411
5412 @cindex text on multi-measure rest
5413 @cindex script on multi-measure rest
5414 @cindex fermata on multi-measure rest
5415
5416 Texts can be added to multi-measure rests by using the
5417 @var{note}-@code{markup} syntax (see @ref{Text markup}).
5418 A variable (@code{\fermataMarkup}) is provided for
5419 adding fermatas
5420
5421 @lilypond[quote,raggedright,verbatim,fragment]
5422 \set Score.skipBars = ##t
5423 \time 3/4
5424 R2.*10^\markup { \italic "ad lib." }
5425 R2.^\fermataMarkup
5426 @end lilypond
5427
5428 If you want to have text on the left end of a multi-measure rest,
5429 attach the text to a zero-length skip note, i.e.,
5430
5431 @example
5432 s1*0^"Allegro"
5433 R1*4
5434 @end example
5435
5436
5437 @cindex whole rests for a full measure
5438
5439 @seealso
5440
5441 Program reference: @internalsref{MultiMeasureRestEvent},
5442 @internalsref{MultiMeasureTextEvent},
5443 @internalsref{MultiMeasureRestMusicGroup}, and
5444 @internalsref{MultiMeasureRest}.
5445
5446 The layout object @internalsref{MultiMeasureRestNumber} is for the
5447 default number, and @internalsref{MultiMeasureRestText} for user
5448 specified texts.
5449
5450 @refbugs
5451
5452 It is not possible to use fingerings (e.g., @code{R1-4}) to put numbers
5453 over multi-measure rests.  And the pitch of multi-measure rests (or
5454 staff-centered rests) can not be influenced.
5455
5456 @cindex condensing rests
5457
5458 There is no way to automatically condense multiple rests into a single
5459 multi-measure rest.  Multi-measure rests do not take part in rest
5460 collisions.
5461
5462 Be careful when entering multi-measure rests followed by whole
5463 notes.  The following will enter two notes lasting four measures each
5464 @example
5465 R1*4 cis cis
5466 @end example
5467 When @code{skipBars} is set, the result will look OK, but the bar
5468 numbering will be off.
5469
5470 @node Automatic part combining
5471 @subsection Automatic part combining
5472 @cindex automatic part combining
5473 @cindex part combiner
5474
5475
5476 Automatic part combining is used to merge two parts of music onto a
5477 staff.  It is aimed at typesetting orchestral scores.  When the two
5478 parts are identical for a period of time, only one is shown.  In
5479 places where the two parts differ, they are typeset as separate
5480 voices, and stem directions are set automatically.  Also, solo and
5481 @emph{a due} parts are identified and can be marked.
5482
5483 The syntax for part combining is
5484
5485 @example
5486 \partcombine @var{musicexpr1} @var{musicexpr2}
5487 @end example
5488
5489
5490
5491 The following example demonstrates the basic functionality of the part
5492 combiner: putting parts on one staff, and setting stem directions and
5493 polyphony
5494
5495 @lilypond[quote,verbatim,raggedright,fragment]
5496 \new Staff \partcombine
5497   \relative g' { g g a( b) c c r r }
5498   \relative g' { g g r4 r e e g g }
5499 @end lilypond
5500
5501 The first @code{g} appears only once, although it was
5502 specified twice (once in each part).  Stem, slur, and tie directions are
5503 set automatically, depending whether there is a solo or unisono.  The
5504 first part (with context called @code{one}) always gets up stems, and
5505 `solo', while the second (called @code{two}) always gets down stems and
5506 `Solo II'.
5507
5508 If you just want the merging parts, and not the textual markings, you
5509 may set the property @code{printPartCombineTexts} to false
5510
5511 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
5512 \new Staff <<
5513   \set Staff.printPartCombineTexts = ##f
5514   \partcombine
5515     \relative g' { g a( b) r }
5516     \relative g' { g r4 r f }
5517 >>
5518 @end lilypond
5519
5520
5521 Both arguments to @code{\partcombine} will be interpreted as
5522 @internalsref{Voice} contexts.  If using relative octaves,
5523 @code{\relative} should be specified for both music expressions, i.e.,
5524
5525 @example
5526 \partcombine
5527   \relative @dots{} @var{musicexpr1}
5528   \relative @dots{} @var{musicexpr2}
5529 @end example
5530
5531 @noindent
5532 A @code{\relative} section that is outside of @code{\partcombine} has
5533 no effect on the pitches of @var{musicexpr1} and @var{musicexpr2}.
5534
5535 @seealso
5536
5537 Program reference: @internalsref{PartCombineMusic},
5538 @internalsref{SoloOneEvent}, and
5539 @internalsref{SoloTwoEvent}, and
5540 @internalsref{UnisonoEvent}.
5541
5542 @refbugs
5543
5544 When @code{printPartCombineTexts} is set, when the two voices play the
5545 same notes on and off, the part combiner may typeset @code{a2} more
5546 than once in a measure.
5547
5548 @code{\partcombine} cannot be inside @code{\times}.
5549
5550 @code{\partcombine} cannot be inside @code{\relative}.
5551
5552 Internally, the @code{\partcombine} interprets both arguments as
5553 @code{Voice}s named @code{one} and @code{two}, and then decides when
5554 the parts can be combined.  Consequently, if the arguments switch to
5555 differently named @internalsref{Voice} contexts, the events in those
5556 will be ignored.
5557
5558 @node Hiding staves
5559 @subsection Hiding staves
5560
5561 @cindex Frenched scores
5562 @cindex Hiding staves
5563
5564 In orchestral scores, staff lines that only have rests are usually
5565 removed.  This saves some space.  This style is called `French Score'.
5566 For @internalsref{Lyrics},
5567 @internalsref{ChordNames} and @internalsref{FiguredBass}, this is
5568 switched on by default.  When the lines of these contexts turn out
5569 empty after the line-breaking process, they are removed.
5570
5571 For normal staves, a specialized @internalsref{Staff} context is
5572 available, which does the same: staves containing nothing (or only
5573 multi-measure rests) are removed.  The context definition is stored in
5574 @code{\RemoveEmptyStaffContext} variable.  Observe how the second staff
5575 in this example disappears in the second line
5576
5577 @lilypond[quote,raggedright,verbatim]
5578 \layout {
5579   \context { \RemoveEmptyStaffContext }
5580 }
5581
5582 {
5583   \relative c' <<
5584     \new Staff { e4 f g a \break c1 }
5585     \new Staff { c4 d e f \break R1 }
5586   >>
5587 }
5588 @end lilypond
5589
5590 The first system shows all staves in full.  If empty staves should be
5591 removed from the first system too, set @code{remove-first} to false in
5592 @internalsref{RemoveEmptyVerticalGroup}.
5593
5594 Another application is making ossia sections, i.e., alternative
5595 melodies on a separate piece of staff, with help of a Frenched
5596 staff.  See @inputfileref{input/@/test,ossia@/.ly} for an example.
5597
5598
5599 @node Different editions from one source
5600 @subsection Different editions from one source
5601
5602 @cindex tag
5603 The @code{\tag} command marks music expressions with a name.  These
5604 tagged expressions can be filtered out later.  With this mechanism it
5605 is possible to make different versions of the same music source.
5606
5607 In the following example, we see two versions of a piece of music, one
5608 for the full score, and one with cue notes for the instrumental part
5609
5610 @example
5611 c1
5612 <<
5613   \tag #'part <<
5614     R1 \\
5615     @{
5616       \set fontSize = #-1
5617       c4_"cue" f2 g4 @}
5618   >>
5619   \tag #'score R1
5620 >>
5621 c1
5622 @end example
5623
5624 The same can be applied to articulations, texts, etc.: they are
5625 made by prepending
5626 @example
5627 -\tag #@var{your-tag}
5628 @end example
5629 to an articulation, for example,
5630 @example
5631 c1-\tag #'part ^4
5632 @end example
5633
5634 This defines a note with a conditional fingering indication.
5635
5636 @cindex keepWithTag
5637 @cindex removeWithTag
5638 By applying the @code{\keepWithTag} and @code{\removeWithTag}
5639 commands, tagged expressions can be filtered.  For example,
5640 @example
5641 <<
5642   @var{the music}
5643   \keepWithTag #'score @var{the music}
5644   \keepWithTag #'part @var{the music}
5645 >>
5646 @end example
5647 would yield
5648
5649 @lilypondfile[raggedright,quote]{tag-filter.ly}
5650
5651
5652 The argument of the @code{\tag} command should be a symbol, or a list
5653 of symbols, for example,
5654 @example
5655 \tag #'(original-part transposed-part) @dots{}
5656 @end example
5657
5658
5659
5660 @seealso
5661
5662 Examples: @inputfileref{input/@/regression,tag@/-filter@/.ly}.
5663
5664 @refbugs
5665
5666 Multiple rests are not merged if you create the score with both tagged
5667 sections.
5668  
5669
5670 @node Quoting other voices
5671 @subsection Quoting other voices
5672
5673 With quotations, fragments of other parts can be inserted into a part
5674 directly.  Before a part can be quoted, it must be marked especially as
5675 quotable.  This is done with the @code{\addquote} command.
5676
5677 @example
5678 \addquote @var{name} @var{music}
5679 @end example
5680
5681
5682 @noindent
5683 Here, @var{name} is an identifying string.  The @var{music} is any kind
5684 of music.  Here is an example of @code{\addquote}
5685
5686 @example
5687 \addquote clarinet \relative c' @{
5688   f4 fis g gis
5689 @}
5690 @end example
5691
5692 This command must be entered at toplevel, i.e., outside any music
5693 blocks.
5694
5695 After calling @code{\addquote}, the quotation may then be done with
5696 @code{\quoteDuring} or @code{\cueDuring},
5697
5698 @example
5699 \quoteDuring #@var{name} @var{music}
5700 @end example
5701
5702 During a part, a piece of music can be quoted with the @code{\quoteDuring}
5703 command.
5704
5705 @example
5706 \quoteDuring #"clarinet" @{ s2. @}
5707 @end example
5708
5709 This would cite three quarter notes (the duration of @code{s2.})  of
5710 the previously added @code{clarinet} voice.
5711
5712
5713 More precisely, it takes the current time-step of the part being
5714 printed, and extracts the notes at the corresponding point of the
5715 @code{\addquote}d voice.  Therefore, the argument to @code{\addquote}
5716 should be the entire part of the voice to be quoted, including any
5717 rests at the beginning.
5718
5719 Quotations take into account the transposition of both source and target
5720 instruments, if they are specified using the @code{\transposition} command.
5721
5722 @lilypond[quote,raggedright,verbatim]
5723 \addquote clarinet \relative c' {
5724   \transposition bes
5725   f4 fis g gis
5726 }
5727
5728 {
5729   e'8 f'8 \quoteDuring #"clarinet" { s2 }
5730 }
5731 @end lilypond
5732
5733 The type of events that are present in cue notes can be trimmed with
5734 the @code{quotedEventTypes} property.  The default value is
5735 @code{(note-event rest-event)}, which means that only notes and
5736 rests of the cued voice end up in the @code{\quoteDuring}.
5737 Setting
5738
5739 @example
5740 \set Staff.quotedEventTypes =
5741        #'(note-event articulation-event dynamic-event)
5742 @end example
5743
5744 @noindent
5745 will quote notes (but no rests), together with scripts and dynamics.
5746
5747 @refbugs
5748
5749 Only the contents of the first @internalsref{Voice} occurring in an
5750 @code{\addquote} command will be considered for quotation, so
5751 @var{music} can not contain @code{\new} and @code{\context Voice}
5752 statements that would switch to a different Voice.
5753
5754 Quoting grace notes is broken and can even cause LilyPond to crash.
5755
5756 @seealso
5757
5758 In this manual: @ref{Instrument transpositions}.
5759
5760 Examples: @inputfileref{input/@/regression,quote@/.ly}
5761 @inputfileref{input/@/regression,quote@/-transposition@/.ly}
5762
5763 Program reference: @internalsref{QuoteMusic}.
5764
5765 @node Formatting cue notes
5766 @subsection Formatting cue notes
5767
5768 The previous section deals with inserting notes from another voice.
5769 There is a more advanced music function called @code{\cueDuring},
5770 which makes formatting cue notes easier.
5771
5772 The syntax is
5773
5774 @example
5775   \cueDuring #@var{name} #@var{updown} @var{music}
5776 @end example
5777
5778 This will insert notes from the part @var{name} into a
5779 @internalsref{Voice} called @code{cue}. This happens simultaneously
5780 with @var{music}, which usually is a rest.  When the cue notes start,
5781 the staff in effect becomes polyphonic for a moment. The argument
5782 @var{updown} determines whether the cue notes should be notated as a
5783 first or second voice.
5784
5785
5786 @lilypond[verbatim,raggedright]
5787 smaller = {
5788   \set fontSize = #-2
5789   \override Stem #'length = #5.5
5790   \override Beam #'thickness = #0.384
5791   \override Beam #'space-function =
5792     #(lambda (beam mult) (* 0.8 (Beam::space_function beam mult)))
5793 }
5794
5795 \addquote clarinet \relative {
5796   R1*20
5797   r2 r8 c f f
5798
5799
5800 \new Staff \relative  <<
5801
5802   % setup a context for  cue  notes.
5803   \context Voice = cue { \smaller \skip 1*21 }
5804   
5805   \set Score.skipBars = ##t
5806   
5807   \new Voice {
5808     R1*20
5809     \cueDuring #"clarinet" #1 {
5810       R1
5811     }
5812     g4 g2. 
5813   }
5814 >>
5815 @end lilypond 
5816
5817
5818 Here are a couple of hints for successful cue notes
5819
5820 @itemize @bullet
5821 @item
5822 Cue notes have smaller font sizes.
5823 @item
5824  the cued part is marked with the instrument playing the cue.
5825 @item
5826  when the original part takes over again, this should be marked with
5827  the name of the original instrument.
5828
5829  @c really?  Are you sure about that last point?  I'll check after 3.0 -gp
5830
5831 @c Yes, this is good practice. Otherwise, the start of the original
5832 @c part can only be seen from the font size. This is not good enough
5833 @c for sight-reading. It is possilbe to use other
5834 @c markers (eg. a big close-bracket over the staff) to indicate the cue notes are
5835 @c finished.
5836 @c -hwn
5837
5838
5839  any other changes introduced by the cued part should also be
5840 undone. For example, if the cued instrument plays in a different clef,
5841 the original clef should be stated once again.
5842
5843 @end itemize
5844
5845
5846
5847
5848
5849 @node Ancient notation
5850 @section Ancient notation
5851
5852 @cindex Vaticana, Editio
5853 @cindex Medicaea, Editio
5854 @cindex hufnagel
5855 @cindex Petrucci
5856 @cindex mensural
5857
5858 Support for ancient notation includes features for mensural notation
5859 and Gregorian Chant notation.  There is also limited support for
5860 figured bass notation.
5861
5862 Many graphical objects provide a @code{style} property, see
5863 @itemize @bullet
5864 @item
5865 @ref{Ancient note heads},
5866 @item
5867 @ref{Ancient accidentals},
5868 @item
5869 @ref{Ancient rests},
5870 @item
5871 @ref{Ancient clefs},
5872 @item
5873 @ref{Ancient flags},
5874 @item
5875 @ref{Ancient time signatures}.
5876 @end itemize
5877
5878 By manipulating such a grob property, the typographical appearance of
5879 the affected graphical objects can be accommodated for a specific
5880 notation flavor without the need for introducing any new notational
5881 concept.
5882
5883 In addition to the standard articulation signs described in section
5884 @ref{Articulations}, specific articulation signs for ancient notation
5885 are provided.
5886
5887 @itemize @bullet
5888 @item
5889 @ref{Ancient articulations}
5890 @end itemize
5891
5892 Other aspects of ancient notation can not that easily be expressed
5893 in terms of just changing a style property of a graphical object or
5894 adding articulation signs.  Some notational concepts are introduced
5895 specifically for ancient notation,
5896
5897 @itemize @bullet
5898 @item
5899 @ref{Custodes},
5900 @item
5901 @ref{Divisiones},
5902 @item
5903 @ref{Ligatures}.
5904 @end itemize
5905
5906 If this all is too much of documentation for you, and you just want to
5907 dive into typesetting without worrying too much about the details on
5908 how to customize a context, you may have a look at the predefined
5909 contexts.  Use them to set up predefined style-specific voice and
5910 staff contexts, and directly go ahead with the note entry,
5911
5912 @itemize @bullet
5913 @item
5914 @ref{Gregorian Chant contexts},
5915 @item
5916 @ref{Mensural contexts}.
5917 @end itemize
5918
5919 There is limited support for figured bass notation which came
5920 up during the baroque period.
5921
5922 @itemize @bullet
5923 @item
5924 @ref{Figured bass}
5925 @end itemize
5926
5927 Here are all suptopics at a glance:
5928
5929 @menu
5930 * Ancient note heads::          
5931 * Ancient accidentals::         
5932 * Ancient rests::               
5933 * Ancient clefs::               
5934 * Ancient flags::               
5935 * Ancient time signatures::     
5936 * Ancient articulations::       
5937 * Custodes::                    
5938 * Divisiones::                  
5939 * Ligatures::                   
5940 * Gregorian Chant contexts::    
5941 * Mensural contexts::           
5942 * Figured bass::                
5943 @end menu
5944
5945
5946 @node Ancient note heads
5947 @subsection Ancient note heads
5948
5949 @cindex note heads
5950
5951
5952 For ancient notation, a note head style other than the @code{default}
5953 style may be chosen.  This is accomplished by setting the @code{style}
5954 property of the @internalsref{NoteHead} object to @code{baroque},
5955 @code{neomensural} or @code{mensural}.  The @code{baroque} style
5956 differs from the @code{default} style only in using a square shape
5957 for @code{\breve} note heads.  The @code{neomensural} style differs from
5958 the @code{baroque} style in that it uses rhomboidal heads for whole notes
5959 and all smaller durations.  Stems are centered on the note heads.
5960 This style is particularly useful when transcribing mensural music,
5961 e.g., for the incipit.  The @code{mensural} style finally produces note
5962 heads that mimic the look of note heads in historic printings of the
5963 16th century.
5964
5965 The following example demonstrates the @code{neomensural} style
5966
5967 @lilypond[quote,fragment,raggedright,verbatim]
5968 \set Score.skipBars = ##t
5969 \override NoteHead #'style = #'neomensural
5970 a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
5971 @end lilypond
5972
5973 When typesetting a piece in Gregorian Chant notation, the
5974 @internalsref{Gregorian_ligature_engraver} will automatically select
5975 the proper note heads, so there is no need to explicitly set the
5976 note head style.  Still, the note head style can be set, e.g., to
5977 @code{vaticana_punctum} to produce punctum neumes.  Similarly, a
5978 @internalsref{Mensural_ligature_engraver} is used to automatically
5979 assemble mensural ligatures.  See @ref{Ligatures} for how ligature
5980 engravers work.
5981
5982 @seealso
5983
5984 Examples: @inputfileref{input/@/regression,note@/-head@/-style@/.ly} gives an
5985 overview over all available note head styles.
5986
5987
5988 @node Ancient accidentals
5989 @subsection Ancient accidentals
5990
5991 @cindex accidentals
5992
5993
5994 Use the @code{style} property of grob @internalsref{Accidental} to
5995 select ancient accidentals.   Supported styles are
5996 @code{mensural}, @code{vaticana}, @code{hufnagel}, and @code{medicaea}.
5997
5998 @lilypond[quote,raggedright,staffsize=26]
5999 \score {
6000 {
6001   \fatText
6002   s^\markup {
6003     \column {
6004       "vaticana"
6005       \line { " " \musicglyph #"accidentals-vaticana-1"
6006         " " \musicglyph #"accidentals-vaticana0" }
6007     }
6008     \column {
6009       "medicaea"
6010       \line { " " \musicglyph #"accidentals-medicaea-1" }
6011     }
6012     \column {
6013       "hufnagel"
6014       \line { " " \musicglyph #"accidentals-hufnagel-1" }
6015     }
6016     \column {
6017       "mensural"
6018       \line { " " \musicglyph #"accidentals-mensural-1"
6019         " " \musicglyph #"accidentals-mensural1" }
6020     }
6021   }
6022 }
6023 \layout {
6024   interscoreline = 1
6025   \context { \Score \remove "Bar_number_engraver" }
6026   \context { \Staff
6027       \remove "Clef_engraver"
6028       \remove "Key_engraver"
6029       \remove "Time_signature_engraver"
6030       \remove "Staff_symbol_engraver"
6031       minimumVerticalExtent = ##f
6032     }
6033   }
6034 }
6035 @end lilypond
6036
6037 As shown, not all accidentals are supported by each style.  When
6038 trying to access an unsupported accidental, LilyPond will switch to a
6039 different style, as demonstrated in
6040 @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
6041
6042 Similarly to local accidentals, the style of the key signature can be
6043 controlled by the @code{style} property of the
6044 @internalsref{KeySignature} grob.
6045
6046 @seealso
6047
6048 In this manual: @ref{Pitches}, @ref{Chromatic alterations} and
6049 @ref{Accidentals} give a general introduction of the use of
6050 accidentals.  @ref{Key signature} gives a general introduction of
6051 the use of key signatures.
6052
6053 Program reference: @internalsref{KeySignature}.
6054
6055 Examples: @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
6056
6057 @node Ancient rests
6058 @subsection Ancient rests
6059
6060 @cindex rests
6061
6062
6063 Use the @code{style} property of grob @internalsref{Rest} to select
6064 ancient accidentals.   Supported styles are @code{classical},
6065 @code{neomensural}, and @code{mensural}.  @code{classical} differs
6066 from the @code{default} style only in that the quarter rest looks like
6067 a horizontally mirrored 8th rest.  The @code{neomensural} style suits
6068 well for, e.g., the incipit of a transcribed mensural piece of music.
6069 The @code{mensural} style finally mimics the appearance of rests as
6070 in historic prints of the 16th century.
6071
6072 The following example demonstrates the @code{neomensural} style
6073
6074 @lilypond[quote,fragment,raggedright,verbatim]
6075 \set Score.skipBars = ##t
6076 \override Rest #'style = #'neomensural
6077 r\longa r\breve r1 r2 r4 r8 r16
6078 @end lilypond
6079
6080 There are no 32th and 64th rests specifically for the mensural or
6081 neo-mensural style.  Instead, the rests from the default style will be
6082 taken.  See @inputfileref{input/@/test,rests@/.ly} for a chart of all
6083 rests.
6084
6085 There are no rests in Gregorian Chant notation; instead, it uses
6086 @ref{Divisiones}.
6087
6088 @seealso
6089
6090 In this manual: @ref{Rests} gives a general introduction into the use of rests.
6091
6092
6093 @node Ancient clefs
6094 @subsection Ancient clefs
6095
6096 @cindex clefs
6097
6098
6099 LilyPond supports a variety of clefs, many of them ancient.
6100
6101 The following table shows all ancient clefs that are supported via the
6102 @code{\clef} command.  Some of the clefs use the same glyph, but
6103 differ only with respect to the line they are printed on.  In such
6104 cases, a trailing number in the name is used to enumerate these clefs.
6105 Still, you can manually force a clef glyph to be typeset on an
6106 arbitrary line, as described in @ref{Clef}.  The note printed to the
6107 right side of each clef in the example column denotes the @code{c'}
6108 with respect to that clef.
6109
6110 @multitable @columnfractions .4 .4 .2
6111 @item
6112 @b{Description}
6113 @tab
6114 @b{Supported Clefs}
6115 @tab
6116 @b{Example}
6117
6118 @item
6119 modern style mensural C clef
6120 @tab
6121 @code{neomensural-c1}, @code{neomensural-c2},@*
6122 @code{neomensural-c3}, @code{neomensural-c4}
6123 @tab
6124 @lilypond[fragment,relative=1,notime]
6125   \clef "neomensural-c2" c
6126 @end lilypond
6127
6128 @item
6129 petrucci style mensural C clefs, for use on different staff lines
6130 (the examples show the 2nd staff line C clef)
6131 @tab
6132 @code{petrucci-c1}, @code{petrucci-c2},@*
6133 @code{petrucci-c3}, @code{petrucci-c4},@*
6134 @code{petrucci-c5}
6135 @tab
6136 @lilypond[fragment,relative=1,notime]
6137   \clef "petrucci-c2" c
6138 @end lilypond
6139
6140 @item
6141 petrucci style mensural F clef
6142 @tab
6143 @code{petrucci-f}
6144 @tab
6145 @lilypond[fragment,relative=1,notime]
6146   \clef "petrucci-f" c
6147 @end lilypond
6148
6149 @item
6150 petrucci style mensural G clef
6151 @tab
6152 @code{petrucci-g}
6153 @tab
6154 @lilypond[fragment,relative=1,notime]
6155   \clef "petrucci-g" c
6156 @end lilypond
6157
6158 @item
6159 historic style mensural C clef
6160 @tab
6161 @code{mensural-c1}, @code{mensural-c2},@*
6162 @code{mensural-c3}, @code{mensural-c4}
6163 @tab
6164 @lilypond[fragment,relative=1,notime]
6165   \clef "mensural-c2" c
6166 @end lilypond
6167
6168 @item
6169 historic style mensural F clef
6170 @tab
6171 @code{mensural-f}
6172 @tab
6173 @lilypond[fragment,relative=1,notime]
6174   \clef "mensural-f" c
6175 @end lilypond
6176
6177 @item
6178 historic style mensural G clef
6179 @tab
6180 @code{mensural-g}
6181 @tab
6182 @lilypond[fragment,relative=1,notime]
6183   \clef "mensural-g" c
6184 @end lilypond
6185
6186 @item
6187 Editio Vaticana style do clef
6188 @tab
6189 @code{vaticana-do1}, @code{vaticana-do2},@*
6190 @code{vaticana-do3}
6191 @tab
6192 @lilypond[fragment,relative=1,notime]
6193   \override Staff.StaffSymbol #'line-count = #4
6194   \clef "vaticana-do2" c
6195 @end lilypond
6196
6197 @item
6198 Editio Vaticana style fa clef
6199 @tab
6200 @code{vaticana-fa1}, @code{vaticana-fa2}
6201 @tab
6202 @lilypond[fragment,relative=1,notime]
6203   \override Staff.StaffSymbol #'line-count = #4
6204   \clef "vaticana-fa2" c
6205 @end lilypond
6206
6207 @item
6208 Editio Medicaea style do clef
6209 @tab
6210 @code{medicaea-do1}, @code{medicaea-do2},@*
6211 @code{medicaea-do3}
6212 @tab
6213 @lilypond[fragment,relative=1,notime]
6214   \override Staff.StaffSymbol #'line-count = #4
6215   \clef "medicaea-do2" c
6216 @end lilypond
6217
6218 @item
6219 Editio Medicaea style fa clef
6220 @tab
6221 @code{medicaea-fa1}, @code{medicaea-fa2}
6222 @tab
6223 @lilypond[fragment,relative=1,notime]
6224   \override Staff.StaffSymbol #'line-count = #4
6225   \clef "medicaea-fa2" c
6226 @end lilypond
6227
6228 @item
6229 historic style hufnagel do clef
6230 @tab
6231 @code{hufnagel-do1}, @code{hufnagel-do2},@*
6232 @code{hufnagel-do3}
6233 @tab
6234 @lilypond[fragment,relative=1,notime]
6235   \override Staff.StaffSymbol #'line-count = #4
6236   \clef "hufnagel-do2" c
6237 @end lilypond
6238
6239 @item
6240 historic style hufnagel fa clef
6241 @tab
6242 @code{hufnagel-fa1}, @code{hufnagel-fa2}
6243 @tab
6244 @lilypond[fragment,relative=1,notime]
6245   \override Staff.StaffSymbol #'line-count = #4
6246   \clef "hufnagel-fa2" c
6247 @end lilypond
6248
6249 @item
6250 historic style hufnagel combined do/fa clef
6251 @tab
6252 @code{hufnagel-do-fa}
6253 @tab
6254 @lilypond[fragment,relative=1,notime]
6255   \clef "hufnagel-do-fa" c
6256 @end lilypond
6257 @end multitable
6258
6259
6260
6261 @emph{Modern style} means ``as is typeset in contemporary editions of
6262 transcribed mensural music''.
6263
6264 @emph{Petrucci style} means ``inspired by printings published by the
6265 famous engraver Petrucci (1466-1539)''.
6266
6267 @emph{Historic style} means ``as was typeset or written in historic
6268 editions (other than those of Petrucci)''.
6269
6270 @emph{Editio XXX style} means ``as is/was printed in Editio XXX''.
6271
6272 Petrucci used C clefs with differently balanced left-side vertical
6273 beams, depending on which staff line it is printed.
6274
6275 @seealso
6276
6277 In this manual: see @ref{Clef}.
6278
6279 @refbugs
6280
6281 The mensural g clef is mapped to the Petrucci g clef.
6282
6283
6284
6285 @node Ancient flags
6286 @subsection Ancient flags
6287
6288 @cindex flags
6289
6290
6291 Use the @code{flag-style} property of grob @internalsref{Stem} to
6292 select ancient flags.  Besides the @code{default} flag style,
6293 only the @code{mensural} style is supported
6294
6295 @lilypond[quote,fragment,raggedright,verbatim]
6296 \override Stem #'flag-style = #'mensural
6297 \override Stem #'thickness = #1.0
6298 \override NoteHead #'style = #'mensural
6299 \autoBeamOff
6300 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
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
6302 @end lilypond
6303
6304 Note that the innermost flare of each mensural flag always is
6305 vertically aligned with a staff line.
6306
6307 There is no particular flag style for neo-mensural notation.  Hence,
6308 when typesetting the incipit of a transcribed piece of mensural
6309 music, the default flag style should be used.  There are no flags in
6310 Gregorian Chant notation.
6311
6312 @refbugs
6313
6314 The attachment of ancient flags to stems is slightly off due to a
6315 change in early 2.3.x.
6316
6317 Vertically aligning each flag with a staff line assumes that stems
6318 always end either exactly on or exactly in the middle between two
6319 staff lines.  This may not always be true when using advanced layout
6320 features of classical notation (which however are typically out of
6321 scope for mensural notation).
6322
6323 @node Ancient time signatures
6324 @subsection Ancient time signatures
6325
6326 @cindex time signatures
6327
6328
6329 There is limited support for mensural time signatures.   The
6330 glyphs are hard-wired to particular time fractions.  In other words,
6331 to get a particular mensural signature glyph with the @code{\time n/m}
6332 command, @code{n} and @code{m} have to be chosen according to the
6333 following table
6334
6335 @lilypond[quote,raggedright]
6336 \layout {
6337   indent = 0.0
6338   \context { \Staff
6339     \remove Staff_symbol_engraver
6340     \remove Clef_engraver
6341     \remove Time_signature_engraver
6342   }
6343 } {
6344   \set Score.timing = ##f
6345   \set Score.barAlways = ##t
6346   s_\markup { "$\\backslash$time 4/4" }
6347   ^\markup { "       " \musicglyph #"timesig-neomensural4/4" }
6348   s
6349   s_\markup { "$\\backslash$time 2/2" }
6350   ^\markup { "       " \musicglyph #"timesig-neomensural2/2" }
6351   s
6352   s_\markup { "$\\backslash$time 6/4" }
6353   ^\markup { "       " \musicglyph #"timesig-neomensural6/4" }
6354   s
6355   s_\markup { "$\\backslash$time 6/8" }
6356   ^\markup { "       " \musicglyph #"timesig-neomensural6/8" }
6357   \break
6358   s_\markup { "$\\backslash$time 3/2" }
6359   ^\markup { "       " \musicglyph #"timesig-neomensural3/2" }
6360   s
6361   s_\markup { "$\\backslash$time 3/4" }
6362   ^\markup { "       " \musicglyph #"timesig-neomensural3/4" }
6363   s
6364   s_\markup { "$\\backslash$time 9/4" }
6365   ^\markup { "       " \musicglyph #"timesig-neomensural9/4" }
6366   s
6367   s_\markup { "$\\backslash$time 9/8" }
6368   ^\markup { "       " \musicglyph #"timesig-neomensural9/8" }
6369   \break
6370   s_\markup { "$\\backslash$time 4/8" }
6371   ^\markup { "       " \musicglyph #"timesig-neomensural4/8" }
6372   s
6373   s_\markup { "$\\backslash$time 2/4" }
6374   ^\markup { "       " \musicglyph #"timesig-neomensural2/4" }
6375 }
6376 @end lilypond
6377
6378 Use the @code{style} property of grob @internalsref{TimeSignature} to
6379 select ancient time signatures.  Supported styles are
6380 @code{neomensural} and @code{mensural}.  The above table uses the
6381 @code{neomensural} style.  This style is appropriate for the
6382 incipit of transcriptions of mensural pieces.  The @code{mensural}
6383 style mimics the look of historical printings of the 16th century.
6384
6385 The following examples show the differences in style,
6386
6387 @lilypond[raggedright,fragment,relative=1,quote]
6388 {
6389   \fatText
6390   \time 2/2
6391   c1^\markup { \hspace #-2.0 \typewriter default }
6392
6393   \override Staff.TimeSignature #'style = #'numbered
6394   \time 2/2
6395   c1^\markup { \hspace #-2.0 \typewriter numbered }
6396
6397   \override Staff.TimeSignature #'style = #'mensural
6398   \time 2/2
6399   c1^\markup { \hspace #-2.0 \typewriter mensural }
6400
6401   \override Staff.TimeSignature #'style = #'neomensural
6402   \time 2/2
6403   c1^\markup { \hspace #-2.0 \typewriter neomensural }
6404   \override Staff.TimeSignature #'style = #'single-digit
6405   \time 2/2
6406   c1^\markup { \hspace #-2.0 \typewriter single-digit }
6407 }
6408 @end lilypond
6409
6410 @seealso
6411
6412 This manual: @ref{Time signature} gives a general introduction to
6413 the use of time signatures.
6414
6415 @refbugs
6416
6417 Ratios of note durations do not change with the time signature.  For
6418 example, the ratio of 1 brevis = 3 semibrevis (tempus perfectum) must
6419 be made by hand, by setting
6420
6421 @example
6422 breveTP = #(ly:make-duration -1 0 3 2)
6423 @dots{}
6424 @{ c\breveTP f1 @}
6425 @end example
6426
6427 @noindent
6428 This sets @code{breveTP} to 3/2 times 2 = 3 times a whole note.
6429
6430 The @code{old6/8alt} symbol (an alternate symbol for 6/8) is not
6431 addressable with @code{\time}.  Use a @code{\markup} instead
6432
6433 @node Ancient articulations
6434 @subsection Ancient articulations
6435
6436 @cindex articulations
6437
6438 In addition to the standard articulation signs described in section
6439 @ref{Articulations}, articulation signs for ancient notation are
6440 provided.  These are specifically designed for use with notation in
6441 Editio Vaticana style.
6442
6443 @lilypond[quote,raggedright,verbatim]
6444 \include "gregorian-init.ly"
6445 \score {
6446   \context VaticanaVoice {
6447     \override TextScript #'font-family = #'typewriter
6448     \override TextScript #'font-shape = #'upright
6449     \override Script #'padding = #-0.1
6450     a4\ictus_"ictus" s1
6451     a4\circulus_"circulus" s1
6452     a4\semicirculus_"semicirculus" s1 s
6453     a4\accentus_"accentus" s1
6454     \[ a4_"episem" \episemInitium \pes b \flexa a \episemFinis \]
6455   }
6456 }
6457 @end lilypond
6458
6459 @refbugs
6460
6461 Some articulations are vertically placed too closely to the
6462 correpsonding note heads.
6463
6464 @node Custodes
6465 @subsection Custodes
6466
6467 @cindex custos
6468 @cindex custodes
6469
6470 A @emph{custos} (plural: @emph{custodes}; Latin word for `guard') is a
6471 symbol that appears at the end of a staff.  It anticipates the pitch
6472 of the first note(s) of the following line thus helping the performer
6473 to manage line breaks during performance.
6474
6475 Custodes were frequently used in music notation until the 17th
6476 century.  Nowadays, they have survived only in a few particular forms
6477 of musical notation such as contemporary editions of Gregorian chant
6478 like the @emph{editio vaticana}.  There are different custos glyphs
6479 used in different flavors of notational style.
6480
6481 For typesetting custodes, just put a @internalsref{Custos_engraver} into the
6482 @internalsref{Staff} context when declaring the @code{\layout} block,
6483 as shown in the following example
6484
6485 @example
6486 \layout @{
6487   \context @{
6488     \Staff
6489     \consists Custos_engraver
6490     Custos \override #'style = #'mensural
6491   @}
6492 @}
6493 @end example
6494
6495 The result looks like this
6496
6497 @lilypond[quote,raggedright]
6498 \score {
6499 {
6500   a'1
6501   \override Staff.Custos #'style = #'mensural
6502   \break
6503   g'
6504 }
6505 \layout {
6506   \context { \Staff \consists Custos_engraver }
6507   }
6508 }
6509 @end lilypond
6510
6511 The custos glyph is selected by the @code{style} property.  The styles
6512 supported are @code{vaticana}, @code{medicaea}, @code{hufnagel}, and
6513 @code{mensural}.  They are demonstrated in the following fragment
6514
6515 @lilypond[quote,raggedright,fragment]
6516 \new Lyrics \lyricmode {
6517   \markup { \column {
6518     \typewriter "vaticana"
6519     \line { " " \musicglyph #"custodes-vaticana-u0" }
6520   } }
6521   \markup { \column {
6522     \typewriter "medicaea"
6523     \line { " " \musicglyph #"custodes-medicaea-u0" }
6524   }}
6525   \markup { \column {
6526     \typewriter "hufnagel"
6527     \line { " " \musicglyph #"custodes-hufnagel-u0" }
6528   }}
6529   \markup { \column {
6530     \typewriter "mensural"
6531     \line { " " \musicglyph #"custodes-mensural-u0" }
6532   }}
6533 }
6534 @end lilypond
6535
6536 @seealso
6537
6538 Program reference: @internalsref{Custos}.
6539
6540 Examples: @inputfileref{input/@/regression,custos@/.ly}.
6541
6542
6543 @node Divisiones
6544 @subsection Divisiones
6545
6546 @cindex divisio
6547 @cindex divisiones
6548 @cindex finalis
6549
6550 A @emph{divisio} (plural: @emph{divisiones}; Latin word for
6551 `division') is a staff context symbol that is used to structure
6552 Gregorian music into phrases and sections.  The musical meaning of
6553 @emph{divisio minima}, @emph{divisio maior}, and @emph{divisio maxima}
6554 can be characterized as short, medium, and long pause, somewhat like
6555 the breathmarks from @ref{Breath marks}.  The @emph{finalis} sign not
6556 only marks the end of a chant, but is also frequently used within a
6557 single antiphonal/responsorial chant to mark the end of each section.
6558
6559
6560 To use divisiones, include the file @file{gregorian@/-init@/.ly}.  It
6561 contains definitions that you can apply by just inserting
6562 @code{\divisioMinima}, @code{\divisioMaior}, @code{\divisioMaxima},
6563 and @code{\finalis} at proper places in the input.  Some editions use
6564 @emph{virgula} or @emph{caesura} instead of divisio minima.
6565 Therefore, @file{gregorian@/-init@/.ly} also defines @code{\virgula} and
6566 @code{\caesura}
6567
6568 @lilypondfile[quote,raggedright]{divisiones.ly}
6569
6570 @refcommands
6571
6572 @cindex @code{\virgula}
6573 @code{\virgula},
6574 @cindex @code{\caesura}
6575 @code{\caesura},
6576 @cindex @code{\divisioMinima}
6577 @code{\divisioMinima},
6578 @cindex @code{\divisioMaior}
6579 @code{\divisioMaior},
6580 @cindex @code{\divisioMaxima}
6581 @code{\divisioMaxima},
6582 @cindex @code{\finalis}
6583 @code{\finalis}.
6584
6585 @seealso
6586
6587 In this manual: @ref{Breath marks}.
6588
6589 Program reference: @internalsref{BreathingSign}, @internalsref{BreathingSignEvent}.
6590
6591 Examples: @inputfileref{input/@/test,divisiones@/.ly}.
6592
6593 @node Ligatures
6594 @subsection Ligatures
6595
6596 @cindex Ligatures
6597
6598 @c TODO: Should double check if I recalled things correctly when I wrote
6599 @c down the following paragraph by heart.
6600
6601 A ligature is a graphical symbol that represents at least two distinct
6602 notes.  Ligatures originally appeared in the manuscripts of Gregorian
6603 chant notation to denote ascending or descending sequences of notes.
6604
6605 Ligatures are entered by enclosing them in @code{\[} and @code{\]}.
6606 Some ligature styles may need additional input syntax specific for
6607 this particular type of ligature.  By default, the
6608 @internalsref{LigatureBracket} engraver just puts a square bracket
6609 above the ligature
6610
6611 @lilypond[quote,raggedright,verbatim]
6612 \transpose c c' {
6613   \[ g c a f d' \]
6614   a g f
6615   \[ e f a g \]
6616 }
6617 @end lilypond
6618
6619 To select a specific style of ligatures, a proper ligature engraver
6620 has to be added to the @internalsref{Voice} context, as explained in
6621 the following subsections.   Only white mensural ligatures
6622 are supported with certain limitations.
6623
6624
6625
6626 @refbugs
6627
6628 Ligatures need special spacing that has not yet been implemented.  As
6629 a result, there is too much space between ligatures most of the time,
6630 and line breaking often is unsatisfactory.  Also, lyrics do not
6631 correctly align with ligatures.
6632
6633 Accidentals must not be printed within a ligature, but instead need to
6634 be collected and printed in front of it.
6635
6636 Augmentum dots within ligatures are not handled correctly.
6637
6638
6639 @menu
6640 * White mensural ligatures::    
6641 * Gregorian square neumes ligatures::  
6642 @end menu
6643
6644 @node White mensural ligatures
6645 @subsubsection White mensural ligatures
6646
6647 @cindex Mensural ligatures
6648 @cindex White mensural ligatures
6649
6650 There is limited support for white mensural ligatures.
6651
6652 To engrave white mensural ligatures, in the layout block put the
6653 @internalsref{Mensural_ligature_engraver} into the
6654 @internalsref{Voice} context, and remove the
6655 @internalsref{Ligature_bracket_engraver}, like this
6656
6657 @example
6658 \layout @{
6659   \context @{
6660     \Voice
6661     \remove Ligature_bracket_engraver
6662     \consists Mensural_ligature_engraver
6663   @}
6664 @}
6665 @end example
6666
6667 There is no additional input language to describe the shape of a
6668 white mensural ligature.  The shape is rather determined solely from
6669 the pitch and duration of the enclosed notes.  While this approach may
6670 take a new user a while to get accustomed to, it has the great advantage
6671 that the full musical information of the ligature is known internally.
6672 This is not only required for correct MIDI output, but also allows for
6673 automatic transcription of the ligatures.
6674
6675 For example,
6676
6677 @example
6678 \set Score.timing = ##f
6679 \set Score.defaultBarType = "empty"
6680 \override NoteHead #'style = #'neomensural
6681 \override Staff.TimeSignature #'style = #'neomensural
6682 \clef "petrucci-g"
6683 \[ g\longa c\breve a\breve f\breve d'\longa \]
6684 s4
6685 \[ e1 f1 a\breve g\longa \]
6686 @end example
6687 @lilypond[quote,raggedright]
6688 \score {
6689   \transpose c c' {
6690     \set Score.timing = ##f
6691     \set Score.defaultBarType = "empty"
6692     \override NoteHead #'style = #'neomensural
6693     \override Staff.TimeSignature #'style = #'neomensural
6694     \clef "petrucci-g"
6695     \[ g\longa c\breve a\breve f\breve d'\longa \]
6696     s4
6697     \[ e1 f1 a\breve g\longa \]
6698   }
6699   \layout {
6700     \context {
6701       \Voice
6702       \remove Ligature_bracket_engraver
6703       \consists Mensural_ligature_engraver
6704     }
6705   }
6706 }
6707 @end lilypond
6708
6709 Without replacing @internalsref{Ligature_bracket_engraver} with
6710 @internalsref{Mensural_ligature_engraver}, the same music transcribes
6711 to the following
6712
6713 @lilypond[quote,raggedright]
6714 \transpose c c' {
6715   \set Score.timing = ##f
6716   \set Score.defaultBarType = "empty"
6717   \override NoteHead #'style = #'neomensural
6718   \override Staff.TimeSignature #'style = #'neomensural
6719   \clef "petrucci-g"
6720   \[ g\longa c\breve a\breve f\breve d'\longa \]
6721   s4
6722   \[ e1 f1 a\breve g\longa \]
6723 }
6724 @end lilypond
6725
6726 @refbugs
6727
6728 The implementation is experimental.  It may output strange warnings,
6729 incorrect results, and might even crash on more complex ligatures.
6730
6731 @node Gregorian square neumes ligatures
6732 @subsubsection Gregorian square neumes ligatures
6733
6734 @cindex Square neumes ligatures
6735 @cindex Gregorian square neumes ligatures
6736
6737 There is limited support for Gregorian square neumes notation
6738 (following the style of the Editio Vaticana).  Core ligatures can
6739 already be typeset, but essential issues for serious typesetting are
6740 still lacking, such as (among others) horizontal alignment of multiple
6741 ligatures, lyrics alignment and proper handling of accidentals.
6742
6743
6744 The following table contains the extended neumes table of the 2nd
6745 volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
6746 1983 by the monks of Solesmes.
6747
6748 @multitable @columnfractions .4 .2 .2 .2
6749
6750 @item
6751 @b{Neuma aut@*
6752 Neumarum Elementa}
6753 @tab
6754 @b{Figurae@*
6755 Rectae}
6756 @tab
6757 @b{Figurae@*
6758 Liquescentes@*
6759 Auctae}
6760 @tab
6761 @b{Figurae@*
6762 Liquescentes@*
6763 Deminutae}
6764
6765 @c TODO: \layout block is identical in all of the below examples.
6766 @c Therefore, it should somehow be included rather than duplicated all
6767 @c the time. --jr
6768
6769 @c why not make identifiers in ly/engraver-init.ly? --hwn
6770
6771 @c Because it's just used to typeset plain notes without
6772 @c a staff for demonstration purposes rather than something
6773 @c special of Gregorian chant notation. --jr
6774
6775 @item
6776 @code{1. Punctum}
6777 @tab
6778 @lilypond[staffsize=26,linewidth=1.5\cm]
6779 \include "gregorian-init.ly"
6780 \score {
6781   \transpose c c' {
6782     % Punctum
6783     \[ b \]
6784     \noBreak s^\markup {"a"} \noBreak
6785
6786     % Punctum Inclinatum
6787     \[ \inclinatum b \]
6788     \noBreak s^\markup {"b"}
6789   }
6790 \layout { \neumeDemoLayout }}
6791 @end lilypond
6792 @tab
6793 @lilypond[staffsize=26,linewidth=2.5\cm]
6794 \include "gregorian-init.ly"
6795 \score {
6796   \transpose c c' {
6797     % Punctum Auctum Ascendens
6798     \[ \auctum \ascendens b \]
6799     \noBreak s^\markup {"c"} \noBreak
6800
6801     % Punctum Auctum Descendens
6802     \[ \auctum \descendens b \]
6803     \noBreak s^\markup {"d"} \noBreak
6804
6805     % Punctum Inclinatum Auctum
6806     \[ \inclinatum \auctum b \]
6807     \noBreak s^\markup {"e"}
6808   }
6809 \layout { \neumeDemoLayout }}
6810 @end lilypond
6811 @tab
6812 @lilypond[staffsize=26,linewidth=1.0\cm]
6813 \include "gregorian-init.ly"
6814 \score {
6815   \transpose c c' {
6816     % Punctum Inclinatum Parvum
6817     \[ \inclinatum \deminutum b \]
6818     \noBreak s^\markup {"f"}
6819   }
6820 \layout { \neumeDemoLayout }}
6821 @end lilypond
6822
6823 @item
6824 @code{2. Virga}
6825 @tab
6826 @lilypond[staffsize=26,linewidth=1.0\cm]
6827 \include "gregorian-init.ly"
6828 \score {
6829   \transpose c c' {
6830     % Virga
6831     \[ \virga b \]
6832     \noBreak s^\markup {"g"}
6833   }
6834 \layout { \neumeDemoLayout }}
6835 @end lilypond
6836 @tab
6837 @tab
6838
6839 @item
6840 @code{3. Apostropha vel Stropha}
6841 @tab
6842 @lilypond[staffsize=26,linewidth=1.0\cm]
6843 \include "gregorian-init.ly"
6844 \score {
6845   \transpose c c' {
6846     % Stropha
6847     \[ \stropha b \]
6848     \noBreak s^\markup {"h"}
6849   }
6850 \layout { \neumeDemoLayout }}
6851 @end lilypond
6852 @tab
6853 @lilypond[staffsize=26,linewidth=1.0\cm]
6854 \include "gregorian-init.ly"
6855 \score {
6856   \transpose c c' {
6857     % Stropha Aucta
6858     \[ \stropha \auctum b \]
6859     \noBreak s^\markup {"i"}
6860   }
6861 \layout { \neumeDemoLayout }}
6862 @end lilypond
6863 @tab
6864
6865 @item
6866 @code{4. Oriscus}
6867 @tab
6868 @lilypond[staffsize=26,linewidth=1.0\cm]
6869 \include "gregorian-init.ly"
6870 \score {
6871   \transpose c c' {
6872     % Oriscus
6873     \[ \oriscus b \]
6874     \noBreak s^\markup {"j"}
6875   }
6876 \layout { \neumeDemoLayout }}
6877 @end lilypond
6878 @tab
6879 @tab
6880
6881 @item
6882 @code{5. Clivis vel Flexa}
6883 @tab
6884 @lilypond[staffsize=26,linewidth=1.0\cm]
6885 \include "gregorian-init.ly"
6886 \score {
6887   \transpose c c' {
6888     % Clivis vel Flexa
6889     \[ b \flexa g \]
6890     s^\markup {"k"}
6891   }
6892 \layout { \neumeDemoLayout }}
6893 @end lilypond
6894 @tab
6895 @lilypond[staffsize=26,linewidth=2.0\cm]
6896 \include "gregorian-init.ly"
6897 \score {
6898   \transpose c c' {
6899     % Clivis Aucta Descendens
6900     \[ b \flexa \auctum \descendens g \]
6901     \noBreak s^\markup {"l"} \noBreak
6902
6903     % Clivis Aucta Ascendens
6904     \[ b \flexa \auctum \ascendens g \]
6905     \noBreak s^\markup {"m"}
6906   }
6907 \layout { \neumeDemoLayout }}
6908 @end lilypond
6909 @tab
6910 @lilypond[staffsize=26,linewidth=1.0\cm]
6911 \include "gregorian-init.ly"
6912 \score {
6913   \transpose c c' {
6914     % Cephalicus
6915     \[ b \flexa \deminutum g \]
6916     s^\markup {"n"}
6917   }
6918 \layout { \neumeDemoLayout }}
6919 @end lilypond
6920
6921 @item
6922 @code{6. Podatus vel Pes}
6923 @tab
6924 @lilypond[staffsize=26,linewidth=1.0\cm]
6925 \include "gregorian-init.ly"
6926 \score {
6927   \transpose c c' {
6928     % Podatus vel Pes
6929     \[ g \pes b \]
6930     s^\markup {"o"}
6931   }
6932 \layout { \neumeDemoLayout }}
6933 @end lilypond
6934 @tab
6935 @lilypond[staffsize=26,linewidth=2.0\cm]
6936 \include "gregorian-init.ly"
6937 \score {
6938   \transpose c c' {
6939     % Pes Auctus Descendens
6940     \[ g \pes \auctum \descendens b \]
6941     \noBreak s^\markup {"p"} \noBreak
6942
6943     % Pes Auctus Ascendens
6944     \[ g \pes \auctum \ascendens b \]
6945     \noBreak s^\markup {"q"}
6946   }
6947 \layout { \neumeDemoLayout }}
6948 @end lilypond
6949 @tab
6950 @lilypond[staffsize=26,linewidth=1.0\cm]
6951 \include "gregorian-init.ly"
6952 \score {
6953   \transpose c c' {
6954     % Epiphonus
6955     \[ g \pes \deminutum b \]
6956     s^\markup {"r"}
6957   }
6958 \layout { \neumeDemoLayout }}
6959 @end lilypond
6960
6961 @item
6962 @code{7. Pes Quassus}
6963 @tab
6964 @lilypond[staffsize=26,linewidth=1.0\cm]
6965 \include "gregorian-init.ly"
6966 \score {
6967   \transpose c c' {
6968     % Pes Quassus
6969     \[ \oriscus g \pes \virga b \]
6970     s^\markup {"s"}
6971   }
6972 \layout { \neumeDemoLayout }}
6973 @end lilypond
6974 @tab
6975 @lilypond[staffsize=26,linewidth=1.0\cm]
6976 \include "gregorian-init.ly"
6977 \score {
6978   \transpose c c' {
6979     % Pes Quassus Auctus Descendens
6980     \[ \oriscus g \pes \auctum \descendens b \]
6981     s^\markup {"t"}
6982   }
6983 \layout { \neumeDemoLayout }}
6984 @end lilypond
6985 @tab
6986
6987 @item
6988 @code{8. Quilisma Pes}
6989 @tab
6990 @lilypond[staffsize=26,linewidth=1.0\cm]
6991 \include "gregorian-init.ly"
6992 \score {
6993   \transpose c c' {
6994     % Quilisma Pes
6995     \[ \quilisma g \pes b \]
6996     s^\markup {"u"}
6997   }
6998 \layout { \neumeDemoLayout }}
6999 @end lilypond
7000 @tab
7001 @lilypond[staffsize=26,linewidth=1.0\cm]
7002 \include "gregorian-init.ly"
7003 \score {
7004   \transpose c c' {
7005     % Quilisma Pes Auctus Descendens
7006     \[ \quilisma g \pes \auctum \descendens b \]
7007     s^\markup {"v"}
7008   }
7009 \layout { \neumeDemoLayout }}
7010 @end lilypond
7011 @tab
7012
7013 @item
7014 @code{9. Podatus Initio Debilis}
7015 @tab
7016 @lilypond[staffsize=26,linewidth=1.0\cm]
7017 \include "gregorian-init.ly"
7018 \score {
7019   \transpose c c' {
7020     % Pes Initio Debilis
7021     \[ \deminutum g \pes b \]
7022     s^\markup {"w"}
7023   }
7024 \layout { \neumeDemoLayout }}
7025 @end lilypond
7026 @tab
7027 @lilypond[staffsize=26,linewidth=1.0\cm]
7028 \include "gregorian-init.ly"
7029 \score {
7030   \transpose c c' {
7031     % Pes Auctus Descendens Initio Debilis
7032     \[ \deminutum g \pes \auctum \descendens b \]
7033     s^\markup {"x"}
7034   }
7035 \layout { \neumeDemoLayout }}
7036 @end lilypond
7037 @tab
7038
7039 @item
7040 @code{10. Torculus}
7041 @tab
7042 @lilypond[staffsize=26,linewidth=1.0\cm]
7043 \include "gregorian-init.ly"
7044 \score {
7045   \transpose c c' {
7046     % Torculus
7047     \[ a \pes b \flexa g \]
7048     s^\markup {"y"}
7049   }
7050 \layout { \neumeDemoLayout }}
7051 @end lilypond
7052 @tab
7053 @lilypond[staffsize=26,linewidth=1.0\cm]
7054 \include "gregorian-init.ly"
7055 \score {
7056   \transpose c c' {
7057     % Torculus Auctus Descendens
7058     \[ a \pes b \flexa \auctum \descendens g \]
7059     s^\markup {"z"}
7060   }
7061 \layout { \neumeDemoLayout }}
7062 @end lilypond
7063 @tab
7064 @lilypond[staffsize=26,linewidth=1.0\cm]
7065 \include "gregorian-init.ly"
7066 \score {
7067   \transpose c c' {
7068     % Torculus Deminutus
7069     \[ a \pes b \flexa \deminutum g \]
7070     s^\markup {"A"}
7071   }
7072 \layout { \neumeDemoLayout }}
7073 @end lilypond
7074
7075 @item
7076 @code{11. Torculus Initio Debilis}
7077 @tab
7078 @lilypond[staffsize=26,linewidth=1.0\cm]
7079 \include "gregorian-init.ly"
7080 \score {
7081   \transpose c c' {
7082     % Torculus Initio Debilis
7083     \[ \deminutum a \pes b \flexa g \]
7084     s^\markup {"B"}
7085   }
7086 \layout { \neumeDemoLayout }}
7087 @end lilypond
7088 @tab
7089 @lilypond[staffsize=26,linewidth=1.0\cm]
7090 \include "gregorian-init.ly"
7091 \score {
7092   \transpose c c' {
7093     % Torculus Auctus Descendens Initio Debilis
7094     \[ \deminutum a \pes b \flexa \auctum \descendens g \]
7095     s^\markup {"C"}
7096   }
7097 \layout { \neumeDemoLayout }}
7098 @end lilypond
7099 @tab
7100 @lilypond[staffsize=26,linewidth=1.0\cm]
7101 \include "gregorian-init.ly"
7102 \score {
7103   \transpose c c' {
7104     % Torculus Deminutus Initio Debilis
7105     \[ \deminutum a \pes b \flexa \deminutum g \]
7106     s^\markup {"D"}
7107   }
7108 \layout { \neumeDemoLayout }}
7109 @end lilypond
7110
7111 @item
7112 @code{12. Porrectus}
7113 @tab
7114 @lilypond[staffsize=26,linewidth=1.0\cm]
7115 \include "gregorian-init.ly"
7116 \score {
7117   \transpose c c' {
7118     % Porrectus
7119     \[ a \flexa g \pes b \]
7120     s^\markup {"E"}
7121   }
7122 \layout { \neumeDemoLayout }}
7123 @end lilypond
7124 @tab
7125 @lilypond[staffsize=26,linewidth=1.0\cm]
7126 \include "gregorian-init.ly"
7127 \score {
7128   \transpose c c' {
7129     % Porrectus Auctus Descendens
7130     \[ a \flexa g \pes \auctum \descendens b \]
7131     s^\markup {"F"}
7132   }
7133 \layout { \neumeDemoLayout }}
7134 @end lilypond
7135 @tab
7136 @lilypond[staffsize=26,linewidth=1.0\cm]
7137 \include "gregorian-init.ly"
7138 \score {
7139   \transpose c c' {
7140     % Porrectus Deminutus
7141     \[ a \flexa g \pes \deminutum b \]
7142     s^\markup {"G"}
7143   }
7144 \layout { \neumeDemoLayout }}
7145 @end lilypond
7146
7147 @item
7148 @code{13. Climacus}
7149 @tab
7150 @lilypond[staffsize=26,linewidth=1.0\cm]
7151 \include "gregorian-init.ly"
7152 \score {
7153   \transpose c c' {
7154     % Climacus
7155     \[ \virga b \inclinatum a \inclinatum g \]
7156     s^\markup {"H"}
7157   }
7158   \layout { \neumeDemoLayout }
7159 }
7160 @end lilypond
7161 @tab
7162 @lilypond[staffsize=26,linewidth=1.0\cm]
7163 \include "gregorian-init.ly"
7164 \score {
7165   \transpose c c' {
7166     % Climacus Auctus
7167     \[ \virga b \inclinatum a \inclinatum \auctum g \]
7168     s^\markup {"I"}
7169   }
7170 \layout { \neumeDemoLayout }}
7171 @end lilypond
7172 @tab
7173 @lilypond[staffsize=26,linewidth=1.0\cm]
7174 \include "gregorian-init.ly"
7175 \score {
7176   \transpose c c' {
7177     % Climacus Deminutus
7178     \[ \virga b \inclinatum a \inclinatum \deminutum g \]
7179     s^\markup {"J"}
7180   }
7181 \layout { \neumeDemoLayout }}
7182 @end lilypond
7183
7184 @item
7185 @code{14. Scandicus}
7186 @tab
7187 @lilypond[staffsize=26,linewidth=1.0\cm]
7188 \include "gregorian-init.ly"
7189 \score {
7190   \transpose c c' {
7191     % Scandicus
7192     \[ g \pes a \virga b \]
7193     s^\markup {"K"}
7194   }
7195 \layout { \neumeDemoLayout }}
7196 @end lilypond
7197 @tab
7198 @lilypond[staffsize=26,linewidth=1.0\cm]
7199 \include "gregorian-init.ly"
7200 \score {
7201   \transpose c c' {
7202     % Scandicus Auctus Descendens
7203     \[ g \pes a \pes \auctum \descendens b \]
7204     s^\markup {"L"}
7205   }
7206 \layout { \neumeDemoLayout }}
7207 @end lilypond
7208 @tab
7209 @lilypond[staffsize=26,linewidth=1.0\cm]
7210 \include "gregorian-init.ly"
7211 \score {
7212   \transpose c c' {
7213     % Scandicus Deminutus
7214     \[ g \pes a \pes \deminutum b \]
7215     s^\markup {"M"}
7216   }
7217 \layout { \neumeDemoLayout }}
7218 @end lilypond
7219
7220 @item
7221 @code{15. Salicus}
7222 @tab
7223 @lilypond[staffsize=26,linewidth=1.0\cm]
7224 \include "gregorian-init.ly"
7225 \score {
7226   \transpose c c' {
7227     % Salicus
7228     \[ g \oriscus a \pes \virga b \]
7229     s^\markup {"N"}
7230   }
7231 \layout { \neumeDemoLayout }}
7232 @end lilypond
7233 @tab
7234 @lilypond[staffsize=26,linewidth=1.0\cm]
7235 \include "gregorian-init.ly"
7236 \score {
7237   \transpose c c' {
7238     % Salicus Auctus Descendens
7239     \[ g \oriscus a \pes \auctum \descendens b \]
7240     s^\markup {"O"}
7241   }
7242 \layout { \neumeDemoLayout }}
7243 @end lilypond
7244 @tab
7245
7246 @item
7247 @code{16. Trigonus}
7248 @tab
7249 @lilypond[staffsize=26,linewidth=1.0\cm]
7250 \include "gregorian-init.ly"
7251 \score {
7252   \transpose c c' {
7253     % Trigonus
7254     \[ \stropha b \stropha b \stropha a \]
7255     s^\markup {"P"}
7256   }
7257   \layout { \neumeDemoLayout }
7258 }
7259 @end lilypond
7260 @tab
7261 @tab
7262
7263 @end multitable
7264
7265
7266 Unlike most other neumes notation systems, the input language for
7267 neumes does not reflect the typographical appearance, but is designed
7268 to focus on musical meaning.  For example, @code{\[ a \pes b
7269 \flexa g \]} produces a Torculus consisting of three Punctum heads,
7270 while @code{\[ a \flexa g \pes b \]} produces a Porrectus with a
7271 curved flexa shape and only a single Punctum head.  There is no
7272 command to explicitly typeset the curved flexa shape; the decision of
7273 when to typeset a curved flexa shape is based on the musical
7274 input.  The idea of this approach is to separate the musical aspects
7275 of the input from the notation style of the output.  This way, the
7276 same input can be reused to typeset the same music in a different
7277 style of Gregorian chant notation.
7278
7279 The following table shows the code fragments that produce the
7280 ligatures in the above neumes table.  The letter in the first column
7281 in each line of the below table indicates to which ligature in the
7282 above table it refers.  The second column gives the name of the
7283 ligature.  The third column shows the code fragment that produces this
7284 ligature, using @code{g}, @code{a}, and @code{b} as example pitches.
7285
7286 @multitable @columnfractions .02 .31 .67
7287 @item
7288 @b{#}
7289 @tab
7290 @b{Name}
7291 @tab
7292 @b{Input Language}
7293
7294 @item
7295 a
7296 @tab
7297 Punctum
7298 @tab
7299 @code{\[ b \]}
7300
7301 @item
7302 b
7303 @tab
7304 Punctum Inclinatum
7305 @tab
7306 @code{\[ \inclinatum b \]}
7307
7308 @item
7309 c
7310 @tab
7311 Punctum Auctum@*
7312 Ascendens
7313 @tab
7314 @code{\[ \auctum \ascendens b \]}
7315
7316 @item
7317 d
7318 @tab
7319 Punctum Auctum@*
7320 Descendens
7321 @tab
7322 @code{\[ \auctum \descendens b \]}
7323
7324 @item
7325 e
7326 @tab
7327 Punctum Inclinatum@*
7328 Auctum
7329 @tab
7330 @code{\[ \inclinatum \auctum b \]}
7331
7332 @item
7333 f
7334 @tab
7335 Punctum Inclinatum@*
7336 Parvum @tab
7337 @code{\[ \inclinatum \deminutum b \]}
7338
7339 @item
7340 g
7341 @tab
7342 Virga
7343 @tab
7344 @code{\[ \virga b \]}
7345
7346 @item
7347 h
7348 @tab
7349 Stropha
7350 @tab
7351 @code{\[ \stropha b \]}
7352
7353 @item
7354 i
7355 @tab
7356 Stropha Aucta
7357 @tab
7358 @code{\[ \stropha \auctum b \]}
7359
7360 @item
7361 j
7362 @tab
7363 Oriscus
7364 @tab
7365 @code{\[ \oriscus b \]}
7366
7367 @item
7368 k
7369 @tab
7370 Clivis vel Flexa
7371 @tab
7372 @code{\[ b \flexa g \]}
7373
7374 @item
7375 l
7376 @tab
7377 Clivis Aucta@*
7378 Descendens
7379 @tab
7380 @code{\[ b \flexa \auctum \descendens g \]}
7381
7382 @item
7383 m
7384 @tab
7385 Clivis Aucta@*
7386 Ascendens
7387 @tab
7388 @code{\[ b \flexa \auctum \ascendens g \]}
7389
7390 @item
7391 n
7392 @tab
7393 Cephalicus
7394 @tab
7395 @code{\[ b \flexa \deminutum g \]}
7396
7397 @item
7398 o
7399 @tab
7400 Podatus vel Pes
7401 @tab
7402 @code{\[ g \pes b \]}
7403
7404 @item
7405 p
7406 @tab
7407 Pes Auctus@*
7408 Descendens
7409 @tab
7410 @code{\[ g \pes \auctum \descendens b \]}
7411
7412 @item
7413 q
7414 @tab
7415 Pes Auctus@*
7416 Ascendens
7417 @tab
7418 @code{\[ g \pes \auctum \ascendens b \]}
7419
7420 @item
7421 r
7422 @tab
7423 Epiphonus
7424 @tab
7425 @code{\[ g \pes \deminutum b \]}
7426
7427 @item
7428 s
7429 @tab
7430 Pes Quassus
7431 @tab
7432 @code{\[ \oriscus g \pes \virga b \]}
7433
7434 @item
7435 t
7436 @tab
7437 Pes Quassus@*
7438 Auctus Descendens @tab
7439 @code{\[ \oriscus g \pes \auctum \descendens b \]}
7440
7441 @item
7442 u
7443 @tab
7444 Quilisma Pes
7445 @tab
7446 @code{\[ \quilisma g \pes b \]}
7447
7448 @item
7449 v
7450 @tab
7451 Quilisma Pes@*
7452 Auctus Descendens
7453 @tab
7454 @code{\[ \quilisma g \pes \auctum \descendens b \]}
7455
7456 @item
7457 w
7458 @tab
7459 Pes Initio Debilis
7460 @tab
7461 @code{\[ \deminutum g \pes b \]}
7462
7463 @item
7464 x
7465 @tab
7466 Pes Auctus Descendens@*
7467 Initio Debilis
7468 @tab
7469 @code{\[ \deminutum g \pes \auctum \descendens b \]}
7470
7471 @item
7472 y
7473 @tab
7474 Torculus
7475 @tab
7476 @code{\[ a \pes b \flexa g \]}
7477
7478 @item
7479 z
7480 @tab
7481 Torculus Auctus@*
7482 Descendens
7483 @tab
7484 @code{\[ a \pes b \flexa \auctum \descendens g \]}
7485
7486 @item
7487 A
7488 @tab
7489 Torculus Deminutus
7490 @tab
7491 @code{\[ a \pes b \flexa \deminutum g \]}
7492
7493 @item
7494 B
7495 @tab
7496 Torculus Initio Debilis
7497 @tab
7498 @code{\[ \deminutum a \pes b \flexa g \]}
7499
7500 @item
7501 C
7502 @tab
7503 Torculus Auctus@*
7504 Descendens Initio Debilis
7505 @tab
7506 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
7507
7508 @item
7509 D
7510 @tab
7511 Torculus Deminutus@*
7512 Initio Debilis
7513 @tab
7514 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
7515
7516 @item
7517 E
7518 @tab
7519 Porrectus
7520 @tab
7521 @code{\[ a \flexa g \pes b \]}
7522
7523 @item
7524 F
7525 @tab
7526 Porrectus Auctus@*
7527 Descendens
7528 @tab
7529 @code{\[ a \flexa g \pes \auctum \descendens b \]}
7530
7531 @item
7532 G
7533 @tab
7534 Porrectus Deminutus
7535 @tab
7536 @code{\[ a \flexa g \pes \deminutum b \]}
7537
7538 @item
7539 H
7540 @tab
7541 Climacus
7542 @tab
7543 @code{\[ \virga b \inclinatum a \inclinatum g \]}
7544
7545 @item
7546 I
7547 @tab
7548 Climacus Auctus
7549 @tab
7550 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
7551
7552 @item
7553 J
7554 @tab
7555 Climacus Deminutus
7556 @tab
7557 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
7558
7559 @item
7560 K
7561 @tab
7562 Scandicus
7563 @tab
7564 @code{\[ g \pes a \virga b \]}
7565
7566 @item
7567 L
7568 @tab
7569 Scandicus Auctus@*
7570 Descendens
7571 @tab
7572 @code{\[ g \pes a \pes \auctum \descendens b \]}
7573
7574 @item
7575 M
7576 @tab
7577 Scandicus Deminutus
7578 @tab
7579 @code{\[ g \pes a \pes \deminutum b \]}
7580
7581 @item
7582 N
7583 @tab
7584 Salicus
7585 @tab
7586 @code{\[ g \oriscus a \pes \virga b \]}
7587
7588 @item
7589 O
7590 @tab
7591 Salicus Auctus Descendens
7592 @tab
7593 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
7594
7595 @item
7596 P
7597 @tab
7598 Trigonus
7599 @tab
7600 @code{\[ \stropha b \stropha b \stropha a \]}
7601 @end multitable
7602
7603 @refcommands
7604
7605 The following head prefixes are supported
7606
7607 @cindex @code{\virga}
7608 @code{\virga},
7609 @cindex @code{\stropha}
7610 @code{\stropha},
7611 @cindex @code{\inclinatum}
7612 @code{\inclinatum},
7613 @cindex @code{\auctum}
7614 @code{\auctum},
7615 @cindex @code{\descendens}
7616 @code{\descendens},
7617 @cindex @code{\ascendens}
7618 @code{\ascendens},
7619 @cindex @code{\oriscus}
7620 @code{\oriscus},
7621 @cindex @code{\quilisma}
7622 @code{\quilisma},
7623 @cindex @code{\deminutum}
7624 @code{\deminutum}.
7625
7626 Head prefixes can be accumulated, though restrictions apply.  For
7627 example, either @code{\descendens} or @code{\ascendens} can be applied
7628 to a head, but not both to the same head.
7629
7630 @cindex @code{\pes}
7631 @cindex @code{\flexa}
7632 Two adjacent heads can be tied together with the @code{\pes} and
7633 @code{\flexa} infix commands for a rising and falling line of melody,
7634 respectively.
7635
7636
7637
7638 @node Gregorian Chant contexts
7639 @subsection Gregorian Chant contexts
7640
7641 @cindex VaticanaVoiceContext
7642 @cindex VaticanaStaffContext
7643
7644 The predefined @code{VaticanaVoiceContext} and
7645 @code{VaticanaStaffContext} can be used to engrave a piece of
7646 Gregorian Chant in the style of the Editio Vaticana.  These contexts
7647 initialize all relevant context properties and grob properties to
7648 proper values, so you can immediately go ahead entering the chant, as
7649 the following excerpt demonstrates
7650
7651 @lilypond[quote,raggedright,verbatim]
7652 \include "gregorian-init.ly"
7653 \score {
7654   <<
7655     \context VaticanaVoice = "cantus" {
7656       \override Score.BarNumber #'transparent = ##t {
7657         \[ c'\melisma c' \flexa a \]
7658         \[ a \flexa \deminutum g\melismaEnd \]
7659         f \divisioMinima
7660         \[ f\melisma \pes a c' c' \pes d'\melismaEnd \]
7661         c' \divisioMinima \break
7662         \[ c'\melisma c' \flexa a \]
7663         \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
7664       }
7665     }
7666     \lyricsto "cantus" \new Lyrics {
7667       San- ctus, San- ctus, San- ctus
7668     }
7669   >>
7670 }
7671 @end lilypond
7672
7673
7674 @node Mensural contexts
7675 @subsection Mensural contexts
7676
7677 @cindex MensuralVoiceContext
7678 @cindex MensuralStaffContext
7679
7680 The predefined @code{MensuralVoiceContext} and
7681 @code{MensuralStaffContext} can be used to engrave a piece in mensural
7682 style.  These contexts initialize all relevant context properties and
7683 grob properties to proper values, so you can immediately go ahead
7684 entering the chant, as the following excerpt demonstrates
7685
7686 @lilypond[quote,raggedright,verbatim]
7687 \score {
7688   <<
7689     \context MensuralVoice = "discantus" \transpose c c' {
7690       \override Score.BarNumber #'transparent = ##t {
7691         c'1\melisma bes a g\melismaEnd
7692         f\breve
7693         \[ f1\melisma a c'\breve d'\melismaEnd \]
7694         c'\longa
7695         c'\breve\melisma a1 g1\melismaEnd
7696         fis\longa^\signumcongruentiae
7697       }
7698     }
7699     \lyricsto "discantus" \new Lyrics {
7700       San -- ctus, San -- ctus, San -- ctus
7701     }
7702   >>
7703 }
7704 @end lilypond
7705
7706
7707 @node Figured bass
7708 @subsection Figured bass
7709
7710 @cindex Basso continuo
7711
7712 @c TODO: musicological blurb about FB
7713
7714
7715 LilyPond has limited support for figured bass
7716
7717 @lilypond[quote,raggedright,verbatim,fragment]
7718 <<
7719   \context Voice { \clef bass dis4 c d ais g fis}
7720   \context FiguredBass \figuremode {
7721     < 6 >4 < 7 >8 < 6+ [_!] >
7722     < 6 >4 <6 5 [3+] >
7723     < _ >4 < 6 >4
7724   }
7725 >>
7726 @end lilypond
7727
7728 The support for figured bass consists of two parts: there is an input
7729 mode, introduced by @code{\figuremode}, where you can enter bass figures
7730 as numbers, and there is a context called @internalsref{FiguredBass} that
7731 takes care of making @internalsref{BassFigure} objects.
7732
7733 In figures input mode, a group of bass figures is delimited by
7734 @code{<} and @code{>}.  The duration is entered after the @code{>}
7735 @example
7736 <4 6>
7737 @end example
7738 @lilypond[quote,raggedright,fragment]
7739 \context FiguredBass
7740 \figuremode { <4 6> }
7741 @end lilypond
7742
7743 Accidentals are added when you append @code{-}, @code{!}, and @code{+}
7744 to the numbers
7745
7746 @example
7747 <4- 6+ 7!>
7748 @end example
7749 @lilypond[quote,raggedright,fragment]
7750 \context FiguredBass
7751 \figuremode { <4- 6+ 7!> }
7752 @end lilypond
7753
7754 Spaces or dashes may be inserted by using @code{_}.  Brackets are
7755 introduced with @code{[} and @code{]}
7756
7757 @example
7758 < [4 6] 8 [_! 12] >
7759 @end example
7760 @lilypond[quote,raggedright,fragment]
7761 \context FiguredBass
7762 \figuremode { < [4 6] 8 [_! 12] > }
7763 @end lilypond
7764
7765 Although the support for figured bass may superficially resemble chord
7766 support, it works much simpler.  The @code{\figuremode} mode simply
7767 stores the numbers and @internalsref{FiguredBass} context prints
7768 them as entered.  There is no conversion to pitches and no
7769 realizations of the bass are played in the MIDI file.
7770
7771 Internally, the code produces markup texts.  You can use any of the
7772 markup text properties to override formatting.  For example, the
7773 vertical spacing of the figures may be set with @code{baseline-skip}.
7774
7775 @seealso
7776
7777 Program reference: @internalsref{BassFigureEvent} music,
7778 @internalsref{BassFigure} object, and @internalsref{FiguredBass} context.
7779
7780 @refbugs
7781
7782 Slash notation for alterations is not supported.
7783
7784 @node Contemporary notation
7785 @section Contemporary notation
7786
7787 In the 20th century, composers have greatly expanded the musical
7788 vocabulary.  With this expansion, many innovations in musical notation
7789 have been tried.  The book ``Music Notation in the 20th century'' by
7790 Kurt Stone gives a comprehensive overview (see @ref{Literature
7791 list}).  In general, the use of new, innovative notation makes a piece
7792 harder to understand and perform and its use should therefore be
7793 avoided.  For this reason, support for contemporary notation in
7794 LilyPond is limited.
7795
7796
7797 @menu
7798 * Polymetric notation::         
7799 * Clusters::                    
7800 * Special fermatas::            
7801 * Feathered beams::             
7802 @end menu
7803
7804 @node Polymetric notation
7805 @subsection Polymetric notation
7806
7807 Double time signatures are not supported explicitly, but they can be
7808 faked.  In the next example, the markup for the time signature is
7809 created with a markup text.  This markup text is inserted in the
7810 @internalsref{TimeSignature} grob.
7811
7812 @lilypond[verbatim,raggedright]
7813 % create 2/4 + 5/8
7814 tsMarkup =\markup {
7815   \number {
7816     \column { "2" "4" }
7817     \musicglyph #"scripts-stopped"
7818     \bracket \column { "5" "8" }
7819   }
7820 }
7821
7822 {
7823   \override Staff.TimeSignature #'print-function = #Text_interface::print
7824   \override Staff.TimeSignature #'text = #tsMarkup
7825   \time 3/2
7826   c'2 \bar ":" c'4 c'4.
7827 }
7828 @end lilypond
7829
7830 Each staff can also have its own time signature.  This is done by
7831 moving the @internalsref{Timing_engraver} to the @internalsref{Staff}
7832 context.
7833
7834 @example
7835 \layout @{
7836   \context @{ \Score \remove "Timing_engraver" @}
7837   \context @{ \Staff \consists "Timing_engraver" @}
7838 @}
7839 @end example
7840
7841
7842 Now, each staff has its own time signature.
7843 @example
7844 <<
7845   \new Staff @{
7846     \time 3/4
7847     c4 c c | c c c |
7848   @}
7849   \new Staff @{
7850     \time 2/4
7851     c4 c | c c | c c
7852   @}
7853   \new Staff @{
7854     \time 3/8
7855     c4. c8 c c c4. c8 c c
7856   @}
7857 >>
7858 @end example
7859
7860 @lilypond[quote,raggedright]
7861 \layout{
7862   \context{ \Score \remove "Timing_engraver" }
7863   \context{ \Staff \consists "Timing_engraver" }
7864 }
7865
7866 \relative c' <<
7867   \new Staff {
7868     \time 3/4
7869     c4 c c | c c c |
7870   }
7871   \new Staff {
7872     \time 2/4
7873     c4 c | c c | c c
7874   }
7875   \new Staff {
7876     \time 3/8
7877     c4. c8 c c c4. c8 c c
7878   }
7879 >>
7880 @end lilypond
7881
7882
7883 A different form of polymetric notation is where note lengths have
7884 different values across staves.
7885
7886 This notation can be created by setting a common time signature for
7887 each staff but replacing it manually using
7888 @code{timeSignatureFraction} to the desired fraction.  Then the printed
7889 durations in each staff are scaled to the common time signature.
7890 The latter is done with @code{\compressmusic}, which is similar to
7891 @code{\times}, but does not create a tuplet bracket.
7892
7893
7894 In this example, music with the time signatures of 3/4, 9/8, and 10/8 are
7895 used in parallel.  In the second staff, shown durations are multiplied by
7896 2/3, so that 2/3 * 9/8 = 3/4, and in the third staff, shown durations are
7897 multiplied by 3/5, so that 3/5 * 10/8 = 3/4.
7898
7899 @lilypond[quote,raggedright,verbatim,fragment]
7900 \relative c' { <<
7901   \new Staff {
7902     \time 3/4
7903     c4 c c | c c c |
7904   }
7905   \new Staff {
7906     \time 3/4
7907     \set Staff.timeSignatureFraction = #'(9 . 8)
7908     \compressmusic #'(2 . 3)
7909       \repeat unfold 6 { c8[ c c] }
7910   }
7911   \new Staff {
7912     \time 3/4
7913     \set Staff.timeSignatureFraction = #'(10 . 8)
7914     \compressmusic #'(3 . 5) {
7915       \repeat unfold 2 { c8[ c c] }
7916       \repeat unfold 2 { c8[ c] }
7917       | c4. c4. \times 2/3 { c8 c c } c4
7918     }
7919   }
7920 >> }
7921 @end lilypond
7922
7923
7924
7925
7926 @refbugs
7927
7928 When using different time signatures in parallel, the spacing is
7929 aligned vertically, but bar lines distort the regular spacing.
7930
7931
7932
7933 @node Clusters
7934 @subsection Clusters
7935
7936 @cindex cluster
7937
7938 A cluster indicates a continuous range of pitches to be played.  They
7939 can be denoted as the envelope of a set of notes.  They are entered by
7940 applying the function @code{makeClusters} to a sequence of
7941 chords, e.g.,
7942 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
7943 \makeClusters { <c e > <b f'> }
7944 @end lilypond
7945
7946 The following example (from
7947 @inputfileref{input/@/regression,cluster@/.ly}) shows what the result
7948 looks like
7949
7950 @lilypondfile[raggedright,quote]{cluster.ly}
7951
7952 Ordinary notes and clusters can be put together in the same staff,
7953 even simultaneously.  In such a case no attempt is made to
7954 automatically avoid collisions between ordinary notes and clusters.
7955
7956 @seealso
7957
7958 Program reference: @internalsref{ClusterSpanner},
7959 @internalsref{ClusterSpannerBeacon},
7960 @internalsref{Cluster_spanner_engraver}, and
7961 @internalsref{ClusterNoteEvent}.
7962
7963 Examples: @inputfileref{input/@/regression,cluster@/.ly}.
7964
7965 @refbugs
7966
7967 Music expressions like @code{<< @{ g8 e8 @} a4 >>} are not printed
7968 accurately.  Use @code{<g a>8 <e a>8} instead.
7969
7970
7971
7972 @node Special fermatas
7973 @subsection Special fermatas
7974
7975 @cindex fermatas, special
7976
7977 In contemporary music notation, special fermata symbols denote breaks
7978 of differing lengths.  The following fermatas are supported
7979
7980 @lilypond[quote,raggedright]
7981 <<
7982   \oldaddlyrics {
7983     b'2
7984     ^\shortfermata
7985     _\shortfermata
7986     r
7987
7988     b'
7989     ^\fermata
7990     _\fermata
7991     r
7992
7993     b'
7994     ^\longfermata
7995     _\longfermata
7996     r
7997
7998     b'
7999     ^\verylongfermata
8000     _\verylongfermata
8001     r
8002   }
8003   \context Lyrics \lyricmode {
8004     \override LyricText #'font-family = #'typewriter
8005     "shortfermata" "fermata" "longfermata" "verylongfermata"
8006   }
8007 >>
8008 @end lilypond
8009
8010 See @ref{Articulations} for general instructions how to apply scripts
8011 such as fermatas to notes.
8012
8013 @node Feathered beams
8014 @subsection Feathered beams
8015
8016 Feathered beams are not supported natively, but they can be faked by
8017 forcing two beams to overlap.  Here is an example,
8018
8019 @c don't change relative setting witout changing positions!
8020 @lilypond[raggedright,relative=1,fragment,verbatim]
8021 \new Staff <<
8022   \new Voice
8023   {
8024     \stemUp
8025     \once \override Voice.Beam #'positions = #'(0 . 0.5)
8026     c8[ c c c c ]
8027   }
8028   \new Voice {
8029     \stemUp
8030     \once \override Voice.Beam #'positions = #'(0 . -0.5)
8031     c[ c c c c]
8032   }
8033 >>
8034 @end lilypond
8035
8036
8037
8038 @node Educational use
8039 @section Educational use
8040
8041 With the amount of control that LilyPond offers, one can make great
8042 teaching tools in addition to great musical scores.
8043
8044 @menu
8045 * Balloon help::                
8046 * Blank music sheet::           
8047 * Hidden notes::                
8048 * Shaped note heads ::          
8049 * Easy Notation note heads::    
8050 @end menu
8051
8052 @node Balloon help
8053 @subsection Balloon help
8054
8055 Elements of notation can be marked and named with the help of a square
8056 balloon.  The primary purpose of this feature is to explain notation.
8057
8058 The following example demonstrates its use.
8059
8060 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
8061 \context Voice {
8062   \applyoutput
8063     #(add-balloon-text 'NoteHead "heads, or tails?"
8064     '(1 . -3))
8065   c8
8066 }
8067 @end lilypond
8068
8069 @noindent
8070 The function @code{add-balloon-text} takes the name of a grob, the
8071 label to print, and the position where to put the label relative to
8072 the object.  In the above example, the text ``heads or tails?'' ends
8073 3 spaces below and 1 space to the right of the marked head.
8074
8075 @cindex balloon
8076 @cindex notation, explaining
8077
8078 @seealso
8079
8080 Program reference: @internalsref{text-balloon-interface}.
8081
8082 Examples: @inputfileref{input/@/regression,balloon@/.ly}.
8083
8084
8085
8086
8087 @node Blank music sheet
8088 @subsection Blank music sheet
8089
8090 A blank music sheet can be produced also by using invisible notes, and
8091 removing @code{Bar_number_engraver}.
8092
8093
8094 @lilypond[quote,verbatim]
8095 emptymusic = {
8096   \repeat unfold 2 % Change this for more lines.
8097   { s1\break }
8098   \bar "|."
8099 }
8100 \new Score \with {
8101   \override TimeSignature #'transparent = ##t
8102   defaultBarType = #""
8103   \remove Bar_number_engraver
8104 } <<
8105   \context Staff \emptymusic
8106   \context TabStaff \emptymusic
8107 >>
8108 @end lilypond
8109
8110
8111 @node Hidden notes
8112 @subsection Hidden notes
8113
8114 @cindex Hidden notes
8115 @cindex Invisible notes
8116 @cindex Transparent notes
8117
8118 Hidden (or invisible or transparent) notes can be useful in preparing theory
8119 or composition exercises.
8120
8121 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
8122 c4 d4
8123 \hideNotes
8124 e4 f4
8125 \unHideNotes
8126 g4 a
8127 @end lilypond
8128
8129 Hidden notes are also great for performing weird tricks.  For example,
8130 slurs cannot be attached to rests or spacer rests, but you may wish
8131 to include that in your score -- string instruments use this notation
8132 when doing pizzicato to indicate that the note should ring for as long
8133 as possible.
8134
8135 @lilypond[quote,raggedright,verbatim,relative=0,fragment]
8136 \clef bass
8137 << {
8138   c4^"pizz"( \hideNotes c)
8139   \unHideNotes c( \hideNotes c)
8140 } {
8141   s4 r s r
8142 } >>
8143 @end lilypond
8144
8145
8146 @node Shaped note heads 
8147 @subsection Shaped note heads 
8148
8149 In shaped note head notation, the shape of the note head corresponds
8150 to the harmonic function of a note in the scale. This notation was
8151 popular in the 19th century American song books.
8152
8153 Shaped note heads can be produced by setting @code{\aikenHeads} or
8154 @code{\sacredHarpHeads}, depending on the style desired.
8155
8156 @lilypond[verbatim,relative=1,fragment]
8157   \aikenHeads
8158   c8 d4 e8 a2 g1
8159   \sacredHarpHeads
8160   c8 d4. e8 a2 g1
8161 @end lilypond
8162
8163 Shapes are determined on the step in the scale, where the base of the
8164 scale is determined by  the @code{\key} command
8165
8166 @findex \key
8167 @findex shapeNoteStyles
8168 @findex \aikenHeads
8169 @findex \sacredHarpHeads
8170
8171 Shaped note heads are implemented through the @code{shapeNoteStyles}
8172 property. Its value is a vector of symbols. The k-th element indicates
8173 the style to use for the k-th step of the scale. Arbitrary
8174 combinations  are possible, eg.,
8175
8176
8177 @lilypond[verbatim,relative=1,fragment]
8178   \set shapeNoteStyles  = ##(cross triangle fa #f mensural xcircle diamond)
8179   c8 d4. e8 a2 g1
8180 @end lilypond
8181
8182
8183 @node Easy Notation note heads
8184 @subsection Easy Notation note heads
8185
8186 @cindex easy notation
8187 @cindex Hal Leonard
8188
8189 The `easy play' note head includes a note name inside the head.  It is
8190 used in music for beginners
8191
8192 @lilypond[quote,raggedright,verbatim,fragment,staffsize=26]
8193   \setEasyHeads
8194   c'2 e'4 f' | g'1
8195 @end lilypond
8196
8197 The command @code{\setEasyHeads} overrides settings for the
8198 @internalsref{NoteHead} object.  To make the letters readable, it has
8199 to be printed in a large font size.  To print with a larger font, see
8200 @ref{Setting global staff size}.
8201
8202 @refcommands
8203
8204 @cindex @code{\setEasyHeads}
8205 @code{\setEasyHeads}
8206