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