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