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