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