]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/notation.itely
* scm/part-combiner.scm (make-part-combine-music): don't do
[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
2999 @quotation
3000 @example
3001 \autochange \context Voice @{ @dots{}@var{music}@dots{} @}
3002 @end example
3003 @end quotation
3004
3005 @noindent
3006 The two staves of the piano staff must be named @code{up} and
3007 @code{down}.
3008
3009 A @code{\relative} section that is outside of @code{\autochange} has
3010 no effect on the pitches of @var{music}, so, if necessary, put
3011 @code{\relative} inside @code{\autochange} like
3012
3013 @quotation
3014 @example
3015 \autochange \relative @dots{} \new Voice @dots{}
3016 @end example
3017 @end quotation
3018
3019
3020 The autochanger switches on basis of pitch (middle C is the turning
3021 point), and it looks ahead skipping over rests to switch in
3022 advance. Here is a practical example
3023         
3024 @lilypond[quote,verbatim,raggedright]
3025 \score { \notes \context PianoStaff <<
3026   \context Staff = "up" {
3027     \autochange \new Voice \relative c' {
3028        g4 a  b c d r4 a g } }
3029   \context Staff = "down" {
3030        \clef bass
3031        s1*2
3032 } >> }
3033 @end lilypond
3034
3035 @noindent
3036 In this example, spacer rests are used to prevent the bottom staff from
3037 terminating too soon.
3038
3039
3040 @seealso
3041
3042 In this manual: @ref{Manual staff switches}.
3043
3044 Program reference: @internalsref{AutoChangeMusic}.
3045
3046
3047
3048 @refbugs
3049
3050 The staff switches often do not end up in optimal places. For high
3051 quality output, staff switches should be specified manually.
3052
3053
3054 @code{\autochange} cannot be inside @code{\times}. 
3055
3056 Internally, the @code{\partcombine} interprets both arguments as
3057 @code{Voice}s named @code{one} and @code{two}, and then decides when
3058 the parts can be combined. Consequently, if the arguments switch to
3059 differently named @internalsref{Voice} contexts, the events in those
3060 will be ignored.
3061
3062
3063 @node Manual staff switches
3064 @subsection Manual staff switches
3065
3066 @cindex manual staff switches
3067 @cindex staff switch, manual
3068
3069 Voices can be switched between staves manually, using the following command
3070 @example
3071 \change Staff = @var{staffname} @var{music}
3072 @end example
3073
3074 @noindent
3075 The string @var{staffname} is the name of the staff. It switches the
3076 current voice from its current staff to the Staff called
3077 @var{staffname}. Typically @var{staffname} is @code{"up"} or
3078 @code{"down"}.
3079
3080
3081
3082 @node Pedals
3083 @subsection Pedals
3084 @cindex Pedals
3085
3086 Pianos have pedals that alter the way sound are produced. Generally, a
3087 piano has three pedals, sustain, una corda, and sostenuto.
3088
3089
3090 Piano pedal instruction can be expressed by attaching
3091 @code{\sustainDown}, @code{\sustainUp}, @code{\unaCorda},
3092 @code{\treCorde}, @code{\sostenutoDown} and @code{\sostenutoUp} to a
3093 note or chord
3094
3095 @lilypond[quote,fragment,verbatim]
3096 c'4\sustainDown c'4\sustainUp
3097 @end lilypond
3098
3099 What is printed can be modified by setting @code{pedal@var{X}Strings},
3100 where @var{X} is one of the pedal types: @code{Sustain},
3101 @code{Sostenuto} or @code{UnaCorda}.  Refer to
3102 @internalsref{SustainPedal} in the program reference for more
3103 information.
3104
3105 Pedals can also be indicated by a sequence of brackets, by setting the 
3106 @code{pedalSustainStyle} property to @code{bracket} objects
3107
3108 @lilypond[quote,fragment,verbatim,relative=3]
3109 \set Staff.pedalSustainStyle = #'bracket
3110 c\sustainDown d e
3111 b\sustainUp\sustainDown
3112 b g \sustainUp a \sustainDown \bar "|."
3113 @end lilypond
3114
3115 A third style of pedal notation is a mixture of text and brackets,
3116 obtained by setting the @code{pedalSustainStyle} style property to
3117 @code{mixed}
3118
3119 @lilypond[quote,fragment,verbatim,relative=3]
3120 \set Staff.pedalSustainStyle = #'mixed
3121 c\sustainDown d e
3122 b\sustainUp\sustainDown
3123 b g \sustainUp a \sustainDown \bar "|."
3124 @end lilypond
3125
3126 The default `*Ped.' style for sustain and damper pedals corresponds to
3127 style @code{#'text}. The sostenuto pedal uses @code{mixed} style by
3128 default.
3129
3130 @lilypond[quote,fragment,verbatim,relative=3]
3131 c\sostenutoDown d e c, f g a\sostenutoUp
3132 @end lilypond
3133
3134 For fine-tuning of the appearance of a pedal bracket, the properties
3135 @code{edge-width}, @code{edge-height}, and @code{shorten-pair} of
3136 @code{PianoPedalBracket} objects (see
3137 @internalsref{PianoPedalBracket} in the Program reference)  can be modified.  For example, the
3138 bracket may be extended to the end of the note head
3139
3140 @lilypond[quote,fragment,verbatim]
3141 \override Staff.PianoPedalBracket  
3142    #'shorten-pair = #'(0 . -1.0)
3143 c\sostenutoDown d e c, f g a\sostenutoUp
3144 @end lilypond
3145
3146 @node Arpeggio
3147 @subsection Arpeggio
3148 @cindex Arpeggio
3149
3150 @cindex broken arpeggio
3151 @cindex @code{\arpeggio}
3152
3153 You can specify an arpeggio sign on a chord by attaching an
3154 @code{\arpeggio} to a chord
3155
3156
3157 @lilypond[quote,fragment,relative=1,verbatim]
3158 <c e g c>\arpeggio
3159 @end lilypond
3160
3161 When an arpeggio crosses staves, you attach an arpeggio to the chords
3162 in both staves, and set
3163 @internalsref{PianoStaff}.@code{connectArpeggios}
3164
3165 @lilypond[quote,fragment,relative=1,verbatim]
3166 \context PianoStaff <<
3167   \set PianoStaff.connectArpeggios = ##t
3168   \new Staff  { <c' e g c>\arpeggio }
3169   \new Staff { \clef bass  <c,, e g>\arpeggio }
3170 >>
3171 @end lilypond
3172
3173 The direction of the arpeggio is sometimes denoted by adding an
3174 arrowhead to the wiggly line
3175
3176 @lilypond[quote,fragment,relative=1,verbatim]
3177 \context Voice {
3178   \arpeggioUp
3179   <c e g c>\arpeggio
3180   \arpeggioDown
3181   <c e g c>\arpeggio
3182 }
3183 @end lilypond
3184
3185 A square bracket on the left indicates that the player should not
3186 arpeggiate the chord
3187
3188 @lilypond[quote,fragment,relative=1,verbatim]
3189 \arpeggioBracket
3190 <c' e g c>\arpeggio
3191 @end lilypond
3192
3193 @refcommands
3194
3195 @cindex @code{\arpeggio}
3196 @code{\arpeggio},
3197 @cindex @code{\arpeggioUp}
3198 @code{\arpeggioUp},
3199 @cindex @code{\arpeggioDown}
3200 @code{\arpeggioUp},
3201 @cindex @code{\arpeggioBoth}
3202 @code{\arpeggioBoth},
3203 @cindex @code{\arpeggioBracket}
3204 @code{\arpeggioBracket}.
3205
3206 @seealso
3207
3208 Program reference: @internalsref{ArpeggioEvent} music expressions lead to
3209 @internalsref{Arpeggio} objects.  Cross staff arpeggios are
3210 @internalsref{PianoStaff}.@internalsref{Arpeggio}.
3211
3212 @refbugs
3213
3214 It is not possible to mix connected arpeggios and unconnected
3215 arpeggios in one @internalsref{PianoStaff} at the same time.
3216
3217 @node Staff switch lines
3218 @subsection Staff switch lines
3219
3220
3221 @cindex follow voice
3222 @cindex staff switching
3223 @cindex cross staff
3224
3225 @cindex @code{followVoice}
3226
3227 Whenever a voice switches to another staff a line connecting the notes
3228 can be printed automatically. This is enabled if the property
3229 @code{PianoStaff.followVoice} is set to true
3230
3231 @lilypond[quote,fragment,relative=1,verbatim]
3232 \context PianoStaff <<
3233   \set PianoStaff.followVoice = ##t
3234   \context Staff \context Voice {
3235     c1
3236     \change Staff=two
3237     b2 a
3238   }
3239  \context Staff=two { \clef bass \skip 1*2 }
3240 >>  
3241 @end lilypond
3242
3243 @seealso
3244
3245 The associated object is @internalsref{VoiceFollower}.
3246
3247 @refcommands
3248
3249 @cindex @code{\showStaffSwitch}
3250 @code{\showStaffSwitch}, 
3251 @cindex @code{\hideStaffSwitch}
3252 @code{\hideStaffSwitch}.
3253
3254
3255 @node Vocal music
3256 @section Vocal music
3257
3258 This section discusses how to enter and print lyrics.
3259
3260 @menu
3261 * Entering lyrics::             
3262 * The Lyrics context::          
3263 * More stanzas::                
3264 * Ambitus::                     
3265 @end menu
3266
3267 @node Entering lyrics
3268 @subsection Entering lyrics
3269
3270
3271 @cindex lyrics
3272 @cindex @code{\lyrics}
3273 @cindex punctuation
3274
3275 Lyrics are entered in a special input mode. This mode is is introduced
3276 by the keyword @code{\lyrics}.  In this mode you can enter lyrics, with
3277 punctuation and accents without any hassle.  Syllables are entered like
3278 notes, but with pitches replaced by text.  For example,
3279 @example
3280   \lyrics @{ Twin-4 kle4 twin- kle litt- le star2 @}
3281 @end example
3282
3283 A word in Lyrics mode begins with: an alphabetic character, @code{_},
3284 @code{?}, @code{!}, @code{:}, @code{'}, the control characters @code{^A}
3285 through @code{^F}, @code{^Q} through @code{^W}, @code{^Y}, @code{^^},
3286 any 8-bit character with ASCII code over 127, or a two-character
3287 combination of a backslash followed by one of @code{`}, @code{'},
3288 @code{"}, or @code{^}.
3289
3290 Subsequent characters of a word can be any character that is not a digit
3291 and not white space.  One important consequence of this is that a word
3292 can end with @code{@}}. The following example is usually a bug. The
3293 syllable includes a @code{@}}, and hence the opening brace is not balanced
3294 @example
3295   \lyrics @{ twinkle@}
3296 @end example
3297
3298 @cindex @code{\property}, in @code{\lyrics}
3299 Similarly, a period following a alphabetic sequence, is included in
3300 the resulting string. As a consequence, spaces must be inserted around
3301 property commands
3302 @example
3303   \override Score . LyricText #'font-shape = #'italic
3304 @end example
3305
3306 @cindex @code{_}
3307 @cindex spaces, in lyrics
3308 @cindex quotes, in lyrics
3309
3310 Any @code{_} character which appears in an unquoted word is converted
3311 to a space.  This provides a mechanism for introducing spaces into words
3312 without using quotes.  Quoted words can also be used in Lyrics mode to
3313 specify words that cannot be written with the above rules
3314
3315 @example
3316   \lyrics @{ He said: "\"Let" my peo ple "go\"" @}
3317 @end example
3318 However, at least for english texts, you should use 
3319 @example
3320   \lyrics @{ He said: ``Let my peo ple go'' @}
3321 @end example
3322 to get the correct shape of the starting and ending quote.
3323
3324 @cindex hyphens
3325
3326 Centered hyphens are entered as `@code{-}@code{-}' between syllables.
3327 The hyphen will have variable length depending on the space between
3328 the syllables and it will be centered between the syllables.
3329
3330 @cindex melisma
3331 @cindex extender
3332
3333 When a lyric is sung over many notes (this is called a melisma), this is
3334 indicated with a horizontal line centered between a syllable and the
3335 next one. Such a line is called an extender line, and it is entered as
3336 @code{__}.
3337
3338 @seealso
3339
3340 Program reference: events @internalsref{LyricEvent},
3341 @internalsref{HyphenEvent}, and @internalsref{ExtenderEvent}. Objects
3342 @internalsref{LyricHyphen}, @internalsref{LyricExtender} and
3343 @internalsref{LyricText}.
3344
3345 Examples: @inputfileref{input/test,lyric-hyphen-retain.ly}.
3346
3347 @refbugs
3348
3349 The definition of lyrics mode is too complex.
3350
3351
3352
3353 @node The Lyrics context
3354 @subsection  The Lyrics context
3355
3356 Lyrics are printed by interpreting them in a @internalsref{Lyrics} context
3357 @example
3358  \context Lyrics \lyrics @dots{}
3359 @end example
3360
3361 @cindex automatic syllable durations
3362 @cindex @code{\lyricsto}
3363 @cindex lyrics and melodies
3364
3365 This will place the lyrics according to the durations that were
3366 entered. The lyrics can also be aligned under a given melody
3367 automatically.  In this case, it is no longer necessary to enter the
3368 correct duration for each syllable.  This is achieved by combining the
3369 melody and the lyrics with the @code{\lyricsto} expression
3370 @example
3371 \lyricsto @var{name} \new Lyrics @dots{} 
3372 @end example
3373
3374 This aligns the lyrics to the
3375 @c
3376 notes of the @internalsref{Voice} context called @var{name}, which has
3377 to exist. Therefore, normally the @code{Voice} is specified first, and
3378 then the lyrics are specified with @code{\lyricsto}.
3379
3380 For different or more complex orderings, the best way is to setup the
3381 hierarchy of staves and lyrics first, e.g.
3382 @example
3383 \context ChoirStaff \notes <<
3384   \context Lyrics = sopranoLyrics @{ s1 @}
3385   \context Voice = soprano @{ @emph{music} @}
3386   \context Lyrics = tenorLyrics @{ s1 @}
3387   \context Voice = tenor @{ @emph{music} @}
3388 >>
3389 @end example
3390 and then combine the appropriate melodies and lyric lines
3391 @example
3392   \lyricsto "soprano" \context Lyrics = sopranoLyrics
3393      @emph{the lyrics}
3394 @end example
3395
3396 @noindent
3397 The final input would resemble
3398
3399 @example
3400   << \context ChoirStaff \notes << @emph{setup the music}  >>
3401      \lyricsto "soprano" @emph{etc}
3402      \lyricsto "alto" @emph{etc}
3403      @emph{etc}
3404   >>
3405 @end example 
3406
3407
3408 The @code{\lyricsto} command detects melismata: it only puts one
3409 syllable under a tied or slurred group of notes. If you want to force
3410 an unslurred group of notes to be a melisma, insert @code{\melisma}
3411 after the first note of the group, and @code{\melismaEnd} after the
3412 last one, e.g.
3413
3414 @lilypond[quote,relative=2,raggedright,fragment,verbatim]
3415 <<
3416   \context Voice = "lala" {
3417     \time 3/4
3418     f4 g8
3419     \melisma 
3420     f e f
3421     \melismaEnd
3422     e2
3423   }
3424   \lyricsto "lala" \new Lyrics \lyrics {
3425     la di __ daah 
3426   }
3427 >>
3428 @end lilypond
3429
3430 In addition, notes are considered a melisma if they are manually
3431 beamed, and automatic beaming (see @ref{Setting automatic beam
3432 behavior}) is switched off.  The criteria for deciding melismata can
3433 be tuned with the property @code{melismaBusyProperties}. See
3434 @internalsref{Melisma_translator} in the program reference for more
3435 information.
3436
3437 When multiple stanzas are put on the same melody, it can happen that
3438 two stanzas have melismata in different locations. This can be
3439 remedied by switching off melismata for one
3440 @internalsref{Lyrics}. This is achieved by setting
3441 the @code{ignoreMelismata} property to @code{#t}. An example is shown
3442 in @inputfileref{input/regression,lyric-combine-new.ly}.
3443
3444 @cindex SATB
3445 @cindex choral score
3446
3447 A complete example of a SATB score setup is in the file
3448 @inputfileref{input/template,satb.ly}.
3449
3450
3451 @refcommands
3452
3453 @code{\melisma}, @code{\melismaEnd}
3454 @cindex @code{\melismaEnd}
3455 @cindex @code{\melisma}
3456
3457 @seealso
3458
3459 Program reference: Music expressions: @internalsref{LyricCombineMusic},
3460 Contexts: @internalsref{Lyrics}, @internalsref{Melisma_translator}.
3461
3462 Examples: @inputfileref{input/template,satb.ly},
3463 @inputfileref{input/regression,lyric-combine-new.ly}.
3464  
3465 @refbugs
3466
3467 Melismata are not detected automatically, and extender lines must be
3468 inserted by hand.
3469
3470
3471 For proper processing of extender lines, the
3472 @internalsref{Lyrics} and @internalsref{Voice} should be
3473 linked. This can be achieved either by using @code{\lyricsto} or by
3474 setting corresponding names for both contexts. The latter is explained
3475 in @ref{More stanzas}.
3476
3477 @node More stanzas
3478 @subsection More stanzas
3479
3480 @cindex phrasing, in lyrics
3481
3482
3483 The lyrics should be aligned with the note heads of the melody. To
3484 achieve this, each line of lyrics should be marked to correspond with
3485 the melodic line. This is done automatically when @code{\lyricsto},
3486 but it can also be done manually. 
3487
3488 To this end, give the @internalsref{Voice} context an identity
3489 @example
3490 \context Voice = duet @{
3491      \time 3/4
3492      g2 e4 a2 f4 g2.  @}
3493 @end example
3494
3495 Then set the @internalsref{Lyrics} contexts to names starting with
3496 that identity followed by a dash.  In the preceding example, the
3497 @internalsref{Voice} identity is @code{duet}, so the identities of the
3498 @internalsref{Lyrics}s are marked @code{duet-1} and @code{duet-2}
3499 @example
3500   \context Lyrics = "duet-1" @{
3501     Hi, my name is Bert. @}
3502   \context Lyrics = "duet-2" @{
3503     Ooooo, ch\'e -- ri, je t'aime. @}
3504 @end example
3505
3506 The complete example is shown here
3507 @lilypond[quote,raggedright,verbatim]
3508 \score {
3509   <<
3510     \notes \relative c'' \context Voice = duet {
3511       \time 3/4
3512        g2 e4 a2 f4 g2. }
3513     \lyrics <<
3514       \lyricsto "duet" \new Lyrics {
3515         \set vocalName = "Bert"
3516         Hi, my name is Bert. }
3517       \lyricsto "duet" \new Lyrics {
3518         \set vocalName = "Ernie"
3519         Ooooo, ch\'e -- ri, je t'aime. }
3520     >>
3521   >>
3522 }
3523 @end lilypond
3524
3525 @cindex stanza number
3526 @cindex singer's names
3527 @cindex name of singer 
3528
3529 Stanza numbers can be added by setting @code{stanza}, e.g.
3530
3531 @lilypond[quote,verbatim,relative=3]
3532 <<
3533   \context Voice = duet {
3534     \time 3/4 g2 e4 a2 f4 g2. }
3535    \lyrics \lyricsto "duet" \new Lyrics {
3536      \set stanza = "1. "
3537      Hi, my name is Bert. }
3538 >>
3539 @end lilypond
3540
3541 This example also demonstrates how names of the singers can be added
3542 using @code{vocalName} analogous to instrument annotations for staves.
3543 A short version may be entered as @code{vocNam}.
3544
3545 To make empty spaces in lyrics, use @code{\skip}.
3546
3547
3548 @seealso
3549
3550 Program reference: Layout objects @internalsref{LyricText} and
3551 @internalsref{VocalName}.  Music expressions
3552 @internalsref{LyricEvent}.
3553
3554 @refbugs
3555
3556 @cindex ambiguity
3557
3558 Input for lyrics introduces a syntactical ambiguity
3559  
3560 @example 
3561 foo = bar 
3562 @end example 
3563
3564 @noindent
3565 is interpreted as assigning a string identifier @code{\foo} such that
3566 it contains @code{"bar"}.  However, it could also be interpreted as
3567 making or a music identifier @code{\foo} containing the syllable
3568 `bar'.  The force the latter interpretation, use
3569 @example
3570 foo = \lyrics bar4
3571 @end example
3572
3573
3574 @node Ambitus
3575 @subsection Ambitus
3576 @cindex ambitus
3577
3578 The term @emph{ambitus} denotes a range of pitches for a given voice
3579 in a part of music.  It also may denote the pitch range that a musical
3580 instrument is capable of playing.  Ambituses are printed on vocal
3581 parts, so singers can easily determine if it meets his or her
3582 capabilities.
3583
3584 It denoted at the beginning of a piece near the initial clef.  The
3585 range is graphically specified by two note heads, that represent the
3586 minimum and maximum pitch.  To print such ambituses, add the
3587 @internalsref{Ambitus_engraver} to the @internalsref{Voice} context,
3588 for example,
3589
3590 @example
3591   \paper @{
3592     \context @{
3593       \VoiceContext
3594       \consists Ambitus_engraver
3595     @}
3596   @}
3597 @end example
3598
3599 This results in the following output
3600
3601 @lilypond[quote,raggedright]
3602 \score {
3603   \context ChoirStaff 
3604   \notes \relative c' <<
3605     \new Staff {
3606       as'' c e2 cis,2
3607     }
3608     \new Staff  {
3609       es4 b c f as g
3610     }
3611   >>
3612   \paper {
3613     \context {
3614       \StaffContext
3615       \consists Ambitus_engraver
3616     }
3617   }
3618 }
3619 @end lilypond
3620
3621 If you have multiple voices in a single staff, and you want a single
3622 ambitus per staff rather than per each voice, add the
3623 @internalsref{Ambitus_engraver} to the @internalsref{Staff} context
3624 rather than to the @internalsref{Voice} context.
3625
3626 It is possible to tune individual ambituses for multiple voices on a
3627 single staff, for example by erasing or shifting them horizontally. An
3628 example is in @inputfileref{input/test,ambitus-mixed.ly}.
3629
3630 @seealso
3631
3632 Program reference: @internalsref{Ambitus}.
3633
3634 Examples:  @inputfileref{input/regression,ambitus.ly},
3635 @inputfileref{input/test,ambitus-mixed.ly}.
3636
3637 @refbugs
3638
3639 There is no collision handling in the case of multiple per-voice
3640 ambitus.
3641
3642 @node Tablatures
3643 @section Tablatures
3644
3645 Tablature notation is used for notating music for plucked string
3646 instruments.  It notates pitches not by using note heads, but by
3647 indicating on which string and fret a note must be played.  LilyPond
3648 offers limited support for tablature.
3649
3650 @menu
3651 * Tablatures basic::            
3652 * Non-guitar tablatures::       
3653 @end menu
3654
3655 @node Tablatures basic
3656 @subsection Tablatures basic
3657 @cindex Tablatures basic
3658
3659 The string number associated to a note is given as a backslash
3660 followed by a number, e.g. @code{c4\3} for a C quarter on the third
3661 string. By default, string 1 is the highest one, and the tuning
3662 defaults to the standard guitar tuning (with 6 strings).  The notes
3663 are printed as tablature, by using @internalsref{TabStaff} and
3664 @internalsref{TabVoice} contexts
3665
3666 @lilypond[quote,fragment,verbatim]
3667 \notes \context TabStaff {
3668   a,4\5 c'\2 a\3 e'\1
3669   e\4 c'\2 a\3 e'\1
3670 }
3671 @end lilypond
3672
3673 @cindex minimumFret
3674
3675 When no string is specified, the first string that does not give a
3676 fret number less than @code{minimumFret} is selected. The default
3677 value for @code{minimumFret} is 0
3678
3679
3680 @example
3681 e16 fis gis a b4
3682 \set TabStaff.minimumFret = #8
3683 e16 fis gis a b4
3684 @end example
3685 @lilypond[quote,noindent,raggedright]
3686 frag = \notes {
3687   \key e \major
3688   e16 fis gis a b4
3689   \set TabStaff.minimumFret = #8
3690   e16 fis gis a b4
3691 }
3692 \score {
3693   \context StaffGroup <<
3694     \context Staff { \clef "G_8" \frag }
3695     \context TabStaff { \frag }
3696   >>
3697 }
3698 @end lilypond
3699
3700 @seealso
3701
3702 Program reference: @internalsref{TabStaff}, @internalsref{TabVoice}, and
3703 @internalsref{StringNumberEvent}.
3704
3705 @refbugs
3706
3707 Chords are not handled in a special way, and hence the automatic
3708 string selector may easily select the same string to two notes in a
3709 chord.
3710
3711
3712 @node Non-guitar tablatures
3713 @subsection Non-guitar tablatures
3714 @cindex Non-guitar tablatures
3715
3716 You can change the number of strings, by setting the number of lines
3717 in the @internalsref{TabStaff}. 
3718
3719 You can change the tuning of the strings. A string tuning is given as
3720 a Scheme list with one integer number for each string, the number
3721 being the pitch (measured in semitones relative to middle C) of an
3722 open string.  The numbers specified for @code{stringTuning} are the
3723 numbers of semitones to subtract or add, starting the specified pitch
3724 by default middle C, in string order. Thus, the notes are e, a, d, and
3725 g
3726
3727 @lilypond[quote,fragment,verbatim]
3728   \context TabStaff <<
3729     \set TabStaff.stringTunings = #'(-5 -10 -15 -20)
3730     
3731     \notes {
3732       a,4 c' a e' e c' a e'
3733     }
3734   >> 
3735 @end lilypond
3736
3737 @refbugs
3738
3739 No guitar special effects have been implemented.
3740
3741 @seealso
3742
3743 Program reference: @internalsref{Tab_note_heads_engraver}.
3744
3745
3746 @node Chord names
3747 @section Chord names
3748 @cindex Chords
3749
3750 LilyPond has support for both printing chord names.  Chords may be
3751 entered in musical chord notation, i.e. @code{< .. >}, but they can
3752 also be entered by name. Internally, the chords are represented as a
3753 set of pitches, so they can be transposed
3754
3755
3756 @lilypond[quote,verbatim,raggedright]
3757 twoWays = \notes \transpose c c' {
3758   \chords {
3759     c1 f:sus4 bes/f
3760   }
3761   <c e g>
3762   <f bes c'>
3763   <f bes d'>
3764 }
3765
3766 \score {
3767   << \context ChordNames \twoWays
3768      \context Voice \twoWays >> }
3769 @end lilypond
3770
3771 This example also shows that the chord printing routines do not try to
3772 be intelligent. The last chord (@code{f bes d}) is not interpreted as
3773 an inversion.
3774
3775
3776 @menu
3777 * Chords mode::                 
3778 * Printing chord names::        
3779 @end menu
3780
3781
3782 @node Chords mode
3783 @subsection Chords mode
3784 @cindex Chords mode
3785
3786 Chord mode is a mode where you can input sets of pitches using common
3787 names.  It is introduced by the keyword @code{\chords}.
3788 In chords mode,  a  chord is entered by the root, which is entered
3789 like a common pitch
3790 @lilypond[quote,fragment,verbatim,relative=2]
3791 \chords { es4. d8 c2 }
3792 @end lilypond
3793 @cindex chord entry
3794 @cindex chord mode
3795
3796 Other chords may be entered by suffixing a colon, and introducing a
3797 modifier, and optionally, a number
3798 @c
3799 @lilypond[quote,fragment,verbatim]
3800 \chords { e1:m e1:7 e1:m7  }
3801 @end lilypond
3802 The first number following the root is taken to be the `type' of the
3803 chord, thirds are added to the root until it reaches the specified
3804 number
3805 @lilypond[quote,fragment,verbatim]
3806 \chords { c:3 c:5 c:6 c:7 c:8 c:9 c:10 c:11 }
3807 @end lilypond
3808
3809 @cindex root of chord
3810 @cindex additions, in chords
3811 @cindex removals, in  chords
3812
3813 More complex chords may also be constructed  adding separate steps
3814 to a chord. Additions are added after the  number following
3815 the colon, and are separated by dots
3816 @c
3817 @lilypond[quote,verbatim,fragment]
3818 \chords { c:5.6 c:3.7.8 c:3.6.13 }
3819 @end lilypond
3820 Chord steps can be  altered by suffixing a @code{-} or @code{+} sign
3821 to the number
3822 @lilypond[quote,verbatim,fragment]
3823 \chords { c:7+ c:5+.3-  c:3-.5-.7- }
3824 @end lilypond
3825 Removals are specified similarly, and are introduced by a caret.  They
3826 must come after the additions
3827 @lilypond[quote,verbatim,fragment]
3828 \chords { c^3 c:7^5 c:9^3.5 }
3829 @end lilypond
3830
3831 Modifiers can be used to change pitches. The following modifiers are
3832 supported
3833 @table @code
3834 @item m
3835   is the minor chord. This modifier lowers the 3rd and (if present) the 7th step.
3836 @item dim
3837   is the   diminished chord. This modifier lowers the 3rd, 5th and (if present)
3838   the 7th step.
3839 @item aug
3840   is the augmented chord. This modifier raises the 5th step.
3841 @item maj
3842   is the major 7th chord. This modifier raises the 7th step if present.  
3843 @item sus
3844   is the suspended 4th or 2nd. This modifier removes the 3rd
3845 step. Append either @code{2} or @code{4} to add the 2nd or 4th step to
3846 the chord.
3847 @end table
3848 Modifiers can be mixed with additions
3849 @lilypond[quote,verbatim,fragment]
3850 \chords { c:sus4 c:7sus4 c:dim7 c:m6 } 
3851 @end lilypond
3852
3853 @cindex modifiers, in chords. 
3854 @cindex @code{aug}
3855 @cindex @code{dim}
3856 @cindex @code{maj}
3857 @cindex @code{sus}
3858 @cindex @code{m}
3859
3860 Since an unaltered 11 does not sound good when combined with an
3861 unaltered 13, the 11 is removed in this case (unless it is added
3862 explicitly)
3863 @c
3864 @lilypond[quote,fragment,verbatim]
3865 \chords { c:13 c:13.11 c:m13 }
3866 @end lilypond
3867
3868 @cindex @code{/}
3869
3870 An inversion (putting one pitch of the chord on the bottom), as well
3871 as bass notes, can be specified by appending
3872 @code{/}@var{pitch} to the chord
3873 @lilypond[quote,fragment,verbatim]
3874 \chords { c1 c/g c/f }
3875 @end lilypond
3876 @cindex @code{/+}
3877
3878 A bass note can be added instead of transposed out of the chord,
3879 by using  @code{/+}@var{pitch}.
3880
3881 @lilypond[quote,fragment,verbatim]
3882 \chords { c1 c/+g c/+f }
3883 @end lilypond
3884
3885 Chords is a mode similar to @code{\lyrics}, @code{\notes} etc.  Most
3886 of the commands continue to work, for example, @code{r} and
3887 @code{\skip} can be used to insert rests and spaces, and property
3888 commands may be used to change various settings.
3889
3890
3891
3892 @refbugs
3893
3894 Each step can only be present in a chord once.  The following
3895 simply produces the augmented chord, since @code{5+} is interpreted
3896 last
3897 @cindex clusters
3898 @lilypond[quote,verbatim,fragment]
3899 \chords { c:5.5-.5+ }
3900 @end lilypond
3901
3902
3903 @node Printing chord names
3904 @subsection Printing chord names
3905
3906 @cindex printing chord names
3907 @cindex chord names
3908 @cindex chords
3909
3910 For displaying printed chord names, use the @internalsref{ChordNames} context.
3911 The chords may be entered either using the notation
3912 described above, or directly using @code{<} and @code{>}
3913
3914 @lilypond[quote,verbatim,raggedright]
3915 scheme = \notes {
3916   \chords {a1 b c} <d' f' a'>  <e' g' b'>
3917 }
3918 \score {
3919   \notes <<
3920     \context ChordNames \scheme
3921     \context Staff \scheme
3922   >>
3923 }
3924 @end lilypond
3925
3926 You can make the chord changes stand out by setting
3927 @internalsref{ChordNames}.@code{chordChanges} to true.  This will only
3928 display chord names when there is a change in the chords scheme and at
3929 the start of a new line
3930
3931 @lilypond[quote,verbatim,linewidth=9\cm]
3932 scheme = \chords {
3933   c1:m c:m \break c:m c:m d
3934 }
3935 \score {
3936   \notes <<
3937     \context ChordNames {
3938       \set chordChanges = ##t
3939       \scheme }
3940     \context Staff \transpose c c' \scheme
3941   >>
3942 }
3943 @end lilypond
3944
3945 The default chord name layout is a system for Jazz music, proposed by
3946 Klaus Ignatzek (see @ref{Literature list}).  It can be tuned through the
3947 following properties
3948
3949 @table @code
3950 @cindex chordNameExceptions
3951 @item chordNameExceptions
3952 This is a list that contains the chords that have special formatting.
3953 For an example, see
3954 @inputfileref{input/regression,chord-name-exceptions.ly}.
3955 @cindex exceptions, chord names.
3956
3957
3958 @cindex majorSevenSymbol
3959 @item majorSevenSymbol
3960 This property contains the markup object used for the 7th step, when
3961 it is major. Predefined options are @code{whiteTriangleMarkup} and
3962 @code{blackTriangleMarkup}.  See
3963 @inputfileref{input/regression,chord-name-major7.ly} for an example.
3964
3965 @cindex chordNameSeparator
3966 @item chordNameSeparator
3967 Different parts of a chord name are normally separated by a
3968 slash. By setting @code{chordNameSeparator}, you can specify other
3969 separators, e.g.
3970 @lilypond[quote,fragment,verbatim]
3971 \context ChordNames \chords {
3972   c:7sus4
3973   \set chordNameSeparator
3974     = \markup { \typewriter "|" }
3975   c:7sus4
3976 }
3977 @end lilypond
3978
3979 @cindex chordRootNamer
3980 @item chordRootNamer
3981 The root of a chord is usually printed as a letter with an optional
3982 alteration. The transformation from pitch to letter is done by this
3983 function.  Special note names (for example, the German ``H'' for a
3984 B-chord) can be produced by storing a new function in this property.
3985
3986 The predefined variables @code{\germanChords},
3987 @code{\semiGermanChords} set these variables.
3988
3989
3990 @cindex chordNoteNamer
3991 @item chordNoteNamer
3992 The default is to print single pitch, e.g. the bass note, using the
3993 @code{chordRootNamer}.  The @code{chordNoteNamer} property can be set
3994 to a specialized function to change this behavior.  For example, the
3995 base can be printed in lower case.
3996
3997 @end table
3998
3999
4000 There are also two other chord name schemes implemented: an alternate
4001 Jazz chord notation, and a systematic scheme called Banter chords. The
4002 alternate jazz notation is also shown on the chart in @ref{Chord name
4003 chart}.  Turning on these styles is described in the input file
4004 @inputfileref{input/test,chord-names-jazz.ly}.
4005
4006 @cindex Banter
4007 @cindex jazz chords
4008 @cindex chords, jazz  
4009
4010
4011 @refcommands
4012
4013 @cindex @code{\germanChords}
4014 @code{\germanChords}, 
4015 @cindex @code{\semiGermanChords}
4016 @code{\semiGermanChords}.
4017
4018
4019
4020
4021 @seealso
4022
4023 Examples: @inputfileref{input/regression,chord-name-major7.ly},
4024 @inputfileref{input/regression,chord-name-exceptions.ly},
4025 @inputfileref{input/test,chord-names-jazz.ly},
4026 @inputfileref{input/test,chord-names-german.ly}.
4027
4028 Init files: @file{scm/chords-ignatzek.scm}, and @file{scm/chord-entry.scm}.
4029
4030
4031 @refbugs
4032
4033 Chord names are determined solely from the list of pitches. Chord
4034 inversions are not identified, and neither are added bass notes. This
4035 may result in strange chord names when chords are entered with the
4036 @code{< .. >} syntax.
4037
4038
4039
4040
4041 @node Orchestral music
4042 @section Orchestral music
4043
4044 @cindex  Writing parts
4045
4046 Orchestral music involves some special notation, both in the full
4047 score and the individual parts. This section explains how to tackle
4048 some common problems in orchestral music.
4049
4050
4051
4052 @menu
4053 * Multiple staff contexts::     
4054 * Rehearsal marks::             
4055 * Bar numbers::                 
4056 * Instrument names::            
4057 * Transpose::                   
4058 * Instrument transpositions::   
4059 * Multi measure rests::         
4060 * Automatic part combining::    
4061 * Hiding staves::               
4062 * Different editions from one source::  
4063 * Quoting other voices::        
4064 @end menu
4065
4066 @node Multiple staff contexts
4067 @subsection Multiple staff contexts
4068
4069 Polyphonic scores consist of many staves. These staves can be
4070 constructed in three different ways
4071 @itemize @bullet
4072 @item The group is started with a brace at the left, and bar lines are
4073 connected. This is done with the @internalsref{GrandStaff} context.
4074
4075 @item The group is started with a bracket, and bar lines are connected. This is done with the
4076 @internalsref{StaffGroup} context
4077
4078
4079 @item The group is  started with a vertical line. Bar lines are not
4080 connected.  This is the default for the score.
4081
4082 @end itemize
4083
4084 @cindex Staff, multiple
4085 @cindex bracket, vertical
4086 @cindex brace, vertical
4087 @cindex grand staff
4088 @cindex staff group
4089
4090
4091
4092
4093 @node Rehearsal marks
4094 @subsection Rehearsal marks
4095 @cindex Rehearsal marks
4096 @cindex mark
4097 @cindex @code{\mark}
4098
4099 To print a  rehearsal mark, use the @code{\mark} command
4100 @lilypond[quote,fragment,verbatim]
4101 \relative c'' {
4102   c1 \mark \default
4103   c1 \mark \default
4104   c1 \mark #8 
4105   c1 \mark \default
4106   c1 \mark \default
4107 }
4108 @end lilypond
4109
4110 @noindent
4111 (The letter I is skipped in accordance with engraving traditions.)
4112
4113 The mark is incremented automatically if you use @code{\mark
4114 \default}, but you can also use an integer argument to set the mark
4115 manually.  The value to use is stored in the property
4116 @code{rehearsalMark}.
4117
4118 The style is defined by the property @code{markFormatter}. It is a
4119 function taking the current mark (an integer) and the current context
4120 as argument. It should return a markup object. In the following
4121 example, @code{markFormatter} is set to a canned procedure. After a
4122 few measures, it is set to function that produces a boxed number. 
4123
4124 @lilypond[quote,verbatim,fragment,relative=2]
4125 \set Score.markFormatter = #format-mark-numbers 
4126 c1 \mark \default
4127 c1 \mark \default
4128 \set Score.markFormatter
4129    = #(lambda (mark  context)
4130        (make-bold-markup (make-box-markup (number->string mark))))
4131 c1 \mark \default
4132 c1 \mark \default
4133 @end lilypond
4134
4135 The file @file{scm/translation-functions.scm} contains the definitions
4136 of @code{format-mark-numbers} (the default format) and
4137 @code{format-mark-letters}. They can be used as inspiration for other
4138 formatting functions.
4139
4140
4141 @cindex coda on bar line
4142 @cindex segno on bar line
4143 @cindex fermata on bar line
4144 @cindex bar lines, symbols on
4145
4146 The @code{\mark} command can also be used to put signs like coda,
4147 segno and fermatas on a bar line. Use @code{\markup} to
4148 to access the appropriate symbol
4149
4150 @lilypond[quote,fragment,verbatim,relative=2]
4151 c1 \mark \markup { \musicglyph #"scripts-ufermata" }
4152 c1
4153 @end lilypond
4154
4155 In the case of a line break, marks must also be printed at the end of
4156 the line, and not at the beginning. Use the following to force that
4157 behavior
4158 @example
4159 \override Score.RehearsalMark  
4160   #'break-visibility = #begin-of-line-invisible
4161 @end example
4162
4163 @cindex fermatas
4164 @cindex coda
4165 @cindex segno
4166 @cindex bar lines, putting symbols on 
4167
4168 @seealso
4169
4170 Program reference: @internalsref{MarkEvent}, @internalsref{RehearsalMark}.
4171
4172 Init files: @file{scm/translation-functions.scm} contains the
4173 definition of @code{format-mark-numbers} and
4174 @code{format-mark-letters}. They can be used as inspiration for other
4175 formatting functions.
4176
4177 Examples: @inputfileref{input/regression,rehearsal-mark-letter.ly},
4178 @inputfileref{input/regression,rehearsal-mark-number.ly}.
4179
4180
4181 @node Bar numbers
4182 @subsection Bar numbers
4183
4184
4185 @cindex bar numbers
4186 @cindex measure numbers
4187 @cindex currentBarNumber
4188
4189 Bar numbers are printed by default at the start of the line.  The
4190 number itself is stored in the 
4191 @code{currentBarNumber} property,
4192 which is normally updated automatically for every measure.
4193
4194 Bar numbers can be typeset at regular intervals instead of at the
4195 beginning of each line. This is illustrated in the following example,
4196 whose source is available as
4197 @inputfileref{input/test,bar-number-regular-interval.ly}
4198
4199 @lilypondfile[quote]{bar-number-regular-interval.ly}
4200
4201 @seealso
4202
4203 Program reference: @internalsref{BarNumber}.
4204
4205 Examples: @inputfileref{input/test,bar-number-every-five-reset.ly},
4206 and @inputfileref{input/test,bar-number-regular-interval.ly}.
4207
4208 @refbugs
4209
4210 Bar numbers can collide with the @internalsref{StaffGroup} bracket, if
4211 there is one at the top. To solve this, the
4212 @code{padding} property of @internalsref{BarNumber} can be
4213 used to position the number correctly.
4214
4215 @node Instrument names
4216 @subsection Instrument names
4217
4218 In an orchestral score, instrument names are printed left side of the
4219 staves.
4220
4221 This can be achieved by setting @internalsref{Staff}.@code{instrument}
4222 and @internalsref{Staff}.@code{instr}. This will print a string before
4223 the start of the staff. For the first start, @code{instrument} is
4224 used, for the next ones @code{instr} is used.
4225
4226 @lilypond[quote,verbatim,raggedright,relative=3]
4227 \set Staff.instrument = "Ploink "
4228 \set Staff.instr = "Plk "
4229 c1
4230 \break
4231 c''
4232 @end lilypond
4233
4234 You can also use markup texts to construct more complicated instrument
4235 names, for example
4236
4237 @lilypond[quote,fragment,verbatim,raggedright]
4238 \notes {
4239   \set Staff.instrument = \markup {
4240     \column < "Clarinetti" { "in B"
4241       \smaller \flat } > }
4242    { c''1 }
4243 }
4244 @end lilypond
4245
4246 @seealso
4247
4248 Program reference: @internalsref{InstrumentName}.
4249
4250 @refbugs
4251
4252 When you put a name on a grand staff or piano staff the width of the
4253 brace is not taken into account. You must add extra spaces to the end of
4254 the name to avoid a collision.
4255
4256 @node Transpose
4257 @subsection Transpose
4258 @cindex Transpose
4259 @cindex transposition of pitches
4260 @cindex @code{\transpose}
4261
4262 A music expression can be transposed with @code{\transpose}.  The
4263 syntax is
4264 @example
4265 \transpose @var{from} @var{to} @var{musicexpr}
4266 @end example
4267
4268 This means that @var{musicexpr} is transposed by the interval between
4269 the pitches @var{from} and @var{to}: any note with pitch @code{from}
4270 is changed to @code{to}.
4271
4272
4273 For example, consider  a piece written in the key of  D major.  If
4274 this piece is a  little too low for its performer, it can be
4275 transposed up to E major with
4276 @example
4277 \transpose d e @dots{}
4278 @end example
4279
4280 Consider a part  written for violin (a C instrument). If
4281 this part is to be played on the A clarinet, the following
4282 transposition will produce the appropriate part
4283
4284 @example
4285 \transpose a c @dots{}
4286 @end example   
4287
4288 Since @var{from} and @var{to} are pitches, so @code{\transpose} must be
4289 inside a @code{\notes} section.  @code{\transpose} distinguishes
4290 between enharmonic pitches: both @code{\transpose c cis} or
4291 @code{\transpose c des} will transpose up half a tone.  The first
4292 version will print sharps and the second version will print flats
4293
4294 @lilypond[quote,raggedright,verbatim]
4295 mus =\notes { \key d \major cis d fis g }
4296 \score { \notes \context Staff {
4297   \clef "F" \mus
4298   \clef "G"
4299   \transpose c g' \mus
4300   \transpose c f' \mus
4301 }}
4302 @end lilypond
4303
4304
4305 @seealso
4306
4307 Program reference: @internalsref{TransposedMusic}, and
4308 @internalsref{UntransposableMusic}.
4309
4310 @refbugs
4311
4312 If you want to use both @code{\transpose} and @code{\relative},
4313 you must put @code{\transpose} outside of @code{\relative}, since
4314 @code{\relative} will have no effect music that appears inside a
4315 @code{\transpose}.
4316
4317 @node Instrument transpositions
4318 @subsection Instrument transpositions
4319
4320 The key of a transposing instrument can also be specified.  This
4321 applies to many wind instruments, for example, clarinets (B-flat, A and
4322 E-flat), horn (F) and trumpet (B-flat, C, D and E-flat).
4323
4324
4325 The transposition is entered after the keyword @code{\transposition}
4326
4327 @example
4328   \transposition bes   %%  B-flat clarinet
4329 @end example
4330
4331 This command sets the property @code{instrumentTuning}. The value of
4332 this property is used for MIDI output and quotations.  It does not
4333 affect how notes are printed in the current staff.
4334
4335 @cindex transposition, MIDI
4336 @cindex transposition, instrument
4337
4338
4339 @node Multi measure rests
4340 @subsection Multi measure rests
4341 @cindex multi measure rests
4342 @cindex Rests, multi measure
4343
4344 @cindex @code{R}
4345
4346 Multi measure rests are entered using `@code{R}'. It is specifically
4347 meant for full bar rests and for entering parts: the rest can expand
4348 to fill a score with rests, or it can be printed as a single
4349 multimeasure rest. This expansion is controlled by the property
4350 @code{Score.skipBars}. If this is set to true, empty measures will not
4351 be expanded, and the appropriate number is added automatically
4352
4353 @lilypond[quote,fragment,verbatim]
4354  \time 4/4 r1 | R1 | R1*2
4355  \set Score.skipBars = ##t R1*17  R1*4
4356 @end lilypond
4357
4358 The @code{1} in @code{R1} is similar to the duration notation used for
4359 notes. Hence, for time signatures other than 4/4, you must enter other
4360 durations.  This can be done with augmentation dots or fractions
4361
4362 @lilypond[quote,fragment,verbatim]
4363 \set Score.skipBars = ##t
4364 \time 3/4
4365 R2. | R2.*2
4366 \time 13/8
4367 R1*13/8
4368 R1*13/8*12
4369 @end lilypond
4370
4371 An @code{R} spanning a single measure is printed as either a whole rest
4372 or a breve, centered in the measure regardless of the time signature.
4373
4374 @cindex text on multi-measure rest
4375 @cindex script on multi-measure rest
4376 @cindex fermata on multi-measure rest
4377
4378 Texts can be added to multi-measure rests by using the
4379 @var{note}-@code{markup} syntax (see @ref{Text markup}).  In this case, the number is
4380 replaced. If you need both texts and the number, you must add the
4381 number by hand. A variable (@code{\fermataMarkup}) is provided for
4382 adding fermatas
4383
4384
4385 @lilypond[quote,verbatim,fragment]
4386   \time 3/4
4387   R2._\markup { "Ad lib" }
4388   R2.^\fermataMarkup
4389 @end lilypond
4390
4391 If you want to have a text on the left end of a multi-measure rest,
4392 attach the text to a zero-length skip note, i.e.
4393
4394 @example
4395   s1*0^"Allegro"
4396   R1*4 
4397 @end example
4398
4399
4400 @cindex whole rests for a full measure 
4401
4402 @seealso
4403
4404 Program reference: @internalsref{MultiMeasureRestEvent},
4405 @internalsref{MultiMeasureTextEvent},
4406 @internalsref{MultiMeasureRestMusicGroup}, and
4407 @internalsref{MultiMeasureRest}.
4408
4409 The layout object @internalsref{MultiMeasureRestNumber} is for the
4410 default number, and @internalsref{MultiMeasureRestText} for user
4411 specified texts.
4412
4413 @refbugs
4414
4415 It is not possible to use fingerings (e.g. @code{R1-4}) to put numbers
4416 over multi-measure rests.
4417
4418 @cindex condensing rests
4419
4420 There is no way to automatically condense multiple rests into a single
4421 multimeasure rest. Multi measure rests do not take part in rest
4422 collisions.
4423
4424 Be careful when entering multimeasure rests followed by whole
4425 notes. The following will enter two notes lasting four measures each
4426 @example
4427  R1*4 cis cis 
4428 @end example
4429 When @code{skipBars} is set, the result will look OK, but the bar
4430 numbering will be off.
4431
4432 @node Automatic part combining
4433 @subsection Automatic part combining
4434 @cindex automatic part combining
4435 @cindex part combiner
4436
4437
4438 Automatic part combining is used to merge two parts of music onto a
4439 staff.  It is aimed at typesetting orchestral scores.  When the two
4440 parts are identical for a period of time, only one is shown.  In
4441 places where the two parts differ, they are typeset as separate
4442 voices, and stem directions are set automatically.  Also, solo and
4443 @emph{a due} parts are identified and can be marked.
4444
4445 The syntax for part combining is
4446
4447 @example
4448   \partcombine @var{musicexpr1} @var{musicexpr2}
4449 @end example
4450
4451 The music expressions will be interpreted as @internalsref{Voice}
4452 contexts. If using relative octaves, @code{\relative} should be
4453 specified for both music expressions, i.e.
4454
4455 @example
4456 \partcombine \relative @dots{}  @var{musicexpr1}
4457   \relative @dots{} @var{musicexpr2}
4458 @end example
4459
4460 @noindent
4461 A @code{\relative} section that is outside of @code{\partcombine} has
4462 no effect on the pitches of @var{musicexpr1} and @var{musicexpr2}.
4463
4464
4465 The following example demonstrates the basic functionality of the part
4466 combiner: putting parts on one staff, and setting stem directions and
4467 polyphony
4468
4469 @lilypond[quote,verbatim,raggedright,fragment]
4470 \new Staff \partcombine
4471   \relative g' { g g a( b) c c r r }
4472   \relative g' { g g r4 r e e g g }
4473 @end lilypond
4474
4475 The first @code{g} appears only once, although it was
4476 specified twice (once in each part).  Stem, slur and tie directions are
4477 set automatically, depending whether there is a solo or unisono. The
4478 first part (with context called @code{one}) always gets up stems, and
4479 `solo', while the second (called @code{two}) always gets down stems and
4480 `Solo II'.
4481
4482 If you just want the merging parts, and not the textual markings, you
4483 may set the property @code{soloADue} to false
4484
4485 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
4486 \new Staff <<
4487   \set Staff.soloADue = ##f
4488   \partcombine
4489     \relative g' { g a( b) r }
4490     \relative g' { g r4 r f }
4491 >>
4492 @end lilypond
4493
4494 @seealso
4495
4496 Program reference: @internalsref{PartCombineMusic},
4497 @internalsref{SoloOneEvent}, and
4498 @internalsref{SoloTwoEvent}, and
4499 @internalsref{UnisonoEvent}.
4500
4501 @refbugs
4502
4503 In @code{soloADue} mode, when the two voices play the same notes on and
4504 off, the part combiner may typeset @code{a2} more than once in a
4505 measure.
4506
4507 @code{\partcombine} cannot be inside @code{\times}. 
4508
4509 @code{\partcombine} cannot be inside @code{\relative}. 
4510
4511 Internally, the @code{\partcombine} interprets both arguments as
4512 @code{Voice}s named @code{one} and @code{two}, and then decides when
4513 the parts can be combined. Consequently, if the arguments switch to
4514 differently named @internalsref{Voice} contexts, the events in those
4515 will be ignored.
4516
4517 @node Hiding staves
4518 @subsection Hiding staves
4519
4520 @cindex Frenched scores
4521 @cindex Hiding staves
4522
4523 In orchestral scores, staff lines that only have rests are usually
4524 removed.  This saves some space. This style is called `French Score'.
4525 For @internalsref{Lyrics}, 
4526 @internalsref{ChordNames} and @internalsref{FiguredBass}, this is
4527 switched on by default.  When these line of these contexts turn out
4528 empty after the line-breaking process, they are removed.
4529
4530 For normal staves, a specialized @internalsref{Staff} context is
4531 available, which does the same: staves containing nothing (or only
4532 multi measure rests) are removed. The context definition is stored in
4533 @code{\RemoveEmptyStaffContext} variable. Observe how the second staff
4534 in this example disappears in the second line
4535
4536
4537 @lilypond[quote,verbatim]
4538 \score  {
4539   \notes \relative c' <<
4540     \new Staff { e4 f g a \break c1 }
4541     \new Staff { c4 d e f \break R1 }
4542   >>
4543   \paper {
4544     linewidth = 6.\cm 
4545     \context { \RemoveEmptyStaffContext }
4546   }
4547 }
4548 @end lilypond
4549
4550 The first page shows all staves in full. If empty staves should be
4551 removed from the first page too, set @code{remove-first} to false in
4552 @internalsref{RemoveEmptyVerticalGroup}.
4553
4554 Another application is making ossia sections, i.e. alternative
4555 melodies on a separate piece of staff, with help of a Frenched
4556 staff. See @inputfileref{input/test,ossia.ly} for an example.
4557
4558
4559 @node Different editions from one source
4560 @subsection Different editions from one source
4561
4562 The @code{\tag} command marks music expressions with a name. These
4563 tagged expressions can be filtered out later.  With this mechanism it
4564 is possible to make different versions of the same music source.
4565
4566 In the following example, we see two versions of a piece of music, one
4567 for the full score, and one with cue notes for the instrumental part
4568
4569 @example
4570   c1
4571   \relative c' <<
4572     \tag #'part <<
4573       R1 \\
4574       @{
4575         \set fontSize = #-1
4576         c4_"cue" f2 g4 @} 
4577     >>
4578     \tag #'score R1
4579   >>
4580   c1
4581 @end example
4582
4583 The same can be applied to articulations, texts, etc.: they are
4584 made by prepending
4585 @example
4586         -\tag #@var{your-tag} 
4587 @end example
4588 to an articulation, for example, 
4589 @example
4590     c1-\tag #'part ^4
4591 @end example
4592
4593 This defines a note with a conditional fingering indication.
4594
4595 By applying the @code{remove-tag} function, tagged expressions can be
4596 filtered. For example,
4597 @example
4598 \simultaneous @{
4599   @var{the music}
4600   \apply #(remove-tag 'score) @var{the music}
4601   \apply #(remove-tag 'part) @var{the music}
4602 @}
4603 @end example
4604 would yield
4605
4606 @lilypondfile[quote]{tag-filter.ly}
4607
4608 The argument of the @code{\tag} command should be a symbol, or a list
4609 of symbols, for example,
4610 @example
4611   \tag #'(original-part transposed-part) @dots{}
4612 @end example
4613
4614 @seealso
4615
4616 Examples: @inputfileref{input/regression,tag-filter.ly}.
4617
4618
4619 @node Quoting other voices
4620 @subsection Quoting other voices
4621
4622 With quotations, fragments of other parts can be inserted into a part
4623 directly. Before a part can be quoted, it must be marked especially as
4624 quotable. This is done with code @code{\addquote} command. The
4625 quotation may then be done with @code{\quote}
4626
4627 @example
4628 \addquote @var{name} @var{music}
4629 \quote @var{name} @var{duration}  
4630 @end example
4631
4632 @noindent
4633
4634 Here, @var{name} is an identifying string. The @var{music} is any kind
4635 of music.  This is an example of @code{\addquote}
4636
4637 @verbatim
4638 \addquote clarinet \notes\relative c' {
4639   f4 fis g gis
4640 }
4641 @end verbatim
4642
4643 During a part, a piece of music can be quoted with the @code{\quote}
4644 command. 
4645   
4646 @example
4647 \quote clarinet 2.
4648 @end example
4649
4650 This would cite 3 quarter notes (a dotted half note) of the previously
4651 added clarinet voice.
4652
4653 Quotations take into account the transposition both source and target
4654 instruments, if they are specified using the @code{\transposition} command.
4655
4656 @lilypond[quote,raggedright,verbatim]
4657 \addquote clarinet \notes\relative c' {
4658   \transposition bes
4659   f4 fis g gis
4660 }
4661 \score {
4662   \notes {
4663   e'8 f'8 \quote clarinet 2
4664 } }
4665 @end lilypond
4666
4667 @refbugs
4668
4669 Only the contents of the first @internalsref{Voice} occurring in an
4670 @code{\addquote} command will be considered for quotation, so
4671 @var{music} can not contain @code{\new} and @code{\context Voice}
4672 statements that would switch to a different Voice.
4673
4674
4675 @seealso
4676
4677 In this manual: @ref{Instrument transpositions}.
4678
4679 Examples: @inputfileref{input/regression,quote.ly}
4680 @inputfileref{input/regression,quote-transposition.ly}
4681
4682 Program reference: @internalsref{QuoteMusic}.
4683
4684 @node Ancient notation
4685 @section Ancient notation
4686
4687 @cindex Vaticana, Editio
4688 @cindex Medicaea, Editio
4689 @cindex hufnagel
4690 @cindex Petrucci
4691 @cindex mensural
4692
4693 Support for ancient notation includes features for mensural notation
4694 and Gregorian Chant notation.  There is also limited support for
4695 figured bass notation.
4696
4697 Many graphical objects provide a @code{style} property, see
4698 @ref{Ancient note heads}, @ref{Ancient accidentals}, @ref{Ancient
4699 rests}, @ref{Ancient clefs}, @ref{Ancient flags} and @ref{Ancient time
4700 signatures}.  By manipulating such a grob property, the typographical
4701 appearance of the affected graphical objects can be accommodated for a
4702 specific notation flavor without need for introducing any new
4703 notational concept.
4704
4705 Other aspects of ancient notation can not that easily be expressed as
4706 in terms of just changing a style property of a graphical object.
4707 Therefore, some notational concepts are introduced specifically for
4708 ancient notation, see @ref{Custodes}, @ref{Divisiones},
4709 @ref{Ligatures}, and @ref{Figured bass}.
4710
4711
4712 @menu
4713 * Ancient note heads::          
4714 * Ancient accidentals::         
4715 * Ancient rests::               
4716 * Ancient clefs::               
4717 * Ancient flags::               
4718 * Ancient time signatures::     
4719 * Custodes::                    
4720 * Divisiones::                  
4721 * Ligatures::                   
4722 * Figured bass::                
4723 * Vaticana style contexts::     
4724 @end menu
4725
4726 If this all is way too much of documentation for you, and you just
4727 want to dive into typesetting without worrying too much about the
4728 details on how to customize a context, you may have a look at the
4729 predefined contexts (see @ref{Vaticana style contexts}).  Use them to
4730 set up predefined style-specific voice and staff contexts, and
4731 directly go ahead with the note entry.
4732
4733 @refbugs
4734
4735 Ligatures need special spacing that has not yet been implemented.  As
4736 a result, there is too much space between ligatures most of the time,
4737 and line breaking often is unsatisfactory.  Also, lyrics do not
4738 correctly align with ligatures.
4739
4740 Accidentals must not be printed within a ligature, but instead need to
4741 be collected and printed in front of it.
4742
4743 Augmentum dots within ligatures are  not handled correctly.
4744
4745
4746 @node Ancient note heads
4747 @subsection Ancient note heads
4748
4749 @cindex note heads
4750
4751
4752 For ancient notation, a note head style other than the @code{default}
4753 style may be chosen.  This is accomplished by setting the @code{style}
4754 property of the NoteHead object to the desired value (@code{baroque},
4755 @code{neo_mensural} or @code{mensural}).  The @code{baroque} style
4756 differs from the @code{default} style only in using a square shape for
4757 @code{\breve} note heads.  The @code{neo_mensural} style differs from
4758 the @code{baroque} style in that it uses rhomboidal heads for whole
4759 notes and all smaller durations.  Stems are centered on the note
4760 heads.  This style is in particular useful when transcribing mensural
4761 music, e.g. for the incipit.  The @code{mensural} style finally
4762 produces note heads that mimic the look of note heads in historic
4763 printings of the 16th century.
4764
4765 The following example demonstrates the @code{neo_mensural} style
4766
4767 @lilypond[quote,fragment,raggedright,verbatim]
4768 \override NoteHead #'style = #'neo_mensural
4769 a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
4770 @end lilypond
4771
4772 When typesetting a piece in Gregorian Chant notation, a Gregorian
4773 ligature engraver will automatically select the proper note heads,
4774 such there is no need to explicitly set the note head style.  Still,
4775 the note head style can be set e.g. to @code{vaticana_punctum} to
4776 produce punctum neumes.  Similarly, a mensural ligature engraver is
4777 used to automatically assemble mensural ligatures.  See
4778 @ref{Ligatures} for how ligature engravers work.
4779
4780 @seealso
4781
4782 In this manual
4783 @ref{Percussion staves} use note head styles of their own that are
4784 frequently used in contemporary music notation.
4785
4786 Examples: @inputfileref{input/regression,note-head-style.ly} gives an
4787 overview over all available note head styles.
4788
4789
4790 @node Ancient accidentals
4791 @subsection Ancient accidentals
4792
4793 @cindex accidentals
4794
4795
4796 Use the @code{style} property of grob @internalsref{Accidental} to
4797 select ancient accidentals.   Supported styles are
4798 @code{mensural}, @code{vaticana}, @code{hufnagel} and @code{medicaea}.
4799
4800 @lilypond[quote,raggedright,staffsize=26]
4801 \score {
4802     \notes {
4803         \fatText
4804         s
4805         ^\markup {
4806             \column <
4807                 "vaticana" 
4808                 { " " \musicglyph #"accidentals-vaticana-1"
4809                   " " \musicglyph #"accidentals-vaticana0" }
4810             >
4811             \column <
4812                 "medicaea"
4813                 { " " \musicglyph #"accidentals-medicaea-1" }
4814             >
4815             \column <
4816                 "hufnagel"
4817                 { " " \musicglyph #"accidentals-hufnagel-1" }
4818             >
4819             \column <
4820                 "mensural"
4821                 { " " \musicglyph #"accidentals-mensural-1"
4822                   " " \musicglyph #"accidentals-mensural1" }
4823             >
4824         }
4825     }
4826     \paper {
4827         raggedright = ##t 
4828         interscoreline = 1
4829         \context {
4830             \ScoreContext
4831             \remove "Bar_number_engraver"
4832         }
4833         \context{
4834             \StaffContext
4835             \remove "Clef_engraver"
4836             \remove "Key_engraver"
4837             \remove "Time_signature_engraver"
4838             \remove "Staff_symbol_engraver"
4839             minimumVerticalExtent = ##f
4840         }
4841     }
4842 }
4843 @end lilypond
4844
4845 As shown, not all accidentals are supported by each style.  When
4846 trying to access an unsupported accidental, LilyPond will switch to a
4847 different style, as demonstrated in
4848 @inputfileref{input/test,ancient-accidentals.ly}.
4849
4850 Similarly to local accidentals, the style of the key signature can be
4851 controlled by the @code{style} property of the
4852 @internalsref{KeySignature} grob.
4853
4854 @seealso
4855
4856 In this manual: @ref{Pitches}, @ref{Chromatic alterations} and
4857 @ref{Accidentals} give a general introduction into the use of
4858 accidentals.  @ref{Key signature} gives a general introduction into
4859 the use of key signatures.
4860
4861 Program reference: @internalsref{KeySignature}.
4862
4863 Examples: @inputfileref{input/test,ancient-accidentals.ly}.
4864
4865 @node Ancient rests
4866 @subsection Ancient rests
4867
4868 @cindex rests
4869
4870
4871 Use the @code{style} property of grob @internalsref{Rest} to select
4872 ancient accidentals.   Supported styles are @code{classical},
4873 @code{neo_mensural} and @code{mensural}.  @code{classical} differs
4874 from the @code{default} style only in that the quarter rest looks like
4875 a horizontally mirrored 8th rest.  The @code{neo_mensural} style suits
4876 well for e.g. the incipit of a transcribed mensural piece of music.
4877 The @code{mensural} style finally mimics the appearance of rests as
4878 in historic prints of the 16th century.
4879
4880 The following example demonstrates the @code{neo_mensural} style
4881
4882 @lilypond[quote,fragment,raggedright,verbatim]
4883 \override Rest #'style = #'neo_mensural
4884 r\longa r\breve r1 r2 r4 r8 r16
4885 @end lilypond
4886
4887 There are no 32th and 64th rests specifically for the mensural or
4888 neo-mensural style.  Instead, the rests from the default style will be
4889 taken.  See @inputfileref{input/test,rests.ly} for a chart of all
4890 rests.
4891
4892 There are no rests in Gregorian Chant notation; instead, it uses
4893 @ref{Divisiones}.
4894
4895 @seealso
4896
4897 In this manual: @ref{Rests} gives a general introduction into the use of rests.
4898
4899
4900 @node Ancient clefs
4901 @subsection Ancient clefs
4902
4903 @cindex clefs
4904
4905
4906 LilyPond supports a variety of clefs, many of them ancient.
4907
4908 The following table shows all ancient clefs that are supported via the
4909 @code{\clef} command.  Some of the clefs use the same glyph, but
4910 differ only with respect to the line they are printed on.  In such
4911 cases, a trailing number in the name is used to enumerate these clefs.
4912 Still, you can manually force a clef glyph to be typeset on an
4913 arbitrary line, as described in @ref{Clef}.  The note printed to the
4914 right side of each clef in the example column denotes the @code{c'}
4915 with respect to that clef.
4916
4917 @multitable @columnfractions  .3 .3 .3 .1
4918
4919 @item
4920 @b{Glyph Name} @tab
4921 @b{Description} @tab
4922 @b{Supported Clefs} @tab
4923 @b{Example}
4924
4925 @item
4926 @code{clefs-neo_mensural_c} @tab
4927 modern style mensural C clef @tab
4928 @code{neo_mensural_c1}, @code{neo_mensural_c2},
4929 @code{neo_mensural_c3}, @code{neo_mensural_c4} @tab
4930 @lilypond[quote,relative=1,notime]
4931 \override Staff.TimeSignature   #'transparent = ##t
4932 \clef "neo_mensural_c2" c
4933 @end lilypond
4934
4935 @item
4936 @code{clefs-petrucci_c1}
4937 @code{clefs-petrucci_c2}
4938 @code{clefs-petrucci_c3}
4939 @code{clefs-petrucci_c4}
4940 @code{clefs-petrucci_c5}
4941
4942 @tab
4943 petrucci style mensural C clefs, for use  on different  staff lines
4944 (the examples shows the 2nd staff line C clef).
4945
4946 @tab
4947 @code{petrucci_c1}
4948 @code{petrucci_c2}
4949 @code{petrucci_c3}
4950 @code{petrucci_c4}
4951 @code{petrucci_c5}
4952
4953 @tab
4954 @lilypond[quote,relative=1,notime]
4955 \override Staff.TimeSignature   #'transparent = ##t
4956 \clef "petrucci_c2" c
4957 @end lilypond
4958
4959 @item
4960 @code{clefs-petrucci_f} @tab
4961 petrucci style mensural F clef @tab
4962 @code{petrucci_f} @tab
4963 @lilypond[quote,relative=1,notime]
4964 \override Staff.TimeSignature   #'transparent = ##t
4965 \clef "petrucci_f" c
4966 @end lilypond
4967
4968 @item
4969 @code{clefs-petrucci_g} @tab
4970 petrucci style mensural G clef @tab
4971 @code{petrucci_g} @tab
4972 @lilypond[quote,relative=1,notime]
4973 \override Staff.TimeSignature   #'transparent = ##t
4974 \clef "petrucci_g" c
4975 @end lilypond
4976
4977 @item
4978 @code{clefs-mensural_c} @tab
4979 historic style mensural C clef @tab
4980 @code{mensural_c1}, @code{mensural_c2}, @code{mensural_c3},
4981 @code{mensural_c4} @tab
4982 @lilypond[quote,relative=1,notime]
4983 \override Staff.TimeSignature   #'transparent = ##t
4984 \clef "mensural_c2" c
4985 @end lilypond
4986
4987 @item
4988 @code{clefs-mensural_f} @tab
4989 historic style mensural F clef @tab
4990 @code{mensural_f} @tab
4991 @lilypond[quote,relative=1,notime]
4992 \override Staff.TimeSignature   #'transparent = ##t
4993 \clef "mensural_f" c
4994 @end lilypond
4995
4996 @item
4997 @code{clefs-mensural_g} @tab
4998 historic style mensural G clef @tab
4999 @code{mensural_g} @tab
5000 @lilypond[quote,relative=1,notime]
5001 \override Staff.TimeSignature   #'transparent = ##t
5002 \clef "mensural_g" c
5003 @end lilypond
5004
5005 @item
5006 @code{clefs-vaticana_do} @tab
5007 Editio Vaticana style do clef @tab
5008 @code{vaticana_do1}, @code{vaticana_do2}, @code{vaticana_do3} @tab
5009 @lilypond[quote,relative=1,notime]
5010     \override Staff.StaffSymbol   #'line-count = #4
5011 \override Staff.TimeSignature   #'transparent = ##t
5012 \clef "vaticana_do2" c
5013 @end lilypond
5014
5015 @item
5016 @code{clefs-vaticana_fa} @tab
5017 Editio Vaticana style fa clef @tab
5018 @code{vaticana_fa1}, @code{vaticana_fa2} @tab
5019 @lilypond[quote,relative=1,notime]
5020     \override Staff.StaffSymbol   #'line-count = #4
5021 \override Staff.TimeSignature   #'transparent = ##t
5022 \clef "vaticana_fa2" c
5023 @end lilypond
5024
5025 @item
5026 @code{clefs-medicaea_do} @tab
5027 Editio Medicaea style do clef @tab
5028 @code{medicaea_do1}, @code{medicaea_do2}, @code{medicaea_do3} @tab
5029 @lilypond[quote,relative=1,notime]
5030     \override Staff.StaffSymbol   #'line-count = #4
5031 \override Staff.TimeSignature   #'transparent = ##t
5032 \clef "medicaea_do2" c
5033 @end lilypond
5034
5035 @item
5036 @code{clefs-medicaea_fa} @tab
5037 Editio Medicaea style fa clef @tab
5038 @code{medicaea_fa1}, @code{medicaea_fa2} @tab
5039 @lilypond[quote,relative=1,notime]
5040     \override Staff.StaffSymbol   #'line-count = #4
5041 \override Staff.TimeSignature   #'transparent = ##t
5042 \clef "medicaea_fa2" c
5043 @end lilypond
5044
5045 @item
5046 @code{clefs-hufnagel_do} @tab
5047 historic style hufnagel do clef @tab
5048 @code{hufnagel_do1}, @code{hufnagel_do2}, @code{hufnagel_do3} @tab
5049 @lilypond[quote,relative=1,notime]
5050     \override Staff.StaffSymbol   #'line-count = #4
5051 \override Staff.TimeSignature   #'transparent = ##t
5052 \clef "hufnagel_do2" c
5053 @end lilypond
5054
5055 @item
5056 @code{clefs-hufnagel_fa} @tab
5057 historic style hufnagel fa clef @tab
5058 @code{hufnagel_fa1}, @code{hufnagel_fa2} @tab
5059 @lilypond[quote,relative=1,notime]
5060     \override Staff.StaffSymbol   #'line-count = #4
5061 \override Staff.TimeSignature   #'transparent = ##t
5062 \clef "hufnagel_fa2" c
5063 @end lilypond
5064
5065 @item
5066 @code{clefs-hufnagel_do_fa} @tab
5067 historic style hufnagel combined do/fa clef @tab
5068 @code{hufnagel_do_fa} @tab
5069 @lilypond[quote,relative=1,notime]
5070 \override Staff.TimeSignature   #'transparent = ##t
5071 \clef "hufnagel_do_fa" c
5072 @end lilypond
5073
5074 @end multitable
5075
5076
5077
5078 @emph{Modern style} means ``as is typeset in contemporary editions of
5079 transcribed mensural music''.
5080
5081 @emph{Petrucci style} means ``inspired by printings published by the
5082 famous engraver Petrucci (1466-1539)''.
5083
5084 @emph{Historic style} means ``as was typeset or written in historic
5085 editions (other than those of Petrucci)''.
5086
5087 @emph{Editio XXX style} means ``as is/was printed in Editio XXX''.
5088
5089 Petrucci used C clefs with differently balanced left-side vertical
5090 beams, depending on which staff line it is printed.
5091
5092 @seealso
5093
5094 In this manual: see @ref{Clef}.
5095
5096 @refbugs
5097
5098 The mensural g clef is mapped to the Petrucci g clef, until a new
5099 mensural g clef is implemented.
5100
5101
5102
5103 @node Ancient flags
5104 @subsection Ancient flags
5105
5106 @cindex flags
5107
5108
5109 Use the @code{flag-style} property of grob @internalsref{Stem} to
5110 select ancient flags.  Besides the @code{default} flag style,
5111  only @code{mensural} style is supported
5112
5113 @lilypond[quote,fragment,raggedright,verbatim]
5114 \override Stem #'flag-style = #'mensural
5115 \override Stem #'thickness = #1.0
5116 \override NoteHead #'style = #'mensural
5117 \autoBeamOff
5118 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
5119 c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
5120 @end lilypond
5121
5122 Note that the innermost flare of each mensural flag always is
5123 vertically aligned with a staff line.  If you do not like this
5124 behavior, you can set the @code{adjust-if-on-staffline} property of
5125 grob @internalsref{Stem} to @code{##f}.  Then, the vertical position
5126 of the end of each flare is different between notes on staff lines and
5127 notes between staff lines
5128
5129 @lilypond[quote,fragment,raggedright]
5130 \override Stem #'flag-style = #'mensural
5131 \override Stem #'thickness = #1.0
5132 \override Stem #'adjust-if-on-staffline = ##f
5133 \override NoteHead #'style = #'mensural
5134 \autoBeamOff
5135 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
5136 c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
5137 @end lilypond
5138
5139 There is no particular flag style for neo-mensural notation.  Hence,
5140 when typesetting e.g. the incipit of a transcribed piece of mensural
5141 music, the default flag style should be used.  There are no flags in
5142 Gregorian Chant notation.
5143
5144
5145 @node Ancient time signatures
5146 @subsection Ancient time signatures
5147
5148 @cindex time signatures
5149
5150
5151 There is limited support for mensural time signatures.   The
5152 glyphs are hard-wired to particular time fractions.  In other words,
5153 to get a particular mensural signature glyph with the @code{\time n/m}
5154 command, @code{n} and @code{m} have to be chosen according to the
5155 following table
5156
5157 @lilypond[quote]
5158 \score {
5159     \notes {
5160         \set Score.timing = ##f
5161         \set Score.barAlways = ##t
5162         s_\markup { "$\\backslash$time 4/4" }
5163          ^\markup { "       " \musicglyph #"timesig-neo_mensural4/4" }
5164         s
5165         s_\markup { "$\\backslash$time 2/2" }
5166          ^\markup { "       " \musicglyph #"timesig-neo_mensural2/2" }
5167         s
5168         s_\markup { "$\\backslash$time 6/4" }
5169          ^\markup { "       " \musicglyph #"timesig-neo_mensural6/4" }
5170         s
5171         s_\markup { "$\\backslash$time 6/8" }
5172          ^\markup { "       " \musicglyph #"timesig-neo_mensural6/8" }
5173         \break
5174         s_\markup { "$\\backslash$time 3/2" }
5175          ^\markup { "       " \musicglyph #"timesig-neo_mensural3/2" }
5176         s
5177         s_\markup { "$\\backslash$time 3/4" }
5178          ^\markup { "       " \musicglyph #"timesig-neo_mensural3/4" }
5179         s
5180         s_\markup { "$\\backslash$time 9/4" }
5181          ^\markup { "       " \musicglyph #"timesig-neo_mensural9/4" }
5182         s
5183         s_\markup { "$\\backslash$time 9/8" }
5184          ^\markup { "       " \musicglyph #"timesig-neo_mensural9/8" }
5185         \break
5186         s_\markup { "$\\backslash$time 4/8" }
5187          ^\markup { "       " \musicglyph #"timesig-neo_mensural4/8" }
5188         s
5189         s_\markup { "$\\backslash$time 2/4" }
5190          ^\markup { "       " \musicglyph #"timesig-neo_mensural2/4" }
5191         \break
5192     }
5193     \paper {
5194         indent = 0.0
5195         raggedright = ##t
5196         \context {
5197             \StaffContext
5198             \remove Staff_symbol_engraver
5199             \remove Clef_engraver
5200             \remove Time_signature_engraver
5201         }
5202     }
5203 }
5204 @end lilypond
5205
5206 Use the @code{style} property of grob @internalsref{TimeSignature} to
5207 select ancient time signatures.  Supported styles are
5208 @code{neo_mensural} and @code{mensural}.  The above table uses the
5209 @code{neo_mensural} style.  This style is appropriate e.g. for the
5210 incipit of transcriptions of mensural pieces.  The @code{mensural}
5211 style mimics the look of historical printings of the 16th century.
5212
5213 @inputfileref{input/test,time.ly} gives an overview over all available
5214 ancient and modern styles.
5215
5216 @seealso
5217
5218 Program reference: @ref{Time signature} gives a general introduction into the use of time
5219 signatures.
5220
5221 @refbugs
5222
5223 Mensural signature glyphs are mapped to time fractions in a hard-wired
5224 way.  This mapping is sensible, but still arbitrary: given a mensural
5225 time signature, the time fraction represents a modern meter that
5226 usually will be a good choice when transcribing a mensural piece of
5227 music.  For a particular piece of mensural music, however, the mapping
5228 may be unsatisfactory.  In particular, the mapping assumes a fixed
5229 transcription of durations (e.g. brevis = half note in 2/2, i.e. 4:1).
5230 Some glyphs (such as the alternate glyph for 6/8 meter) are not at all
5231 accessible through the @code{\time} command.
5232
5233 Mensural time signatures are supported typographically, but not yet
5234 musically.  The internal representation of durations is 
5235 based on a purely binary system; a ternary division such as 1 brevis =
5236 3 semibrevis (tempus perfectum) or 1 semibrevis = 3 minima (cum
5237 prolatione maiori) is not correctly handled: event times in ternary
5238 modes will be badly computed, resulting e.g. in horizontally
5239 misaligned note heads, and bar checks are likely to erroneously fail.
5240
5241 The syntax and semantics of the @code{\time} command for mensural
5242 music is subject to change.
5243
5244 @node Custodes
5245 @subsection Custodes
5246
5247 @cindex custos
5248 @cindex custodes
5249
5250 A @emph{custos} (plural: @emph{custodes}; Latin word for `guard') is a
5251 symbol that appears at the end of a staff.  It anticipates the pitch
5252 of the first note(s) of the following line and thus helps the player
5253 or singer to manage line breaks during performance, thus enhancing
5254 readability of a score.
5255
5256 Custodes were frequently used in music notation until the 17th
5257 century.  Nowadays, they have survived only in a few particular forms
5258 of musical notation such as contemporary editions of Gregorian chant
5259 like the @emph{editio vaticana}.  There are different custos glyphs
5260 used in different flavors of notational style.
5261
5262 For typesetting custodes, just put a @internalsref{Custos_engraver} into the
5263 @internalsref{Staff} context when declaring the @code{\paper} block,
5264 as shown in the following example
5265
5266 @example
5267 \paper @{
5268   \context @{
5269      \StaffContext
5270      \consists Custos_engraver
5271      Custos \override #'style = #'mensural
5272   @}
5273 @}
5274 @end example
5275
5276 The result looks like this
5277
5278 @lilypond[quote,raggedright]
5279 \score {
5280     \notes {
5281         a'1
5282         \override Staff.Custos #'style = #'mensural
5283         \break
5284         g'
5285     }
5286     \paper {
5287         \context {
5288             \StaffContext
5289             \consists Custos_engraver
5290         }
5291     }
5292 }
5293 @end lilypond
5294
5295 The custos glyph is selected by the @code{style} property. The styles
5296 supported are @code{vaticana}, @code{medicaea}, @code{hufnagel} and
5297 @code{mensural}.  They are demonstrated in the following fragment
5298
5299 @lilypond[quote]
5300 \score {
5301        \new Lyrics    \lyrics {
5302         \markup {
5303             \column <
5304                 "vaticana" 
5305                 { " " \musicglyph #"custodes-vaticana-u0" }
5306             > }
5307         \markup {    \column <
5308                 "medicaea"
5309                 { " " \musicglyph #"custodes-medicaea-u0" }
5310             >}
5311             \markup {
5312             \column <
5313                 "hufnagel"
5314                 { " " \musicglyph #"custodes-hufnagel-u0" }
5315             >}
5316             \markup {
5317             \column <
5318                 "mensural"
5319                 { " " \musicglyph #"custodes-mensural-u0" }
5320             >}
5321         }
5322     
5323     \paper {
5324         raggedright = ##t 
5325         }      
5326 }
5327 @end lilypond
5328
5329 @seealso
5330
5331 Program reference: @internalsref{Custos}.
5332
5333 Examples: @inputfileref{input/regression,custos.ly}.
5334
5335
5336 @node Divisiones
5337 @subsection Divisiones
5338
5339 @cindex divisio
5340 @cindex divisiones
5341 @cindex finalis
5342
5343 A @emph{divisio} (plural: @emph{divisiones}; Latin word for
5344 `division') is a staff context symbol that is used to structure
5345 Gregorian music into phrases and sections.  The musical meaning of
5346 @emph{divisio minima}, @emph{divisio maior} and @emph{divisio maxima}
5347 can be characterized as short, medium and long pause, somewhat like
5348 @ref{Breath marks}.  The @emph{finalis} sign not only marks the end of
5349 a chant, but is also frequently used within a single
5350 antiphonal/responsorial chant to mark the end of each section.
5351
5352
5353 To use divisiones, include the file @code{gregorian-init.ly}.  It
5354 contains definitions that you can apply by just inserting
5355 @code{\divisioMinima}, @code{\divisioMaior}, @code{\divisioMaxima},
5356 and @code{\finalis} at proper places in the input.  Some editions use
5357 @emph{virgula} or @emph{caesura} instead of divisio minima.
5358 Therefore, @code{gregorian-init.ly} also defines @code{\virgula} and
5359 @code{\caesura}
5360
5361 @lilypondfile[quote,raggedright]{divisiones.ly}
5362
5363 @refcommands
5364
5365 @cindex @code{\virgula}
5366 @code{\virgula},
5367 @cindex @code{\caesura}
5368 @code{\caesura},
5369 @cindex @code{\divisioMinima}
5370 @code{\divisioMinima},
5371 @cindex @code{\divisioMaior}
5372 @code{\divisioMaior},
5373 @cindex @code{\divisioMaxima}
5374 @code{\divisioMaxima},
5375 @cindex @code{\finalis}
5376 @code{\finalis}.
5377
5378 @seealso
5379
5380 In this manual: @ref{Breath marks}.
5381
5382 Program reference: @internalsref{BreathingSign}, @internalsref{BreathingSignEvent}.
5383
5384 Examples: @inputfileref{input/test,divisiones.ly}.
5385
5386 @node Ligatures
5387 @subsection Ligatures
5388
5389 @cindex Ligatures
5390
5391 @c TODO: Should double check if I recalled things correctly when I wrote
5392 @c down the following paragraph by heart.
5393
5394 A ligature is a coherent graphical symbol that represents at least two
5395 distinct notes.  Ligatures originally appeared in the manuscripts of
5396 Gregorian chant notation roughly since the 9th century to denote
5397 ascending or descending sequences of notes.  
5398
5399 Ligatures are entered by enclosing them in @code{\[} and @code{\]}.
5400 Some ligature styles may need additional input syntax specific for
5401 this particular type of ligature.  By default, the
5402 @internalsref{LigatureBracket} engraver just puts a square bracket
5403 above the ligature
5404
5405 @lilypond[quote,raggedright,verbatim]
5406 \score {
5407   \notes \transpose c c' {
5408     \[ g c a f d' \]
5409     a g f
5410     \[ e f a g \]
5411   }
5412 }
5413 @end lilypond
5414
5415 To select a specific style of ligatures, a proper ligature engraver
5416 has to be added to the @internalsref{Voice} context, as explained in
5417 the following subsections.   Only white mensural ligatures
5418 are supported with certain limitations.
5419
5420 @menu
5421 * White mensural ligatures::    
5422 * Gregorian square neumes ligatures::  
5423 @end menu
5424
5425 @node White mensural ligatures
5426 @subsubsection White mensural ligatures
5427
5428 @cindex Mensural ligatures
5429 @cindex White mensural ligatures
5430
5431 There is limited support for white mensural ligatures.  
5432
5433 To engrave white mensural ligatures, in the paper block the
5434 @internalsref{Mensural_ligature_engraver} has to be put into the
5435 @internalsref{Voice} context, and remove the
5436 @internalsref{Ligature_bracket_engraver}
5437
5438 @example
5439     \paper @{
5440         \context @{
5441             \VoiceContext
5442             \remove Ligature_bracket_engraver
5443             \consists Mensural_ligature_engraver
5444         @}
5445     @}
5446 @end example
5447
5448 There is no additional input language to describe the shape of a
5449 white mensural ligature.  The shape is rather determined solely from
5450 the pitch and duration of the enclosed notes.  While this approach may
5451 take a new user a while to get accustomed, it has the great advantage
5452 that the full musical information of the ligature is known internally.
5453 This is not only required for correct MIDI output, but also allows for
5454 automatic transcription of the ligatures.
5455
5456 For example,
5457
5458 @example
5459         \set Score.timing = ##f
5460         \set Score.defaultBarType = "empty"
5461         \override NoteHead #'style = #'neo_mensural
5462         \override Staff.TimeSignature   #'style = #'neo_mensural
5463         \clef "petrucci_g"
5464         \[ g\longa c\breve a\breve f\breve d'\longa \]
5465         s4
5466         \[ e1 f1 a\breve g\longa \]
5467 @end example
5468 @lilypond[quote,raggedright]
5469 \score {
5470     \notes \transpose c c' {
5471         \set Score.timing = ##f
5472         \set Score.defaultBarType = "empty"
5473         \override NoteHead #'style = #'neo_mensural
5474         \override Staff.TimeSignature   #'style = #'neo_mensural
5475         \clef "petrucci_g"
5476         \[ g\longa c\breve a\breve f\breve d'\longa \]
5477         s4
5478         \[ e1 f1 a\breve g\longa \]
5479     }
5480     \paper {
5481         \context {
5482             \VoiceContext
5483             \remove Ligature_bracket_engraver
5484             \consists Mensural_ligature_engraver
5485         }
5486     }
5487 }
5488 @end lilypond
5489
5490 Without replacing @internalsref{Ligature_bracket_engraver} with
5491 @internalsref{Mensural_ligature_engraver}, the same music transcribes
5492 to the following
5493
5494 @lilypond[quote,raggedright]
5495 \score {
5496     \notes \transpose c c' {
5497         \set Score.timing = ##f
5498         \set Score.defaultBarType = "empty"
5499         \override NoteHead #'style = #'neo_mensural
5500         \override Staff.TimeSignature   #'style = #'neo_mensural
5501         \clef "petrucci_g"
5502         \[ g\longa c\breve a\breve f\breve d'\longa \]
5503         s4
5504         \[ e1 f1 a\breve g\longa \]
5505     }
5506 }
5507 @end lilypond
5508
5509 @refbugs
5510
5511 The implementation is experimental; it may output strange warnings or
5512 even crash in some cases or produce weird results on more complex
5513 ligatures.
5514
5515 @node Gregorian square neumes ligatures
5516 @subsubsection Gregorian square neumes ligatures
5517
5518 @cindex Square neumes ligatures
5519 @cindex Gregorian square neumes ligatures
5520
5521 Gregorian square neumes notation (following the style of the Editio
5522 Vaticana) is under heavy development, but not yet really usable for
5523 production purposes.  Core ligatures can already be typeset, but
5524 essential issues for serious typesetting are still under development,
5525 such as (among others) horizontal alignment of multiple ligatures,
5526 lyrics alignment and proper accidentals handling.  Still, this section
5527 gives a sneak preview of what Gregorian chant may look like once it
5528 will work.
5529
5530 The following table contains the extended neumes table of the 2nd
5531 volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
5532 1983 by the monks of Solesmes.
5533
5534 @multitable @columnfractions .4 .2 .2 .2
5535
5536 @item
5537 @b{Neuma aut@*Neumarum Elementa} @tab
5538 @b{Figurae@*Rectae} @tab
5539 @b{Figurae@*Liquescentes Auctae} @tab
5540 @b{Figurae@*Liquescentes Deminutae}
5541
5542 @c TODO: \paper block is identical in all of the below examples.
5543 @c Therefore, it should somehow be included rather than duplicated all
5544 @c the time. --jr
5545
5546 @c why not make identifiers in ly/engraver-init.ly? --hwn
5547
5548 @c Because it's just used to typeset plain notes without
5549 @c a staff for demonstration purposes rather than something
5550 @c special of Gregorian chant notation. --jr
5551
5552 @item
5553 @code{1. Punctum}
5554 @tab
5555 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.5\cm]
5556 \include "gregorian-init.ly"
5557 \score {
5558     \notes \transpose c c' {
5559         % Punctum
5560         \[ b \]
5561         \noBreak s^\markup {"a"} \noBreak
5562
5563         % Punctum Inclinatum
5564         \[ \inclinatum b \]
5565         \noBreak s^\markup {"b"}
5566     }
5567     \paper {
5568         interscoreline = 1
5569         \context {
5570             \ScoreContext
5571             \remove "Bar_number_engraver"
5572         }
5573         \context {
5574             \StaffContext
5575             \remove "Clef_engraver"
5576             \remove "Key_engraver"
5577             \override StaffSymbol #'transparent = ##t
5578             \remove "Time_signature_engraver"
5579             \remove "Bar_engraver"
5580             minimumVerticalExtent = ##f
5581         }
5582         \context {
5583             \VoiceContext
5584             \remove Ligature_bracket_engraver
5585             \consists Vaticana_ligature_engraver
5586             \override NoteHead #'style = #'vaticana_punctum
5587             \override Stem #'transparent = ##t
5588         }
5589     }
5590 }
5591 @end lilypond
5592 @tab
5593 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=2.5\cm]
5594 \include "gregorian-init.ly"
5595 \score {
5596     \notes \transpose c c' {
5597         % Punctum Auctum Ascendens
5598         \[ \auctum \ascendens b \]
5599         \noBreak s^\markup {"c"} \noBreak
5600
5601         % Punctum Auctum Descendens
5602         \[ \auctum \descendens b \]
5603         \noBreak s^\markup {"d"} \noBreak
5604
5605         % Punctum Inclinatum Auctum
5606         \[ \inclinatum \auctum b \]
5607         \noBreak s^\markup {"e"}
5608     }
5609     \paper {
5610         interscoreline = 1
5611         \context {
5612             \ScoreContext
5613             \remove "Bar_number_engraver"
5614         }
5615         \context {
5616             \StaffContext
5617             \remove "Clef_engraver"
5618             \remove "Key_engraver"
5619             \override StaffSymbol #'transparent = ##t
5620             \remove "Time_signature_engraver"
5621             \remove "Bar_engraver"
5622             minimumVerticalExtent = ##f
5623         }
5624         \context {
5625             \VoiceContext
5626             \remove Ligature_bracket_engraver
5627             \consists Vaticana_ligature_engraver
5628             \override NoteHead #'style = #'vaticana_punctum
5629             \override Stem #'transparent = ##t
5630         }
5631     }
5632 }
5633 @end lilypond
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         % Punctum Inclinatum Parvum
5640         \[ \inclinatum \deminutum b \]
5641         \noBreak s^\markup {"f"}
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
5669 @item
5670 @code{2. Virga}
5671 @tab
5672 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
5673 \include "gregorian-init.ly"
5674 \score {
5675     \notes \transpose c c' {
5676         % Virga
5677         \[ \virga b \]
5678         \noBreak s^\markup {"g"}
5679     }
5680     \paper {
5681         interscoreline = 1
5682         \context {
5683             \ScoreContext
5684             \remove "Bar_number_engraver"
5685         }
5686         \context {
5687             \StaffContext
5688             \remove "Clef_engraver"
5689             \remove "Key_engraver"
5690             \override StaffSymbol #'transparent = ##t
5691             \remove "Time_signature_engraver"
5692             \remove "Bar_engraver"
5693             minimumVerticalExtent = ##f
5694         }
5695         \context {
5696             \VoiceContext
5697             \remove Ligature_bracket_engraver
5698             \consists Vaticana_ligature_engraver
5699             \override NoteHead #'style = #'vaticana_punctum
5700             \override Stem #'transparent = ##t
5701         }
5702     }
5703 }
5704 @end lilypond
5705 @tab
5706 @tab
5707
5708 @item
5709 @code{3. Apostropha vel Stropha}
5710 @tab
5711 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
5712 \include "gregorian-init.ly"
5713 \score {
5714     \notes \transpose c c' {
5715         % Stropha
5716         \[ \stropha b \]
5717         \noBreak s^\markup {"h"}
5718     }
5719     \paper {
5720         interscoreline = 1
5721         \context {
5722             \ScoreContext
5723             \remove "Bar_number_engraver"
5724         }
5725         \context {
5726             \StaffContext
5727             \remove "Clef_engraver"
5728             \remove "Key_engraver"
5729             \override StaffSymbol #'transparent = ##t
5730             \remove "Time_signature_engraver"
5731             \remove "Bar_engraver"
5732             minimumVerticalExtent = ##f
5733         }
5734         \context {
5735             \VoiceContext
5736             \remove Ligature_bracket_engraver
5737             \consists Vaticana_ligature_engraver
5738             \override NoteHead #'style = #'vaticana_punctum
5739             \override Stem #'transparent = ##t
5740         }
5741     }
5742 }
5743 @end lilypond
5744 @tab
5745 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
5746 \include "gregorian-init.ly"
5747 \score {
5748     \notes \transpose c c' {
5749         % Stropha Aucta
5750         \[ \stropha \auctum b \]
5751         \noBreak s^\markup {"i"}
5752     }
5753     \paper {
5754         interscoreline = 1
5755         \context {
5756             \ScoreContext
5757             \remove "Bar_number_engraver"
5758         }
5759         \context {
5760             \StaffContext
5761             \remove "Clef_engraver"
5762             \remove "Key_engraver"
5763             \override StaffSymbol #'transparent = ##t
5764             \remove "Time_signature_engraver"
5765             \remove "Bar_engraver"
5766             minimumVerticalExtent = ##f
5767         }
5768         \context {
5769             \VoiceContext
5770             \remove Ligature_bracket_engraver
5771             \consists Vaticana_ligature_engraver
5772             \override NoteHead #'style = #'vaticana_punctum
5773             \override Stem #'transparent = ##t
5774         }
5775     }
5776 }
5777 @end lilypond
5778 @tab
5779
5780 @item
5781 @code{4. Oriscus}
5782 @tab
5783 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
5784 \include "gregorian-init.ly"
5785 \score {
5786     \notes \transpose c c' {
5787         % Oriscus
5788         \[ \oriscus b \]
5789         \noBreak s^\markup {"j"}
5790     }
5791     \paper {
5792         interscoreline = 1
5793         \context {
5794             \ScoreContext
5795             \remove "Bar_number_engraver"
5796         }
5797         \context {
5798             \StaffContext
5799             \remove "Clef_engraver"
5800             \remove "Key_engraver"
5801             \override StaffSymbol #'transparent = ##t
5802             \remove "Time_signature_engraver"
5803             \remove "Bar_engraver"
5804             minimumVerticalExtent = ##f
5805         }
5806         \context {
5807             \VoiceContext
5808             \remove Ligature_bracket_engraver
5809             \consists Vaticana_ligature_engraver
5810             \override NoteHead #'style = #'vaticana_punctum
5811             \override Stem #'transparent = ##t
5812         }
5813     }
5814 }
5815 @end lilypond
5816 @tab
5817 @tab
5818
5819 @item
5820 @code{5. Clivis vel Flexa}
5821 @tab
5822 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
5823 \include "gregorian-init.ly"
5824 \score {
5825     \notes \transpose c c' {
5826         % Clivis vel Flexa
5827         \[ b \flexa g \]
5828         s^\markup {"k"}
5829     }
5830     \paper {
5831         interscoreline = 1
5832         \context {
5833             \ScoreContext
5834             \remove "Bar_number_engraver"
5835         }
5836         \context {
5837             \StaffContext
5838             \remove "Clef_engraver"
5839             \remove "Key_engraver"
5840             \override StaffSymbol #'transparent = ##t
5841             \remove "Time_signature_engraver"
5842             \remove "Bar_engraver"
5843             minimumVerticalExtent = ##f
5844         }
5845         \context {
5846             \VoiceContext
5847             \remove Ligature_bracket_engraver
5848             \consists Vaticana_ligature_engraver
5849             \override NoteHead #'style = #'vaticana_punctum
5850             \override Stem #'transparent = ##t
5851         }
5852     }
5853 }
5854 @end lilypond
5855 @tab
5856 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=2.0\cm]
5857 \include "gregorian-init.ly"
5858 \score {
5859     \notes \transpose c c' {
5860         % Clivis Aucta Descendens
5861         \[ b \flexa \auctum \descendens g \]
5862         \noBreak s^\markup {"l"} \noBreak
5863
5864         % Clivis Aucta Ascendens
5865         \[ b \flexa \auctum \ascendens g \]
5866         \noBreak s^\markup {"m"}
5867     }
5868     \paper {
5869         interscoreline = 1
5870         \context {
5871             \ScoreContext
5872             \remove "Bar_number_engraver"
5873         }
5874         \context {
5875             \StaffContext
5876             \remove "Clef_engraver"
5877             \remove "Key_engraver"
5878             \override StaffSymbol #'transparent = ##t
5879             \remove "Time_signature_engraver"
5880             \remove "Bar_engraver"
5881             minimumVerticalExtent = ##f
5882         }
5883         \context {
5884             \VoiceContext
5885             \remove Ligature_bracket_engraver
5886             \consists Vaticana_ligature_engraver
5887             \override NoteHead #'style = #'vaticana_punctum
5888             \override Stem #'transparent = ##t
5889         }
5890     }
5891 }
5892 @end lilypond
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         % Cephalicus
5899         \[ b \flexa \deminutum g \]
5900         s^\markup {"n"}
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
5928 @item
5929 @code{6. Podatus vel Pes}
5930 @tab
5931 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
5932 \include "gregorian-init.ly"
5933 \score {
5934     \notes \transpose c c' {
5935         % Podatus vel Pes
5936         \[ g \pes b \]
5937         s^\markup {"o"}
5938     }
5939     \paper {
5940         interscoreline = 1
5941         \context {
5942             \ScoreContext
5943             \remove "Bar_number_engraver"
5944         }
5945         \context {
5946             \StaffContext
5947             \remove "Clef_engraver"
5948             \remove "Key_engraver"
5949             \override StaffSymbol #'transparent = ##t
5950             \remove "Time_signature_engraver"
5951             \remove "Bar_engraver"
5952             minimumVerticalExtent = ##f
5953         }
5954         \context {
5955             \VoiceContext
5956             \remove Ligature_bracket_engraver
5957             \consists Vaticana_ligature_engraver
5958             \override NoteHead #'style = #'vaticana_punctum
5959             \override Stem #'transparent = ##t
5960         }
5961     }
5962 }
5963 @end lilypond
5964 @tab
5965 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=2.0\cm]
5966 \include "gregorian-init.ly"
5967 \score {
5968     \notes \transpose c c' {
5969         % Pes Auctus Descendens
5970         \[ g \pes \auctum \descendens b \]
5971         \noBreak s^\markup {"p"} \noBreak
5972
5973         % Pes Auctus Ascendens
5974         \[ g \pes \auctum \ascendens b \]
5975         \noBreak s^\markup {"q"}
5976     }
5977     \paper {
5978         interscoreline = 1
5979         \context {
5980             \ScoreContext
5981             \remove "Bar_number_engraver"
5982         }
5983         \context {
5984             \StaffContext
5985             \remove "Clef_engraver"
5986             \remove "Key_engraver"
5987             \override StaffSymbol #'transparent = ##t
5988             \remove "Time_signature_engraver"
5989             \remove "Bar_engraver"
5990             minimumVerticalExtent = ##f
5991         }
5992         \context {
5993             \VoiceContext
5994             \remove Ligature_bracket_engraver
5995             \consists Vaticana_ligature_engraver
5996             \override NoteHead #'style = #'vaticana_punctum
5997             \override Stem #'transparent = ##t
5998         }
5999     }
6000 }
6001 @end lilypond
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         % Epiphonus
6008         \[ g \pes \deminutum b \]
6009         s^\markup {"r"}
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
6037 @item
6038 @code{7. Pes Quassus}
6039 @tab
6040 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6041 \include "gregorian-init.ly"
6042 \score {
6043     \notes \transpose c c' {
6044         % Pes Quassus
6045         \[ \oriscus g \pes \virga b \]
6046         s^\markup {"s"}
6047     }
6048     \paper {
6049         interscoreline = 1
6050         \context {
6051             \ScoreContext
6052             \remove "Bar_number_engraver"
6053         }
6054         \context {
6055             \StaffContext
6056             \remove "Clef_engraver"
6057             \remove "Key_engraver"
6058             \override StaffSymbol #'transparent = ##t
6059             \remove "Time_signature_engraver"
6060             \remove "Bar_engraver"
6061             minimumVerticalExtent = ##f
6062         }
6063         \context {
6064             \VoiceContext
6065             \remove Ligature_bracket_engraver
6066             \consists Vaticana_ligature_engraver
6067             \override NoteHead #'style = #'vaticana_punctum
6068             \override Stem #'transparent = ##t
6069         }
6070     }
6071 }
6072 @end lilypond
6073 @tab
6074 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6075 \include "gregorian-init.ly"
6076 \score {
6077     \notes \transpose c c' {
6078         % Pes Quassus Auctus Descendens
6079         \[ \oriscus g \pes \auctum \descendens b \]
6080         s^\markup {"t"}
6081     }
6082     \paper {
6083         interscoreline = 1
6084         \context {
6085             \ScoreContext
6086             \remove "Bar_number_engraver"
6087         }
6088         \context {
6089             \StaffContext
6090             \remove "Clef_engraver"
6091             \remove "Key_engraver"
6092             \override StaffSymbol #'transparent = ##t
6093             \remove "Time_signature_engraver"
6094             \remove "Bar_engraver"
6095             minimumVerticalExtent = ##f
6096         }
6097         \context {
6098             \VoiceContext
6099             \remove Ligature_bracket_engraver
6100             \consists Vaticana_ligature_engraver
6101             \override NoteHead #'style = #'vaticana_punctum
6102             \override Stem #'transparent = ##t
6103         }
6104     }
6105 }
6106 @end lilypond
6107 @tab
6108
6109 @item
6110 @code{8. Quilisma Pes}
6111 @tab
6112 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6113 \include "gregorian-init.ly"
6114 \score {
6115     \notes \transpose c c' {
6116         % Quilisma Pes
6117         \[ \quilisma g \pes b \]
6118         s^\markup {"u"}
6119     }
6120     \paper {
6121         interscoreline = 1
6122         \context {
6123             \ScoreContext
6124             \remove "Bar_number_engraver"
6125         }
6126         \context {
6127             \StaffContext
6128             \remove "Clef_engraver"
6129             \remove "Key_engraver"
6130             \override StaffSymbol #'transparent = ##t
6131             \remove "Time_signature_engraver"
6132             \remove "Bar_engraver"
6133             minimumVerticalExtent = ##f
6134         }
6135         \context {
6136             \VoiceContext
6137             \remove Ligature_bracket_engraver
6138             \consists Vaticana_ligature_engraver
6139             \override NoteHead #'style = #'vaticana_punctum
6140             \override Stem #'transparent = ##t
6141         }
6142     }
6143 }
6144 @end lilypond
6145 @tab
6146 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6147 \include "gregorian-init.ly"
6148 \score {
6149     \notes \transpose c c' {
6150         % Quilisma Pes Auctus Descendens
6151         \[ \quilisma g \pes \auctum \descendens b \]
6152         s^\markup {"v"}
6153     }
6154     \paper {
6155         interscoreline = 1
6156         \context {
6157             \ScoreContext
6158             \remove "Bar_number_engraver"
6159         }
6160         \context {
6161             \StaffContext
6162             \remove "Clef_engraver"
6163             \remove "Key_engraver"
6164             \override StaffSymbol #'transparent = ##t
6165             \remove "Time_signature_engraver"
6166             \remove "Bar_engraver"
6167             minimumVerticalExtent = ##f
6168         }
6169         \context {
6170             \VoiceContext
6171             \remove Ligature_bracket_engraver
6172             \consists Vaticana_ligature_engraver
6173             \override NoteHead #'style = #'vaticana_punctum
6174             \override Stem #'transparent = ##t
6175         }
6176     }
6177 }
6178 @end lilypond
6179 @tab
6180
6181 @item
6182 @code{9. Podatus Initio Debilis}
6183 @tab
6184 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6185 \include "gregorian-init.ly"
6186 \score {
6187     \notes \transpose c c' {
6188         % Pes Initio Debilis
6189         \[ \deminutum g \pes b \]
6190         s^\markup {"w"}
6191     }
6192     \paper {
6193         interscoreline = 1
6194         \context {
6195             \ScoreContext
6196             \remove "Bar_number_engraver"
6197         }
6198         \context {
6199             \StaffContext
6200             \remove "Clef_engraver"
6201             \remove "Key_engraver"
6202             \override StaffSymbol #'transparent = ##t
6203             \remove "Time_signature_engraver"
6204             \remove "Bar_engraver"
6205             minimumVerticalExtent = ##f
6206         }
6207         \context {
6208             \VoiceContext
6209             \remove Ligature_bracket_engraver
6210             \consists Vaticana_ligature_engraver
6211             \override NoteHead #'style = #'vaticana_punctum
6212             \override Stem #'transparent = ##t
6213         }
6214     }
6215 }
6216 @end lilypond
6217 @tab
6218 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6219 \include "gregorian-init.ly"
6220 \score {
6221     \notes \transpose c c' {
6222         % Pes Auctus Descendens Initio Debilis
6223         \[ \deminutum g \pes \auctum \descendens b \]
6224         s^\markup {"x"}
6225     }
6226     \paper {
6227         interscoreline = 1
6228         \context {
6229             \ScoreContext
6230             \remove "Bar_number_engraver"
6231         }
6232         \context {
6233             \StaffContext
6234             \remove "Clef_engraver"
6235             \remove "Key_engraver"
6236             \override StaffSymbol #'transparent = ##t
6237             \remove "Time_signature_engraver"
6238             \remove "Bar_engraver"
6239             minimumVerticalExtent = ##f
6240         }
6241         \context {
6242             \VoiceContext
6243             \remove Ligature_bracket_engraver
6244             \consists Vaticana_ligature_engraver
6245             \override NoteHead #'style = #'vaticana_punctum
6246             \override Stem #'transparent = ##t
6247         }
6248     }
6249 }
6250 @end lilypond
6251 @tab
6252
6253 @item
6254 @code{10. Torculus}
6255 @tab
6256 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6257 \include "gregorian-init.ly"
6258 \score {
6259     \notes \transpose c c' {
6260         % Torculus
6261         \[ a \pes b \flexa g \]
6262         s^\markup {"y"}
6263     }
6264     \paper {
6265         interscoreline = 1
6266         \context {
6267             \ScoreContext
6268             \remove "Bar_number_engraver"
6269         }
6270         \context {
6271             \StaffContext
6272             \remove "Clef_engraver"
6273             \remove "Key_engraver"
6274             \override StaffSymbol #'transparent = ##t
6275             \remove "Time_signature_engraver"
6276             \remove "Bar_engraver"
6277             minimumVerticalExtent = ##f
6278         }
6279         \context {
6280             \VoiceContext
6281             \remove Ligature_bracket_engraver
6282             \consists Vaticana_ligature_engraver
6283             \override NoteHead #'style = #'vaticana_punctum
6284             \override Stem #'transparent = ##t
6285         }
6286     }
6287 }
6288 @end lilypond
6289 @tab
6290 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6291 \include "gregorian-init.ly"
6292 \score {
6293     \notes \transpose c c' {
6294         % Torculus Auctus Descendens
6295         \[ a \pes b \flexa \auctum \descendens g \]
6296         s^\markup {"z"}
6297     }
6298     \paper {
6299         interscoreline = 1
6300         \context {
6301             \ScoreContext
6302             \remove "Bar_number_engraver"
6303         }
6304         \context {
6305             \StaffContext
6306             \remove "Clef_engraver"
6307             \remove "Key_engraver"
6308             \override StaffSymbol #'transparent = ##t
6309             \remove "Time_signature_engraver"
6310             \remove "Bar_engraver"
6311             minimumVerticalExtent = ##f
6312         }
6313         \context {
6314             \VoiceContext
6315             \remove Ligature_bracket_engraver
6316             \consists Vaticana_ligature_engraver
6317             \override NoteHead #'style = #'vaticana_punctum
6318             \override Stem #'transparent = ##t
6319         }
6320     }
6321 }
6322 @end lilypond
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 Deminutus
6329         \[ a \pes b \flexa \deminutum g \]
6330         s^\markup {"A"}
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
6358 @item
6359 @code{11. Torculus Initio Debilis}
6360 @tab
6361 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6362 \include "gregorian-init.ly"
6363 \score {
6364     \notes \transpose c c' {
6365         % Torculus Initio Debilis
6366         \[ \deminutum a \pes b \flexa g \]
6367         s^\markup {"B"}
6368     }
6369     \paper {
6370         interscoreline = 1
6371         \context {
6372             \ScoreContext
6373             \remove "Bar_number_engraver"
6374         }
6375         \context {
6376             \StaffContext
6377             \remove "Clef_engraver"
6378             \remove "Key_engraver"
6379             \override StaffSymbol #'transparent = ##t
6380             \remove "Time_signature_engraver"
6381             \remove "Bar_engraver"
6382             minimumVerticalExtent = ##f
6383         }
6384         \context {
6385             \VoiceContext
6386             \remove Ligature_bracket_engraver
6387             \consists Vaticana_ligature_engraver
6388             \override NoteHead #'style = #'vaticana_punctum
6389             \override Stem #'transparent = ##t
6390         }
6391     }
6392 }
6393 @end lilypond
6394 @tab
6395 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6396 \include "gregorian-init.ly"
6397 \score {
6398     \notes \transpose c c' {
6399         % Torculus Auctus Descendens Initio Debilis
6400         \[ \deminutum a \pes b \flexa \auctum \descendens g \]
6401         s^\markup {"C"}
6402     }
6403     \paper {
6404         interscoreline = 1
6405         \context {
6406             \ScoreContext
6407             \remove "Bar_number_engraver"
6408         }
6409         \context {
6410             \StaffContext
6411             \remove "Clef_engraver"
6412             \remove "Key_engraver"
6413             \override StaffSymbol #'transparent = ##t
6414             \remove "Time_signature_engraver"
6415             \remove "Bar_engraver"
6416             minimumVerticalExtent = ##f
6417         }
6418         \context {
6419             \VoiceContext
6420             \remove Ligature_bracket_engraver
6421             \consists Vaticana_ligature_engraver
6422             \override NoteHead #'style = #'vaticana_punctum
6423             \override Stem #'transparent = ##t
6424         }
6425     }
6426 }
6427 @end lilypond
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         % Torculus Deminutus Initio Debilis
6434         \[ \deminutum a \pes b \flexa \deminutum g \]
6435         s^\markup {"D"}
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
6463 @item
6464 @code{12. Porrectus}
6465 @tab
6466 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6467 \include "gregorian-init.ly"
6468 \score {
6469     \notes \transpose c c' {
6470         % Porrectus
6471         \[ a \flexa g \pes b \]
6472         s^\markup {"E"}
6473     }
6474     \paper {
6475         interscoreline = 1
6476         \context {
6477             \ScoreContext
6478             \remove "Bar_number_engraver"
6479         }
6480         \context {
6481             \StaffContext
6482             \remove "Clef_engraver"
6483             \remove "Key_engraver"
6484             \override StaffSymbol #'transparent = ##t
6485             \remove "Time_signature_engraver"
6486             \remove "Bar_engraver"
6487             minimumVerticalExtent = ##f
6488         }
6489         \context {
6490             \VoiceContext
6491             \remove Ligature_bracket_engraver
6492             \consists Vaticana_ligature_engraver
6493             \override NoteHead #'style = #'vaticana_punctum
6494             \override Stem #'transparent = ##t
6495         }
6496     }
6497 }
6498 @end lilypond
6499 @tab
6500 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6501 \include "gregorian-init.ly"
6502 \score {
6503     \notes \transpose c c' {
6504         % Porrectus Auctus Descendens
6505         \[ a \flexa g \pes \auctum \descendens b \]
6506         s^\markup {"F"}
6507     }
6508     \paper {
6509         interscoreline = 1
6510         \context {
6511             \ScoreContext
6512             \remove "Bar_number_engraver"
6513         }
6514         \context {
6515             \StaffContext
6516             \remove "Clef_engraver"
6517             \remove "Key_engraver"
6518             \override StaffSymbol #'transparent = ##t
6519             \remove "Time_signature_engraver"
6520             \remove "Bar_engraver"
6521             minimumVerticalExtent = ##f
6522         }
6523         \context {
6524             \VoiceContext
6525             \remove Ligature_bracket_engraver
6526             \consists Vaticana_ligature_engraver
6527             \override NoteHead #'style = #'vaticana_punctum
6528             \override Stem #'transparent = ##t
6529         }
6530     }
6531 }
6532 @end lilypond
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         % Porrectus Deminutus
6539         \[ a \flexa g \pes \deminutum b \]
6540         s^\markup {"G"}
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
6568 @item
6569 @code{13. Climacus}
6570 @tab
6571 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6572 \include "gregorian-init.ly"
6573 \score {
6574     \notes \transpose c c' {
6575         % Climacus
6576         \[ \virga b \inclinatum a \inclinatum g \]
6577         s^\markup {"H"}
6578     }
6579     \paper {
6580         interscoreline = 1
6581         \context {
6582             \ScoreContext
6583             \remove "Bar_number_engraver"
6584         }
6585         \context {
6586             \StaffContext
6587             \remove "Clef_engraver"
6588             \remove "Key_engraver"
6589             \override StaffSymbol #'transparent = ##t
6590             \remove "Time_signature_engraver"
6591             \remove "Bar_engraver"
6592             minimumVerticalExtent = ##f
6593         }
6594         \context {
6595             \VoiceContext
6596             \remove Ligature_bracket_engraver
6597             \consists Vaticana_ligature_engraver
6598             \override NoteHead #'style = #'vaticana_punctum
6599             \override Stem #'transparent = ##t
6600         }
6601     }
6602 }
6603 @end lilypond
6604 @tab
6605 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6606 \include "gregorian-init.ly"
6607 \score {
6608     \notes \transpose c c' {
6609         % Climacus Auctus
6610         \[ \virga b \inclinatum a \inclinatum \auctum g \]
6611         s^\markup {"I"}
6612     }
6613     \paper {
6614         interscoreline = 1
6615         \context {
6616             \ScoreContext
6617             \remove "Bar_number_engraver"
6618         }
6619         \context {
6620             \StaffContext
6621             \remove "Clef_engraver"
6622             \remove "Key_engraver"
6623             \override StaffSymbol #'transparent = ##t
6624             \remove "Time_signature_engraver"
6625             \remove "Bar_engraver"
6626             minimumVerticalExtent = ##f
6627         }
6628         \context {
6629             \VoiceContext
6630             \remove Ligature_bracket_engraver
6631             \consists Vaticana_ligature_engraver
6632             \override NoteHead #'style = #'vaticana_punctum
6633             \override Stem #'transparent = ##t
6634         }
6635     }
6636 }
6637 @end lilypond
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         % Climacus Deminutus
6644         \[ \virga b \inclinatum a \inclinatum \deminutum g \]
6645         s^\markup {"J"}
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
6673 @item
6674 @code{14. Scandicus}
6675 @tab
6676 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6677 \include "gregorian-init.ly"
6678 \score {
6679     \notes \transpose c c' {
6680         % Scandicus
6681         \[ g \pes a \virga b \]
6682         s^\markup {"K"}
6683     }
6684     \paper {
6685         interscoreline = 1
6686         \context {
6687             \ScoreContext
6688             \remove "Bar_number_engraver"
6689         }
6690         \context {
6691             \StaffContext
6692             \remove "Clef_engraver"
6693             \remove "Key_engraver"
6694             \override StaffSymbol #'transparent = ##t
6695             \remove "Time_signature_engraver"
6696             \remove "Bar_engraver"
6697             minimumVerticalExtent = ##f
6698         }
6699         \context {
6700             \VoiceContext
6701             \remove Ligature_bracket_engraver
6702             \consists Vaticana_ligature_engraver
6703             \override NoteHead #'style = #'vaticana_punctum
6704             \override Stem #'transparent = ##t
6705         }
6706     }
6707 }
6708 @end lilypond
6709 @tab
6710 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6711 \include "gregorian-init.ly"
6712 \score {
6713     \notes \transpose c c' {
6714         % Scandicus Auctus Descendens
6715         \[ g \pes a \pes \auctum \descendens b \]
6716         s^\markup {"L"}
6717     }
6718     \paper {
6719         interscoreline = 1
6720         \context {
6721             \ScoreContext
6722             \remove "Bar_number_engraver"
6723         }
6724         \context {
6725             \StaffContext
6726             \remove "Clef_engraver"
6727             \remove "Key_engraver"
6728             \override StaffSymbol #'transparent = ##t
6729             \remove "Time_signature_engraver"
6730             \remove "Bar_engraver"
6731             minimumVerticalExtent = ##f
6732         }
6733         \context {
6734             \VoiceContext
6735             \remove Ligature_bracket_engraver
6736             \consists Vaticana_ligature_engraver
6737             \override NoteHead #'style = #'vaticana_punctum
6738             \override Stem #'transparent = ##t
6739         }
6740     }
6741 }
6742 @end lilypond
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         % Scandicus Deminutus
6749         \[ g \pes a \pes \deminutum b \]
6750         s^\markup {"M"}
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
6778 @item
6779 @code{15. Salicus}
6780 @tab
6781 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6782 \include "gregorian-init.ly"
6783 \score {
6784     \notes \transpose c c' {
6785         % Salicus
6786         \[ g \oriscus a \pes \virga b \]
6787         s^\markup {"N"}
6788     }
6789     \paper {
6790         interscoreline = 1
6791         \context {
6792             \ScoreContext
6793             \remove "Bar_number_engraver"
6794         }
6795         \context {
6796             \StaffContext
6797             \remove "Clef_engraver"
6798             \remove "Key_engraver"
6799             \override StaffSymbol #'transparent = ##t
6800             \remove "Time_signature_engraver"
6801             \remove "Bar_engraver"
6802             minimumVerticalExtent = ##f
6803         }
6804         \context {
6805             \VoiceContext
6806             \remove Ligature_bracket_engraver
6807             \consists Vaticana_ligature_engraver
6808             \override NoteHead #'style = #'vaticana_punctum
6809             \override Stem #'transparent = ##t
6810         }
6811     }
6812 }
6813 @end lilypond
6814 @tab
6815 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6816 \include "gregorian-init.ly"
6817 \score {
6818     \notes \transpose c c' {
6819         % Salicus Auctus Descendens
6820         \[ g \oriscus a \pes \auctum \descendens b \]
6821         s^\markup {"O"}
6822     }
6823     \paper {
6824         interscoreline = 1
6825         \context {
6826             \ScoreContext
6827             \remove "Bar_number_engraver"
6828         }
6829         \context {
6830             \StaffContext
6831             \remove "Clef_engraver"
6832             \remove "Key_engraver"
6833             \override StaffSymbol #'transparent = ##t
6834             \remove "Time_signature_engraver"
6835             \remove "Bar_engraver"
6836             minimumVerticalExtent = ##f
6837         }
6838         \context {
6839             \VoiceContext
6840             \remove Ligature_bracket_engraver
6841             \consists Vaticana_ligature_engraver
6842             \override NoteHead #'style = #'vaticana_punctum
6843             \override Stem #'transparent = ##t
6844         }
6845     }
6846 }
6847 @end lilypond
6848 @tab
6849
6850 @item
6851 @code{16. Trigonus}
6852 @tab
6853 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6854 \include "gregorian-init.ly"
6855 \score {
6856   \notes \transpose c c' {
6857     % Trigonus
6858     \[ \stropha b \stropha b \stropha a \]
6859     s^\markup {"P"}
6860   }
6861   \paper {
6862     interscoreline = 1
6863     \context {
6864       \ScoreContext
6865       \remove "Bar_number_engraver"
6866     }
6867     \context {
6868       \StaffContext
6869       \remove "Clef_engraver"
6870       \remove "Key_engraver"
6871       \override StaffSymbol #'transparent = ##t
6872       \remove "Time_signature_engraver"
6873       \remove "Bar_engraver"
6874       minimumVerticalExtent = ##f
6875     }
6876     \context {
6877       \VoiceContext
6878       \remove Ligature_bracket_engraver
6879       \consists Vaticana_ligature_engraver
6880       \override NoteHead #'style = #'vaticana_punctum
6881       \override Stem #'transparent = ##t
6882     }
6883   }
6884 }
6885 @end lilypond
6886 @tab
6887 @tab
6888
6889 @end multitable
6890
6891
6892 Unlike most other neumes notation systems, the input language for
6893 neumes does not necessarily reflect directly the typographical
6894 appearance, but is designed to solely focuse on musical meaning.  For
6895 example, @code{\[ a \pes b \flexa g \]} produces a Torculus consisting
6896 of three Punctum heads, while @code{\[ a \flexa g \pes b \]} produces
6897 a Porrectus with a curved flexa shape and only a single Punctum head.
6898 There is no command to explicitly typeset the curved flexa shape; the
6899 decision of when to typeset a curved flexa shape is purely taken from
6900 the musical input.  The idea of this approach is to separate the
6901 musical aspects of the input from the notation style of the output.
6902 This way, the same input can be reused to typeset the same music in a
6903 different style of Gregorian chant notation.
6904
6905 The following table shows the code fragments that produce the
6906 ligatures in the above neumes table.  The letter in the first column
6907 in each line of the below table indicates to which ligature in the
6908 above table it refers.  The second column gives the name of the
6909 ligature.  The third column shows the code fragment that produces this
6910 ligature, using @code{g}, @code{a} and @code{b} as example pitches.
6911
6912 @multitable @columnfractions .1 .4 .5
6913
6914 @item
6915 @b{#} @tab
6916 @b{Name} @tab
6917 @b{Input Language}
6918
6919 @item
6920 a @tab
6921 Punctum @tab
6922 @code{\[ b \]}
6923
6924 @item
6925 b @tab
6926 Punctum Inclinatum @tab
6927 @code{\[ \inclinatum b \]}
6928
6929 @item
6930 c @tab
6931 Punctum Auctum Ascendens @tab
6932 @code{\[ \auctum \ascendens b \]}
6933
6934 @item
6935 d @tab
6936 Punctum Auctum Descendens @tab
6937 @code{\[ \auctum \descendens b \]}
6938
6939 @item
6940 e @tab
6941 Punctum Inclinatum Auctum @tab
6942 @code{\[ \inclinatum \auctum b \]}
6943
6944 @item
6945 f @tab
6946 Punctum Inclinatum Parvum @tab
6947 @code{\[ \inclinatum \deminutum b \]}
6948
6949 @item
6950 g @tab
6951 Virga @tab
6952 @code{\[ \virga b \]}
6953
6954 @item
6955 h @tab
6956 Stropha @tab
6957 @code{\[ \stropha b \]}
6958
6959 @item
6960 i @tab
6961 Stropha Aucta @tab
6962 @code{\[ \stropha \auctum b \]}
6963
6964 @item
6965 j @tab
6966 Oriscus @tab
6967 @code{\[ \oriscus b \]}
6968
6969 @item
6970 k @tab
6971 Clivis vel Flexa @tab
6972 @code{\[ b \flexa g \]}
6973
6974 @item
6975 l @tab
6976 Clivis Aucta Descendens @tab
6977 @code{\[ b \flexa \auctum \descendens g \]}
6978
6979 @item
6980 m @tab
6981 Clivis Aucta Ascendens @tab
6982 @code{\[ b \flexa \auctum \ascendens g \]}
6983
6984 @item
6985 n @tab
6986 Cephalicus @tab
6987 @code{\[ b \flexa \deminutum g \]}
6988
6989 @item
6990 o @tab
6991 Podatus vel Pes @tab
6992 @code{\[ g \pes b \]}
6993
6994 @item
6995 p @tab
6996 Pes Auctus Descendens @tab
6997 @code{\[ g \pes \auctum \descendens b \]}
6998
6999 @item
7000 q @tab
7001 Pes Auctus Ascendens @tab
7002 @code{\[ g \pes \auctum \ascendens b \]}
7003
7004 @item
7005 r @tab
7006 Epiphonus @tab
7007 @code{\[ g \pes \deminutum b \]}
7008
7009 @item
7010 s @tab
7011 Pes Quassus @tab
7012 @code{\[ \oriscus g \pes \virga b \]}
7013
7014 @item
7015 t @tab
7016 Pes Quassus Auctus Descendens @tab
7017 @code{\[ \oriscus g \pes \auctum \descendens b \]}
7018
7019 @item
7020 u @tab
7021 Quilisma Pes @tab
7022 @code{\[ \quilisma g \pes b \]}
7023
7024 @item
7025 v @tab
7026 Quilisma Pes Auctus Descendens @tab
7027 @code{\[ \quilisma g \pes \auctum \descendens b \]}
7028
7029 @item
7030 w @tab
7031 Pes Initio Debilis @tab
7032 @code{\[ \deminutum g \pes b \]}
7033
7034 @item
7035 x @tab
7036 Pes Auctus Descendens Initio Debilis @tab
7037 @code{\[ \deminutum g \pes \auctum \descendens b \]}
7038
7039 @item
7040 y @tab
7041 Torculus @tab
7042 @code{\[ a \pes b \flexa g \]}
7043
7044 @item
7045 z @tab
7046 Torculus Auctus Descendens @tab
7047 @code{\[ a \pes b \flexa \auctum \descendens g \]}
7048
7049 @item
7050 A @tab
7051 Torculus Deminutus @tab
7052 @code{\[ a \pes b \flexa \deminutum g \]}
7053
7054 @item
7055 B @tab
7056 Torculus Initio Debilis @tab
7057 @code{\[ \deminutum a \pes b \flexa g \]}
7058
7059 @item
7060 C @tab
7061 Torculus Auctus Descendens Initio Debilis @tab
7062 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
7063
7064 @item
7065 D @tab
7066 Torculus Deminutus Initio Debilis @tab
7067 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
7068
7069 @item
7070 E @tab
7071 Porrectus @tab
7072 @code{\[ a \flexa g \pes b \]}
7073
7074 @item
7075 F @tab
7076 Porrectus Auctus Descendens @tab
7077 @code{\[ a \flexa g \pes \auctum \descendens b \]}
7078
7079 @item
7080 G @tab
7081 Porrectus Deminutus @tab
7082 @code{\[ a \flexa g \pes \deminutum b \]}
7083
7084 @item
7085 H @tab
7086 Climacus @tab
7087 @code{\[ \virga b \inclinatum a \inclinatum g \]}
7088
7089 @item
7090 I @tab
7091 Climacus Auctus @tab
7092 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
7093
7094 @item
7095 J @tab
7096 Climacus Deminutus @tab
7097 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
7098
7099 @item
7100 K @tab
7101 Scandicus @tab
7102 @code{\[ g \pes a \virga b \]}
7103
7104 @item
7105 L @tab
7106 Scandicus Auctus Descendens @tab
7107 @code{\[ g \pes a \pes \auctum \descendens b \]}
7108
7109 @item
7110 M @tab
7111 Scandicus Deminutus @tab
7112 @code{\[ g \pes a \pes \deminutum b \]}
7113
7114 @item
7115 N @tab
7116 Salicus @tab
7117 @code{\[ g \oriscus a \pes \virga b \]}
7118
7119 @item
7120 O @tab
7121 Salicus Auctus Descendens @tab
7122 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
7123
7124 @item
7125 P @tab
7126 Trigonus @tab
7127 @code{\[ \stropha b \stropha b \stropha a \]}
7128
7129 @end multitable
7130
7131 @refcommands
7132
7133 The following head prefixes are supported
7134
7135 @cindex @code{\virga}
7136 @code{\virga},
7137 @cindex @code{\stropha}
7138 @code{\stropha},
7139 @cindex @code{\inclinatum}
7140 @code{\inclinatum},
7141 @cindex @code{\auctum}
7142 @code{\auctum},
7143 @cindex @code{\descendens}
7144 @code{\descendens},
7145 @cindex @code{\ascendens}
7146 @code{\ascendens},
7147 @cindex @code{\oriscus}
7148 @code{\oriscus},
7149 @cindex @code{\quilisma}
7150 @code{\quilisma},
7151 @cindex @code{\deminutum}
7152 @code{\deminutum}.
7153
7154 Head prefixes can be accumulated, though restrictions apply.  For
7155 example, either @code{\descendens} or @code{\ascendens} can be applied
7156 to a head, but not both to the same head.
7157
7158 @cindex @code{\pes}
7159 @cindex @code{\flexa}
7160 Two adjacent heads can be tied together with the @code{\pes} and
7161 @code{\flexa} infix commands for a rising and falling line of melody,
7162 respectively.
7163
7164
7165
7166 @node Vaticana style contexts
7167 @subsection Vaticana style contexts
7168
7169 @cindex VaticanaVoiceContext
7170 @cindex VaticanaStaffContext
7171
7172 The predefined @code{VaticanaVoiceContext} and
7173 @code{VaticanaStaffContext} can be used to easily engrave a piece of
7174 Gregorian Chant in the style of the Editio Vaticana.  These contexts
7175 initialize all relevant context properties and grob properties to
7176 proper values.  With these contexts, you can immediately go ahead
7177 entering the chant, as the following short excerpt demonstrates
7178
7179 @lilypond[quote,raggedright,verbatim,noindent]
7180 \include "gregorian-init.ly"
7181 \score {
7182   <<
7183     \context VaticanaVoice = "cantus" {
7184       \override Score.BarNumber #'transparent = ##t
7185       \notes {
7186         \[ c'\melisma c' \flexa a \]
7187         \[ a \flexa \deminutum g\melismaEnd \]
7188         f \divisioMinima
7189         \[ f\melisma \pes a c' c' \pes d'\melismaEnd \]
7190         c' \divisioMinima \break
7191         \[ c'\melisma c' \flexa a \]
7192         \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
7193       }
7194     }
7195     \lyricsto "cantus" \new Lyrics \lyrics {
7196       San- ctus, San- ctus, San- ctus
7197     }
7198   >>
7199 }
7200 @end lilypond
7201
7202 @node Figured bass
7203 @subsection Figured bass
7204
7205 @cindex Basso continuo
7206
7207 @c TODO: musicological blurb about FB
7208
7209
7210 LilyPond has limited support for figured bass
7211
7212 @lilypond[quote,verbatim,fragment]
7213 <<
7214   \context Voice \notes { \clef bass dis4  c d ais }
7215   \context FiguredBass \figures {
7216     < 6 >4 < 7 >8 < 6+ [_!] >
7217     < 6 >4 <6 5 [3+] >
7218   }
7219 >>
7220 @end lilypond
7221
7222 The support for figured bass consists of two parts: there is an input
7223 mode, introduced by @code{\figures}, where you can enter bass figures
7224 as numbers, and there is a context called @internalsref{FiguredBass} that
7225 takes care of making @internalsref{BassFigure} objects.
7226
7227 In figures input mode, a group of bass figures is delimited by
7228 @code{<} and @code{>}. The duration is entered after the @code{>>}
7229 @example
7230 <4 6>
7231 @end example
7232 @lilypond[quote,fragment]
7233 \context FiguredBass
7234 \figures { <4 6> }
7235 @end lilypond
7236
7237 Accidentals are added when you append @code{-}, @code{!}  and @code{+}
7238 to the numbers
7239
7240 @example
7241 <4- 6+ 7!>
7242 @end example
7243 @lilypond[quote,fragment]
7244 \context FiguredBass
7245 \figures { <4- 6+ 7!> }
7246 @end lilypond
7247
7248 Spaces or dashes may be inserted by using @code{_}. Brackets are
7249 introduced with @code{[} and @code{]}
7250
7251 @example
7252 < [4 6] 8 [_! 12]>
7253 @end example
7254 @lilypond[quote,fragment]
7255 \context FiguredBass
7256 \figures { < [4 6] 8 [_! 12]> }
7257 @end lilypond
7258
7259 Although the support for figured bass may superficially resemble chord
7260 support, it works much simpler.  The @code{\figures} mode simply
7261 stores the numbers , and @internalsref{FiguredBass} context prints
7262 them as entered. There is no conversion to pitches, and no
7263 realizations of the bass are played in the MIDI file.
7264
7265 Internally, the code produces markup texts. You can use any of the
7266 markup text properties to override formatting. For example, the
7267 vertical spacing of the figures may be set with @code{baseline-skip}.
7268
7269 @seealso
7270
7271 Program reference: @internalsref{BassFigureEvent} music, @internalsref{BassFigure} object, 
7272 and @internalsref{FiguredBass} context.
7273
7274 @refbugs
7275
7276 Slash notation for alterations is not supported.
7277
7278 @node Contemporary notation
7279 @section Contemporary notation
7280
7281 In the 20th century, composers have greatly expanded the musical
7282 vocabulary. With this expansion, many innovations in musical notation
7283 have been tried. The book by Stone (1980) gives a comprehensive
7284 overview (see @ref{Literature list}). In general, the use of new,
7285 innovative notation makes a piece harder to understand and perform and
7286 its use should therefore be avoided if possible.  For this reason,
7287 support for contemporary notation in LilyPond is limited.
7288
7289
7290 @menu
7291 * Clusters::                    
7292 * Fermatas::                    
7293 @end menu
7294
7295 @node Clusters
7296 @subsection Clusters
7297
7298 @cindex cluster
7299
7300 A cluster indicates a continuous range of pitches to be played.  They
7301 can be denoted as the envelope of a set of notes.  They are entered by
7302 applying the function @code{notes-to-clusters} to a sequence of
7303 chords, e.g.
7304 @c
7305 @lilypond[quote,relative=2,verbatim]
7306 \apply #notes-to-clusters {  <c e > <b f'>  }
7307 @end lilypond
7308
7309 The following example (from
7310 @inputfileref{input/regression,cluster.ly}) shows what the result
7311 looks like
7312
7313 @lilypondfile[quote]{cluster.ly}
7314
7315 Ordinary notes and clusters can be put together in the same staff,
7316 even simultaneously.  In such a case no attempt is made to
7317 automatically avoid collisions between ordinary notes and clusters.
7318
7319 @seealso
7320
7321 Program reference: @internalsref{ClusterSpanner},
7322 @internalsref{ClusterSpannerBeacon},
7323 @internalsref{Cluster_spanner_engraver}, and
7324 @internalsref{ClusterNoteEvent}.
7325
7326 Examples: @inputfileref{input/regression,cluster.ly}.
7327
7328 @refbugs
7329
7330 Music expressions like @code{<< @{ g8 e8 @} a4 >>} are not printed
7331 accurately.  Use @code{<g a>8 <e a>8} instead.
7332
7333
7334
7335 @node Fermatas
7336 @subsection Fermatas
7337
7338 @cindex fermatas
7339
7340
7341
7342 Contemporary music notation frequently uses special fermata symbols to
7343 indicate fermatas of differing lengths.  The following fermatas are
7344 supported
7345
7346 @lilypond[quote,raggedright]
7347 \score {
7348   <<
7349     \addlyrics \notes {
7350       b'
7351       ^\shortfermata
7352       _\shortfermata
7353       r
7354       b'
7355       ^\fermata
7356       _\fermata
7357
7358       r
7359       b'
7360       ^\longfermata
7361       _\longfermata
7362
7363       r
7364       b'
7365       ^\verylongfermata
7366       _\verylongfermata
7367     r
7368     }
7369     \context Lyrics \lyrics {
7370       \override LyricText #'font-family = #'typewriter
7371       "shortfermata" "fermata"  "longfermata" "verylongfermata"
7372     }
7373   >>
7374 }
7375 @end lilypond
7376
7377 See @ref{Articulations} for general instructions how to apply scripts
7378 such as fermatas to a @code{\notes@{@}} block.
7379
7380
7381 @node Special notation
7382 @section Special notation
7383
7384 @menu
7385 * Balloon help::                
7386 * Easy Notation note heads::    
7387 @end menu
7388
7389 @node Balloon help
7390 @subsection Balloon help
7391
7392 Elements of notation can be marked and named with the help of a square
7393 balloon.  The primary purpose of this feature is to explain notation.
7394
7395 The following example demonstrates its use.
7396
7397 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
7398 \context Voice
7399 \applyoutput
7400    #(add-balloon-text 'NoteHead "heads, or tails?"
7401     '(1 . -3))
7402 c8
7403 @end lilypond
7404
7405 @noindent
7406 The function @code{add-balloon-text} takes the name of a grob, the
7407 label to print and where to put the label relative to the object. In
7408 the above example, the text ``heads or tails?'' ends 3 spaces below
7409 the `balloon.' 
7410
7411 @cindex balloon
7412 @cindex notation, explaining
7413
7414 @seealso
7415
7416 Program reference: @internalsref{text-balloon-interface}.
7417
7418 Examples: @inputfileref{input/regression,balloon.ly}.
7419
7420 @node Easy Notation note heads
7421 @subsection Easy Notation note heads
7422
7423 @cindex easy notation
7424 @cindex Hal Leonard
7425
7426 The `easy play' note head includes a  name inside the head.  It is
7427 used in music for beginners
7428
7429 @lilypond[quote,raggedright,verbatim,staffsize=26]
7430 \setEasyHeads
7431 c'2 e'4 f' | g'1
7432 @end lilypond
7433
7434 The command @code{\setEasyHeads} overrides settings for the
7435 @internalsref{NoteHead} object.  To make the letters readable, it has
7436 to be printed in a large font size.  To print with a larger font, see
7437 @ref{Setting global staff size}.
7438
7439 @cindex Xdvi
7440 @cindex ghostscript
7441
7442 If you view the result with Xdvi, staff lines may show through the
7443 letters.  Printing the PostScript file obtained does produce the
7444 correct result.
7445
7446 @refcommands
7447
7448 @cindex \setEasyHeads
7449 @code{\setEasyHeads}
7450
7451 @node Sound
7452 @section Sound
7453 @cindex Sound
7454
7455 Entered music can also be converted to MIDI output.  The performance
7456 is intended for proof-hearing the music for errors.
7457
7458 Ties, dynamics and tempo changes are interpreted.  Dynamic marks,
7459 crescendi and decrescendi translate into MIDI volume levels.  Dynamic
7460 marks translate to a fixed fraction of the available MIDI volume
7461 range, crescendi and decrescendi make the volume vary linearly between
7462 their two extremities.  The fractions can be adjusted by
7463 @code{dynamicAbsoluteVolumeFunction} in @internalsref{Voice} context.
7464 For each type of MIDI instrument, a volume range can be defined.  This
7465 gives a basic equalizer control, which can enhance the quality of
7466 the MIDI output remarkably.  The equalizer can be controlled by
7467 setting @code{instrumentEqualizer}.
7468
7469 @refbugs
7470
7471 Many musically interesting effects, such as swing, articulation,
7472 slurring, etc., are not translated to MIDI.
7473
7474 The MIDI output allocates a channel for each Staff, and one for global
7475 settings.  Hence, the MIDI file should not have more than 15 staves
7476 (or 14 if you do not use drums). Other staves will remain silent.
7477
7478
7479 @menu
7480 * MIDI block::                  
7481 * MIDI instrument names::       
7482 @end menu
7483
7484
7485 @node MIDI block
7486 @subsection MIDI block
7487 @cindex MIDI block
7488
7489
7490 The MIDI block is analogous to the paper block, but it is somewhat
7491 simpler.  The @code{\midi} block can contain
7492 @cindex MIDI block
7493
7494 @itemize @bullet
7495   @item a @code{\tempo} definition, and
7496   @item context definitions.
7497 @end itemize
7498
7499 A number followed by a period is interpreted as a real number, so
7500 for setting the tempo for dotted notes, an extra space should be
7501 inserted, for example
7502
7503 @example
7504   \midi @{ \tempo 4 . = 120 @} 
7505 @end example
7506
7507
7508 @cindex context definition
7509
7510 Context definitions follow precisely the same syntax as within the
7511 \paper block.  Translation modules for sound are called performers.
7512 The contexts for MIDI output are defined in @file{ly/performer-init.ly}.
7513
7514
7515 @node MIDI instrument names
7516 @subsection MIDI instrument names
7517
7518 @cindex instrument names
7519 @cindex @code{Staff.midiInstrument}
7520
7521 The MIDI instrument name is set by the @code{Staff.midiInstrument}
7522 property.  The instrument name should be chosen from the list in
7523 @ref{MIDI instruments}.
7524
7525 @refbugs
7526
7527 If the selected string does not exactly match, the default is used,
7528 which is the Grand Piano.