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