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