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