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