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