]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/refman.itely
61f9ac868b799dc5095f5399c63c43279af2dfe8
[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{LyricsVoice} context:
3486 @example
3487  \context LyricsVoice \lyrics @dots{}
3488 @end example
3489
3490 @cindex automatic syllable durations
3491 @cindex @code{\lyricsto}
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{\lyricsto} expression:
3499 @example
3500 \lyricsto @var{name} \new LyricsVoice @dots{} 
3501 @end example
3502
3503 This aligns the lyrics to the notes of the @internalsref{Voice}
3504 context called @var{name}, which has to exist. Therefore, normally
3505 the @code{Voice} is specified first, and then the lyrics are specified
3506 with @code{\lyricsto}. 
3507
3508 For different or more complex orderings, the best way is to setup the
3509 hierarchy of staves and lyrics first, e.g.
3510 @example
3511 \context ChoirStaff \notes <<
3512   \context LyricsVoice = sopranoLyrics @{ s1 @}
3513   \context Voice = soprano @{ @emph{music} @}
3514   \context LyricsVoice = tenor @{ s1 @}
3515   \context Voice = tenorLyrics @{ @emph{music} @}
3516 >>
3517 @end example
3518 and then combine the appropriate melodies and lyric lines:
3519 @example
3520   \lyricsto "soprano" \new LyricsVoice @emph{the lyrics}
3521 @end example
3522
3523 An example is in @inputfileref{input/template,satb.ly}.
3524
3525 When multiple stanzas are put on the same melody, it can happen that
3526 two stanzas have melismata in different locations. This can be
3527 remedied by switching off melismata for one
3528 @internalsref{LyricsVoice}. This is achieved by setting
3529 the @code{ignoreMelismata} property to @code{#t}. An example is shown
3530 in @inputfileref{input/regression,lyric-combine-new.ly}.
3531
3532
3533 @cindex SATB
3534 @cindex choral score
3535
3536 A complete example of a SATB score setup is in the file
3537 @inputfileref{input/template,satb.ly}.
3538
3539 @seealso
3540
3541 Internals: @internalsref{LyricCombineMusic}, @internalsref{Lyrics}
3542
3543 Examples: @inputfileref{input/template,satb.ly},
3544 @inputfileref{input/regression,lyric-combine-new.ly}.
3545  
3546 @refbugs
3547
3548 @code{\lyricsto} is not automatic enough: melismata are not detected
3549 automatically, and melismata are not stopped when they hit a rest.
3550
3551
3552 @node More stanzas
3553 @subsection More stanzas
3554
3555 @cindex phrasing, in lyrics
3556
3557
3558 The lyrics should be aligned with the note heads of the melody. To
3559 achieve this, each line of lyrics should be marked to correspond with
3560 the melodic line.
3561
3562 To this end, give the @internalsref{Voice} context an identity:
3563 @example
3564 \context Voice = duet @{
3565      \time 3/4
3566      g2 e4 a2 f4 g2.  @}
3567 @end example
3568
3569 Then set the @internalsref{LyricsVoice} contexts to names starting with
3570 that identity followed by a dash.  In the preceding example, the
3571 @internalsref{Voice} identity is @code{duet}, so the identities of the
3572 @internalsref{LyricsVoice}s are marked @code{duet-1} and @code{duet-2}:
3573 @example
3574   \context LyricsVoice = "duet-1" @{
3575     Hi, my name is bert. @}
3576   \context LyricsVoice = "duet-2" @{
3577     Ooooo, ch\'e -- ri, je t'aime. @}
3578 @end example
3579
3580 The complete example is shown here:
3581 @lilypond[singleline,verbatim]
3582 \score {
3583   << \notes \relative c'' \context Voice = duet { \time 3/4
3584      g2 e4 a2 f4 g2.  }
3585   \lyrics << \lyricsto "duet" \new LyricsVoice {
3586     \property LyricsVoice . stanza = "1"
3587     Hi, my name is bert. }
3588   \lyricsto "duet" \new LyricsVoice {
3589     \property LyricsVoice . stanza = "2" 
3590     Ooooo, ch\'e -- ri, je t'aime. }
3591   >> >>
3592 }
3593 @end lilypond
3594
3595 @cindex stanza number
3596 @cindex singer's names
3597 @cindex name of singer 
3598
3599 Stanza numbers can be added by setting @code{LyricsVoice.stanza}, e.g.
3600
3601 @example
3602     \property LyricsVoice . stanza = "Bert"
3603     @dots{}
3604     \property LyricsVoice . stanza = "Ernie" 
3605 @end example
3606
3607 Notice how dots are surrounded with spaces in @code{\lyrics} mode, to
3608 prevent @code{LyricsVoice.stanza} being interpreted as a single
3609 string.
3610
3611 Names of the singers should be added using @code{LyricsVoice
3612 . instrument} and @code{LyricsVoice . instr}, analogous to instrument
3613 annotations for staves.
3614  
3615 To make empty spaces in lyrics, use @code{\skip}.
3616
3617
3618
3619 @refbugs
3620
3621 @cindex ambiguity
3622
3623 Input for lyrics introduces a syntactical ambiguity:
3624  
3625 @example 
3626 foo = bar 
3627 @end example 
3628
3629 @noindent
3630 is interpreted as assigning a string identifier @code{\foo} such that
3631 it contains @code{"bar"}.  However, it could also be interpreted as
3632 making or a music identifier @code{\foo} containing the syllable
3633 `bar'.  The force the latter interpretation, use
3634 @example
3635   foo = \lyrics bar4
3636 @end example
3637
3638
3639 @node Ambitus
3640 @subsection Ambitus
3641 @cindex ambitus
3642
3643 The term @emph{ambitus} (plural: ambituses) denotes a range of pitches
3644 for a given voice in a part of music.  It also may denote the pitch
3645 range that a musical instrument is capable of playing.  Most musical
3646 instruments have their ambitus standardized (or at least there is
3647 agreement upon the minimal ambitus of a particular type of
3648 instrument), such that a composer or arranger of a piece of music can
3649 easily meet the ambitus constraints of the targeted instrument.
3650 However, the ambitus of the human voice depends on individual
3651 physiological state, including education and training of the voice.
3652 Therefore, a singer potentially has to check for each piece of music
3653 if the ambitus of that piece meets his individual capabilities.  This
3654 is why the ambitus of a piece may be of particular value to vocal
3655 performers.
3656
3657 The ambitus is typically notated on a per-voice basis at the very
3658 beginning of a piece, e.g. nearby the initial clef or time signature of
3659 each staff.  The range is graphically specified by two noteheads, that
3660 represent the minimum and maximum pitch.  Some publishers use a textual
3661 notation: they put the range in words in front of the corresponding
3662 staff.  LilyPond only supports the graphical ambitus notation.
3663
3664 To apply, add the @internalsref{Ambitus_engraver} to the
3665 @internalsref{Voice} context, i.e.
3666
3667 @example
3668   \paper @{
3669     \translator @{
3670       \VoiceContext
3671       \consists Ambitus_engraver
3672     @}
3673   @}
3674 @end example
3675
3676 This results in the following output:
3677 @lilypond[singleline]
3678 upper = \notes \relative c {
3679   \clef "treble"
3680   \key c \minor
3681   as'' c e2 bes f cis d4 e f2 g
3682 }
3683 lower = \notes \relative c {
3684   \clef "treble"
3685   \key e \major
3686   e'4 b g a c es fis a cis b a g f e d2
3687 }
3688 \score {
3689   \context ChoirStaff {
3690     <<
3691       \new Staff { \upper }
3692       \new Staff { \lower }
3693     >>
3694   }
3695   \paper {
3696     \translator {
3697       \StaffContext
3698       \consists Ambitus_engraver
3699     }
3700   }
3701 }
3702 @end lilypond
3703
3704 If you have multiple voices in a single staff, and you want a single
3705 ambitus per staff rather than per each voice, then add the
3706 @internalsref{Ambitus_engraver} to the @internalsref{Staff} context
3707 rather than to the @internalsref{Voice} context.
3708
3709 It is possible to tune individual ambituses for multiple voices on a
3710 single staff, for example by erasing or shifting them horizontally. An
3711 example is in @inputfileref{input/test,ambitus-mixed.ly}
3712
3713 @seealso
3714
3715 Internals: @internalsref{Ambitus}
3716
3717 Examples:  @inputfileref{input/regression,ambitus.ly},
3718 @inputfileref{input/test,ambitus-mixed.ly}.
3719
3720 @refbugs
3721
3722 There is no collision handling in the case of multiple per-voice
3723 ambitus.
3724
3725 @node Tablatures
3726 @section Tablatures
3727
3728 Tablature notation is used for notating music for plucked string
3729 instruments.  It notates pitches not by using note heads, but by
3730 indicating on which string and fret a note must be played.  LilyPond
3731 offers limited support for tablature.
3732
3733 @menu
3734 * Tablatures basic::            
3735 * Non-guitar tablatures::       
3736 @end menu
3737
3738 @node Tablatures basic
3739 @subsection Tablatures basic
3740 @cindex Tablatures basic
3741
3742 The string number associated to a note is given as a backslash
3743 followed by a number, e.g. @code{c4\3} for a C quarter on the third
3744 string. By default, string 1 is the highest one, and the tuning
3745 defaults to the standard guitar tuning (with 6 strings).  The notes
3746 are printed as tablature, by using @internalsref{TabStaff} and
3747 @internalsref{TabVoice} contexts:
3748
3749 @lilypond[fragment,verbatim]
3750 \notes \context TabStaff  {
3751  a,4\5 c'\2 a\3 e'\1
3752  e\4 c'\2 a\3 e'\1
3753 }
3754 @end lilypond
3755
3756 @cindex minimumFret
3757
3758 When no string is specified, the first string that does not give a
3759 fret number less than @code{minimumFret} is selected. The default
3760 value for @code{minimumFret} is 0:
3761
3762
3763 @example
3764 e8 fis gis a b cis' dis' e'
3765 \property TabStaff.minimumFret = #8
3766 e8 fis gis a b cis' dis' e'
3767 @end example
3768 @lilypond[noindent]
3769 frag = \notes {
3770     \key e \major
3771     e8 fis gis a b cis' dis' e'
3772     \property TabStaff.minimumFret = #8
3773     e8 fis gis a b cis' dis' e'
3774 }
3775 \score {
3776   \context StaffGroup <<
3777     \context Staff { \clef "G_8" \frag }
3778     \context TabStaff { \frag }
3779   >>
3780 }
3781 @end lilypond
3782
3783 @seealso
3784
3785 Internals: @internalsref{TabStaff}, @internalsref{TabVoice}, and
3786 @internalsref{StringNumberEvent}.
3787
3788 @refbugs
3789
3790 Chords are not handled in a special way, and hence the automatic
3791 string selector may easily select the same string to two notes in a
3792 chord.
3793
3794
3795 @node Non-guitar tablatures
3796 @subsection Non-guitar tablatures
3797 @cindex Non-guitar tablatures
3798
3799 You can change the number of strings, by setting the number of lines
3800 in the @internalsref{TabStaff}. 
3801
3802 You can change the tuning of the strings. A string tuning is given as
3803 a Scheme list with one integer number for each string, the number
3804 being the pitch (measured in semitones relative to central C) of an
3805 open string.  The numbers specified for @code{stringTuning} are the
3806 numbers of semitones to subtract or add, starting the specified pitch
3807 by default middle C, in string order. Thus, the notes are e, a, d, and
3808 g:
3809
3810 @lilypond[fragment,verbatim]
3811   \context TabStaff <<
3812     \property TabStaff.stringTunings =  #'(-5 -10 -15 -20)
3813     
3814     \notes {
3815       a,4 c' a e' e c' a e'
3816     }
3817   >> 
3818 @end lilypond
3819
3820 It is possible to change the Scheme function to format the tablature
3821 note text. The default is @code{fret-number-tablature-format}, which
3822 uses the fret number. For instruments that do not use this notation,
3823 you can create a special tablature formatting function. This function
3824 takes three argument: string number, string tuning and note pitch.
3825
3826 @refbugs
3827
3828 No guitar special effects have been implemented.
3829
3830
3831
3832 @node Chord names
3833 @section Chord names
3834 @cindex Chords
3835
3836 LilyPond has support for both printing chord names.  Chords may be
3837 entered in musical chord notation, i.e. @code{< .. >}, but they can
3838 also be entered by name. Internally, the chords are represented as a
3839 set of pitches, so they can be transposed:
3840
3841
3842 @lilypond[verbatim,singleline]
3843 twoWays = \notes \transpose c c' {
3844   \chords {
3845     c1 f:sus4 bes/f
3846   }
3847   <c e g>
3848   <f bes c'>
3849   <f bes d'>
3850   }
3851
3852 \score {
3853    << \context ChordNames \twoWays
3854      \context Voice \twoWays >> }
3855 @end lilypond
3856
3857 This example also shows that the chord printing routines do not try to
3858 be intelligent. The last chord (@code{f bes d}) is not interpreted as
3859 an inversion.
3860
3861
3862 @menu
3863 * Chords mode::                 
3864 * Printing chord names::        
3865 @end menu
3866
3867
3868 @node Chords mode
3869 @subsection Chords mode
3870 @cindex Chords mode
3871
3872 Chord mode is a mode where you can input sets of pitches using common
3873 names.  It is introduced by the keyword @code{\chords}.
3874 In chords mode,  a  chord is entered by the root, which is entered
3875 like a common pitch:
3876 @lilypond[fragment,verbatim,quote, relative=1]
3877 \chords { es4.  d8 c2 }
3878 @end lilypond
3879 @cindex chord entry
3880 @cindex chord mode
3881
3882 Other chords may be entered by suffixing a colon, and introducing a
3883 modifier, and optionally, a number:
3884 @c
3885 @lilypond[fragment,verbatim,quote]
3886 \chords { e1:m e1:7 e1:m7  }
3887 @end lilypond
3888 The first number following the root is taken to be the `type' of the
3889 chord, thirds are added to the root until it reaches the specified
3890 number:
3891 @lilypond[fragment,verbatim]
3892  \chords { c:3 c:5 c:6 c:7 c:8 c:9 c:10 c:11 }
3893 @end lilypond
3894
3895 @cindex root of chord
3896 @cindex additions, in chords
3897 @cindex removals, in  chords
3898
3899 More complex chords may also be constructed  adding separate steps
3900 to a chord. Additions are added after the  number following
3901 the colon, and are separated by dots:
3902 @c
3903 @lilypond[verbatim,fragment,quote]
3904   \chords { c:5.6 c:3.7.8 c:3.6.13 }
3905 @end lilypond
3906 Chord steps can be  altered by suffixing a @code{-} or @code{+} sign
3907 to the number:
3908 @lilypond[verbatim,fragment,quote]
3909   \chords { c:7+ c:5+.3-  c:3-.5-.7- }
3910 @end lilypond
3911 Removals are specified similarly, and are introduced by a caret.  They
3912 must come after the additions:
3913 @lilypond[verbatim,fragment]
3914   \chords { c^3 c:7^5 c:9^3.5 }
3915 @end lilypond
3916
3917 Modifiers can be used to change pitches. The following modifiers are
3918 supported:
3919 @table @code
3920 @item m
3921   is the minor chord. This modifier lowers the 3rd and (if present) the 7th step.
3922 @item dim
3923   is the   diminished chord. This modifier lowers the 3rd, 5th and (if present)
3924   the 7th step.
3925 @item aug
3926   is the augmented chord. This modifier raises the 5th step.
3927 @item maj
3928   is the major 7th chord. This modifier raises the 7th step if present.  
3929 @item sus
3930   is the suspended 4th or 2nd. This modifier removes the 3rd
3931 step. Append either @code{2} or @code{4} to add the 2nd or 4th step to
3932 the chord.
3933 @end table
3934 Modifiers can be mixed with additions:
3935 @lilypond[verbatim,fragment]
3936   \chords { c:sus4 c:7sus4 c:dim7 c:m6 } 
3937 @end lilypond
3938
3939 @cindex modifiers, in chords. 
3940 @cindex @code{aug}
3941 @cindex @code{dim}
3942 @cindex @code{maj}
3943 @cindex @code{sus}
3944 @cindex @code{m}
3945
3946 Since an unaltered 11 does not sound good when combined with an
3947 unaltered 13, the 11 is removed in this case (unless it is added
3948 explicitly):
3949 @c
3950 @lilypond[fragment,verbatim]
3951   \chords { c:13 c:13.11 c:m13 }
3952 @end lilypond 
3953
3954 @cindex @code{/}
3955
3956 An inversion (putting one pitch of the chord on the bottom), as well
3957 as bass notes, can be specified by appending
3958 @code{/}@var{pitch} to the chord:
3959 @lilypond[fragment,verbatim,center]
3960    \chords { c1 c/g c/f }
3961 @end lilypond 
3962 @cindex @code{/+}
3963
3964 A bass note can be added instead of transposed out of the chord,
3965 by using  @code{/+}@var{pitch}.
3966
3967 @lilypond[fragment,verbatim,center]
3968    \chords { c1 c/+g c/+f }
3969 @end lilypond 
3970
3971 Chords is a mode similar to @code{\lyrics}, @code{\notes} etc.  Most
3972 of the commands continue to work, for example, @code{r} and
3973 @code{\skip} can be used to insert rests and spaces, and
3974 @code{\property} may be used to change various settings.
3975
3976
3977
3978 @refbugs
3979
3980 Each step can only be present in a chord once.  The following
3981 simply produces the augmented chord, since @code{5+} is interpreted
3982 last:
3983 @cindex clusters
3984 @lilypond[verbatim,fragment]
3985   \chords { c:5.5-.5+ }
3986 @end lilypond
3987
3988
3989 @node Printing chord names
3990 @subsection Printing chord names
3991
3992 @cindex printing chord names
3993 @cindex chord names
3994 @cindex chords
3995
3996 For displaying printed chord names, use the @internalsref{ChordNames} context.
3997 The chords may be entered either using the notation
3998 described above, or directly using @code{<} and @code{>}:
3999
4000 @lilypond[verbatim,singleline]
4001 scheme = \notes {
4002   \chords {a1 b c} <d' f' a'>  <e' g' b'>
4003 }
4004 \score {
4005   \notes<<
4006     \context ChordNames \scheme
4007     \context Staff \scheme
4008   >>
4009 }
4010 @end lilypond
4011
4012 You can make the chord changes stand out by setting
4013 @internalsref{ChordNames}.@code{chordChanges} to true.  This will only
4014 display chord names when there is a change in the chords scheme and at
4015 the start of a new line:
4016
4017 @lilypond[verbatim, linewidth=9cm]
4018 scheme = \chords {
4019   c1:m c:m \break c:m c:m d
4020 }
4021 \score {
4022   \notes <<
4023     \context ChordNames {
4024         \property ChordNames.chordChanges = ##t
4025         \scheme }
4026     \context Staff \transpose c c' \scheme
4027   >>
4028 }
4029 @end lilypond
4030
4031 The default chord name layout is a system for Jazz music, proposed by
4032 Klaus Ignatzek (see @ref{Literature list}).  It can be tuned through the
4033 following properties:
4034
4035 @table @code
4036 @cindex chordNameExceptions
4037 @item chordNameExceptions
4038 This is a list that contains the chords that have special formatting.
4039 For an example, see
4040 @inputfileref{input/regression,chord-name-exceptions.ly}.
4041 @cindex exceptions, chord names.
4042
4043
4044 @cindex majorSevenSymbol
4045 @item majorSevenSymbol
4046 This property contains the markup object used for the 7th step, when
4047 it is major. Predefined options are @code{whiteTriangleMarkup} and
4048 @code{blackTriangleMarkup}.  See
4049 @inputfileref{input/regression,chord-name-major7.ly} for an example.
4050
4051 @cindex chordNameSeparator
4052 @item chordNameSeparator
4053 Different parts of a chord name are normally separated by a
4054 slash. By setting @code{chordNameSeparator}, you can specify other
4055 separators, e.g.
4056 @lilypond[fragment,verbatim]
4057 \context ChordNames \chords {
4058       c:7sus4
4059       \property ChordNames.chordNameSeparator
4060         = \markup { \typewriter "|" }
4061       c:7sus4 }
4062 @end lilypond
4063
4064 @cindex chordRootNamer
4065 @item chordRootNamer
4066 The root of a chord is usually printed as a letter with an optional
4067 alteration. The transformation from pitch to letter is done by this
4068 function.  Special note names (for example, the German ``H'' for a
4069 B-chord) can be produced by storing a new function in this property.
4070
4071 The pre-defined variables @code{\germanChords},
4072 @code{\semiGermanChords} set these variables.
4073
4074
4075 @cindex chordNoteNamer
4076 @item chordNoteNamer
4077 The default is to print single pitch, e.g. the bass note, using the
4078 @code{chordRootNamer}.  The @code{chordNoteNamer} property can be set
4079 to a specialized function to change this behavior.  For example, the
4080 base can be printed in lower case.
4081
4082 @end table
4083
4084
4085 There are also two other chord name schemes implemented: an alternate
4086 Jazz chord notation, and a systematic scheme called Banter chords. The
4087 alternate jazz notation is also shown on the chart in @ref{Chord name
4088 chart}.  Turning on these styles is described in the input file
4089 @inputfileref{input/test,chord-names-jazz.ly}.
4090
4091 @cindex Banter
4092 @cindex jazz chords
4093 @cindex chords, jazz  
4094
4095
4096 @refcommands
4097
4098 @cindex @code{\germanChords}
4099 @code{\germanChords}, 
4100 @cindex @code{\semiGermanChords}
4101 @code{\semiGermanChords}.
4102
4103
4104
4105
4106 @seealso
4107
4108 Examples: @inputfileref{input/regression,chord-name-major7.ly},
4109 @inputfileref{input/regression,chord-name-exceptions.ly},
4110 @inputfileref{input/test,chord-names-jazz.ly},
4111 @inputfileref{input/test,chord-names-german.ly}.
4112
4113 Init files: @file{scm/chords-ignatzek.scm}, and @file{scm/chord-entry.scm}.
4114
4115
4116 @refbugs
4117
4118 Chord names are determined solely from the list of pitches. Chord
4119 inversions are not identified, and neither are added bass notes. This
4120 may result in strange chord names when chords are entered with the
4121 @code{< .. >} syntax.
4122
4123
4124
4125
4126 @node Orchestral music
4127 @section Orchestral music
4128
4129 @cindex  Writing parts
4130
4131 Orchestral music involves some special notation, both in the full
4132 score and the individual parts. This section explains how to tackle
4133 some common problems in orchestral music.
4134
4135
4136
4137 @menu
4138 * Multiple staff contexts::     
4139 * Rehearsal marks::             
4140 * Bar numbers::                 
4141 * Instrument names::            
4142 * Transpose::                   
4143 * Multi measure rests::         
4144 * Automatic part combining::    
4145 * Hiding staves::               
4146 * Different editions from one source::  
4147 * Sound output for transposing instruments::  
4148 @end menu
4149
4150 @node Multiple staff contexts
4151 @subsection Multiple staff contexts
4152
4153 Polyphonic scores consist of many staves. These staves can be
4154 constructed in three different ways:
4155 @itemize @bullet
4156 @item The group is started with a brace at the left. This is done with the
4157 @internalsref{GrandStaff} context.
4158 @item The group is started with a bracket. This is done with the
4159 @internalsref{StaffGroup} context
4160 @item The group is  started with a vertical line. This is the default
4161 for the score.
4162 @end itemize
4163
4164 @cindex Staff, multiple
4165 @cindex bracket, vertical
4166 @cindex brace, vertical
4167 @cindex grand staff
4168 @cindex staff group
4169
4170
4171
4172
4173 @node Rehearsal marks
4174 @subsection Rehearsal marks
4175 @cindex Rehearsal marks
4176 @cindex mark
4177 @cindex @code{\mark}
4178
4179 To print a  rehearsal mark, use the @code{\mark} command:
4180 @lilypond[fragment,verbatim]
4181 \relative c'' {
4182   c1 \mark "A"
4183   c1 \mark "B"
4184   c1 \mark "12"
4185   c1 \mark "13"
4186   c1
4187 }
4188 @end lilypond
4189
4190 The mark is incremented automatically if you use @code{\mark
4191 \default}. The value to use is stored in the property
4192 @code{rehearsalMark} is used and automatically incremented.
4193
4194 @cindex coda on bar line
4195 @cindex segno on bar line
4196 @cindex fermata on bar line
4197 @cindex bar lines, symbols on
4198
4199 The @code{\mark} command can also be used to put signs like coda,
4200 segno and fermatas on a barline. Use @code{\markup} to
4201 to access the appropriate symbol:
4202
4203 @lilypond[fragment,verbatim,relative=1]
4204   c1 \mark \markup { \musicglyph #"scripts-ufermata" }
4205   c1
4206 @end lilypond
4207
4208 In this case, during line breaks,
4209 marks must also be printed at the end of the line, and not at the
4210 beginning. Use the following to force that behavior:
4211 @example
4212 \property Score.RehearsalMark \override
4213   #'break-visibility = #begin-of-line-invisible
4214 @end example
4215
4216 See @inputfileref{input/test,boxed-molecule.ly} for putting boxes
4217 around the marks.
4218
4219 @cindex fermatas
4220 @cindex coda
4221 @cindex segno
4222 @cindex barlines, putting symbols on 
4223
4224 @seealso
4225
4226 Internals: @internalsref{MarkEvent}, @internalsref{RehearsalMark}
4227
4228 Examples: @inputfileref{input/test,boxed-molecule.ly}.
4229
4230
4231 @node Bar numbers
4232 @subsection Bar numbers
4233
4234
4235 @cindex bar numbers
4236 @cindex measure numbers
4237 @cindex currentBarNumber
4238
4239 Bar numbers are printed by default at the start of the line.  The
4240 number itself is stored in the 
4241 @code{currentBarNumber} property,
4242 which is normally updated automatically for every measure.
4243
4244 Bar numbers can be typeset at regular intervals instead of at the
4245 beginning of each line. This is illustrated in the following example,
4246 whose source is available as
4247 @inputfileref{input/test,bar-number-regular-interval.ly}:
4248
4249 @lilypondfile[notexidoc]{bar-number-regular-interval.ly}
4250
4251
4252 @seealso
4253
4254 Internals: @internalsref{BarNumber}.
4255
4256 Examples: @inputfileref{input/test,bar-number-every-five-reset.ly},
4257 and @inputfileref{input/test,bar-number-regular-interval.ly}.
4258
4259 @refbugs
4260
4261 Bar numbers can collide with the @internalsref{StaffGroup} bracket, if
4262 there is one at the top. To solve this, the
4263 @code{padding} property of @internalsref{BarNumber} can be
4264 used to position the number correctly.
4265
4266 @node Instrument names
4267 @subsection Instrument names
4268
4269 In an orchestral score, instrument names are printed left side of the
4270 staves.
4271
4272 This can be achieved by setting @internalsref{Staff}.@code{instrument}
4273 and @internalsref{Staff}.@code{instr}. This will print a string before
4274 the start of the staff. For the first start, @code{instrument} is
4275 used, for the next ones @code{instr} is used:
4276
4277 @quotation
4278 @lilypond[verbatim,singleline]
4279   \property Staff.instrument = "ploink " { c''4 }  
4280 @end lilypond
4281 @end quotation
4282
4283 You can also use markup texts to construct more complicated instrument
4284 names:
4285
4286 @quotation
4287 @lilypond[fragment,verbatim,singleline]
4288   \notes {
4289     \property Staff.instrument = \markup {
4290         \column < "Clarinetti"
4291           { "in B"
4292             \smaller \musicglyph #"accidentals--1"
4293           }
4294           >
4295      }
4296      { c''1 }
4297   }
4298 @end lilypond
4299 @end quotation
4300
4301 @seealso
4302
4303 Internals: @internalsref{InstrumentName}.
4304
4305 @refbugs
4306
4307 When you put a name on a grand staff or piano staff the width of the
4308 brace is not taken into account. You must add extra spaces to the end of
4309 the name to avoid a collision.
4310
4311 @node Transpose
4312 @subsection Transpose
4313 @cindex Transpose
4314 @cindex transposition of pitches
4315 @cindex @code{\transpose}
4316
4317 A music expression can be transposed with @code{\transpose}.  The syntax
4318 is
4319 @example
4320   \transpose @var{from} @var{to} @var{musicexpr}
4321 @end example
4322
4323 This means that @var{musicexpr} is transposed by the interval
4324 between the pitches @var{from} and @var{to}.
4325 Since @var{from} and @var{to} are pitches, @code{\transpose} must be
4326 inside a @code{\notes} section.
4327
4328 @code{\transpose} distinguishes between enharmonic pitches: both
4329 @code{\transpose c cis} or @code{\transpose c des} will transpose up
4330 half a tone.  The first version will print sharps and the second
4331 version will print flats:
4332
4333 @lilypond[singleline, verbatim]
4334 mus =\notes { \key d \major cis d fis g }
4335 \score { \notes \context Staff {
4336   \clef "F" \mus
4337   \clef "G"
4338   \transpose c g' \mus
4339   \transpose c f' \mus
4340 }}
4341 @end lilypond
4342
4343
4344 @seealso
4345
4346 Internals: @internalsref{TransposedMusic}, and
4347 @internalsref{UntransposableMusic}.
4348
4349 @refbugs
4350
4351 If you want to use both @code{\transpose} and @code{\relative}, then
4352 you must put @code{\transpose} outside of @code{\relative}, since
4353 @code{\relative} will have no effect music that appears inside a
4354 @code{\transpose}.
4355
4356
4357
4358
4359 @node Multi measure rests
4360 @subsection Multi measure rests
4361 @cindex multi measure rests
4362 @cindex Rests, multi measure
4363
4364 @cindex @code{R}
4365
4366 Multi measure rests are entered using `@code{R}'. It is specifically
4367 meant for full bar rests and for entering parts: the rest can expand
4368 to fill a score with rests, or it can be printed as a single
4369 multimeasure rest. This expansion is controlled by the property
4370 @code{Score.skipBars}. If this is set to true, empty measures will not
4371 be expanded, and the appropriate number is added automatically:
4372
4373 @lilypond[fragment,verbatim]
4374  \time 4/4 r1 | R1 | R1*2
4375  \property Score.skipBars = ##t R1*17  R1*4
4376 @end lilypond
4377
4378 The @code{1} in @code{R1} is similar to the duration notation used for
4379 notes. Hence, for time signatures other than 4/4, you must enter other
4380 durations.  This can be done with augmentation dots or fractions:
4381
4382 @lilypond[fragment,verbatim]
4383  \property Score.skipBars = ##t
4384  \time 3/4
4385   R2. | R2.*2
4386  \time 13/8
4387  R1*13/8
4388  R1*13/8*12
4389 @end lilypond
4390
4391 An @code{R} spanning a single measure is printed as either a whole rest
4392 or a breve, centered in the measure regardless of the time signature.
4393
4394 @cindex text on multi-measure rest
4395 @cindex script on multi-measure rest
4396 @cindex fermata on multi-measure rest
4397
4398 Texts can be added to multi-measure rests by using the
4399 @var{note}-@code{markup} syntax (see @ref{Text markup}).  In this case, the number is
4400 replaced. If you need both texts and the number, you must add the
4401 number by hand. A variable (@code{\fermataMarkup}) is provided for
4402 adding fermatas:
4403
4404
4405 @lilypond[verbatim,fragment]
4406   \time 3/4
4407   R2._\markup { "Ad lib" }
4408   R2.^\fermataMarkup
4409 @end lilypond
4410
4411 If you want to have a text on the left end of a multi-measure rest,
4412 attach the text to a zero-length skip note, i.e.
4413
4414 @example
4415   s1*0^"Allegro"
4416   R1*4 
4417 @end example
4418
4419
4420 @cindex whole rests for a full measure 
4421
4422 @seealso
4423
4424 Internals: @internalsref{MultiMeasureRestEvent},
4425 @internalsref{MultiMeasureTextEvent},
4426 @internalsref{MultiMeasureRestMusicGroup}, and
4427 @internalsref{MultiMeasureRest}.
4428
4429 The layout object @internalsref{MultiMeasureRestNumber} is for the
4430 default number, and @internalsref{MultiMeasureRestText} for user
4431 specified texts.
4432
4433 @refbugs
4434
4435 It is not possible to use fingerings (e.g. @code{R1-4}) to put numbers
4436 over multi-measure rests.
4437
4438 @cindex condensing rests
4439
4440 There is no way to automatically condense multiple rests into a single
4441 multimeasure rest. Multi measure rests do not take part in rest
4442 collisions.
4443
4444 Be careful when entering multimeasure rests followed by whole
4445 notes. The following will enter two notes lasting four measures each:
4446 @example
4447  R1*4 cis cis 
4448 @end example
4449 When @code{skipBars} is set, then the result will look OK, but the
4450 bar numbering will be off.
4451
4452 @node Automatic part combining
4453 @subsection Automatic part combining
4454 @cindex automatic part combining
4455 @cindex part combiner
4456
4457
4458 Automatic part combining is used to merge two parts of music onto a
4459 staff.  It is aimed at typesetting orchestral scores.  When the two
4460 parts are identical for a period of time, only one is shown.  In
4461 places where the two parts differ, they are typeset as separate
4462 voices, and stem directions are set automatically.  Also, solo and
4463 @emph{a due} parts are identified and can be marked.
4464
4465 @syntax
4466
4467 The syntax for part combining is
4468
4469 @example
4470   \partcombine @var{context} @var{musicexpr1} @var{musicexpr2}
4471 @end example
4472 where the pieces of music @var{musicexpr1} and @var{musicexpr2} will be
4473 combined into one context of type @var{context}.  The music expressions
4474 must be interpreted by contexts whose names should start with @code{one}
4475 and @code{two}.
4476
4477 The following example demonstrates the basic functionality of the part
4478 combiner: putting parts on one staff, and setting stem directions and
4479 polyphony:
4480
4481 @lilypond[verbatim,singleline,fragment]
4482   \context Staff <<
4483     \context Voice=one \partcombine Voice
4484       \context Thread=one \relative c'' {
4485         g a( b) r
4486       }
4487       \context Thread=two \relative c'' {
4488         g r4 r f
4489       }
4490   >>
4491 @end lilypond
4492
4493 The first @code{g} appears only once, although it was
4494 specified twice (once in each part).  Stem, slur and tie directions are
4495 set automatically, depending whether there is a solo or unisono. The
4496 first part (with context called @code{one}) always gets up stems, and
4497 `solo', while the second (called @code{two}) always gets down stems and
4498 `Solo II'.
4499
4500 If you just want the merging parts, and not the textual markings, you
4501 may set the property @var{soloADue} to false:
4502
4503 @lilypond[verbatim,singleline,fragment]
4504   \context Staff <<
4505     \property Staff.soloADue = ##f
4506     \context Voice=one \partcombine Voice
4507       \context Thread=one \relative c'' {
4508         b4 a c g
4509       }
4510       \context Thread=two \relative c'' {
4511         d,2 a4 g'
4512       }
4513   >>
4514 @end lilypond
4515
4516 @seealso
4517
4518 Internals: @internalsref{PartCombineMusic},
4519 @internalsref{Thread_devnull_engraver}, and
4520 @internalsref{Voice_devnull_engraver} and @internalsref{A2_engraver}.
4521
4522 @refbugs
4523
4524 The syntax for naming contexts in inconsistent with the syntax for
4525 combining stanzas.
4526
4527 In @code{soloADue} mode, when the two voices play the same notes on and
4528 off, the part combiner may typeset @code{a2} more than once in a
4529 measure:
4530
4531 @lilypond[fragment,singleline]
4532   \context Staff <<
4533     \context Voice=one \partcombine Voice
4534       \context Thread=one \relative c'' {
4535         c b c b c a c a
4536       }
4537       \context Thread=two \relative c'' {
4538         b b b b f a f a
4539       }
4540   >>
4541 @end lilypond
4542
4543 The part combiner is rather buggy, and it will be replaced by a better
4544 mechanism in the near future.
4545
4546 @cindex @code{Thread_devnull_engraver}
4547 @cindex @code{Voice_engraver}
4548 @cindex @code{A2_engraver}
4549
4550 @node Hiding staves
4551 @subsection Hiding staves
4552
4553 @cindex Frenched scores
4554 @cindex Hiding staves
4555
4556 In orchestral scores, staff lines that only have rests are usually
4557 removed.  This saves some space. This style is called `French Score'.
4558 For @internalsref{Lyrics}, @internalsref{LyricsVoice},
4559 @internalsref{ChordNames} and @internalsref{FiguredBass}, this is
4560 switched on by default.  When these line of these contexts turn out
4561 empty after the line-breaking process, they are removed.
4562
4563 For normal staves, a specialized @internalsref{Staff} context is
4564 available, which does the same: staves containing nothing (or only
4565 multi measure rests) are removed. The context definition is stored in
4566 @code{\RemoveEmptyStaffContext} variable. Observe how the second staff
4567 in this example disappears in the second line:
4568
4569
4570 @lilypond[verbatim]
4571 \score  {
4572   \notes \relative c' <<
4573     \new Staff { e4 f g a \break c1 }
4574     \new Staff { c4 d e f \break R1 }
4575   >>
4576   \paper {
4577     linewidth = 6.\cm 
4578     \translator { \RemoveEmptyStaffContext }
4579   }
4580 }
4581 @end lilypond
4582
4583 The first page shows all staffs in full. If they should be  removed
4584 from  the first page too, set @code{remove-first} to false
4585 in @internalsref{RemoveEmptyVerticalGroup}.
4586
4587 @node Different editions from one source
4588 @subsection Different editions from one source
4589
4590 The @code{\tag} command marks music expressions with a name. These
4591 tagged expressions can be filtered out later.  With this mechanism it
4592 is possible to make different versions of the same music source.
4593
4594 In the following example, we see two versions of a piece of music, one
4595 for the full score, and one with cue notes for the instrumental part:
4596
4597 @example
4598     c1
4599     \relative c' <<
4600         \tag #'part <<
4601           R1 \\
4602           @{
4603               \property Voice.fontSize = #-1
4604               c4_"cue" f2 g4 @} 
4605         >>
4606         \tag #'score R1
4607      >>
4608      c1
4609 @end example
4610
4611 The same can be applied to articulations, texts, etc.: they are
4612 made by prepending
4613 @example
4614         -\tag #@var{your-tag} 
4615 @end example
4616 to an articulation, for example, 
4617 @example
4618     c1-\tag #'part ^4
4619 @end example
4620
4621 This defines a note with a conditional fingering indication.
4622
4623 By applying the @code{remove-tag} function, tagged expressions can be
4624 filtered. For example,
4625 @example
4626 \simultaneous @{
4627         @var{the music}
4628         \apply #(remove-tag 'score) @var{the music}
4629         \apply #(remove-tag 'part) @var{the music}
4630 @}
4631 @end example
4632 would yield
4633
4634 @lilypondfile[notexidoc]{tag-filter.ly}
4635
4636 The argument of the @code{\tag} command should be a symbol, or a list
4637 of symbols, for example,
4638 @example
4639   \tag #'(original-part transposed-part) @dots{}
4640 @end example
4641
4642 @seealso
4643
4644 Examples: @inputfileref{input/regression,tag-filter.ly}
4645
4646
4647 @node Sound output for transposing instruments
4648 @subsection Sound output for transposing instruments
4649
4650 When you want to make a MIDI file from a score containing transposed
4651 and untransposed instruments, you have to instruct LilyPond the pitch
4652 offset (in semitones) for the transposed instruments. This is done
4653 using the @code{transposing} property. It does not affect printed
4654 output:
4655
4656 @cindex @code{transposing}
4657
4658 @example
4659         \property Staff.instrument = #"Cl. in B-flat"
4660         \property Staff.transposing = #-2
4661 @end example
4662
4663
4664 @node Ancient notation
4665 @section Ancient notation
4666
4667 @cindex Vaticana, Editio
4668 @cindex Medicaea, Editio
4669 @cindex hufnagel
4670 @cindex Petrucci
4671 @cindex mensural
4672
4673 @c [TODO: write more comprehensive introduction on ancient notation]
4674
4675 Support for ancient notation is still under heavy development.
4676 Regardless of all of the current limitations (see the bugs section
4677 below for details), it includes features for mensural
4678 notation and Gregorian Chant notation.  There is also limited support
4679 for figured bass notation.
4680
4681 Many graphical objects provide a @code{style} property, see
4682 @ref{Ancient note heads}, @ref{Ancient accidentals}, @ref{Ancient
4683 rests}, @ref{Ancient clefs}, @ref{Ancient flags} and @ref{Ancient time
4684 signatures}.  By manipulating such a grob property, the typographical
4685 appearance of the affected graphical objects can be accomodated for a
4686 specific notation flavour without need for introducing any new
4687 notational concept.
4688
4689
4690 Other aspects of ancient notation can not that easily be expressed as
4691 in terms of just changing a style property of a graphical object.
4692 Therefore, some notational concepts are introduced specifically for
4693 ancient notation, see @ref{Custodes}, @ref{Divisiones},
4694 @ref{Ligatures}, and @ref{Figured bass}.
4695
4696
4697 @menu
4698 * Ancient note heads::          
4699 * Ancient accidentals::         
4700 * Ancient rests::               
4701 * Ancient clefs::               
4702 * Ancient flags::               
4703 * Ancient time signatures::     
4704 * Custodes::                    
4705 * Divisiones::                  
4706 * Ligatures::                   
4707 * Figured bass::                
4708 * Vaticana style contexts::     
4709 @end menu
4710
4711 If this all is way too much of documentation for you, and you just
4712 want to dive into typesetting without worrying too much about the
4713 details on how to customize a context, then you may have a look at the
4714 predefined contexts (see @ref{Vaticana style contexts}).  Use them to
4715 set up predefined style-specific voice and staff contexts, and
4716 directly go ahead with the note entry.
4717
4718 @refbugs
4719
4720 Ligatures need special spacing that has not yet been implemented.  As
4721 a result, there is too much space between ligatures most of the time,
4722 and line breaking often is unsatisfactory.  Also, lyrics do not
4723 correctly align with ligatures.
4724
4725 Accidentals must not be printed within a ligature, but instead need to
4726 be collected and printed in front of it.
4727
4728 Augmentum dots within ligatures are  not handled correctly.
4729
4730
4731 @node Ancient note heads
4732 @subsection Ancient note heads
4733
4734 @cindex note heads
4735
4736 @syntax
4737
4738 For ancient notation, a note head style other than the @code{default}
4739 style may be chosen.  This is accomplished by setting the @code{style}
4740 property of the NoteHead object to the desired value (@code{baroque},
4741 @code{neo_mensural} or @code{mensural}).  The @code{baroque} style
4742 differs from the @code{default} style only in using a square shape for
4743 @code{\breve} note heads.  The @code{neo_mensural} style differs from
4744 the @code{baroque} style in that it uses rhomboidal heads for whole
4745 notes and all smaller durations.  Stems are centered on the note
4746 heads.  This style is in particular useful when transcribing mensural
4747 music, e.g. for the incipit.  The @code{mensural} style finally
4748 produces note heads that mimick the look of note heads in historic
4749 printings of the 16th century.
4750
4751 The following example demonstrates the @code{neo_mensural} style:
4752
4753 @lilypond[fragment,singleline,verbatim]
4754   \property Voice.NoteHead \set #'style = #'neo_mensural
4755   a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
4756 @end lilypond
4757
4758 When typesetting a piece in Gregorian Chant notation, a Gregorian
4759 ligature engraver will automatically select the proper note heads,
4760 such there is no need to explicitly set the note head style.  Still,
4761 the note head style can be set e.g. to @code{vaticana_punctum} to
4762 produce punctum neumes.  Similarly, a mensural ligature engraver is
4763 used to automatically assemble mensural ligatures.  See
4764 @ref{Ligatures} for how ligature engravers work.
4765
4766 @seealso
4767
4768 In this manual:
4769 @ref{Percussion staves} use note head styles of their own that are
4770 frequently used in contemporary music notation.
4771
4772 Examples: @inputfileref{input/regression,note-head-style.ly} gives an
4773 overview over all available note head styles.
4774
4775
4776 @node Ancient accidentals
4777 @subsection Ancient accidentals
4778
4779 @cindex accidentals
4780
4781 @syntax
4782
4783 Use the @code{style} property of grob @internalsref{Accidental} to
4784 select ancient accidentals.   Supported styles are
4785 @code{mensural}, @code{vaticana}, @code{hufnagel} and @code{medicaea}.
4786
4787 @lilypond[singleline,26pt]
4788 \score {
4789     \notes {
4790         \fatText
4791         s
4792         ^\markup {
4793             \column <
4794                 "vaticana" 
4795                 { " " \musicglyph #"accidentals-vaticana-1"
4796                   " " \musicglyph #"accidentals-vaticana0" }
4797             >
4798             \column <
4799                 "medicaea"
4800                 { " " \musicglyph #"accidentals-medicaea-1" }
4801             >
4802             \column <
4803                 "hufnagel"
4804                 { " " \musicglyph #"accidentals-hufnagel-1" }
4805             >
4806             \column <
4807                 "mensural"
4808                 { " " \musicglyph #"accidentals-mensural-1"
4809                   " " \musicglyph #"accidentals-mensural1" }
4810             >
4811         }
4812     }
4813     \paper {
4814         raggedright = ##t 
4815         interscoreline = 1
4816         \translator {
4817             \ScoreContext
4818             \remove "Bar_number_engraver"
4819         }
4820         \translator{
4821             \StaffContext
4822             \remove "Clef_engraver"
4823             \remove "Key_engraver"
4824             \remove "Time_signature_engraver"
4825             \remove "Staff_symbol_engraver"
4826             minimumVerticalExtent = ##f
4827         }
4828     }
4829 }
4830 @end lilypond
4831
4832 As shown, not all accidentals are supported by each style.  When
4833 trying to access an unsupported accidental, LilyPond will switch to a
4834 different style, as demonstrated in
4835 @inputfileref{input/test,ancient-accidentals.ly}.
4836
4837 Similarly to local accidentals, the style of the key signature can be
4838 controlled by the @code{style} property of the
4839 @internalsref{KeySignature} grob.
4840
4841 @seealso
4842
4843 In this manual: @ref{Pitches}, @ref{Chromatic alterations} and
4844 @ref{Accidentals} give a general introduction into the use of
4845 accidentals.  @ref{Key signature} gives a general introduction into
4846 the use of key signatures.
4847
4848 Internals: @internalsref{KeySignature}
4849
4850 Examples: @inputfileref{input/test,ancient-accidentals.ly}.
4851
4852 @node Ancient rests
4853 @subsection Ancient rests
4854
4855 @cindex rests
4856
4857 @syntax
4858
4859 Use the @code{style} property of grob @internalsref{Rest} to select
4860 ancient accidentals.   Supported styles are @code{classical},
4861 @code{neo_mensural} and @code{mensural}.  @code{classical} differs
4862 from the @code{default} style only in that the quarter rest looks like
4863 a horizontally mirrored 8th rest.  The @code{neo_mensural} style suits
4864 well for e.g. the incipit of a transcribed mensural piece of music.
4865 The @code{mensural} style finally mimicks the appearance of rests as
4866 in historic prints of the 16th century.
4867
4868 The following example demonstrates the @code{neo_mensural} style:
4869
4870 @lilypond[fragment,singleline,verbatim]
4871   \property Voice.Rest \set #'style = #'neo_mensural
4872   r\longa r\breve r1 r2 r4 r8 r16
4873 @end lilypond
4874
4875 There are no 32th and 64th rests specifically for the mensural or
4876 neo-mensural style.  Instead, the rests from the default style will be
4877 taken.  See @inputfileref{input/test,rests.ly} for a chart of all
4878 rests.
4879
4880 There are no rests in Gregorian Chant notation; instead, it uses
4881 @ref{Divisiones}.
4882
4883 @seealso
4884
4885 In this manual: @ref{Rests} gives a general introduction into the use of rests.
4886
4887
4888 @node Ancient clefs
4889 @subsection Ancient clefs
4890
4891 @cindex clefs
4892
4893 @syntax
4894
4895 LilyPond supports a variety of clefs, many of them ancient.
4896
4897 The following table shows all ancient clefs that are supported via the
4898 @code{\clef} command.  Some of the clefs use the same glyph, but
4899 differ only with respect to the line they are printed on.  In such
4900 cases, a trailing number in the name is used to enumerate these clefs.
4901 Still, you can manually force a clef glyph to be typeset on an
4902 arbitrary line, as described in @ref{Clef}.  The note printed to the
4903 right side of each clef in the example column denotes the @code{c'}
4904 with respect to that clef.
4905
4906 @multitable @columnfractions  .3 .3 .3 .1
4907
4908 @item
4909 @b{Glyph Name} @tab
4910 @b{Description} @tab
4911 @b{Supported Clefs} @tab
4912 @b{Example}
4913
4914 @item
4915 @code{clefs-neo_mensural_c} @tab
4916 modern style mensural C clef @tab
4917 @code{neo_mensural_c1}, @code{neo_mensural_c2},
4918 @code{neo_mensural_c3}, @code{neo_mensural_c4} @tab
4919 @lilypond[relative 0, notime]
4920 \property Staff.TimeSignature \set #'transparent = ##t
4921 \clef "neo_mensural_c2" c
4922 @end lilypond
4923
4924 @item
4925 @code{clefs-petrucci_c1}
4926 @code{clefs-petrucci_c2}
4927 @code{clefs-petrucci_c3}
4928 @code{clefs-petrucci_c4}
4929 @code{clefs-petrucci_c5}
4930
4931 @tab
4932 petrucci style mensural C clefs, for use  on different  stafflines
4933 (the examples shows the 2nd staffline C clef).
4934
4935 @tab
4936 @code{petrucci_c1}
4937 @code{petrucci_c2}
4938 @code{petrucci_c3}
4939 @code{petrucci_c4}
4940 @code{petrucci_c5}
4941
4942 @tab
4943 @lilypond[relative 0, notime]
4944 \property Staff.TimeSignature \set #'transparent = ##t
4945 \clef "petrucci_c2" c
4946 @end lilypond
4947
4948 @item
4949 @code{clefs-petrucci_f} @tab
4950 petrucci style mensural F clef @tab
4951 @code{petrucci_f} @tab
4952 @lilypond[relative 0, notime]
4953 \property Staff.TimeSignature \set #'transparent = ##t
4954 \clef "petrucci_f" c
4955 @end lilypond
4956
4957 @item
4958 @code{clefs-petrucci_g} @tab
4959 petrucci style mensural G clef @tab
4960 @code{petrucci_g} @tab
4961 @lilypond[relative 0, notime]
4962 \property Staff.TimeSignature \set #'transparent = ##t
4963 \clef "petrucci_g" c
4964 @end lilypond
4965
4966 @item
4967 @code{clefs-mensural_c} @tab
4968 historic style mensural C clef @tab
4969 @code{mensural_c1}, @code{mensural_c2}, @code{mensural_c3},
4970 @code{mensural_c4} @tab
4971 @lilypond[relative 0, notime]
4972 \property Staff.TimeSignature \set #'transparent = ##t
4973 \clef "mensural_c2" c
4974 @end lilypond
4975
4976 @item
4977 @code{clefs-mensural_f} @tab
4978 historic style mensural F clef @tab
4979 @code{mensural_f} @tab
4980 @lilypond[relative 0, notime]
4981 \property Staff.TimeSignature \set #'transparent = ##t
4982 \clef "mensural_f" c
4983 @end lilypond
4984
4985 @item
4986 @code{clefs-mensural_g} @tab
4987 historic style mensural G clef @tab
4988 @code{mensural_g} @tab
4989 @lilypond[relative 0, notime]
4990 \property Staff.TimeSignature \set #'transparent = ##t
4991 \clef "mensural_g" c
4992 @end lilypond
4993
4994 @item
4995 @code{clefs-vaticana_do} @tab
4996 Editio Vaticana style do clef @tab
4997 @code{vaticana_do1}, @code{vaticana_do2}, @code{vaticana_do3} @tab
4998 @lilypond[relative 0, notime]
4999     \property Staff.StaffSymbol \set #'line-count  = #4
5000 \property Staff.TimeSignature \set #'transparent = ##t
5001 \clef "vaticana_do2" c
5002 @end lilypond
5003
5004 @item
5005 @code{clefs-vaticana_fa} @tab
5006 Editio Vaticana style fa clef @tab
5007 @code{vaticana_fa1}, @code{vaticana_fa2} @tab
5008 @lilypond[relative 0, notime]
5009     \property Staff.StaffSymbol \set #'line-count  = #4
5010 \property Staff.TimeSignature \set #'transparent = ##t
5011 \clef "vaticana_fa2" c
5012 @end lilypond
5013
5014 @item
5015 @code{clefs-medicaea_do} @tab
5016 Editio Medicaea style do clef @tab
5017 @code{medicaea_do1}, @code{medicaea_do2}, @code{medicaea_do3} @tab
5018 @lilypond[relative 0, notime]
5019     \property Staff.StaffSymbol \set #'line-count  = #4
5020 \property Staff.TimeSignature \set #'transparent = ##t
5021 \clef "medicaea_do2" c
5022 @end lilypond
5023
5024 @item
5025 @code{clefs-medicaea_fa} @tab
5026 Editio Medicaea style fa clef @tab
5027 @code{medicaea_fa1}, @code{medicaea_fa2} @tab
5028 @lilypond[relative 0, notime]
5029     \property Staff.StaffSymbol \set #'line-count  = #4
5030 \property Staff.TimeSignature \set #'transparent = ##t
5031 \clef "medicaea_fa2" c
5032 @end lilypond
5033
5034 @item
5035 @code{clefs-hufnagel_do} @tab
5036 historic style hufnagel do clef @tab
5037 @code{hufnagel_do1}, @code{hufnagel_do2}, @code{hufnagel_do3} @tab
5038 @lilypond[relative 0, notime]
5039     \property Staff.StaffSymbol \set #'line-count  = #4
5040 \property Staff.TimeSignature \set #'transparent = ##t
5041 \clef "hufnagel_do2" c
5042 @end lilypond
5043
5044 @item
5045 @code{clefs-hufnagel_fa} @tab
5046 historic style hufnagel fa clef @tab
5047 @code{hufnagel_fa1}, @code{hufnagel_fa2} @tab
5048 @lilypond[relative 0, notime]
5049     \property Staff.StaffSymbol \set #'line-count  = #4
5050 \property Staff.TimeSignature \set #'transparent = ##t
5051 \clef "hufnagel_fa2" c
5052 @end lilypond
5053
5054 @item
5055 @code{clefs-hufnagel_do_fa} @tab
5056 historic style hufnagel combined do/fa clef @tab
5057 @code{hufnagel_do_fa} @tab
5058 @lilypond[relative 0, notime]
5059 \property Staff.TimeSignature \set #'transparent = ##t
5060 \clef "hufnagel_do_fa" c
5061 @end lilypond
5062
5063 @end multitable
5064
5065 @c --- This should go somewhere else: ---
5066 @c @item modern style percussion clef (glyph: @code{clefs-percussion})
5067 @c
5068 @c Supported clefs:
5069 @c @code{percussion}
5070 @c
5071 @c @lilypond{\property Staff.TimeSignature \set #'transparent = ##t \clef "percussion" c'}
5072 @c
5073 @c @item modern style tab clef (glyph: @code{clefs-tab})
5074 @c
5075 @c Supported clefs:
5076 @c @code{tab}
5077 @c
5078 @c @lilypond{\context Staff \outputproperty #(make-type-checker 'staff-symbol-interface) #'line-count = #6 \property Staff.TimeSignature \set #'transparent = ##t \clef "tab" c'}
5079
5080 @emph{Modern style} means ``as is typeset in contemporary editions of
5081 transcribed mensural music''.
5082
5083 @emph{Petrucci style} means ``inspired by printings published by the
5084 famous engraver Petrucci (1466-1539)''.
5085
5086 @emph{Historic style} means ``as was typeset or written in historic
5087 editions (other than those of Petrucci)''.
5088
5089 @emph{Editio XXX style} means ``as is/was printed in Editio XXX''.
5090
5091 Petrucci used C clefs with differently balanced left-side vertical
5092 beams, depending on which staffline it is printed.
5093
5094 @seealso
5095
5096 In this manual: for the percussion clef, see @ref{Percussion staves}.
5097 For the @code{TAB} clef, see @ref{Tablatures}.
5098
5099 Internals: for modern clefs, see @ref{Clef}.
5100
5101
5102
5103 @node Ancient flags
5104 @subsection Ancient flags
5105
5106 @cindex flags
5107
5108 @syntax
5109
5110 Use the @code{flag-style} property of grob @internalsref{Stem} to
5111 select ancient flags.  Besides the @code{default} flag style,
5112  only @code{mensural} style is supported:
5113
5114 @lilypond[fragment,singleline,verbatim]
5115   \property Voice.Stem \set #'flag-style = #'mensural
5116   \property Voice.Stem \set #'thickness = #1.0
5117   \property Voice.NoteHead \set #'style = #'mensural
5118   \autoBeamOff
5119   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
5120   c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
5121 @end lilypond
5122
5123 Note that the innermost flare of each mensural flag always is
5124 vertically aligned with a staff line.  If you do not like this
5125 behaviour, you can set the @code{adjust-if-on-staffline} property of
5126 grob @internalsref{Stem} to @code{##f}.  Then, the vertical position
5127 of the end of each flare is different between notes on staff lines and
5128 notes between staff lines:
5129
5130 @lilypond[fragment,singleline]
5131   \property Voice.Stem \set #'flag-style = #'mensural
5132   \property Voice.Stem \set #'thickness = #1.0
5133   \property Voice.Stem \set #'adjust-if-on-staffline = ##f
5134   \property Voice.NoteHead \set #'style = #'mensural
5135   \autoBeamOff
5136   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
5137   c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
5138 @end lilypond
5139
5140 There is no particular flag style for neo-mensural notation.  Hence,
5141 when typesetting e.g. the incipit of a transcibed piece of mensural
5142 music, the default flag style should be used.  There are no flags in
5143 Gregorian Chant notation.
5144
5145
5146 @node Ancient time signatures
5147 @subsection Ancient time signatures
5148
5149 @cindex time signatures
5150
5151 @syntax
5152
5153 There is limited support for mensural time signatures.   The
5154 glyphs are hard-wired to particular time fractions.  In other words,
5155 to get a particular mensural signature glyph with the @code{\time n/m}
5156 command, @code{n} and @code{m} have to be chosen according to the
5157 following table:
5158
5159 @lilypond
5160 \score {
5161     \notes {
5162         \property Score.timing = ##f
5163         \property Score.barAlways = ##t
5164         s_\markup { "$\\backslash$time 4/4" }
5165          ^\markup { "       " \musicglyph #"timesig-neo_mensural4/4" }
5166         s
5167         s_\markup { "$\\backslash$time 2/2" }
5168          ^\markup { "       " \musicglyph #"timesig-neo_mensural2/2" }
5169         s
5170         s_\markup { "$\\backslash$time 6/4" }
5171          ^\markup { "       " \musicglyph #"timesig-neo_mensural6/4" }
5172         s
5173         s_\markup { "$\\backslash$time 6/8" }
5174          ^\markup { "       " \musicglyph #"timesig-neo_mensural6/8" }
5175         \break
5176         s_\markup { "$\\backslash$time 3/2" }
5177          ^\markup { "       " \musicglyph #"timesig-neo_mensural3/2" }
5178         s
5179         s_\markup { "$\\backslash$time 3/4" }
5180          ^\markup { "       " \musicglyph #"timesig-neo_mensural3/4" }
5181         s
5182         s_\markup { "$\\backslash$time 9/4" }
5183          ^\markup { "       " \musicglyph #"timesig-neo_mensural9/4" }
5184         s
5185         s_\markup { "$\\backslash$time 9/8" }
5186          ^\markup { "       " \musicglyph #"timesig-neo_mensural9/8" }
5187         \break
5188         s_\markup { "$\\backslash$time 4/8" }
5189          ^\markup { "       " \musicglyph #"timesig-neo_mensural4/8" }
5190         s
5191         s_\markup { "$\\backslash$time 2/4" }
5192          ^\markup { "       " \musicglyph #"timesig-neo_mensural2/4" }
5193         \break
5194     }
5195     \paper {
5196         indent = 0.0
5197         raggedright = ##t
5198         \translator {
5199             \StaffContext
5200             \remove Staff_symbol_engraver
5201             \remove Clef_engraver
5202             \remove Time_signature_engraver
5203         }
5204     }
5205 }
5206 @end lilypond
5207
5208 Use the @code{style} property of grob @internalsref{TimeSignature} to
5209 select ancient time signatures.  Supported styles are
5210 @code{neo_mensural} and @code{mensural}.  The above table uses the
5211 @code{neo_mensural} style.  This style is appropriate e.g. for the
5212 incipit of transcriptions of mensural pieces.  The @code{mensural}
5213 style mimicks the look of historical printings of the 16th century.
5214
5215 @inputfileref{input/test,time.ly} gives an overview over all available
5216 ancient and modern styles.
5217
5218 @seealso
5219
5220 Internals: @ref{Time signature} gives a general introduction into the use of time
5221 signatures.
5222
5223 @refbugs
5224
5225 Mensural signature glyphs are  mapped to time fractions in a
5226 hard-wired way.  This mapping is sensible, but still arbitrary: given
5227 a mensural time signature, the time fraction represents a modern meter
5228 that usually will be a good choice when transcribing a mensural piece
5229 of music.  For a particular piece of mensural music, however, the
5230 mapping may be unsatisfactory.  In particular, the mapping assumes a
5231 fixed transcription of durations (e.g. brevis = half note in 2/2,
5232 i.e. 4:1).  Some glyphs (such as the alternate glyph for 6/8 meter)
5233 are  not at all accessible through the @code{\time} command.
5234
5235 Mensural time signatures are supported typographically, but not yet
5236 musically.  The internal representation of durations is 
5237 based on a purely binary system; a ternary division such as 1 brevis =
5238 3 semibrevis (tempus perfectum) or 1 semibrevis = 3 minima (cum
5239 prolatione maiori) is not correctly handled: event times in ternary
5240 modes will be badly computed, resulting e.g. in horizontally
5241 misaligned note heads, and bar checks are likely to erroneously fail.
5242
5243 The syntax and semantics of the @code{\time} command for mensural
5244 music is subject to change.
5245
5246 @node Custodes
5247 @subsection Custodes
5248
5249 @cindex custos
5250 @cindex custodes
5251
5252 A @emph{custos} (plural: @emph{custodes}; latin word for `guard') is a
5253 symbol that appears at the end of a staff.  It anticipates the pitch
5254 of the first note(s) of the following line and thus helps the player
5255 or singer to manage line breaks during performance, thus enhancing
5256 readability of a score.
5257
5258 Custodes were frequently used in music notation until the 17th
5259 century.  Nowadays, they have survived only in a few particular forms
5260 of musical notation such as contemporary editions of Gregorian chant
5261 like the @emph{editio vaticana}.  There are different custos glyphs
5262 used in different flavours of notational style.
5263
5264 @syntax
5265
5266 For typesetting custodes, just put a @internalsref{Custos_engraver} into the
5267 @internalsref{Staff} context when declaring the @code{\paper} block,
5268 as shown in the following example:
5269
5270 @example
5271 \paper @{
5272   \translator @{
5273      \StaffContext
5274      \consists Custos_engraver
5275      Custos \override #'style = #'mensural
5276   @}
5277 @}
5278 @end example
5279
5280 The result looks like this:
5281
5282 @lilypond
5283 \score {
5284     \notes {
5285         a'1
5286         \property Staff.Custos \set #'style = #'mensural
5287         \break
5288         g'
5289     }
5290     \paper {
5291         \translator {
5292             \StaffContext
5293             \consists Custos_engraver
5294         }
5295         linewidth = 4.0\cm
5296     }
5297 }
5298 @end lilypond
5299
5300 The custos glyph is selected by the @code{style} property. The styles
5301 supported are @code{vaticana}, @code{medicaea}, @code{hufnagel} and
5302 @code{mensural}.  They are demonstrated in the following fragment:
5303
5304 @lilypond
5305 \score {
5306     \notes {
5307         \fatText
5308         s
5309         ^\markup {
5310             \column <
5311                 "vaticana" 
5312                 { " " \musicglyph #"custodes-vaticana-u0" }
5313             >
5314             \column <
5315                 "medicaea"
5316                 { " " \musicglyph #"custodes-medicaea-u0" }
5317             >
5318             \column <
5319                 "hufnagel"
5320                 { " " \musicglyph #"custodes-hufnagel-u0" }
5321             >
5322             \column <
5323                 "mensural"
5324                 { " " \musicglyph #"custodes-mensural-u0" }
5325             >
5326         }
5327     }
5328     \paper {
5329         raggedright = ##t 
5330         interscoreline = 1
5331         \translator {
5332             \ScoreContext
5333             \remove "Bar_number_engraver"
5334         }
5335         \translator{
5336             \StaffContext
5337             \remove "Clef_engraver"
5338             \remove "Key_engraver"
5339             \remove "Time_signature_engraver"
5340             \remove "Staff_symbol_engraver"
5341             minimumVerticalExtent = ##f
5342         }
5343     }
5344 }
5345 @end lilypond
5346
5347 If the boolean property @code{adjust-if-on-staffline} is set to
5348 @code{#t} (which it is by default), lily typesets slightly different
5349 variants of the custos glyph, depending on whether the custos, is
5350 typeset on or between stafflines.   The glyph will
5351 optically fit well into the staff, with the appendage on the right of
5352 the custos always ending at the same vertical position between two
5353 stafflines regardless of the pitch.  If you set
5354 @code{adjust-if-on-staffline} to @code{#f}, then
5355 a compromise between both forms is  used.
5356
5357 Just like stems can be attached to noteheads in two directions
5358 @emph{up} and @emph{down}, each custos glyph is available with its
5359 appendage pointing either up or down.  If the pitch of a custos is
5360 above a selectable position, the appendage will point downwards; if
5361 the pitch is below this position, the appendage will point upwards.
5362 Use property @code{neutral-position} to select this position.  By
5363 default, it is set to @code{0}, such that the neutral position is the
5364 center of the staff.  Use property @code{neutral-direction} to control
5365 what happens if a custos is typeset on the neutral position itself.
5366 By default, this property is set to @code{-1}, such that the appendage
5367 will point downwards.  If set to @code{1}, the appendage will point
5368 upwards.  Other values such as @code{0} are reserved for future
5369 extensions and should not be used.
5370
5371 @seealso
5372
5373 Internals: @internalsref{Custos}
5374
5375 Examples: @inputfileref{input/regression,custos.ly}.
5376
5377
5378 @node Divisiones
5379 @subsection Divisiones
5380
5381 @cindex divisio
5382 @cindex divisiones
5383 @cindex finalis
5384
5385 A @emph{divisio} (plural: @emph{divisiones}; latin word for
5386 `division') is a staff context symbol that is used to structure
5387 Gregorian music into phrases and sections.  The musical meaning of
5388 @emph{divisio minima}, @emph{divisio maior} and @emph{divisio maxima}
5389 can be characterized as short, medium and long pause, somewhat like
5390 @ref{Breath marks}.  The @emph{finalis} sign not only marks the end of
5391 a chant, but is also frequently used within a single
5392 antiphonal/responsorial chant to mark the end of each section.
5393
5394 @syntax
5395
5396 To use divisiones, include the file @code{gregorian-init.ly}.  It
5397 contains definitions that you can apply by just inserting
5398 @code{\divisioMinima}, @code{\divisioMaior}, @code{\divisioMaxima},
5399 and @code{\finalis} at proper places in the input.  Some editions use
5400 @emph{virgula} or @emph{caesura} instead of divisio minima.
5401 Therefore, @code{gregorian-init.ly} also defines @code{\virgula} and
5402 @code{\caesura}:
5403
5404 @lilypondfile[notexidoc]{divisiones.ly}
5405
5406 @refcommands
5407
5408 @cindex @code{\virgula}
5409 @code{\virgula},
5410 @cindex @code{\caesura}
5411 @code{\caesura},
5412 @cindex @code{\divisioMinima}
5413 @code{\divisioMinima},
5414 @cindex @code{\divisioMaior}
5415 @code{\divisioMaior},
5416 @cindex @code{\divisioMaxima}
5417 @code{\divisioMaxima},
5418 @cindex @code{\finalis}
5419 @code{\finalis}.
5420
5421 @seealso
5422
5423 In this manual: @ref{Breath marks}.
5424
5425 Internals: @internalsref{BreathingSign}, @internalsref{BreathingSignEvent},
5426
5427 Examples: @inputfileref{input/test,divisiones.ly} 
5428
5429 @node Ligatures
5430 @subsection Ligatures
5431
5432 @cindex Ligatures
5433
5434 @c TODO: Should double check if I recalled things correctly when I wrote
5435 @c down the following paragraph by heart.
5436
5437 In musical terminology, a ligature is a coherent graphical symbol that
5438 represents at least two distinct notes.  Ligatures originally appeared
5439 in the manuscripts of Gregorian chant notation roughly since the 9th
5440 century as an allusion to the accent symbols of greek lyric poetry to
5441 denote ascending or descending sequences of notes.  Both, the shape
5442 and the exact meaning of ligatures changed tremendously during the
5443 following centuries: In early notation, ligatures were used for
5444 monophonic tunes (Gregorian chant) and very soon denoted also the way
5445 of performance in the sense of articulation.  With upcoming
5446 multiphony, the need for a metric system arised, since multiple voices
5447 of a piece have to be synchronized some way.  New notation systems
5448 were invented that used the manifold shapes of ligatures to now denote
5449 rhythmical patterns (e.g. black mensural notation, mannered notation,
5450 ars nova).  With the invention of the metric system of the white
5451 mensural notation, the need for ligatures to denote such patterns
5452 disappeared.  Nevertheless, ligatures were still in use in the
5453 mensural system for a couple of decades until they finally disappeared
5454 during the late 16th / early 17th century.  Still, ligatures have
5455 survived in contemporary editions of Gregorian chant such as the
5456 Editio Vaticana from 1905/08.
5457
5458 @syntax
5459
5460 Syntactically, ligatures are simply enclosed by @code{\[} and
5461 @code{\]}.  Some ligature styles (such as Editio Vaticana) may need
5462 additional input syntax specific for this particular type of ligature.
5463 By default, the @internalsref{LigatureBracket} engraver just puts a
5464 square bracket above the ligature:
5465
5466 @lilypond[singleline,verbatim]
5467 \score {
5468     \notes \transpose c c' {
5469         \[ g c a f d' \]
5470         a g f
5471         \[ e f a g \]
5472     }
5473 }
5474 @end lilypond
5475
5476 To select a specific style of ligatures, a proper ligature engraver
5477 has to be added to the @internalsref{Voice} context, as explained in
5478 the following subsections.   Only white mensural ligatures
5479 are supported with certain limitations.  Support for Editio Vaticana
5480 will be added in the future.
5481
5482 @menu
5483 * White mensural ligatures::    
5484 * Gregorian square neumes ligatures::  
5485 @end menu
5486
5487 @node White mensural ligatures
5488 @subsubsection White mensural ligatures
5489
5490 @cindex Mensural ligatures
5491 @cindex White mensural ligatures
5492
5493 There is limited support for white mensural ligatures.  The
5494 implementation is still experimental; it may output strange
5495 warnings or even crash in some cases or produce weird results on more
5496 complex ligatures.
5497
5498 @syntax
5499
5500 To engrave white mensural ligatures, in the paper block the
5501 @internalsref{Mensural_ligature_engraver} has to be put into the
5502 @internalsref{Voice} context, and remove the
5503 @internalsref{Ligature_bracket_engraver}:
5504
5505 @example
5506     \paper @{
5507         \translator @{
5508             \VoiceContext
5509             \remove Ligature_bracket_engraver
5510             \consists Mensural_ligature_engraver
5511         @}
5512     @}
5513 @end example
5514
5515 There is no additional input language to describe the shape of a
5516 white mensural ligature.  The shape is rather determined solely from
5517 the pitch and duration of the enclosed notes.  While this approach may
5518 take a new user a while to get accustomed, it has the great advantage
5519 that the full musical information of the ligature is known internally.
5520 This is not only required for correct MIDI output, but also allows for
5521 automatic transcription of the ligatures.
5522
5523 For example,
5524
5525 @example
5526         \property Score.timing = ##f
5527         \property Score.defaultBarType = "empty"
5528         \property Voice.NoteHead \set #'style = #'neo_mensural
5529         \property Staff.TimeSignature \set #'style = #'neo_mensural
5530         \clef "petrucci_g"
5531         \[ g\longa c\breve a\breve f\breve d'\longa \]
5532         s4
5533         \[ e1 f1 a\breve g\longa \]
5534 @end example
5535 @lilypond[singleline]
5536 \score {
5537     \notes \transpose c c' {
5538         \property Score.timing = ##f
5539         \property Score.defaultBarType = "empty"
5540         \property Voice.NoteHead \set #'style = #'neo_mensural
5541         \property Staff.TimeSignature \set #'style = #'neo_mensural
5542         \clef "petrucci_g"
5543         \[ g\longa c\breve a\breve f\breve d'\longa \]
5544         s4
5545         \[ e1 f1 a\breve g\longa \]
5546     }
5547     \paper {
5548         \translator {
5549             \VoiceContext
5550             \remove Ligature_bracket_engraver
5551             \consists Mensural_ligature_engraver
5552         }
5553     }
5554 }
5555 @end lilypond
5556
5557 Without replacing @internalsref{Ligature_bracket_engraver} with
5558 @internalsref{Mensural_ligature_engraver}, the same music transcribes
5559 to the following:
5560
5561 @lilypond[singleline]
5562 \score {
5563     \notes \transpose c c' {
5564         \property Score.timing = ##f
5565         \property Score.defaultBarType = "empty"
5566         \property Voice.NoteHead \set #'style = #'neo_mensural
5567         \property Staff.TimeSignature \set #'style = #'neo_mensural
5568         \clef "petrucci_g"
5569         \[ g\longa c\breve a\breve f\breve d'\longa \]
5570         s4
5571         \[ e1 f1 a\breve g\longa \]
5572     }
5573 }
5574 @end lilypond
5575
5576
5577 @node Gregorian square neumes ligatures
5578 @subsubsection Gregorian square neumes ligatures
5579
5580 @cindex Square neumes ligatures
5581 @cindex Gregorian square neumes ligatures
5582
5583 Gregorian square neumes notation (following the style of the Editio
5584 Vaticana) is under heavy development, but not yet really usable for
5585 production purposes.  Core ligatures can already be typeset, but
5586 essential issues for serious typesetting are still under development,
5587 such as (among others) horizontal alignment of multiple ligatures,
5588 lyrics alignment and proper accidentals handling.  Still, this section
5589 gives a sneak preview of what Gregorian chant may look like once it
5590 will work.
5591
5592 The following table contains the extended neumes table of the 2nd
5593 volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
5594 1983 by the monks of Solesmes.
5595
5596 @multitable @columnfractions .4 .2 .2 .2
5597
5598 @item
5599 @b{Neuma aut@*Neumarum Elementa} @tab
5600 @b{Figurae@*Rectae} @tab
5601 @b{Figurae@*Liquescentes Auctae} @tab
5602 @b{Figurae@*Liquescentes Deminutae}
5603
5604 @c TODO: \paper block is identical in all of the below examples.
5605 @c Therefore, it should somehow be included rather than duplicated all
5606 @c the time. --jr
5607
5608 @c why not make identifiers in ly/engraver-init.ly? --hwn
5609
5610 @c Because it's just used to typeset plain notes without
5611 @c a staff for demonstration purposes rather than something
5612 @c special of Gregorian chant notation. --jr
5613
5614 @item
5615 @code{1. Punctum}
5616 @tab
5617 @lilypond[noindent, 26pt, nofragment, linewidth=1.5cm]
5618 \include "gregorian-init.ly"
5619 \score {
5620     \notes \transpose c c' {
5621         % Punctum
5622         \[ b \]
5623         \noBreak s^\markup {"a"} \noBreak
5624
5625         % Punctum Inclinatum
5626         \[ \inclinatum b \]
5627         \noBreak s^\markup {"b"}
5628     }
5629     \paper {
5630         interscoreline = 1
5631         \translator {
5632             \ScoreContext
5633             \remove "Bar_number_engraver"
5634         }
5635         \translator {
5636             \StaffContext
5637             \remove "Clef_engraver"
5638             \remove "Key_engraver"
5639             StaffSymbol \set #'transparent = ##t
5640             \remove "Time_signature_engraver"
5641             \remove "Bar_engraver"
5642             minimumVerticalExtent = ##f
5643         }
5644         \translator {
5645             \VoiceContext
5646             \remove Ligature_bracket_engraver
5647             \consists Vaticana_ligature_engraver
5648             NoteHead \set #'style = #'vaticana_punctum
5649             Stem \set #'transparent = ##t
5650         }
5651     }
5652 }
5653 @end lilypond
5654 @tab
5655 @lilypond[noindent, 26pt, nofragment, linewidth=2.5cm]
5656 \include "gregorian-init.ly"
5657 \score {
5658     \notes \transpose c c' {
5659         % Punctum Auctum Ascendens
5660         \[ \auctum \ascendens b \]
5661         \noBreak s^\markup {"c"} \noBreak
5662
5663         % Punctum Auctum Descendens
5664         \[ \auctum \descendens b \]
5665         \noBreak s^\markup {"d"} \noBreak
5666
5667         % Punctum Inclinatum Auctum
5668         \[ \inclinatum \auctum b \]
5669         \noBreak s^\markup {"e"}
5670     }
5671     \paper {
5672         interscoreline = 1
5673         \translator {
5674             \ScoreContext
5675             \remove "Bar_number_engraver"
5676         }
5677         \translator {
5678             \StaffContext
5679             \remove "Clef_engraver"
5680             \remove "Key_engraver"
5681             StaffSymbol \set #'transparent = ##t
5682             \remove "Time_signature_engraver"
5683             \remove "Bar_engraver"
5684             minimumVerticalExtent = ##f
5685         }
5686         \translator {
5687             \VoiceContext
5688             \remove Ligature_bracket_engraver
5689             \consists Vaticana_ligature_engraver
5690             NoteHead \set #'style = #'vaticana_punctum
5691             Stem \set #'transparent = ##t
5692         }
5693     }
5694 }
5695 @end lilypond
5696 @tab
5697 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
5698 \include "gregorian-init.ly"
5699 \score {
5700     \notes \transpose c c' {
5701         % Punctum Inclinatum Parvum
5702         \[ \inclinatum \deminutum b \]
5703         \noBreak s^\markup {"f"}
5704     }
5705     \paper {
5706         interscoreline = 1
5707         \translator {
5708             \ScoreContext
5709             \remove "Bar_number_engraver"
5710         }
5711         \translator {
5712             \StaffContext
5713             \remove "Clef_engraver"
5714             \remove "Key_engraver"
5715             StaffSymbol \set #'transparent = ##t
5716             \remove "Time_signature_engraver"
5717             \remove "Bar_engraver"
5718             minimumVerticalExtent = ##f
5719         }
5720         \translator {
5721             \VoiceContext
5722             \remove Ligature_bracket_engraver
5723             \consists Vaticana_ligature_engraver
5724             NoteHead \set #'style = #'vaticana_punctum
5725             Stem \set #'transparent = ##t
5726         }
5727     }
5728 }
5729 @end lilypond
5730
5731 @item
5732 @code{2. Virga}
5733 @tab
5734 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
5735 \include "gregorian-init.ly"
5736 \score {
5737     \notes \transpose c c' {
5738         % Virga
5739         \[ \virga b \]
5740         \noBreak s^\markup {"g"}
5741     }
5742     \paper {
5743         interscoreline = 1
5744         \translator {
5745             \ScoreContext
5746             \remove "Bar_number_engraver"
5747         }
5748         \translator {
5749             \StaffContext
5750             \remove "Clef_engraver"
5751             \remove "Key_engraver"
5752             StaffSymbol \set #'transparent = ##t
5753             \remove "Time_signature_engraver"
5754             \remove "Bar_engraver"
5755             minimumVerticalExtent = ##f
5756         }
5757         \translator {
5758             \VoiceContext
5759             \remove Ligature_bracket_engraver
5760             \consists Vaticana_ligature_engraver
5761             NoteHead \set #'style = #'vaticana_punctum
5762             Stem \set #'transparent = ##t
5763         }
5764     }
5765 }
5766 @end lilypond
5767 @tab
5768 @tab
5769
5770 @item
5771 @code{3. Apostropha vel Stropha}
5772 @tab
5773 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
5774 \include "gregorian-init.ly"
5775 \score {
5776     \notes \transpose c c' {
5777         % Stropha
5778         \[ \stropha b \]
5779         \noBreak s^\markup {"h"}
5780     }
5781     \paper {
5782         interscoreline = 1
5783         \translator {
5784             \ScoreContext
5785             \remove "Bar_number_engraver"
5786         }
5787         \translator {
5788             \StaffContext
5789             \remove "Clef_engraver"
5790             \remove "Key_engraver"
5791             StaffSymbol \set #'transparent = ##t
5792             \remove "Time_signature_engraver"
5793             \remove "Bar_engraver"
5794             minimumVerticalExtent = ##f
5795         }
5796         \translator {
5797             \VoiceContext
5798             \remove Ligature_bracket_engraver
5799             \consists Vaticana_ligature_engraver
5800             NoteHead \set #'style = #'vaticana_punctum
5801             Stem \set #'transparent = ##t
5802         }
5803     }
5804 }
5805 @end lilypond
5806 @tab
5807 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
5808 \include "gregorian-init.ly"
5809 \score {
5810     \notes \transpose c c' {
5811         % Stropha Aucta
5812         \[ \stropha \auctum b \]
5813         \noBreak s^\markup {"i"}
5814     }
5815     \paper {
5816         interscoreline = 1
5817         \translator {
5818             \ScoreContext
5819             \remove "Bar_number_engraver"
5820         }
5821         \translator {
5822             \StaffContext
5823             \remove "Clef_engraver"
5824             \remove "Key_engraver"
5825             StaffSymbol \set #'transparent = ##t
5826             \remove "Time_signature_engraver"
5827             \remove "Bar_engraver"
5828             minimumVerticalExtent = ##f
5829         }
5830         \translator {
5831             \VoiceContext
5832             \remove Ligature_bracket_engraver
5833             \consists Vaticana_ligature_engraver
5834             NoteHead \set #'style = #'vaticana_punctum
5835             Stem \set #'transparent = ##t
5836         }
5837     }
5838 }
5839 @end lilypond
5840 @tab
5841
5842 @item
5843 @code{4. Oriscus}
5844 @tab
5845 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
5846 \include "gregorian-init.ly"
5847 \score {
5848     \notes \transpose c c' {
5849         % Oriscus
5850         \[ \oriscus b \]
5851         \noBreak s^\markup {"j"}
5852     }
5853     \paper {
5854         interscoreline = 1
5855         \translator {
5856             \ScoreContext
5857             \remove "Bar_number_engraver"
5858         }
5859         \translator {
5860             \StaffContext
5861             \remove "Clef_engraver"
5862             \remove "Key_engraver"
5863             StaffSymbol \set #'transparent = ##t
5864             \remove "Time_signature_engraver"
5865             \remove "Bar_engraver"
5866             minimumVerticalExtent = ##f
5867         }
5868         \translator {
5869             \VoiceContext
5870             \remove Ligature_bracket_engraver
5871             \consists Vaticana_ligature_engraver
5872             NoteHead \set #'style = #'vaticana_punctum
5873             Stem \set #'transparent = ##t
5874         }
5875     }
5876 }
5877 @end lilypond
5878 @tab
5879 @tab
5880
5881 @item
5882 @code{5. Clivis vel Flexa}
5883 @tab
5884 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
5885 \include "gregorian-init.ly"
5886 \score {
5887     \notes \transpose c c' {
5888         % Clivis vel Flexa
5889         \[ b \flexa g \]
5890         s^\markup {"k"}
5891     }
5892     \paper {
5893         interscoreline = 1
5894         \translator {
5895             \ScoreContext
5896             \remove "Bar_number_engraver"
5897         }
5898         \translator {
5899             \StaffContext
5900             \remove "Clef_engraver"
5901             \remove "Key_engraver"
5902             StaffSymbol \set #'transparent = ##t
5903             \remove "Time_signature_engraver"
5904             \remove "Bar_engraver"
5905             minimumVerticalExtent = ##f
5906         }
5907         \translator {
5908             \VoiceContext
5909             \remove Ligature_bracket_engraver
5910             \consists Vaticana_ligature_engraver
5911             NoteHead \set #'style = #'vaticana_punctum
5912             Stem \set #'transparent = ##t
5913         }
5914     }
5915 }
5916 @end lilypond
5917 @tab
5918 @lilypond[noindent, 26pt, nofragment, linewidth=2.0cm]
5919 \include "gregorian-init.ly"
5920 \score {
5921     \notes \transpose c c' {
5922         % Clivis Aucta Descendens
5923         \[ b \flexa \auctum \descendens g \]
5924         \noBreak s^\markup {"l"} \noBreak
5925
5926         % Clivis Aucta Ascendens
5927         \[ b \flexa \auctum \ascendens g \]
5928         \noBreak s^\markup {"m"}
5929     }
5930     \paper {
5931         interscoreline = 1
5932         \translator {
5933             \ScoreContext
5934             \remove "Bar_number_engraver"
5935         }
5936         \translator {
5937             \StaffContext
5938             \remove "Clef_engraver"
5939             \remove "Key_engraver"
5940             StaffSymbol \set #'transparent = ##t
5941             \remove "Time_signature_engraver"
5942             \remove "Bar_engraver"
5943             minimumVerticalExtent = ##f
5944         }
5945         \translator {
5946             \VoiceContext
5947             \remove Ligature_bracket_engraver
5948             \consists Vaticana_ligature_engraver
5949             NoteHead \set #'style = #'vaticana_punctum
5950             Stem \set #'transparent = ##t
5951         }
5952     }
5953 }
5954 @end lilypond
5955 @tab
5956 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
5957 \include "gregorian-init.ly"
5958 \score {
5959     \notes \transpose c c' {
5960         % Cephalicus
5961         \[ b \flexa \deminutum g \]
5962         s^\markup {"n"}
5963     }
5964     \paper {
5965         interscoreline = 1
5966         \translator {
5967             \ScoreContext
5968             \remove "Bar_number_engraver"
5969         }
5970         \translator {
5971             \StaffContext
5972             \remove "Clef_engraver"
5973             \remove "Key_engraver"
5974             StaffSymbol \set #'transparent = ##t
5975             \remove "Time_signature_engraver"
5976             \remove "Bar_engraver"
5977             minimumVerticalExtent = ##f
5978         }
5979         \translator {
5980             \VoiceContext
5981             \remove Ligature_bracket_engraver
5982             \consists Vaticana_ligature_engraver
5983             NoteHead \set #'style = #'vaticana_punctum
5984             Stem \set #'transparent = ##t
5985         }
5986     }
5987 }
5988 @end lilypond
5989
5990 @item
5991 @code{6. Podatus vel Pes}
5992 @tab
5993 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
5994 \include "gregorian-init.ly"
5995 \score {
5996     \notes \transpose c c' {
5997         % Podatus vel Pes
5998         \[ g \pes b \]
5999         s^\markup {"o"}
6000     }
6001     \paper {
6002         interscoreline = 1
6003         \translator {
6004             \ScoreContext
6005             \remove "Bar_number_engraver"
6006         }
6007         \translator {
6008             \StaffContext
6009             \remove "Clef_engraver"
6010             \remove "Key_engraver"
6011             StaffSymbol \set #'transparent = ##t
6012             \remove "Time_signature_engraver"
6013             \remove "Bar_engraver"
6014             minimumVerticalExtent = ##f
6015         }
6016         \translator {
6017             \VoiceContext
6018             \remove Ligature_bracket_engraver
6019             \consists Vaticana_ligature_engraver
6020             NoteHead \set #'style = #'vaticana_punctum
6021             Stem \set #'transparent = ##t
6022         }
6023     }
6024 }
6025 @end lilypond
6026 @tab
6027 @lilypond[noindent, 26pt, nofragment, linewidth=2.0cm]
6028 \include "gregorian-init.ly"
6029 \score {
6030     \notes \transpose c c' {
6031         % Pes Auctus Descendens
6032         \[ g \pes \auctum \descendens b \]
6033         \noBreak s^\markup {"p"} \noBreak
6034
6035         % Pes Auctus Ascendens
6036         \[ g \pes \auctum \ascendens b \]
6037         \noBreak s^\markup {"q"}
6038     }
6039     \paper {
6040         interscoreline = 1
6041         \translator {
6042             \ScoreContext
6043             \remove "Bar_number_engraver"
6044         }
6045         \translator {
6046             \StaffContext
6047             \remove "Clef_engraver"
6048             \remove "Key_engraver"
6049             StaffSymbol \set #'transparent = ##t
6050             \remove "Time_signature_engraver"
6051             \remove "Bar_engraver"
6052             minimumVerticalExtent = ##f
6053         }
6054         \translator {
6055             \VoiceContext
6056             \remove Ligature_bracket_engraver
6057             \consists Vaticana_ligature_engraver
6058             NoteHead \set #'style = #'vaticana_punctum
6059             Stem \set #'transparent = ##t
6060         }
6061     }
6062 }
6063 @end lilypond
6064 @tab
6065 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6066 \include "gregorian-init.ly"
6067 \score {
6068     \notes \transpose c c' {
6069         % Epiphonus
6070         \[ g \pes \deminutum b \]
6071         s^\markup {"r"}
6072     }
6073     \paper {
6074         interscoreline = 1
6075         \translator {
6076             \ScoreContext
6077             \remove "Bar_number_engraver"
6078         }
6079         \translator {
6080             \StaffContext
6081             \remove "Clef_engraver"
6082             \remove "Key_engraver"
6083             StaffSymbol \set #'transparent = ##t
6084             \remove "Time_signature_engraver"
6085             \remove "Bar_engraver"
6086             minimumVerticalExtent = ##f
6087         }
6088         \translator {
6089             \VoiceContext
6090             \remove Ligature_bracket_engraver
6091             \consists Vaticana_ligature_engraver
6092             NoteHead \set #'style = #'vaticana_punctum
6093             Stem \set #'transparent = ##t
6094         }
6095     }
6096 }
6097 @end lilypond
6098
6099 @item
6100 @code{7. Pes Quassus}
6101 @tab
6102 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6103 \include "gregorian-init.ly"
6104 \score {
6105     \notes \transpose c c' {
6106         % Pes Quassus
6107         \[ \oriscus g \pes \virga b \]
6108         s^\markup {"s"}
6109     }
6110     \paper {
6111         interscoreline = 1
6112         \translator {
6113             \ScoreContext
6114             \remove "Bar_number_engraver"
6115         }
6116         \translator {
6117             \StaffContext
6118             \remove "Clef_engraver"
6119             \remove "Key_engraver"
6120             StaffSymbol \set #'transparent = ##t
6121             \remove "Time_signature_engraver"
6122             \remove "Bar_engraver"
6123             minimumVerticalExtent = ##f
6124         }
6125         \translator {
6126             \VoiceContext
6127             \remove Ligature_bracket_engraver
6128             \consists Vaticana_ligature_engraver
6129             NoteHead \set #'style = #'vaticana_punctum
6130             Stem \set #'transparent = ##t
6131         }
6132     }
6133 }
6134 @end lilypond
6135 @tab
6136 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6137 \include "gregorian-init.ly"
6138 \score {
6139     \notes \transpose c c' {
6140         % Pes Quassus Auctus Descendens
6141         \[ \oriscus g \pes \auctum \descendens b \]
6142         s^\markup {"t"}
6143     }
6144     \paper {
6145         interscoreline = 1
6146         \translator {
6147             \ScoreContext
6148             \remove "Bar_number_engraver"
6149         }
6150         \translator {
6151             \StaffContext
6152             \remove "Clef_engraver"
6153             \remove "Key_engraver"
6154             StaffSymbol \set #'transparent = ##t
6155             \remove "Time_signature_engraver"
6156             \remove "Bar_engraver"
6157             minimumVerticalExtent = ##f
6158         }
6159         \translator {
6160             \VoiceContext
6161             \remove Ligature_bracket_engraver
6162             \consists Vaticana_ligature_engraver
6163             NoteHead \set #'style = #'vaticana_punctum
6164             Stem \set #'transparent = ##t
6165         }
6166     }
6167 }
6168 @end lilypond
6169 @tab
6170
6171 @item
6172 @code{8. Quilisma Pes}
6173 @tab
6174 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6175 \include "gregorian-init.ly"
6176 \score {
6177     \notes \transpose c c' {
6178         % Quilisma Pes
6179         \[ \quilisma g \pes b \]
6180         s^\markup {"u"}
6181     }
6182     \paper {
6183         interscoreline = 1
6184         \translator {
6185             \ScoreContext
6186             \remove "Bar_number_engraver"
6187         }
6188         \translator {
6189             \StaffContext
6190             \remove "Clef_engraver"
6191             \remove "Key_engraver"
6192             StaffSymbol \set #'transparent = ##t
6193             \remove "Time_signature_engraver"
6194             \remove "Bar_engraver"
6195             minimumVerticalExtent = ##f
6196         }
6197         \translator {
6198             \VoiceContext
6199             \remove Ligature_bracket_engraver
6200             \consists Vaticana_ligature_engraver
6201             NoteHead \set #'style = #'vaticana_punctum
6202             Stem \set #'transparent = ##t
6203         }
6204     }
6205 }
6206 @end lilypond
6207 @tab
6208 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6209 \include "gregorian-init.ly"
6210 \score {
6211     \notes \transpose c c' {
6212         % Quilisma Pes Auctus Descendens
6213         \[ \quilisma g \pes \auctum \descendens b \]
6214         s^\markup {"v"}
6215     }
6216     \paper {
6217         interscoreline = 1
6218         \translator {
6219             \ScoreContext
6220             \remove "Bar_number_engraver"
6221         }
6222         \translator {
6223             \StaffContext
6224             \remove "Clef_engraver"
6225             \remove "Key_engraver"
6226             StaffSymbol \set #'transparent = ##t
6227             \remove "Time_signature_engraver"
6228             \remove "Bar_engraver"
6229             minimumVerticalExtent = ##f
6230         }
6231         \translator {
6232             \VoiceContext
6233             \remove Ligature_bracket_engraver
6234             \consists Vaticana_ligature_engraver
6235             NoteHead \set #'style = #'vaticana_punctum
6236             Stem \set #'transparent = ##t
6237         }
6238     }
6239 }
6240 @end lilypond
6241 @tab
6242
6243 @item
6244 @code{9. Podatus Initio Debilis}
6245 @tab
6246 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6247 \include "gregorian-init.ly"
6248 \score {
6249     \notes \transpose c c' {
6250         % Pes Initio Debilis
6251         \[ \deminutum g \pes b \]
6252         s^\markup {"w"}
6253     }
6254     \paper {
6255         interscoreline = 1
6256         \translator {
6257             \ScoreContext
6258             \remove "Bar_number_engraver"
6259         }
6260         \translator {
6261             \StaffContext
6262             \remove "Clef_engraver"
6263             \remove "Key_engraver"
6264             StaffSymbol \set #'transparent = ##t
6265             \remove "Time_signature_engraver"
6266             \remove "Bar_engraver"
6267             minimumVerticalExtent = ##f
6268         }
6269         \translator {
6270             \VoiceContext
6271             \remove Ligature_bracket_engraver
6272             \consists Vaticana_ligature_engraver
6273             NoteHead \set #'style = #'vaticana_punctum
6274             Stem \set #'transparent = ##t
6275         }
6276     }
6277 }
6278 @end lilypond
6279 @tab
6280 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6281 \include "gregorian-init.ly"
6282 \score {
6283     \notes \transpose c c' {
6284         % Pes Auctus Descendens Initio Debilis
6285         \[ \deminutum g \pes \auctum \descendens b \]
6286         s^\markup {"x"}
6287     }
6288     \paper {
6289         interscoreline = 1
6290         \translator {
6291             \ScoreContext
6292             \remove "Bar_number_engraver"
6293         }
6294         \translator {
6295             \StaffContext
6296             \remove "Clef_engraver"
6297             \remove "Key_engraver"
6298             StaffSymbol \set #'transparent = ##t
6299             \remove "Time_signature_engraver"
6300             \remove "Bar_engraver"
6301             minimumVerticalExtent = ##f
6302         }
6303         \translator {
6304             \VoiceContext
6305             \remove Ligature_bracket_engraver
6306             \consists Vaticana_ligature_engraver
6307             NoteHead \set #'style = #'vaticana_punctum
6308             Stem \set #'transparent = ##t
6309         }
6310     }
6311 }
6312 @end lilypond
6313 @tab
6314
6315 @item
6316 @code{10. Torculus}
6317 @tab
6318 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6319 \include "gregorian-init.ly"
6320 \score {
6321     \notes \transpose c c' {
6322         % Torculus
6323         \[ a \pes b \flexa g \]
6324         s^\markup {"y"}
6325     }
6326     \paper {
6327         interscoreline = 1
6328         \translator {
6329             \ScoreContext
6330             \remove "Bar_number_engraver"
6331         }
6332         \translator {
6333             \StaffContext
6334             \remove "Clef_engraver"
6335             \remove "Key_engraver"
6336             StaffSymbol \set #'transparent = ##t
6337             \remove "Time_signature_engraver"
6338             \remove "Bar_engraver"
6339             minimumVerticalExtent = ##f
6340         }
6341         \translator {
6342             \VoiceContext
6343             \remove Ligature_bracket_engraver
6344             \consists Vaticana_ligature_engraver
6345             NoteHead \set #'style = #'vaticana_punctum
6346             Stem \set #'transparent = ##t
6347         }
6348     }
6349 }
6350 @end lilypond
6351 @tab
6352 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6353 \include "gregorian-init.ly"
6354 \score {
6355     \notes \transpose c c' {
6356         % Torculus Auctus Descendens
6357         \[ a \pes b \flexa \auctum \descendens g \]
6358         s^\markup {"z"}
6359     }
6360     \paper {
6361         interscoreline = 1
6362         \translator {
6363             \ScoreContext
6364             \remove "Bar_number_engraver"
6365         }
6366         \translator {
6367             \StaffContext
6368             \remove "Clef_engraver"
6369             \remove "Key_engraver"
6370             StaffSymbol \set #'transparent = ##t
6371             \remove "Time_signature_engraver"
6372             \remove "Bar_engraver"
6373             minimumVerticalExtent = ##f
6374         }
6375         \translator {
6376             \VoiceContext
6377             \remove Ligature_bracket_engraver
6378             \consists Vaticana_ligature_engraver
6379             NoteHead \set #'style = #'vaticana_punctum
6380             Stem \set #'transparent = ##t
6381         }
6382     }
6383 }
6384 @end lilypond
6385 @tab
6386 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6387 \include "gregorian-init.ly"
6388 \score {
6389     \notes \transpose c c' {
6390         % Torculus Deminutus
6391         \[ a \pes b \flexa \deminutum g \]
6392         s^\markup {"A"}
6393     }
6394     \paper {
6395         interscoreline = 1
6396         \translator {
6397             \ScoreContext
6398             \remove "Bar_number_engraver"
6399         }
6400         \translator {
6401             \StaffContext
6402             \remove "Clef_engraver"
6403             \remove "Key_engraver"
6404             StaffSymbol \set #'transparent = ##t
6405             \remove "Time_signature_engraver"
6406             \remove "Bar_engraver"
6407             minimumVerticalExtent = ##f
6408         }
6409         \translator {
6410             \VoiceContext
6411             \remove Ligature_bracket_engraver
6412             \consists Vaticana_ligature_engraver
6413             NoteHead \set #'style = #'vaticana_punctum
6414             Stem \set #'transparent = ##t
6415         }
6416     }
6417 }
6418 @end lilypond
6419
6420 @item
6421 @code{11. Torculus Initio Debilis}
6422 @tab
6423 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6424 \include "gregorian-init.ly"
6425 \score {
6426     \notes \transpose c c' {
6427         % Torculus Initio Debilis
6428         \[ \deminutum a \pes b \flexa g \]
6429         s^\markup {"B"}
6430     }
6431     \paper {
6432         interscoreline = 1
6433         \translator {
6434             \ScoreContext
6435             \remove "Bar_number_engraver"
6436         }
6437         \translator {
6438             \StaffContext
6439             \remove "Clef_engraver"
6440             \remove "Key_engraver"
6441             StaffSymbol \set #'transparent = ##t
6442             \remove "Time_signature_engraver"
6443             \remove "Bar_engraver"
6444             minimumVerticalExtent = ##f
6445         }
6446         \translator {
6447             \VoiceContext
6448             \remove Ligature_bracket_engraver
6449             \consists Vaticana_ligature_engraver
6450             NoteHead \set #'style = #'vaticana_punctum
6451             Stem \set #'transparent = ##t
6452         }
6453     }
6454 }
6455 @end lilypond
6456 @tab
6457 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6458 \include "gregorian-init.ly"
6459 \score {
6460     \notes \transpose c c' {
6461         % Torculus Auctus Descendens Initio Debilis
6462         \[ \deminutum a \pes b \flexa \auctum \descendens g \]
6463         s^\markup {"C"}
6464     }
6465     \paper {
6466         interscoreline = 1
6467         \translator {
6468             \ScoreContext
6469             \remove "Bar_number_engraver"
6470         }
6471         \translator {
6472             \StaffContext
6473             \remove "Clef_engraver"
6474             \remove "Key_engraver"
6475             StaffSymbol \set #'transparent = ##t
6476             \remove "Time_signature_engraver"
6477             \remove "Bar_engraver"
6478             minimumVerticalExtent = ##f
6479         }
6480         \translator {
6481             \VoiceContext
6482             \remove Ligature_bracket_engraver
6483             \consists Vaticana_ligature_engraver
6484             NoteHead \set #'style = #'vaticana_punctum
6485             Stem \set #'transparent = ##t
6486         }
6487     }
6488 }
6489 @end lilypond
6490 @tab
6491 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6492 \include "gregorian-init.ly"
6493 \score {
6494     \notes \transpose c c' {
6495         % Torculus Deminutus Initio Debilis
6496         \[ \deminutum a \pes b \flexa \deminutum g \]
6497         s^\markup {"D"}
6498     }
6499     \paper {
6500         interscoreline = 1
6501         \translator {
6502             \ScoreContext
6503             \remove "Bar_number_engraver"
6504         }
6505         \translator {
6506             \StaffContext
6507             \remove "Clef_engraver"
6508             \remove "Key_engraver"
6509             StaffSymbol \set #'transparent = ##t
6510             \remove "Time_signature_engraver"
6511             \remove "Bar_engraver"
6512             minimumVerticalExtent = ##f
6513         }
6514         \translator {
6515             \VoiceContext
6516             \remove Ligature_bracket_engraver
6517             \consists Vaticana_ligature_engraver
6518             NoteHead \set #'style = #'vaticana_punctum
6519             Stem \set #'transparent = ##t
6520         }
6521     }
6522 }
6523 @end lilypond
6524
6525 @item
6526 @code{12. Porrectus}
6527 @tab
6528 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6529 \include "gregorian-init.ly"
6530 \score {
6531     \notes \transpose c c' {
6532         % Porrectus
6533         \[ a \flexa g \pes b \]
6534         s^\markup {"E"}
6535     }
6536     \paper {
6537         interscoreline = 1
6538         \translator {
6539             \ScoreContext
6540             \remove "Bar_number_engraver"
6541         }
6542         \translator {
6543             \StaffContext
6544             \remove "Clef_engraver"
6545             \remove "Key_engraver"
6546             StaffSymbol \set #'transparent = ##t
6547             \remove "Time_signature_engraver"
6548             \remove "Bar_engraver"
6549             minimumVerticalExtent = ##f
6550         }
6551         \translator {
6552             \VoiceContext
6553             \remove Ligature_bracket_engraver
6554             \consists Vaticana_ligature_engraver
6555             NoteHead \set #'style = #'vaticana_punctum
6556             Stem \set #'transparent = ##t
6557         }
6558     }
6559 }
6560 @end lilypond
6561 @tab
6562 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6563 \include "gregorian-init.ly"
6564 \score {
6565     \notes \transpose c c' {
6566         % Porrectus Auctus Descendens
6567         \[ a \flexa g \pes \auctum \descendens b \]
6568         s^\markup {"F"}
6569     }
6570     \paper {
6571         interscoreline = 1
6572         \translator {
6573             \ScoreContext
6574             \remove "Bar_number_engraver"
6575         }
6576         \translator {
6577             \StaffContext
6578             \remove "Clef_engraver"
6579             \remove "Key_engraver"
6580             StaffSymbol \set #'transparent = ##t
6581             \remove "Time_signature_engraver"
6582             \remove "Bar_engraver"
6583             minimumVerticalExtent = ##f
6584         }
6585         \translator {
6586             \VoiceContext
6587             \remove Ligature_bracket_engraver
6588             \consists Vaticana_ligature_engraver
6589             NoteHead \set #'style = #'vaticana_punctum
6590             Stem \set #'transparent = ##t
6591         }
6592     }
6593 }
6594 @end lilypond
6595 @tab
6596 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6597 \include "gregorian-init.ly"
6598 \score {
6599     \notes \transpose c c' {
6600         % Porrectus Deminutus
6601         \[ a \flexa g \pes \deminutum b \]
6602         s^\markup {"G"}
6603     }
6604     \paper {
6605         interscoreline = 1
6606         \translator {
6607             \ScoreContext
6608             \remove "Bar_number_engraver"
6609         }
6610         \translator {
6611             \StaffContext
6612             \remove "Clef_engraver"
6613             \remove "Key_engraver"
6614             StaffSymbol \set #'transparent = ##t
6615             \remove "Time_signature_engraver"
6616             \remove "Bar_engraver"
6617             minimumVerticalExtent = ##f
6618         }
6619         \translator {
6620             \VoiceContext
6621             \remove Ligature_bracket_engraver
6622             \consists Vaticana_ligature_engraver
6623             NoteHead \set #'style = #'vaticana_punctum
6624             Stem \set #'transparent = ##t
6625         }
6626     }
6627 }
6628 @end lilypond
6629
6630 @item
6631 @code{13. Climacus}
6632 @tab
6633 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6634 \include "gregorian-init.ly"
6635 \score {
6636     \notes \transpose c c' {
6637         % Climacus
6638         \[ \virga b \inclinatum a \inclinatum g \]
6639         s^\markup {"H"}
6640     }
6641     \paper {
6642         interscoreline = 1
6643         \translator {
6644             \ScoreContext
6645             \remove "Bar_number_engraver"
6646         }
6647         \translator {
6648             \StaffContext
6649             \remove "Clef_engraver"
6650             \remove "Key_engraver"
6651             StaffSymbol \set #'transparent = ##t
6652             \remove "Time_signature_engraver"
6653             \remove "Bar_engraver"
6654             minimumVerticalExtent = ##f
6655         }
6656         \translator {
6657             \VoiceContext
6658             \remove Ligature_bracket_engraver
6659             \consists Vaticana_ligature_engraver
6660             NoteHead \set #'style = #'vaticana_punctum
6661             Stem \set #'transparent = ##t
6662         }
6663     }
6664 }
6665 @end lilypond
6666 @tab
6667 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6668 \include "gregorian-init.ly"
6669 \score {
6670     \notes \transpose c c' {
6671         % Climacus Auctus
6672         \[ \virga b \inclinatum a \inclinatum \auctum g \]
6673         s^\markup {"I"}
6674     }
6675     \paper {
6676         interscoreline = 1
6677         \translator {
6678             \ScoreContext
6679             \remove "Bar_number_engraver"
6680         }
6681         \translator {
6682             \StaffContext
6683             \remove "Clef_engraver"
6684             \remove "Key_engraver"
6685             StaffSymbol \set #'transparent = ##t
6686             \remove "Time_signature_engraver"
6687             \remove "Bar_engraver"
6688             minimumVerticalExtent = ##f
6689         }
6690         \translator {
6691             \VoiceContext
6692             \remove Ligature_bracket_engraver
6693             \consists Vaticana_ligature_engraver
6694             NoteHead \set #'style = #'vaticana_punctum
6695             Stem \set #'transparent = ##t
6696         }
6697     }
6698 }
6699 @end lilypond
6700 @tab
6701 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6702 \include "gregorian-init.ly"
6703 \score {
6704     \notes \transpose c c' {
6705         % Climacus Deminutus
6706         \[ \virga b \inclinatum a \inclinatum \deminutum g \]
6707         s^\markup {"J"}
6708     }
6709     \paper {
6710         interscoreline = 1
6711         \translator {
6712             \ScoreContext
6713             \remove "Bar_number_engraver"
6714         }
6715         \translator {
6716             \StaffContext
6717             \remove "Clef_engraver"
6718             \remove "Key_engraver"
6719             StaffSymbol \set #'transparent = ##t
6720             \remove "Time_signature_engraver"
6721             \remove "Bar_engraver"
6722             minimumVerticalExtent = ##f
6723         }
6724         \translator {
6725             \VoiceContext
6726             \remove Ligature_bracket_engraver
6727             \consists Vaticana_ligature_engraver
6728             NoteHead \set #'style = #'vaticana_punctum
6729             Stem \set #'transparent = ##t
6730         }
6731     }
6732 }
6733 @end lilypond
6734
6735 @item
6736 @code{14. Scandicus}
6737 @tab
6738 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6739 \include "gregorian-init.ly"
6740 \score {
6741     \notes \transpose c c' {
6742         % Scandicus
6743         \[ g \pes a \virga b \]
6744         s^\markup {"K"}
6745     }
6746     \paper {
6747         interscoreline = 1
6748         \translator {
6749             \ScoreContext
6750             \remove "Bar_number_engraver"
6751         }
6752         \translator {
6753             \StaffContext
6754             \remove "Clef_engraver"
6755             \remove "Key_engraver"
6756             StaffSymbol \set #'transparent = ##t
6757             \remove "Time_signature_engraver"
6758             \remove "Bar_engraver"
6759             minimumVerticalExtent = ##f
6760         }
6761         \translator {
6762             \VoiceContext
6763             \remove Ligature_bracket_engraver
6764             \consists Vaticana_ligature_engraver
6765             NoteHead \set #'style = #'vaticana_punctum
6766             Stem \set #'transparent = ##t
6767         }
6768     }
6769 }
6770 @end lilypond
6771 @tab
6772 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6773 \include "gregorian-init.ly"
6774 \score {
6775     \notes \transpose c c' {
6776         % Scandicus Auctus Descendens
6777         \[ g \pes a \pes \auctum \descendens b \]
6778         s^\markup {"L"}
6779     }
6780     \paper {
6781         interscoreline = 1
6782         \translator {
6783             \ScoreContext
6784             \remove "Bar_number_engraver"
6785         }
6786         \translator {
6787             \StaffContext
6788             \remove "Clef_engraver"
6789             \remove "Key_engraver"
6790             StaffSymbol \set #'transparent = ##t
6791             \remove "Time_signature_engraver"
6792             \remove "Bar_engraver"
6793             minimumVerticalExtent = ##f
6794         }
6795         \translator {
6796             \VoiceContext
6797             \remove Ligature_bracket_engraver
6798             \consists Vaticana_ligature_engraver
6799             NoteHead \set #'style = #'vaticana_punctum
6800             Stem \set #'transparent = ##t
6801         }
6802     }
6803 }
6804 @end lilypond
6805 @tab
6806 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6807 \include "gregorian-init.ly"
6808 \score {
6809     \notes \transpose c c' {
6810         % Scandicus Deminutus
6811         \[ g \pes a \pes \deminutum b \]
6812         s^\markup {"M"}
6813     }
6814     \paper {
6815         interscoreline = 1
6816         \translator {
6817             \ScoreContext
6818             \remove "Bar_number_engraver"
6819         }
6820         \translator {
6821             \StaffContext
6822             \remove "Clef_engraver"
6823             \remove "Key_engraver"
6824             StaffSymbol \set #'transparent = ##t
6825             \remove "Time_signature_engraver"
6826             \remove "Bar_engraver"
6827             minimumVerticalExtent = ##f
6828         }
6829         \translator {
6830             \VoiceContext
6831             \remove Ligature_bracket_engraver
6832             \consists Vaticana_ligature_engraver
6833             NoteHead \set #'style = #'vaticana_punctum
6834             Stem \set #'transparent = ##t
6835         }
6836     }
6837 }
6838 @end lilypond
6839
6840 @item
6841 @code{15. Salicus}
6842 @tab
6843 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6844 \include "gregorian-init.ly"
6845 \score {
6846     \notes \transpose c c' {
6847         % Salicus
6848         \[ g \oriscus a \pes \virga b \]
6849         s^\markup {"N"}
6850     }
6851     \paper {
6852         interscoreline = 1
6853         \translator {
6854             \ScoreContext
6855             \remove "Bar_number_engraver"
6856         }
6857         \translator {
6858             \StaffContext
6859             \remove "Clef_engraver"
6860             \remove "Key_engraver"
6861             StaffSymbol \set #'transparent = ##t
6862             \remove "Time_signature_engraver"
6863             \remove "Bar_engraver"
6864             minimumVerticalExtent = ##f
6865         }
6866         \translator {
6867             \VoiceContext
6868             \remove Ligature_bracket_engraver
6869             \consists Vaticana_ligature_engraver
6870             NoteHead \set #'style = #'vaticana_punctum
6871             Stem \set #'transparent = ##t
6872         }
6873     }
6874 }
6875 @end lilypond
6876 @tab
6877 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6878 \include "gregorian-init.ly"
6879 \score {
6880     \notes \transpose c c' {
6881         % Salicus Auctus Descendens
6882         \[ g \oriscus a \pes \auctum \descendens b \]
6883         s^\markup {"O"}
6884     }
6885     \paper {
6886         interscoreline = 1
6887         \translator {
6888             \ScoreContext
6889             \remove "Bar_number_engraver"
6890         }
6891         \translator {
6892             \StaffContext
6893             \remove "Clef_engraver"
6894             \remove "Key_engraver"
6895             StaffSymbol \set #'transparent = ##t
6896             \remove "Time_signature_engraver"
6897             \remove "Bar_engraver"
6898             minimumVerticalExtent = ##f
6899         }
6900         \translator {
6901             \VoiceContext
6902             \remove Ligature_bracket_engraver
6903             \consists Vaticana_ligature_engraver
6904             NoteHead \set #'style = #'vaticana_punctum
6905             Stem \set #'transparent = ##t
6906         }
6907     }
6908 }
6909 @end lilypond
6910 @tab
6911
6912 @item
6913 @code{16. Trigonus}
6914 @tab
6915 @lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
6916 \include "gregorian-init.ly"
6917 \score {
6918     \notes \transpose c c' {
6919         % Trigonus
6920         \[ \stropha b \stropha b \stropha a \]
6921         s^\markup {"P"}
6922     }
6923     \paper {
6924         interscoreline = 1
6925         \translator {
6926             \ScoreContext
6927             \remove "Bar_number_engraver"
6928         }
6929         \translator {
6930             \StaffContext
6931             \remove "Clef_engraver"
6932             \remove "Key_engraver"
6933             StaffSymbol \set #'transparent = ##t
6934             \remove "Time_signature_engraver"
6935             \remove "Bar_engraver"
6936             minimumVerticalExtent = ##f
6937         }
6938         \translator {
6939             \VoiceContext
6940             \remove Ligature_bracket_engraver
6941             \consists Vaticana_ligature_engraver
6942             NoteHead \set #'style = #'vaticana_punctum
6943             Stem \set #'transparent = ##t
6944         }
6945     }
6946 }
6947 @end lilypond
6948 @tab
6949 @tab
6950
6951 @end multitable
6952
6953 @syntax
6954
6955 Unlike most other neumes notation systems, the input language for
6956 neumes does not necessarily reflect directly the typographical
6957 appearance, but is designed to solely focuse on musical meaning.  For
6958 example, @code{\[ a \pes b \flexa g \]} produces a Torculus consisting
6959 of three Punctum heads, while @code{\[ a \flexa g \pes b \]} produces
6960 a Porrectus with a curved flexa shape and only a single Punctum head.
6961 There is no command to explicitly typeset the curved flexa shape; the
6962 decision of when to typeset a curved flexa shape is purely taken from
6963 the musical input.  The idea of this approach is to separate the
6964 musical aspects of the input from the notation style of the output.
6965 This way, the same input can be reused to typeset the same music in a
6966 different style of Gregorian chant notation such as Hufnagel (also
6967 known as German gothic neumes) or Medicaea (kind of a very simple
6968 forerunner of the Editio Vaticana).  As soon as Hufnagel ligature
6969 engraver and Medicaea ligature engraver will have been implemented, it
6970 will be as simple as replacing the ligature engraver in the
6971 @internalsref{Voice} context to get the desired notation style from
6972 the same input.
6973
6974 The following table shows the code fragments that produce the
6975 ligatures in the above neumes table.  The letter in the first column
6976 in each line of the below table indicates to which ligature in the
6977 above table it refers.  The second column gives the name of the
6978 ligature.  The third column shows the code fragment that produces this
6979 ligature, using @code{g}, @code{a} and @code{b} as example pitches.
6980
6981 @multitable @columnfractions .1 .4 .5
6982
6983 @item
6984 @b{#} @tab
6985 @b{Name} @tab
6986 @b{Input Language}
6987
6988 @item
6989 a @tab
6990 Punctum @tab
6991 @code{\[ b \]}
6992
6993 @item
6994 b @tab
6995 Punctum Inclinatum @tab
6996 @code{\[ \inclinatum b \]}
6997
6998 @item
6999 c @tab
7000 Punctum Auctum Ascendens @tab
7001 @code{\[ \auctum \ascendens b \]}
7002
7003 @item
7004 d @tab
7005 Punctum Auctum Descendens @tab
7006 @code{\[ \auctum \descendens b \]}
7007
7008 @item
7009 e @tab
7010 Punctum Inclinatum Auctum @tab
7011 @code{\[ \inclinatum \auctum b \]}
7012
7013 @item
7014 f @tab
7015 Punctum Inclinatum Parvum @tab
7016 @code{\[ \inclinatum \deminutum b \]}
7017
7018 @item
7019 g @tab
7020 Virga @tab
7021 @code{\[ \virga b \]}
7022
7023 @item
7024 h @tab
7025 Stropha @tab
7026 @code{\[ \stropha b \]}
7027
7028 @item
7029 i @tab
7030 Stropha Aucta @tab
7031 @code{\[ \stropha \auctum b \]}
7032
7033 @item
7034 j @tab
7035 Oriscus @tab
7036 @code{\[ \oriscus b \]}
7037
7038 @item
7039 k @tab
7040 Clivis vel Flexa @tab
7041 @code{\[ b \flexa g \]}
7042
7043 @item
7044 l @tab
7045 Clivis Aucta Descendens @tab
7046 @code{\[ b \flexa \auctum \descendens g \]}
7047
7048 @item
7049 m @tab
7050 Clivis Aucta Ascendens @tab
7051 @code{\[ b \flexa \auctum \ascendens g \]}
7052
7053 @item
7054 n @tab
7055 Cephalicus @tab
7056 @code{\[ b \flexa \deminutum g \]}
7057
7058 @item
7059 o @tab
7060 Podatus vel Pes @tab
7061 @code{\[ g \pes b \]}
7062
7063 @item
7064 p @tab
7065 Pes Auctus Descendens @tab
7066 @code{\[ g \pes \auctum \descendens b \]}
7067
7068 @item
7069 q @tab
7070 Pes Auctus Ascendens @tab
7071 @code{\[ g \pes \auctum \ascendens b \]}
7072
7073 @item
7074 r @tab
7075 Epiphonus @tab
7076 @code{\[ g \pes \deminutum b \]}
7077
7078 @item
7079 s @tab
7080 Pes Quassus @tab
7081 @code{\[ \oriscus g \pes \virga b \]}
7082
7083 @item
7084 t @tab
7085 Pes Quassus Auctus Descendens @tab
7086 @code{\[ \oriscus g \pes \auctum \descendens b \]}
7087
7088 @item
7089 u @tab
7090 Quilisma Pes @tab
7091 @code{\[ \quilisma g \pes b \]}
7092
7093 @item
7094 v @tab
7095 Quilisma Pes Auctus Descendens @tab
7096 @code{\[ \quilisma g \pes \auctum \descendens b \]}
7097
7098 @item
7099 w @tab
7100 Pes Initio Debilis @tab
7101 @code{\[ \deminutum g \pes b \]}
7102
7103 @item
7104 x @tab
7105 Pes Auctus Descendens Initio Debilis @tab
7106 @code{\[ \deminutum g \pes \auctum \descendens b \]}
7107
7108 @item
7109 y @tab
7110 Torculus @tab
7111 @code{\[ a \pes b \flexa g \]}
7112
7113 @item
7114 z @tab
7115 Torculus Auctus Descendens @tab
7116 @code{\[ a \pes b \flexa \auctum \descendens g \]}
7117
7118 @item
7119 A @tab
7120 Torculus Deminutus @tab
7121 @code{\[ a \pes b \flexa \deminutum g \]}
7122
7123 @item
7124 B @tab
7125 Torculus Initio Debilis @tab
7126 @code{\[ \deminutum a \pes b \flexa g \]}
7127
7128 @item
7129 C @tab
7130 Torculus Auctus Descendens Initio Debilis @tab
7131 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
7132
7133 @item
7134 D @tab
7135 Torculus Deminutus Initio Debilis @tab
7136 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
7137
7138 @item
7139 E @tab
7140 Porrectus @tab
7141 @code{\[ a \flexa g \pes b \]}
7142
7143 @item
7144 F @tab
7145 Porrectus Auctus Descendens @tab
7146 @code{\[ a \flexa g \pes \auctum \descendens b \]}
7147
7148 @item
7149 G @tab
7150 Porrectus Deminutus @tab
7151 @code{\[ a \flexa g \pes \deminutum b \]}
7152
7153 @item
7154 H @tab
7155 Climacus @tab
7156 @code{\[ \virga b \inclinatum a \inclinatum g \]}
7157
7158 @item
7159 I @tab
7160 Climacus Auctus @tab
7161 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
7162
7163 @item
7164 J @tab
7165 Climacus Deminutus @tab
7166 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
7167
7168 @item
7169 K @tab
7170 Scandicus @tab
7171 @code{\[ g \pes a \virga b \]}
7172
7173 @item
7174 L @tab
7175 Scandicus Auctus Descendens @tab
7176 @code{\[ g \pes a \pes \auctum \descendens b \]}
7177
7178 @item
7179 M @tab
7180 Scandicus Deminutus @tab
7181 @code{\[ g \pes a \pes \deminutum b \]}
7182
7183 @item
7184 N @tab
7185 Salicus @tab
7186 @code{\[ g \oriscus a \pes \virga b \]}
7187
7188 @item
7189 O @tab
7190 Salicus Auctus Descendens @tab
7191 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
7192
7193 @item
7194 P @tab
7195 Trigonus @tab
7196 @code{\[ \stropha b \stropha b \stropha a \]}
7197
7198 @end multitable
7199
7200 @refcommands
7201
7202 The following head prefixes are supported:
7203
7204 @cindex @code{\virga}
7205 @code{\virga},
7206 @cindex @code{\stropha}
7207 @code{\stropha},
7208 @cindex @code{\inclinatum}
7209 @code{\inclinatum},
7210 @cindex @code{\auctum}
7211 @code{\auctum},
7212 @cindex @code{\descendens}
7213 @code{\descendens},
7214 @cindex @code{\ascendens}
7215 @code{\ascendens},
7216 @cindex @code{\oriscus}
7217 @code{\oriscus},
7218 @cindex @code{\quilisma}
7219 @code{\quilisma},
7220 @cindex @code{\deminutum}
7221 @code{\deminutum}.
7222
7223 Head prefixes can be accumulated, though restrictions apply.  For
7224 example, either @code{\descendens} or @code{\ascendens} can be applied
7225 to a head, but not both to the same head.
7226
7227 @cindex @code{\pes}
7228 @cindex @code{\flexa}
7229 Two adjacent heads can be tied together with the @code{\pes} and
7230 @code{\flexa} infix commands for a rising and falling line of melody,
7231 respectively.
7232
7233 @refbugs
7234
7235 Trigonus: apply equal spacing, regardless of pitch.
7236
7237 @node Figured bass
7238 @subsection Figured bass
7239
7240 @cindex Basso continuo
7241
7242 @c TODO: musicological blurb about FB
7243
7244 @syntax
7245
7246 LilyPond has limited support for figured bass:
7247
7248 @lilypond[verbatim,fragment]
7249 <<
7250  \context Voice \notes { \clef bass dis4  c d ais}
7251  \context FiguredBass
7252    \figures {
7253        < 6 >4 < 7 >8 < 6+ [_!] >
7254     < 6 >4 <6 5 [3+] >
7255    }
7256  >>
7257 @end lilypond
7258
7259 The support for figured bass consists of two parts: there is an input
7260 mode, introduced by @code{\figures}, where you can enter bass figures
7261 as numbers, and there is a context called @internalsref{FiguredBass} that
7262 takes care of making @internalsref{BassFigure} objects.
7263
7264 In figures input mode, a group of bass figures is delimited by
7265 @code{<} and @code{>}. The duration is entered after the @code{>>}:
7266 @example
7267         <4 6>
7268 @end example
7269 @lilypond[fragment]
7270 \context FiguredBass
7271 \figures { <4 6> }
7272 @end lilypond
7273
7274 Accidentals are added when you append @code{-}, @code{!}  and @code{+}
7275 to the numbers:
7276
7277 @example
7278   <4- 6+ 7!>
7279 @end example
7280 @lilypond[fragment]
7281   \context FiguredBass
7282     \figures { <4- 6+ 7!> }
7283 @end lilypond
7284
7285 Spaces or dashes may be inserted by using @code{_}. Brackets are
7286 introduced with @code{[} and @code{]}:
7287
7288 @example
7289         < [4 6] 8 [_! 12]>
7290 @end example
7291 @lilypond[fragment]
7292  \context FiguredBass
7293 \figures { < [4 6] 8 [_! 12]> }
7294 @end lilypond
7295
7296 Although the support for figured bass may superficially resemble chord
7297 support, it works much simpler.  The @code{\figures} mode simply
7298 stores the numbers , and @internalsref{FiguredBass} context prints
7299 them as entered. There is no conversion to pitches, and no
7300 realizations of the bass are played in the MIDI file.
7301
7302 Internally, the code produces markup texts. You can use any of the
7303 markup text properties to override formatting. For example, the
7304 vertical spacing of the figures may be set with @code{baseline-skip}.
7305
7306 @seealso
7307
7308 Internals: @internalsref{BassFigureEvent} music, @internalsref{BassFigure} object, 
7309 and @internalsref{FiguredBass} context.
7310
7311 @refbugs
7312
7313 Slash notation for alterations is not supported.
7314
7315
7316 @node Vaticana style contexts
7317 @subsection Vaticana style contexts
7318
7319 @cindex VaticanaVoiceContext
7320 @cindex VaticanaStaffContext
7321
7322 The predefined @code{VaticanaVoiceContext} and
7323 @code{VaticanaStaffContext} can be used to easily engrave a piece of
7324 Gregorian Chant in the style of the Editio Vaticana.  These contexts
7325 initialize all relevant context properties and grob properties to
7326 proper values.  With these contexts, you can immediately go ahead
7327 entering the chant, as the following short excerpt demonstrates:
7328
7329 @lilypond[raggedright,verbatim,noindent]
7330 \include "gregorian-init.ly"
7331 \score {
7332   \context VaticanaVoice {
7333     \property Score.BarNumber \set #'transparent = ##t
7334     \notes {
7335       \[ c'( c' \flexa a \] \[ a \flexa \deminutum g) \] f \divisioMinima
7336       \[ f( \pes a c' c' \pes d') \] c' \divisioMinima \break
7337       \[ c'( c' \flexa a \] \[ a \flexa \deminutum g) \] f \divisioMinima
7338     }
7339   }
7340   \lyricsto "" \new LyricsVoice \lyrics {
7341     San- ctus, San- ctus, San- ctus
7342   }
7343 }
7344 @end lilypond
7345
7346 @node Contemporary notation
7347 @section Contemporary notation
7348
7349 In the 20th century, composers have greatly expanded the musical
7350 vocabulary. With this expansion, many innovations in musical notation
7351 have been tried. The book by Stone (1980) gives a comprehensive
7352 overview (see @ref{Literature list}). In general, the use of new,
7353 innovative notation makes a piece harder to understand and perform and
7354 its use should therefore be avoided if possible.  For this reason,
7355 support for contemporary notation in LilyPond is limited.
7356
7357
7358 @menu
7359 * Clusters::                    
7360 * Fermatas::                    
7361 @end menu
7362
7363 @node Clusters
7364 @subsection Clusters
7365
7366 @cindex cluster
7367
7368 In musical terminology, a @emph{cluster} denotes a range of
7369 simultaneously sounding pitches that may change over time.  The set of
7370 available pitches to apply usually depends on the accoustic source.
7371 Thus, in piano music, a cluster typically consists of a continous range
7372 of the semitones as provided by the piano's fixed set of a chromatic
7373 scale.  In choral music, each singer of the choir typically may sing an
7374 arbitrary pitch within the cluster's range that is not bound to any
7375 diatonic, chromatic or other scale.  In electronic music, a cluster
7376 (theoretically) may even cover a continuous range of pitches, thus
7377 resulting in coloured noise, such as pink noise.
7378
7379 Clusters can be denoted in the context of ordinary staff notation by
7380 engraving simple geometrical shapes that replace ordinary notation of
7381 notes.  Ordinary notes as musical events specify starting time and
7382 duration of pitches; however, the duration of a note is expressed by the
7383 shape of the note head rather than by the horizontal graphical extent of
7384 the note symbol.  In contrast, the shape of a cluster geometrically
7385 describes the development of a range of pitches (vertical extent) over
7386 time (horizontal extent).  Still, the geometrical shape of a cluster
7387 covers the area in wich any single pitch contained in the cluster would
7388 be notated as an ordinary note.  From this point of view, it is
7389 reasonable to specify a cluster as the envelope of a set of notes.
7390
7391 @syntax
7392
7393 A cluster is engraved as the envelope of a set of
7394 cluster-notes. Cluster notes are created by applying the function
7395 @code{notes-to-clusters} to a sequence of chords, e.g.
7396 @c
7397 @lilypond[relative 1,verbatim]
7398     \apply #notes-to-clusters {  <c e > <b f'>  }
7399 @end lilypond
7400
7401 The following example (from
7402 @inputfileref{input/regression,cluster.ly}) shows what the result
7403 looks like:
7404
7405 @lilypondfile[notexidoc]{cluster.ly}
7406
7407 By default, @internalsref{Cluster_spanner_engraver} is in the
7408 @internalsref{Voice} context.  This allows putting ordinary notes and
7409 clusters together in the same staff, even simultaneously.  In such a
7410 case no attempt is made to automatically avoid collisions between
7411 ordinary notes and clusters.
7412
7413 @seealso
7414
7415 Internals: @internalsref{ClusterSpanner},
7416 @internalsref{ClusterSpannerBeacon},
7417 @internalsref{Cluster_spanner_engraver}, and
7418 @internalsref{ClusterNoteEvent}.
7419
7420 Examples: @inputfileref{input/regression,cluster.ly}.
7421
7422 @refbugs
7423
7424 Music expressions like @code{<< @{ g8 e8 @} a4 >>} are not printed
7425 accurately.  Use @code{<g a>8 <e a>8} instead.
7426
7427
7428
7429 @node Fermatas
7430 @subsection Fermatas
7431
7432 @cindex fermatas
7433
7434
7435
7436 Contemporary music notation frequently uses special fermata symbols to
7437 indicate fermatas of differing lengths.
7438
7439 @syntax
7440
7441 The following are supported
7442
7443 @lilypond[singleline]
7444 \score {
7445   <<  \addlyrics \notes {
7446         b'
7447         ^\shortfermata
7448         _\shortfermata
7449         r
7450         b'
7451         ^\fermata
7452         _\fermata
7453
7454         r
7455         b'
7456         ^\longfermata
7457         _\longfermata
7458
7459         r
7460         b'
7461         ^\verylongfermata
7462         _\verylongfermata
7463         r
7464     }
7465     \context Lyrics \lyrics {
7466       "shortfermata" "fermata"  "longfermata" "verylongfermata"
7467     } >>
7468 }
7469 @end lilypond
7470
7471 See @ref{Articulations} for general instructions how to apply scripts
7472 such as fermatas to a @code{\notes@{@}} block.
7473
7474 @node Tuning output
7475 @section Tuning output
7476
7477 There are situations where default layout decisions are not
7478 sufficient.  In this section we discuss ways to override these
7479 defaults.
7480
7481 Formatting is internally done by manipulating so called objects
7482 (graphic objects). Each object carries with it a set of properties
7483 (object or layout properties) specific to that object.  For example, a
7484 stem object has properties that specify its direction, length and
7485 thickness.
7486
7487 The most direct way of tuning the output is by altering the values of
7488 these properties. There are two ways of doing that: first, you can
7489 temporarily change the definition of one type of object, thus
7490 affecting a whole set of objects.  Second, you can select one specific
7491 object, and set a layout property in that object.
7492
7493 Do not confuse layout properties with translation
7494 properties. Translation properties always use a mixed caps style
7495 naming, and are manipulated using @code{\property}:
7496 @example
7497   \property Context.propertyName  = @var{value}
7498 @end example
7499 Layout properties are use Scheme style variable naming, i.e.  lower
7500 case words separated with dashes. They are symbols, and should always
7501 be quoted using @code{#'}.  For example, this could be an imaginary
7502 layout property name:
7503 @example
7504   #'layout-property-name
7505 @end example
7506
7507 @menu
7508 * Tuning objects::              
7509 * Constructing a tweak::        
7510 * Applyoutput::                 
7511 * Font selection::              
7512 * Text markup::                 
7513 @end menu
7514
7515
7516
7517 @node Tuning objects
7518 @subsection Tuning objects 
7519
7520 @cindex object description
7521
7522 The definition of an object is a list of default object
7523 properties. For example, the definition of the Stem object (available
7524 in @file{scm/define-grobs.scm}), includes the following definitions
7525 for @internalsref{Stem}:
7526
7527 @example
7528         (thickness . 1.3)
7529         (beamed-lengths . (0.0 2.5 2.0 1.5))
7530         (Y-extent-callback . ,Stem::height)
7531         @var{...}
7532 @end example
7533
7534
7535 Adding variables on top of this existing definition overrides the
7536 system default, and alters the resulting appearance of the layout
7537 object.
7538
7539 @syntax
7540
7541
7542 Changing a variable for only one object is commonly achieved with
7543 @code{\once}:
7544
7545 @example
7546 \once \property @var{context}.@var{objectname}
7547   \override @var{symbol} = @var{value}
7548 @end example
7549 Here @var{symbol} is a Scheme expression of symbol type, @var{context}
7550 and @var{objectname} is a string and @var{value} is a Scheme expression.
7551 This command applies a setting only during one moment in the score.
7552
7553 In the following example, only one @internalsref{Stem} object is
7554 changed from its original setting:
7555
7556 @lilypond[verbatim, fragment, relative=1]
7557   c4 
7558   \once \property Voice.Stem \set #'thickness = #4
7559   c4
7560   c4
7561 @end lilypond
7562 @cindex @code{\once}
7563
7564 For changing more objects, the same command, without @code{\once} can
7565 be used:
7566 @example
7567 \property @var{context}.@var{objectname} \override @var{symbol} = @var{value}
7568 @end example
7569 This command adds @code{@var{symbol} = @var{value}} to the definition
7570 of @var{objectname} in the context @var{context}, and this definition
7571 stays in place until it is removed.
7572
7573 An existing definition may be removed by the following command:
7574 @c
7575 @example
7576 \property @var{context}.@var{objectname} \revert @var{symbol}
7577 @end example
7578 @c
7579 All @code{\override} and @code{\revert} commands should be balanced.
7580 The @code{\set} shorthand performs a revert followed by an override,
7581 and is often more convenient to use
7582
7583 @example
7584 \property @var{context}.@var{objectname} \set @var{symbol} = @var{value}
7585 @end example
7586
7587 Some examples: 
7588 @lilypond[verbatim,quote]
7589 c'4 \property Voice.Stem \override #'thickness = #4.0
7590 c'4
7591 c'4 \property Voice.Stem \revert #'thickness
7592 c'4
7593 @end lilypond
7594
7595 The following example gives exactly the same result as the previous
7596 one (assuming the system default for stem thickness is 1.3):
7597 @c
7598 @lilypond[verbatim,quote]
7599   c'4 \property Voice.Stem \set #'thickness = #4.0
7600   c'4
7601   c'4 \property Voice.Stem \set #'thickness = #1.3
7602   c'4
7603 @end lilypond
7604
7605 Reverting a setting which was not set in the first place has no
7606 effect. However, if the setting was set as a system default, this may
7607 remove the default value, and this may give surprising results,
7608 including crashes.  In other words, @code{\override} and
7609 @code{\revert} must be carefully balanced.  The following are examples
7610 of correct nesting of @code{\override}, @code{\set}, @code{\revert}:
7611
7612 @itemize @bullet
7613 @item
7614 a clumsy but correct form:
7615 @example
7616   \override \revert \override \revert \override \revert
7617 @end example
7618
7619 @item
7620 shorter version of the same:
7621 @example 
7622   \override \set \set  \revert
7623 @end example
7624
7625 @item
7626 a short form, using only @code{\set}. This requires you to know the
7627 default value:
7628 @example
7629   \set \set \set \set @var{to default value}
7630 @end example
7631
7632 @item
7633 if there is no default (i.e. by default, the object property is unset),
7634 then you can use
7635 @example
7636   \set \set \set \revert
7637 @end example
7638 @end itemize
7639
7640 The object description is an Scheme association list. Since a Scheme
7641 list is a singly linked list, we can treat it as a stack, and
7642 @code{\override} and @code{\revert} are push and pop operations.  The
7643 association list is stored in a normal context property, hence
7644 @example
7645  \property Voice.NoteHead  = #'() 
7646 @end example
7647 will effectively erase @internalsref{NoteHead}s from the current
7648 @internalsref{Voice}. Typically, this will blank the object. However,
7649 this mechanism should not be used: it may cause crashes or other
7650 anomalous behavior.
7651
7652 @seealso
7653
7654 Internals: @internalsref{OverrideProperty}, @internalsref{RevertProperty},
7655 @internalsref{PropertySet}, @internalsref{All-backend-properties}, and
7656 @internalsref{All-layout-objects}.
7657
7658
7659 @refbugs
7660
7661 The backend is not very strict in type-checking object properties.
7662 Cyclic references in Scheme values for properties cause hangs and/or
7663 crashes.  Reverting properties that are system defaults may also lead
7664 to crashes.
7665
7666 A property tweak of modifies a local copy of the object definition.
7667 After such a tweak, the definition is independent of the objects in
7668 enclosing contexts. For example
7669
7670 @lilypond
7671   \property Voice.Stem \set #'neutral-direction = #1
7672   b'8
7673   \property Staff.Stem \set #'thickness = #4.0
7674   b'16
7675   \new Voice { b'32 }
7676 @end lilypond
7677
7678 In this fragment, @code{neutral-direction} is tweaked. As a result,
7679 the current @internalsref{Voice} gets a private version of the
7680 @internalsref{Stem} object. The following tweak modifies the
7681 definition at @internalsref{Staff} level. Since it a different
7682 definition, the thickness of the @code{b'16} is unaffected.  For the
7683 third note, a new Voice is created, which inherits the new definition,
7684 including the changed thickness, but excluding the new neutral
7685 direction.
7686
7687
7688
7689 @menu
7690 * Constructing a tweak::        
7691 * Applyoutput::                 
7692 * Font selection::              
7693 * Text markup::                 
7694 @end menu
7695
7696 @node Constructing a tweak
7697 @subsection Constructing a tweak
7698
7699
7700 @cindex internal documentation
7701 @cindex finding graphical objects
7702 @cindex graphical object descriptions 
7703 @cindex tweaking
7704 @cindex @code{\override}
7705 @cindex @code{\set}
7706 @cindex internal documentation
7707
7708
7709
7710 Three pieces of information are required to use @code{\override} and
7711 @code{\set}: the name of the layout object, the context and the name
7712 of the property.  We demonstrate how to glean this information from
7713 the notation manual and the generated documentation.
7714
7715 The generated documentation is a set of HTML pages which should be
7716 included if you installed a binary distribution, typically in
7717 @file{/usr/share/doc/lilypond}.  They are also available on the web:
7718 go to the @uref{http://lilypond.org,LilyPond website}, click
7719 ``Documentation'', select the correct version, and click then
7720 ``Program reference.'' It is advisable to bookmark the local HTML
7721 files. They will load faster than the ones on the web.  If you use the
7722 version from the web, you must check whether the documentation matches
7723 the program version: it is generated from the definitions that the
7724 program uses, and therefore it is strongly tied to the LilyPond
7725 version.
7726
7727
7728 @c  [TODO: revise for new site.]
7729
7730 Suppose we want to move the fingering indication in the fragment below:
7731
7732 @lilypond[relative=2,verbatim]
7733 c-2
7734 \stemUp
7735 f
7736 @end lilypond
7737
7738 If you visit the documentation of @code{Fingering} (in @ref{Fingering
7739 instructions}), you will notice that there is written:
7740
7741 @quotation
7742 @seealso
7743
7744 Internals: @internalsref{FingerEvent} and @internalsref{Fingering}.
7745
7746 @end quotation
7747
7748 @separate
7749
7750 @noindent
7751 In other words, the fingerings once entered, are internally stored as
7752 @code{FingerEvent} music objects. When printed, a @code{Fingering}
7753 layout object is created for every @code{FingerEvent}.
7754
7755 The Fingering object has a number of different functions, and each of
7756 those is captured in an interface. The interfaces are listed under
7757 @internalsref{Fingering} in the program reference.
7758
7759
7760
7761 The @code{Fingering} object has a fixed size
7762 (@internalsref{item-interface}), the symbol is a piece of text
7763 (@internalsref{text-interface}), whose font can be set
7764 (@internalsref{font-interface}).  It is centered horizontally
7765 (@internalsref{self-alignment-interface}), it is placed next to other
7766 objects (@internalsref{side-position-interface}) vertically, and its
7767 placement is coordinated with other scripts
7768 (@internalsref{text-script-interface}).  It also has the standard
7769 @internalsref{grob-interface} (grob stands for Graphical object)
7770 @cindex grob
7771 @cindex graphical object
7772 @cindex layout object
7773 @cindex object, layout 
7774 with all the variables that come with
7775 it.  Finally, it denotes a fingering instruction, so it has
7776 @internalsref{finger-interface}.
7777
7778 For the vertical placement, we have to look under
7779 @code{side-position-interface}:
7780 @quotation
7781 @code{side-position-interface}
7782
7783   Position a victim object (this one) next to other objects (the
7784   support).  In this case, the property @code{direction} signifies where to put the
7785   victim object relative to the support (left or right, up or down?)
7786 @end quotation
7787
7788 @cindex padding
7789 @noindent
7790 below this description, the variable @code{padding} is described as
7791 @quotation
7792 @table @code
7793 @item padding
7794  (dimension, in staff space)
7795
7796    add this much extra space between objects that are next to each
7797 other. Default value: @code{0.6}
7798 @end table
7799 @end quotation
7800
7801 By increasing the value of @code{padding}, we can move away the
7802 fingering.  The following command inserts 3 staff spaces of white
7803 between the note and the fingering:
7804 @example
7805 \once \property Voice.Fingering \set #'padding = #3
7806 @end example
7807
7808 Inserting this command before the Fingering object is created,
7809 i.e. before @code{c2}, yields the following result:
7810
7811 @lilypond[relative=2,fragment,verbatim]
7812 \once \property Voice.Fingering
7813   \set #'padding = #3
7814 c-2
7815 \stemUp
7816 f
7817 @end lilypond
7818
7819 The context name @code{Voice} in the example above can be determined
7820 as follows. In the documentation for @internalsref{Fingering}, it says
7821 @quotation
7822 Fingering grobs are created by: @internalsref{Fingering_engraver}
7823 @end quotation
7824
7825 Clicking @code{Fingering_engraver} shows the documentation of
7826 the module responsible for interpreting the fingering instructions and
7827 translating them to a @code{Fingering} object.  Such a module is called
7828 an @emph{engraver}.  The documentation of the @code{Fingering_engraver}
7829 says
7830 @example
7831 Fingering_engraver is part of contexts: Voice 
7832 @end example
7833 so tuning the settings for Fingering should be done with
7834 @example
7835   \property Voice.Fingering \set @dots{}
7836 @end example
7837
7838 Of course, the tweak may also done in a larger context than
7839 @code{Voice}, for example, @internalsref{Staff} or
7840 @internalsref{Score}.
7841
7842 @seealso
7843
7844 Internals: the program reference also contains alphabetical lists of
7845 @internalsref{Contexts}, @internalsref{All-layout-objects} and
7846 @internalsref{Music-expressions}, so you can also find which objects
7847 to tweak by browsing the internals document.
7848
7849
7850 @node Applyoutput
7851 @subsection Applyoutput
7852
7853 The most versatile way of tuning an object is @code{\applyoutput}. Its
7854 syntax is
7855 @example
7856 \applyoutput @var{proc}
7857 @end example
7858
7859 @noindent
7860 where @var{proc} is a Scheme function, taking three arguments.
7861
7862 When interpreted, the function @var{proc} is called for every layout
7863 object found in the context, with the following arguments:
7864 @itemize @bullet
7865 @item the layout object itself,
7866 @item the context where the layout object was created, and
7867 @item the context where @code{\applyoutput} is processed.
7868 @end itemize
7869
7870
7871 In addition, the cause of the layout object, i.e.  the music
7872 expression or object that was responsible for creating it, is in the
7873 object property @code{cause}.  For example, for a note head, this is a
7874 @internalsref{NoteHead} event, and for a @internalsref{Stem} object,
7875 this is a @internalsref{NoteHead} object.
7876
7877 Here is a simple example of @code{\applyoutput}; it blanks note-heads on the
7878 center-line:
7879 @example
7880 (define (blanker grob grob-origin context)
7881   (if (and (memq (ly:get-grob-property grob 'interfaces)
7882                  note-head-interface)
7883            (eq? (ly:get-grob-property grob 'staff-position) 0))
7884
7885            (ly:set-grob-property! grob 'transparent #t)))
7886 @end example
7887
7888
7889
7890 @node Font selection
7891 @subsection Font selection
7892
7893 The most common thing to change about the appearance of fonts is their
7894 size. The font size of any context can be easily changed by setting
7895 the @code{fontSize} property for that context.  Its value is a number:
7896 negative numbers make the font smaller, positive numbers larger. An
7897 example is given below:
7898 @c
7899 @lilypond[fragment,relative=1,verbatim,quote]
7900   c4 c4 \property Voice.fontSize = #-1
7901   f4 g4
7902 @end lilypond
7903 This command will set @code{font-size} (see below), and does
7904 not change the size of variable symbols, such as beams or slurs.
7905
7906 One of the uses of @code{fontSize} is to get smaller symbols for cue
7907 notes. An elaborate example of those is in
7908 @inputfileref{input/test,cue-notes.ly}.
7909
7910 @cindex magnification
7911 @cindex cue notes
7912
7913 The font used for printing a object can be selected by setting
7914 @code{font-name}, e.g.
7915 @example
7916   \property Staff.TimeSignature
7917     \set #'font-name = #"cmr17"
7918 @end example
7919
7920 @noindent
7921 Any font can be used, as long as it is available to @TeX{}. Possible
7922 fonts include foreign fonts or fonts that do not belong to the
7923 Computer Modern font family.  The size of fonts selected in this way
7924 can be changed with the @code{font-magnification} property.  For
7925 example, @code{2.0} blows up all letters by a factor 2 in both
7926 directions.
7927
7928 @cindex font size
7929 @cindex font magnification
7930
7931 Font selection for the standard fonts, @TeX{}'s Computer Modern fonts,
7932 can also be adjusted with a more fine-grained mechanism.  By setting
7933 the object properties described below, you can select a different font;
7934 all three mechanisms work for every object that supports
7935 @code{font-interface}:
7936
7937
7938 @table @code
7939 @item font-family
7940  is a symbol indicating the general class of the typeface.  Supported are
7941 @code{roman} (Computer Modern), @code{braces} (for piano staff
7942 braces), @code{music} (the standard music font, including ancient
7943 glyphs), @code{dynamic} (for dynamic signs) and @code{typewriter}.
7944   
7945 @item font-shape
7946   is a symbol indicating the shape of the font, there are typically several
7947   font shapes available for each font family. Choices are @code{italic},
7948   @code{caps} and @code{upright}.
7949
7950 @item font-series
7951 is a  symbol indicating the series of the font. There are typically several
7952 font series for each font family and shape. Choices are @code{medium}
7953 and @code{bold}. 
7954
7955 @end table
7956
7957 For any of these properties, the value @code{*} (i.e. the symbol
7958 @code{*}, entered as @code{#'*}), acts as a wildcard. This can be used
7959 to override default setting, which are always present. For example:
7960 @example
7961   \property Lyrics . LyricText \override #'font-series = #'bold
7962   \property Lyrics . LyricText \override #'font-family = #'typewriter
7963   \property Lyrics . LyricText \override #'font-shape  = #'*
7964 @end example
7965
7966 @cindex @code{font-style}
7967
7968 The font size is set by modifying the @code{font-size} property.  Its
7969 value is a number indicating the size relative to the standard size.
7970 Each step up is an increase of approximately 12% of the font size. Six
7971 steps is exactly a factor two. The Scheme function @code{magstep}
7972 converts a @code{font-size} number to a scaling factor.
7973
7974 LilyPond has fonts in different design sizes: the music fonts for
7975 smaller sizes are chubbier, while the text fonts are relatively wider.
7976 Font size changes are achieved by scaling the design size that is
7977 closest to the desired size.
7978
7979 The @code{font-size} mechanism does not work for fonts selected
7980 through @code{font-name}. These may be scaled with
7981 @code{font-magnification}.
7982
7983 @refcommands
7984
7985 The following commands set @code{fontSize} for the current voice.
7986
7987 @cindex @code{\tiny}
7988 @code{\tiny}, 
7989 @cindex @code{\small}
7990 @code{\small}, 
7991 @cindex @code{\normalsize}
7992 @code{\normalsize}, 
7993
7994 @seealso
7995
7996 Init files: @file{ly/paper20.ly} contains hints how new fonts may be
7997 added to LilyPond.
7998
7999 @refbugs
8000
8001 There is no style sheet provided for other fonts besides the @TeX{}
8002 family.
8003
8004 @cindex font selection
8005 @cindex font magnification
8006 @cindex @code{font-interface}
8007
8008
8009 @node Text markup
8010 @subsection Text markup
8011 @cindex text markup
8012 @cindex markup text
8013
8014
8015 @cindex typeset text
8016
8017 LilyPond has an internal mechanism to typeset texts. You can access it
8018 with the keyword @code{\markup}. Within markup mode, you can enter texts
8019 similar to lyrics: simply enter them, surrounded by spaces:
8020 @cindex markup
8021
8022 @lilypond[verbatim,fragment,relative=1]
8023  c1^\markup { hello }
8024  c1_\markup { hi there }
8025  c1^\markup { hi \bold there, is \italic anyone home? }
8026 @end lilypond
8027
8028 @cindex font switching
8029
8030 The markup in the example demonstrates font switching commands.  The
8031 command @code{\bold} and @code{\italic} only apply to the first
8032 following word; enclose a set of texts with braces to apply a command
8033 to more words:
8034 @example
8035   \markup @{ \bold @{ hi there @} @}
8036 @end example
8037
8038 @noindent
8039 For clarity, you can also do this for single arguments, e.g.
8040 @example
8041   \markup @{ is \italic @{ anyone @} home @}
8042 @end example
8043
8044 @cindex font size, texts
8045
8046 The following size commands set absolute sizes:
8047
8048 @cindex @code{\teeny}
8049 @cindex @code{\tiny}
8050 @cindex @code{\small}
8051 @cindex @code{\large}
8052 @cindex @code{\huge}
8053
8054 @table @code
8055 @item \teeny
8056 @item \tiny
8057 @item \small
8058 @item \large
8059 @item \huge
8060 @end table
8061
8062 You can also make letter larger or smaller relative to their neighbors,
8063 with the commands @code{\larger} and @code{\smaller}.
8064 @cindex smaller
8065 @cindex larger
8066
8067 @cindex font style, for texts
8068 @cindex @code{\bold}
8069 @cindex @code{\dynamic}
8070 @cindex @code{\number}
8071 @cindex @code{\italic}
8072
8073 The following font change commands are defined:
8074 @table @code
8075 @item \dynamic
8076 changes to the font used in dynamic signs.  This font does not
8077 contain all characters of the alphabet, so when producing ``piu f'',
8078 the ``piu'' should be done in a different font.
8079
8080
8081 @item \number
8082 changes to the font used in time signatures. It only contains
8083 numbers and a few punctuation marks.
8084 @item \italic
8085 changes @code{font-shape} to @code{italic}.
8086 @item \bold
8087 changes @code{font-series} to @code{bold}.
8088 @end table
8089
8090 @cindex raising text
8091 @cindex lowering text
8092 @cindex moving text
8093 @cindex translating text
8094
8095 @cindex @code{\sub}
8096 @cindex @code{\super}
8097
8098 Raising and lowering texts can be done with @code{\super} and
8099 @code{\sub}:
8100
8101 @lilypond[verbatim,fragment,relative=1]
8102  c1^\markup { E "=" mc \super "2" }
8103 @end lilypond
8104
8105 @cindex @code{\raise}
8106
8107 If you want to give an explicit amount for lowering or raising, use
8108 @code{\raise}.  This command takes a Scheme valued first argument, and
8109 a markup object as second argument:
8110 @c
8111 @lilypond[verbatim,fragment,relative=1,quote]
8112  c1^\markup { C \small \raise #1.0 \bold { "9/7+" }}
8113 @end lilypond
8114 The argument to @code{\raise} is the vertical displacement amount,
8115 measured in (global) staff spaces.  @code{\raise} and @code{\super}
8116 raise objects in relation to their surrounding markups. They cannot be
8117 used to move a single text up or down, when it is above or below a
8118 note, since the mechanism that positions it next to the note cancels
8119 any vertical shift. For vertical positioning, use the @code{padding}
8120 and/or @code{extra-offset} properties.
8121
8122 Other commands taking  single arguments include
8123 @table @code
8124
8125 @item \bracket, \hbracket
8126  Bracket the argument markup with normal and horizontal brackets
8127 respectively.
8128
8129 @item \musicglyph
8130 @cindex @code{\musicglyph}
8131   This is converted to a musical symbol, e.g. @code{\musicglyph
8132 #"accidentals-0"} will select the natural sign from the music font.
8133 See @ref{The Feta font} for  a complete listing of the possible glyphs.
8134 @item \char
8135 This produces a single character, e.g. @code{\char #65} produces the 
8136 letter 'A'.
8137
8138 @item \note  @var{log} @var{dots} @var{dir}
8139 @cindex @code{\note}
8140
8141 This produces a note with a stem pointing in @var{dir} direction, with
8142 duration log @var{log} and @var{dots} augmentation dots. The duration
8143 log is the negative 2-logarithm of the duration denominator. For
8144 example, a quarter note has log 2, an eighth note 3 and a breve has
8145 log -1.
8146
8147 @item \hspace #@var{amount}
8148 @cindex @code{\hspace}
8149 This produces a invisible object taking horizontal space.
8150 @example 
8151 \markup @{ A \hspace #2.0 B @} 
8152 @end example
8153 will put extra space between A and B, on top of the space that is
8154 normally inserted before elements on a line.
8155
8156 @item \fontsize #@var{size}
8157 @cindex @code{\fontsize}
8158 This sets the relative font size, eg.
8159 @example
8160 A \fontsize #2 @{ B C @} D
8161 @end example
8162
8163
8164 This will enlarge the B and the C by two steps.
8165 @item  \translate #(cons @var{x} @var{y})
8166 @cindex  \translate
8167 This translates an object. Its first argument is a cons of numbers
8168 @example
8169 A \translate #(cons 2 -3) @{ B C @} D
8170 @end example
8171 This moves `B C' 2 spaces to the right, and 3 down, relative to its
8172 surroundings. This command cannot be used to move isolated scripts
8173 vertically, for the same reason that @code{\raise} cannot be used for
8174 that.
8175
8176 @item \magnify  #@var{mag}
8177 @cindex @code{\magnify}
8178 This sets the font magnification for the its argument. In the following
8179 example, the middle A will be 10% larger:
8180 @example
8181 A \magnify #1.1 @{ A @} A
8182 @end example
8183
8184
8185 @item \override #(@var{key} . @var{value})
8186 @cindex @code{\override}
8187 This overrides a  formatting property for its argument. The argument
8188 should be a key/value pair, e.g.
8189 @example
8190   m \override #'(font-family . math) m m
8191 @end example
8192 @end table
8193
8194 In markup mode you can compose expressions, similar to mathematical
8195 expressions, XML documents and music expressions.  The braces group
8196 notes into horizontal lines. Other types of lists also exist: you can
8197 stack expressions grouped with @code{<}, and @code{>} vertically with
8198 the command @code{\column}. Similarly, @code{\center} aligns texts by
8199 their center lines:
8200
8201 @lilypond[verbatim,fragment,relative=1]
8202  c1^\markup { \column < a bbbb c > }
8203  c1^\markup { \center < a bbbb c > }
8204  c1^\markup { \line < a b c > }
8205 @end lilypond
8206
8207
8208 Markups can be stored in variables, and these variables
8209 may be attached to notes, like
8210 @verbatim
8211 allegro = \markup { \bold \large { Allegro } }
8212 \notes { a^\allegro b c d }
8213 @end verbatim
8214
8215 The markup mechanism is extensible.  Refer to
8216 @file{scm/new-markup.scm} for more information.
8217
8218
8219 Some objects have alignment procedures of their own, which cancel out
8220 any effects of alignments applied to their markup arguments as a
8221 whole.  For example, the @internalsref{RehearsalMark} is horizontally
8222 centered, so using @code{\mark \markup @{ \left-align .. @}} has no
8223 effect. Similarly, whole texts over notes cannot be moved vertically
8224 with @code{\raise}. For moving and aligning complete objects, grob
8225 properties should be used.
8226
8227 @seealso
8228
8229 Internals: @internalsref{Markup-functions} contains a complete list of
8230 all markup commands.
8231
8232 Init files:  @file{scm/new-markup.scm}.
8233
8234 @refbugs
8235
8236 @cindex kerning
8237
8238
8239 Text layout is ultimately done by @TeX{}, which does kerning of
8240 letters.  LilyPond does not account for kerning, so texts will be
8241 spaced slightly too wide.
8242
8243 Syntax errors for markup mode are confusing.
8244
8245 Markup texts cannot be used in the titling of the @code{\header}
8246 field. Titles are made by La@TeX{}, so La@TeX{} commands should be used
8247 for formatting.
8248
8249
8250
8251
8252
8253
8254 @node Global layout
8255 @section Global layout
8256
8257 The global layout determined by three factors: the page layout, the
8258 line breaks and the spacing. These all influence each other. The
8259 choice of spacing determines how densely each system of music is set,
8260 which influences where line breaks breaks are chosen, and thus
8261 ultimately how many pages a piece of music takes. This section
8262 explains how to tune the algorithm for spacing.
8263
8264 Globally spoken, this procedure happens in three steps: first,
8265 flexible distances (``springs'') are chosen, based on durations. All
8266 possible line breaking combination are tried, and the one with the
8267 best results---a layout that has uniform density and requires as
8268 little stretching or cramping as possible---is chosen. When the score
8269 is processed by @TeX{}, each page is filled with systems, and page breaks
8270 are chosen whenever the page gets full.
8271
8272
8273
8274 @menu
8275 * Vertical spacing::            
8276 * Horizontal spacing::          
8277 * Font Size::                   
8278 * Line breaking::               
8279 * Page layout::                 
8280 @end menu
8281
8282
8283 @node Vertical spacing
8284 @subsection Vertical spacing
8285
8286 @cindex vertical spacing
8287 @cindex distance between staves
8288 @cindex staff distance
8289 @cindex between staves, distance
8290 @cindex staffs per page
8291 @cindex space between staves
8292
8293 The height of each system is determined automatically by LilyPond, to
8294 keep systems from bumping into each other, some minimum distances are
8295 set.  By changing these, you can put staves closer together, and thus
8296 put more  systems onto one page.
8297
8298 Normally staves are stacked vertically. To make
8299 staves maintain a distance, their vertical size is padded. This is
8300 done with the property @code{minimumVerticalExtent}. It takes a pair
8301 of numbers, so if you want to make it smaller from its, then you could
8302 set
8303 @example
8304   \property Staff.minimumVerticalExtent = #'(-4 . 4)
8305 @end example
8306 This sets the vertical size of the current staff to 4 staff spaces on
8307 either side of the center staff line.  The argument of
8308 @code{minimumVerticalExtent} is interpreted as an interval, where the
8309 center line is the 0, so the first number is generally negative.  The
8310 staff can be made larger at the bottom by setting it to @code{(-6
8311 . 4)}.
8312
8313 The piano staves are handled a little differently: to make cross-staff
8314 beaming work correctly, it is necessary that the distance between staves
8315 is fixed beforehand.  This is also done with a
8316 @internalsref{VerticalAlignment} object, created in
8317 @internalsref{PianoStaff}. In this object the distance between the
8318 staves is fixed by setting @code{forced-distance}. If you want to
8319 override this, use a @code{\translator} block as follows:
8320 @example
8321   \translator @{
8322     \PianoStaffContext
8323     VerticalAlignment \override #'forced-distance = #9
8324   @}
8325 @end example
8326 This would bring the staves together at a distance of 9 staff spaces,
8327 measured from the center line of each staff.
8328
8329 @seealso
8330
8331 Internals: Vertical alignment of staves is handled by the
8332 @internalsref{VerticalAlignment} object.
8333
8334
8335
8336 @node Horizontal spacing
8337 @subsection Horizontal Spacing
8338
8339 The spacing engine translates differences in durations into
8340 stretchable distances (``springs'') of differing lengths. Longer
8341 durations get more space, shorter durations get less.  The shortest
8342 durations get a fixed amount of space (which is controlled by
8343 @code{shortest-duration-space} in the @internalsref{SpacingSpanner} object). 
8344 /The longer the duration, the more space it gets: doubling a
8345 duration adds a fixed amount (this amount is controlled by
8346 @code{spacing-increment}) of space to the note.
8347
8348 For example, the following piece contains lots of half, quarter and
8349 8th notes, the eighth note is followed by 1 note head width (NHW). 
8350 The quarter note is followed by 2 NHW, the half by 3 NHW, etc.
8351 @lilypond[fragment, verbatim, relative=1] c2 c4. c8 c4. c8 c4. c8 c8
8352 c8 c4 c4 c4
8353 @end lilypond
8354
8355 Normally, @code{shortest-duration-space} is set to 1.2, which is the
8356 width of a note head, and @code{shortest-duration-space} is set to
8357 2.0, meaning that the shortest note gets 2 NHW (2 times
8358 @code{shortest-duration-space}) of space. For normal notes, this space
8359 is always counted from the left edge of the symbol, so the shortest
8360 notes are generally followed by one NHW of space.
8361
8362 If one would follow the above procedure exactly, then adding a single
8363 32th note to a score that uses 8th and 16th notes, would widen up the
8364 entire score a lot. The shortest note is no longer a 16th, but a 32nd,
8365 thus adding 1 NHW to every note. To prevent this, the
8366 shortest duration for spacing is not the shortest note in the score,
8367 but the most commonly found shortest note.  Notes that are even
8368 shorter this are followed by a space that is proportional to their
8369 duration relative to the common shortest note.  So if we were to add
8370 only a few 16th notes to the example above, they would be followed by
8371 half a NHW:
8372
8373 @lilypond[fragment, verbatim, relative=2]
8374  c2 c4. c8 c4. c16[ c] c4. c8 c8 c8 c4 c4 c4
8375 @end lilypond
8376
8377 The most common shortest duration is determined as follows: in every
8378 measure, the shortest duration is determined. The most common short
8379 duration, is taken as the basis for the spacing, with the stipulation
8380 that this shortest duration should always be equal to or shorter than
8381 1/8th note. The shortest duration is printed when you run lilypond
8382 with @code{--verbose}.  These durations may also be customized. If you
8383 set the @code{common-shortest-duration} in
8384 @internalsref{SpacingSpanner}, then this sets the base duration for
8385 spacing. The maximum duration for this base (normally 1/8th), is set
8386 through @code{base-shortest-duration}.
8387
8388 @cindex @code{common-shortest-duration}
8389 @cindex @code{base-shortest-duration}
8390 @cindex @code{stem-spacing-correction}
8391 @cindex @code{spacing}
8392
8393 In the introduction it was explained that stem directions influence
8394 spacing. This is controlled with @code{stem-spacing-correction}
8395 property in @internalsref{NoteSpacing}, which are generated for every
8396 @internalsref{Voice} context. The @code{StaffSpacing} object
8397 (generated at @internalsref{Staff} context) contains the same property
8398 for controlling the stem/barline spacing. The following example
8399 shows these corrections, once with default settings, and once with
8400 exaggerated corrections:
8401
8402 @lilypond
8403     \score { \notes {
8404       c'4 e''4 e'4 b'4 |
8405       b'4 e''4 b'4 e''4|
8406       \property Staff.NoteSpacing \override #'stem-spacing-correction
8407       = #1.5
8408       \property Staff.StaffSpacing \override #'stem-spacing-correction
8409       = #1.5
8410       c'4 e''4 e'4 b'4 |
8411       b'4 e''4 b'4 e''4|      
8412     }
8413     \paper { raggedright = ##t } }
8414 @end lilypond
8415
8416 @cindex SpacingSpanner, overriding properties
8417
8418 Properties of the  @internalsref{SpacingSpanner} must be overridden
8419 from the @code{\paper} block, since the @internalsref{SpacingSpanner} is
8420 created before any @code{\property} statements are interpreted.
8421 @example
8422 \paper @{ \translator  @{
8423   \ScoreContext
8424   SpacingSpanner \override #'spacing-increment = #3.0
8425 @} @}
8426 @end example
8427
8428
8429 @seealso
8430
8431 Internals: @internalsref{SpacingSpanner}, @internalsref{NoteSpacing},
8432 @internalsref{StaffSpacing}, @internalsref{SeparationItem}, and
8433 @internalsref{SeparatingGroupSpanner}.
8434
8435 @refbugs
8436
8437 Spacing is determined on a score wide basis. If you have a score that
8438 changes its character (measured in durations) halfway during the
8439 score, the part containing the longer durations will be spaced too
8440 widely.
8441
8442 There is no convenient mechanism to manually override spacing.
8443
8444
8445
8446 @node Font Size
8447 @subsection Font size
8448 @cindex font size, setting
8449 @cindex staff size, setting
8450 @cindex @code{paper} file
8451
8452 The Feta font provides musical symbols at eight seven different
8453 sizes. Each font is tuned for a different staff size, which are listed
8454 in the following table:
8455
8456 @multitable @columnfractions  .3 .3 .4  
8457
8458 @item @b{name}
8459 @tab @b{staff height (pt)}
8460 @tab @b{staff height (mm)}
8461 @tab @b{use}
8462
8463 @item feta11
8464 @tab 11.22
8465 @tab 3.9 
8466 @tab pocket scores
8467
8468 @item feta13
8469 @tab 12.60pt
8470 @tab 4.4mm
8471 @tab
8472
8473 @item feta14
8474 @tab 14.14pt
8475 @tab 5.0mm
8476 @tab 
8477
8478 @item feta16
8479 @tab 15.87pt
8480 @tab 5.6mm
8481 @tab 
8482
8483 @item feta18
8484 @tab 17.82pt
8485 @tab 6.3mm
8486 @tab song books
8487
8488 @item feta20
8489 @tab 17.82pt
8490 @tab 7.0mm
8491 @tab standard parts 
8492
8493 @item feta23
8494 @tab 22.45 pt
8495 @tab 7.9mm
8496 @tab 
8497
8498 @item feta20
8499 @tab 25.2 pt
8500 @tab 8.9mm
8501 @tab
8502 @c modern rental material  ?
8503
8504 @end multitable
8505
8506 These standard sizes can be used by including the file @file{paperSZ.ly}, where
8507 @code{SZ} is one of 11, 13, 16, 20, 23 and 26.  If you include any
8508 of these files, the variables @code{paperEleven},
8509 @code{paperThirteen}, @code{paperSixteen},  @code{paperEightteen}, 
8510 @code{paperTwenty}, @code{paperTwentythree}, and @code{paperTwentysix}
8511 are defined respectively.  The default @code{\paper} block is also
8512 set. These files should be imported at toplevel, i.e.
8513 @example
8514         \include "paper26.ly"
8515         \score @{  ... @}
8516 @end example
8517
8518 Sizes can also be
8519
8520
8521 The default font size settings for each staff heights are generated
8522 from the 20pt style sheet. For more details, see the file
8523 @file{scm/font.scm}.
8524
8525
8526   of starting from 11 point
8527 (.  These fonts are 11 point, 13 point, 16 point, 20 point, 23 point,
8528 and 26 point.  The point size of a font is the height of the
8529 corresponding staff (excluding line thicknesses).
8530
8531 Definitions for these sizes are the files
8532
8533
8534 @node Line breaking
8535 @subsection Line breaking
8536
8537 @cindex line breaks
8538 @cindex breaking lines
8539
8540 Line breaks are normally computed automatically. They are chosen such
8541 that lines look neither cramped nor loose, and that consecutive lines
8542 have similar density.
8543
8544 Occasionally you might want to override the automatic breaks; you can
8545 do this by  specifying @code{\break}. This will force a line break at
8546 this point.  Line breaks can only occur at places where there are bar
8547 lines.  If you want to have a line break where there is no bar line,
8548 you can force an invisible bar line by entering @code{\bar
8549 ""}. Similarly, @code{\noBreak} forbids a line break at a 
8550 point.
8551
8552
8553 @cindex regular line breaks
8554 @cindex four bar music. 
8555
8556 For linebreaks at regular intervals  use @code{\break} separated by
8557 skips and repeated with @code{\repeat}:
8558 @example
8559 <<  \repeat unfold 7 @{
8560          s1 \noBreak s1 \noBreak
8561          s1 \noBreak s1 \break  @}
8562    @emph{the real music}
8563 >> 
8564 @end  example
8565
8566 @noindent
8567 This makes the following 28 measures (assuming 4/4 time) be broken every
8568 4 measures, and only there.
8569
8570 @refcommands
8571
8572 @code{\break}, @code{\noBreak}
8573 @cindex @code{\break}
8574 @cindex @code{\noBreak}
8575
8576 @seealso
8577
8578 Internals: @internalsref{BreakEvent}.
8579
8580
8581 @node Page layout
8582 @subsection Page layout
8583
8584 @cindex page breaks
8585 @cindex breaking pages
8586
8587 @cindex @code{indent}
8588 @cindex @code{linewidth}
8589
8590 The most basic settings influencing the spacing are @code{indent} and
8591 @code{linewidth}. They are set in the @code{\paper} block. They
8592 control the indentation of the first line of music, and the lengths of
8593 the lines.
8594
8595 If  @code{raggedright} is set to true in the @code{\paper}
8596 block, then the lines are justified at their natural length. This
8597 useful for short fragments, and for checking how tight the natural
8598 spacing is.
8599
8600 @cindex page layout
8601 @cindex vertical spacing
8602
8603 The page layout process happens outside the LilyPond formatting
8604 engine: variables controlling page layout are passed to the output,
8605 and are further interpreted by @code{lilypond} wrapper program. It
8606 responds to the following variables in the @code{\paper} block.  The
8607 variable @code{textheight} sets the total height of the music on each
8608 page.  The spacing between systems is controlled with
8609 @code{interscoreline}, its default is 16pt.  The distance between the
8610 score lines will stretch in order to fill the full page
8611 @code{interscorelinefill} is set to a positive number.  In that case
8612 @code{interscoreline} specifies the minimum spacing.
8613
8614 @cindex @code{textheight}
8615 @cindex @code{interscoreline}
8616 @cindex @code{interscorelinefill}
8617
8618 If the variable @code{lastpagefill} is defined,
8619 @c fixme: this should only be done if lastpagefill == #t 
8620 systems are evenly distributed vertically on the last page.  This
8621 might produce ugly results in case there are not enough systems on the
8622 last page.  The @command{lilypond-book} command ignores
8623 @code{lastpagefill}.  See @ref{lilypond-book manual} for more
8624 information.
8625
8626 @cindex @code{lastpagefill}
8627
8628 Page breaks are normally computed by @TeX{}, so they are not under
8629 direct control of LilyPond.  However, you can insert a commands into
8630 the @file{.tex} output to instruct @TeX{} where to break pages.  This
8631 is done by setting the @code{between-systems-strings} on the
8632 @internalsref{NonMusicalPaperColumn} where the system is broken.
8633 An example is shown in @inputfileref{input/regression,between-systems.ly}.
8634 The predefined command @code{\newpage} also does this.
8635
8636 @cindex paper size
8637 @cindex page size
8638 @cindex @code{papersize}
8639
8640 To change the paper size, you must first set the @code{papersize} paper 
8641 variable variable as in the example below.  Set it to
8642 the strings @code{a4}, @code{letter}, or @code{legal}.  After this
8643 specification, you must set the font as described above.  If you want
8644 the default font, then use the 20 point font.
8645
8646 @example
8647         \paper@{ papersize = "a4" @}
8648         \include "paper16.ly"
8649 @end example
8650
8651 The file @code{paper16.ly}  will now include a file named @file{a4.ly}, which
8652 will set the paper variables @code{hsize} and @code{vsize} (used by
8653 @code{lilypond-book} and @code{lilypond}).
8654
8655
8656 @refcommands
8657
8658 @cindex @code{\newpage}
8659 @code{\newpage}. 
8660
8661
8662 @seealso
8663
8664 In this manual @ref{Invoking lilypond}
8665
8666 Examples: @inputfileref{input/regression,between-systems.ly}
8667
8668 Internals: @internalsref{NonMusicalPaperColumn}.
8669
8670 @refbugs
8671
8672 LilyPond has no concept of page layout, which makes it difficult to
8673 reliably choose page breaks in longer pieces.
8674
8675
8676
8677
8678 @node Sound
8679 @section Sound
8680 @cindex Sound
8681
8682 Entered music can also be converted to MIDI output.  The performance
8683 is good enough for proof-hearing the music for errors.
8684
8685 Ties, dynamics and tempo changes are interpreted.  Dynamic marks,
8686 crescendi and decrescendi translate into MIDI volume levels.  Dynamic
8687 marks translate to a fixed fraction of the available MIDI volume
8688 range, crescendi and decrescendi make the volume vary linearly between
8689 their two extremities.  The fractions can be adjusted by
8690 @code{dynamicAbsoluteVolumeFunction} in @internalsref{Voice} context.
8691 For each type of MIDI instrument, a volume range can be defined.  This
8692 gives a basic equalizer control, which can enhance the quality of
8693 the MIDI output remarkably.  The equalizer can be controlled by
8694 setting @code{instrumentEqualizer}.
8695
8696 @refbugs
8697
8698 Many musically interesting effects, such as swing, articulation,
8699 slurring, etc., are not translated to MIDI.
8700
8701
8702 @menu
8703 * MIDI block::                  
8704 * MIDI instrument names::       
8705 @end menu
8706
8707
8708 @node MIDI block
8709 @subsection MIDI block
8710 @cindex MIDI block
8711
8712
8713 The MIDI block is analogous to the paper block, but it is somewhat
8714 simpler.  The @code{\midi} block can contain:
8715 @cindex MIDI block
8716
8717 @itemize @bullet
8718   @item a @code{\tempo} definition, and
8719   @item context definitions.
8720 @end itemize
8721
8722 Assignments in the @code{\midi} block are not allowed.
8723
8724 A number followed by a period is interpreted as a real number, so
8725 for setting the tempo for dotted notes, an extra space should be
8726 inserted, for example:
8727
8728 @example
8729   \midi @{ \tempo 4 . = 120 @} 
8730 @end example
8731
8732
8733 @cindex context definition
8734
8735 Context definitions follow precisely the same syntax as within the
8736 \paper block.  Translation modules for sound are called performers.
8737 The contexts for MIDI output are defined in @file{ly/performer-init.ly}.
8738
8739
8740 @node MIDI instrument names
8741 @subsection MIDI instrument names
8742
8743 @cindex instrument names
8744 @cindex @code{Staff.midiInstrument}
8745
8746 The MIDI instrument name is set by the @code{Staff.midiInstrument}
8747 property.  The instrument name should be chosen from the list in
8748 @ref{MIDI instruments}.
8749
8750 @refbugs
8751
8752 If the selected string does not exactly match, then the default is
8753 used, which is the Grand Piano. 
8754