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