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