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