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