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