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