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