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