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