]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/refman.itely
(try_music): new file, handle
[lilypond.git] / Documentation / user / refman.itely
1 @c Note: -*-texinfo-*-
2 @c
3 @c A menu is needed before every deeper *section nesting of @node's; run
4 @c     M-x texinfo-all-menus-update
5 @c to automagically fill in these menus before saving changes
6 @c
7 @c FIXME: singular vs. plural:  Beams/Beam
8
9
10 @node Notation manual
11 @chapter Notation manual
12
13 @html
14 <!--- @@WEB-TITLE@@=Reference Manual --->
15 @end html
16
17
18 @menu
19 * Note entry::                  
20 * Easier music entry::          
21 * Staff notation::              
22 * Polyphony::                   
23 * Beaming::                     
24 * Accidentals::                 
25 * Expressive marks::            
26 * Ornaments::                   
27 * Fingering instructions::      
28 * Repeats::                     
29 * Rhythmic music::              
30 * Piano music::                 
31 * Vocal music::                 
32 * More stanzas::                
33 * Tablatures::                  
34 * Chord names::                 
35 * Writing parts::               
36 * Ancient notation ::           
37 * Contemporary notation::       
38 * Tuning output::               
39 * Global layout::               
40 * Sound::                       
41 @end menu
42
43 @c FIXME: Note entry vs Music entry at top level menu is confusing.
44
45 @node Note entry
46 @section Note entry
47 @cindex Note entry
48
49
50
51 @menu
52 * Notes::                       
53 * Pitches::                     
54 * Chromatic alterations::       
55 * Chords::                      
56 * Rests::                       
57 * Skips::                       
58 * Durations::                   
59 * Ties::                        
60 * Automatic note splitting ::   
61 * Tuplets::                     
62 * Easy Notation note heads ::   
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
105 name and a flat is formed by adding @code{-es}.  Double sharps and
106 double flats are obtained by adding @code{-isis} or @code{-eses}.
107
108 These default names are the Dutch note names.  In Dutch, @code{aes} is
109 contracted to @code{as} in Dutch, but both forms are
110 accepted. Similarly, both @code{es} and @code{ees} are accepted.
111
112 There are predefined sets of note names for various other languages.
113 To use them,  include the language specific init file.  For
114 example: @code{\include "english.ly"}.  The available language files
115 and the note names they define are:
116
117 @anchor{note name}
118 @anchor{note names}
119 @example 
120                         Note Names               sharp       flat
121 nederlands.ly  c   d   e   f   g   a   bes b   -is         -es
122 english.ly     c   d   e   f   g   a   bf  b   -s/-sharp   -f/-flat
123 deutsch.ly     c   d   e   f   g   a   b   h   -is         -es
124 norsk.ly       c   d   e   f   g   a   b   h   -iss/-is    -ess/-es
125 svenska.ly     c   d   e   f   g   a   b   h   -iss        -ess
126 italiano.ly    do  re  mi  fa  sol la  sib si  -d          -b
127 catalan.ly     do  re  mi  fa  sol la  sib si  -d/-s       -b 
128 espanol.ly     do  re  mi  fa  sol la  sib si  -s          -b 
129
130 @end example 
131
132 @cindex @code{'}
133 @cindex @code{,}
134
135
136
137 The optional octave specification takes the form of a series of
138 single quote (`@code{'}') characters or a series of comma
139 (`@code{,}') characters.  Each @code{'} raises the pitch by one
140 octave; each @code{,} lowers the pitch by an octave.
141
142 @lilypond[fragment,verbatim,center]
143   c' c'' es' g' as' gisis' ais'  
144 @end lilypond
145
146
147 The verbose syntax for pitch specification is
148
149 @cindex @code{\pitch}
150 @example
151   \pitch @var{scmpitch}
152 @end example
153
154 where @var{scmpitch} is a Scheme object of the @code{Pitch} type.
155
156
157 @seealso
158
159 @internalsref{NoteEvent}, @internalsref{NoteHead}
160
161 @node Chromatic alterations
162 @subsection Chromatic alterations
163
164 Normally accidentals are printed automatically, but you may also
165 print them manually.  A reminder accidental
166 @cindex reminder accidental
167 @cindex @code{?}
168 can be forced by adding an exclamation mark @code{!}
169 after the pitch.  A cautionary accidental
170 @cindex cautionary accidental
171 @cindex parenthesized accidental
172 (an accidental within parentheses) can be obtained by adding the
173 question mark `@code{?}' after the pitch.
174
175 @lilypond[fragment,verbatim]
176   cis' cis' cis'! cis'?
177 @end lilypond
178
179
180 The automatic production of accidentals can be tuned in many
181 ways. For more information, refer to @ref{Accidentals}.
182
183 @node Chords
184 @subsection Chords
185
186 A chord is formed by a enclosing a set of pitches in @code{<<} and
187 @code{>>}.
188
189 TODO: accidental overides?
190
191 @node  Rests
192 @subsection Rests
193 @cindex Rests
194
195
196
197
198 Rests are entered like notes, with the note name @code{r}.
199
200 @lilypond[singleline,verbatim]
201 r1 r2 r4 r8
202 @end lilypond
203
204 Whole bar rests, centered in middle of the bar, are specified using
205 @code{R} (capital R); see @ref{Multi measure rests}.  See also
206 @seeinternals{Rest}.
207
208 For some music, you may wish to explicitly specify the rest's vertical
209 position.  This can be achieved by entering a note with the @code{\rest}
210 keyword appended. Rest collision testing will leave these rests alone.
211
212 @lilypond[singleline,verbatim]
213 a'4\rest d'4\rest
214 @end lilypond
215
216 @seealso
217
218 @internalsref{RestEvent}, @internalsref{Rest}
219
220
221 @c FIXME: naming.
222 @node Skips
223 @subsection Skips
224 @cindex Skip
225 @cindex Invisible rest
226 @cindex Space note
227
228 An invisible rest (also called a `skip') can be entered like a note
229 with note name `@code{s}' or with @code{\skip @var{duration}}:
230
231 @lilypond[singleline,verbatim]
232 a2 s4 a4 \skip 1 a4 
233 @end lilypond
234
235  The @code{s} syntax is only available in Note mode and Chord
236 mode.  In other situations, you should use the @code{\skip} command,
237 which will work outside of those two modes:
238
239 @lilypond[singleline,verbatim]
240 \score {
241   \context Staff <
242     { \time 4/8 \skip 2 \time 4/4 } 
243     \notes\relative c'' { a2 a1 }
244   >
245 }
246 @end lilypond
247
248 The skip command is merely an empty musical placeholder.  It does not
249 produce any output, not even transparent output.
250
251 @seealso
252
253 @internalsref{SkipEvent}
254
255
256
257 @node Durations
258 @subsection Durations
259
260
261 @cindex duration
262 @cindex @code{\duration}
263
264
265 In Note, Chord, and Lyrics mode, durations are designated by numbers
266 and dots: durations are entered as their reciprocal values.  For example,
267 a quarter note is entered using a @code{4} (since it is a 1/4 note), while
268 a half note is entered using a @code{2} (since it is a 1/2 note).  For notes
269 longer than a whole you must use variables.
270
271 @c FIXME: what is an identifier?  I do not think it's been introduced yet.
272 @c and if it has, I obviously skipped that part.     - Graham
273
274 @example 
275 c'\breve  
276 c'1 c'2 c'4 c'8 c'16 c'32 c'64 c'64 
277 r\longa r\breve  
278 r1 r2 r4 r8 r16 r32 r64 r64 
279 @end example 
280
281 @lilypond[noindent]
282 \score {
283   \notes \relative c'' {
284     a\breve  \autoBeamOff
285     a1 a2 a4 a8 a16 a32 a64 a64 
286     r\longa r\breve  
287     r1 r2 r4 r8 r16 r32 r64 r64 
288   }
289   \paper {
290     \translator {
291       \StaffContext
292         \remove "Clef_engraver"
293         \remove "Staff_symbol_engraver"
294         \remove "Time_signature_engraver"
295         \consists "Pitch_squash_engraver"
296     }
297   }
298 }
299 @end lilypond
300
301
302 If the duration is omitted then it is set to the previously entered
303 duration. Default for the first note is a quarter note.  The duration
304 can be followed by dots (`@code{.}') in order to obtain dotted note
305 lengths:
306 @cindex @code{.}
307
308 @lilypond[fragment,verbatim,center]
309   a' b' c''8 b' a'4 a'4. b'4.. c'8.
310 @end lilypond
311 @cindex @code{r}
312 @cindex @code{s}
313
314 You can alter the length of duration by a fraction @var{N/M}
315 appending `@code{*}@var{N/M}' (or `@code{*}@var{N}' if @var{M=1}). This
316 will not affect the appearance of the notes or rests produced.
317
318 @lilypond[fragment,verbatim]
319   a'2*2 b'4*2 a'8*4 a'4*3/2 gis'4*3/2 a'4*3/2 a'4
320 @end lilypond
321
322 Durations can also be produced through GUILE extension mechanism. 
323 @lilypond[verbatim,fragment]
324  c'\duration #(ly:make-duration 2 1)
325 @end lilypond
326
327
328 @refbugs
329
330 Dot placement for chords is not perfect.  In some cases, dots overlap:
331 @lilypond[]
332  <<f, c'' d e f>>4.
333 @end lilypond
334
335
336 @node Ties
337 @subsection Ties
338
339 @cindex Tie
340 @cindex ties
341 @cindex @code{~}
342
343 A tie connects two adjacent note heads of the same pitch.  The tie in
344 effect extends the length of a note.  Ties should not be confused with
345 slurs, which indicate articulation, or phrasing slurs, which indicate
346 musical phrasing.  A tie is entered using the tilde symbol `@code{~}'.
347
348 @lilypond[fragment,verbatim,center]
349   e' ~ e' <<c' e' g'>> ~ <<c' e' g'>>
350 @end lilypond
351
352 When a tie is applied to a chord, all note heads whose pitches match
353 are connected.  When no note heads match, no ties will be created.
354
355 In its meaning a tie is just a way of extending a note duration, similar
356 to the augmentation dot: the following example are two ways of notating
357 exactly the same concept.
358 @c
359 @lilypond[fragment, singleline,quote]
360 \time 3/4 c'2. c'2 ~ c'4
361 @end lilypond
362 If you need to tie notes over bars, it may be easier to use automatic
363 note splitting (See @ref{Automatic note splitting}).
364
365
366 @seealso 
367
368 @internalsref{TieEvent}, @internalsref{NewTieEvent},
369 @internalsref{Tie}, @ref{Automatic note splitting}.
370
371 If you want less
372 ties created for a chord, see @inputfileref{input/test,tie-sparse.ly}.
373
374 @refbugs
375
376 Tieing only a subset of the note heads of a pair of chords is not
377 supported in a simple way.  It can be achieved by moving the
378 tie-engraver into the @internalsref{Thread} context and turning on and
379 off ties per @internalsref{Thread}.
380
381 Switching staves when a tie is active, will produce a horizontal tie
382 on the first note.
383
384 Formatting of ties is a difficult subject. The results are often not
385 optimal results.
386
387
388
389 @node Automatic note splitting 
390 @subsection Automatic note splitting
391 @c FIXME: This subsection does not belong in @ref{Note entry}.
392
393 Long notes can be converted automatically to tied notes.  This is done
394 by replacing the @internalsref{Note_heads_engraver} by the
395 @internalsref{Completion_heads_engraver}.
396
397 @example
398   \paper @{ \translator @{
399       \ThreadContext
400       \remove "Note_heads_engraver"
401       \consists "Completion_heads_engraver"
402   @} @}
403 @end example
404
405 For example,
406 @example
407   \time 2/4
408   c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2 
409 @end example
410
411 @lilypond[noindent]
412 \score{
413   \notes\relative c'{
414   \time 2/4
415   c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2 
416   }
417   \paper { \translator {
418       \ThreadContext
419       \remove "Note_heads_engraver"
420       \consists "Completion_heads_engraver"
421   } }
422   }
423 @end lilypond
424
425 This engraver splits all running notes at the bar line, and inserts
426 ties.  One of its uses is to debug complex scores: if the measures are
427 not entirely filled, then the ties exactly show how much each measure
428 is off.
429
430 @refbugs
431
432 Not all durations (especially those containing tuplets) can be
433 represented exactly; the engraver will not insert tuplets. 
434
435 @node Tuplets
436 @subsection Tuplets
437
438 @cindex tuplets
439 @cindex triplets
440 @cindex @code{\times}
441
442 Tuplets are made out of a music expression by multiplying all durations
443 with a fraction.
444
445 @cindex @code{\times}
446 @example
447   \times @var{fraction} @var{musicexpr}
448 @end example
449
450 The duration of @var{musicexpr} will be multiplied by the fraction. 
451 In the sheet music, the fraction's denominator will be printed over
452 the notes, optionally with a bracket.  The most common tuplet is the
453 triplet in which 3 notes have the length of 2, so the notes are 2/3
454 of their written length:
455
456 @lilypond[fragment,verbatim,center]
457   g'4 \times 2/3 {c'4 c' c'} d'4 d'4
458 @end lilypond
459
460 The property @code{tupletSpannerDuration} specifies how long each bracket
461 should last.  With this, you can make lots of tuplets while typing
462 @code{\times} only once, saving lots of typing.
463
464 @lilypond[fragment,  relative, singleline, verbatim]
465 \property Voice.tupletSpannerDuration = #(ly:make-moment 1 4)
466 \times 2/3 { c'8 c c c c c }
467 @end lilypond
468
469 The format of the number is determined by the property
470 @code{tupletNumberFormatFunction}.  The default prints only the
471 denominator, but if it is set to the Scheme function
472 @code{fraction-tuplet-formatter}, @var{num}:@var{den} will be printed
473 instead.
474
475
476 @cindex @code{tupletNumberFormatFunction}
477 @cindex tuplet formatting 
478
479 @seealso
480
481 @seeinternals{TupletBracket}, @seeinternals{TimeScaledMusic}.
482
483 @refbugs
484
485 Nested tuplets are not formatted automatically.  In this case, outer
486 tuplet brackets should be moved manually.
487
488 @node Easy Notation note heads 
489 @subsection Easy Notation note heads
490
491 @cindex easy notation
492 @cindex Hal Leonard
493
494 The `easyplay' note head includes a note name inside the head.  It is
495 used in music aimed at beginners.
496
497 @lilypond[singleline,verbatim,26pt]
498 \score {
499   \notes { c'2 e'4 f' | g'1 }
500   \paper { \translator { \EasyNotation } } 
501 }
502 @end lilypond
503
504 The @code{EasyNotation} variable overrides a @internalsref{Score}
505 context.  You probably will want to print it with magnification or a
506 large font size to make it more readable.  To print with
507 magnification, you must create a DVI file (with @file{ly2dvi}) and
508 then enlarge it with something like @file{dvips -x 2000 file.dvi}.
509 See @file{man dvips} for details.  To print with a larger font, see
510 @ref{Font Size}.
511
512
513 @cindex Xdvi
514 @cindex ghostscript
515
516 If you view the result with Xdvi, then staff lines will show through
517 the letters.  Printing the PostScript file obtained with ly2dvi does
518 produce the correct result.
519
520
521 @node Easier music entry
522 @section Easier music entry
523 @cindex Music entry
524 @menu
525 * Relative octaves::            
526 * Bar check::                   
527 * Skipping corrected music::    
528 @end menu
529
530 When entering music it is easy to introduce errors. This section deals
531 with tricks and features that help entering music, and find and
532 correct mistakes.  It is also possible to use external programs, for
533 example GUI interfaces, or MIDI transcription programs, to enter or
534 edit music. Refer to the website for more information.
535
536
537
538 @node Relative octaves
539 @subsection Relative octaves
540 @cindex Relative
541 @cindex relative octave specification
542
543 Octaves are specified by adding @code{'} and @code{,} to pitch names.
544 When you copy existing music, it is easy to accidentally put a pitch
545 in the wrong octave and hard to find such an error. The relative
546 octave mode prevents these errors
547
548 @cindex @code{\relative}
549 @example
550   \relative @var{startpitch} @var{musicexpr}
551 @end example
552
553 The octave of notes that appear in @var{musicexpr} are calculated as
554 follows: If no octave changing marks are used, the basic interval
555 between this and the last note is always taken to be a fourth or less
556 (This distance is determined without regarding alterations; a
557 @code{fisis} following a @code{ceses} will be put above the
558 @code{ceses})
559
560 The octave changing marks @code{'} and @code{,} can be added to raise or
561 lower the pitch by an extra octave.  Upon entering relative mode, an
562 absolute starting pitch must be specified that will act as the
563 predecessor of the first note of @var{musicexpr}.
564
565 Entering music that changes octave frequently  is easy in relative mode.
566 @lilypond[fragment,singleline,verbatim,center]
567   \relative c'' {
568     b c d c b c bes a 
569   }
570 @end lilypond
571
572 And octave changing marks are used for intervals greater than a fourth.
573 @lilypond[fragment,verbatim,center]
574   \relative c'' {
575     c g c f, c' a, e'' }
576 @end lilypond
577
578 If the preceding item is a chord, the first note of the chord is used
579 to determine the first note of the next chord. However, other notes
580 within the second chord are determined by looking at the immediately
581 preceding note.
582
583 @lilypond[fragment,verbatim,center]
584   \relative c' {
585     c <<c e g>> 
586     <<c' e g>>
587     <<c, e' g>>
588   }
589 @end lilypond 
590 @cindex @code{\notes}
591
592 The pitch after the @code{\relative} contains a note name.  To parse
593 the pitch as a note name, you have to be in note mode, so there must
594 be a surrounding @code{\notes} keyword (which is not
595 shown here).
596
597 The relative conversion will not affect @code{\transpose},
598 @code{\chords} or @code{\relative} sections in its argument.  If you
599 want to use relative within transposed music, you must place an
600 additional @code{\relative} inside the @code{\transpose}.
601
602
603 @node Bar check
604 @subsection Bar check
605 @cindex Bar check
606
607 @cindex bar check
608 @cindex @code{barCheckSynchronize}
609 @cindex @code{|}
610
611
612 Whenever a bar check is encountered during interpretation, a warning
613 message is issued if it does not fall at a measure boundary.  This can
614 help find errors in the input.  Depending on the value of
615 @code{barCheckSynchronize}, the beginning of the measure will be
616 relocated. A bar check is entered using the bar symbol, `@code{|}'.
617
618 @example
619   \time 3/4 c2 e4 | g2.
620 @end example
621
622
623
624 @cindex skipTypesetting
625
626 Failed bar checks are caused by entering incorrect
627 durations. Incorrect durations often completely garble up the score,
628 especially if it is polyphonic, so you should start correcting the
629 score by scanning for failed bar checks and incorrect durations.  To
630 speed up this process, you can use @code{skipTypesetting}, described
631 in the next section.
632
633 @node Skipping corrected music
634 @subsection Skipping corrected music
635
636 The property @code{Score.skipTypesetting} can be used to switch on and
637 off typesetting completely during the interpretation phase. When
638 typesetting is switched off, the music is processed much more quickly.
639 This can be used to skip over the parts of a score that have already
640 been checked for errors.
641
642 @lilypond[fragment,singleline,verbatim]
643 \relative c'' { c8 d
644 \property Score.skipTypesetting = ##t
645   e f g a g c, f e d
646 \property Score.skipTypesetting = ##f
647 c d b bes a g c2 } 
648 @end lilypond
649
650
651
652
653 @node Staff notation
654 @section Staff notation
655
656 This section describes with music notation that occurs on staff level,
657 such as keys, clefs and time signatures.
658
659 @cindex Staff notation
660
661 @menu
662 * Staff symbol::                
663 * Key signature::               
664 * Clef::                        
665 * Ottava brackets::             
666 * Time signature::              
667 * Unmetered music::             
668 * Bar lines::                   
669 @end menu
670
671 @node Staff symbol
672 @subsection Staff symbol
673
674 @cindex adjusting staff symbol
675 @cindex StaffSymbol, using \property
676 @cindex staff lines, setting number of
677
678 Notes, dynamic signs, etc. are grouped
679 with a set of horizontal lines, into a staff (plural `staves'). In our
680 system, these lines are drawn using a separate graphical object called
681 staff symbol.  
682
683 This object is created whenever a @internalsref{Staff} context is
684 created.  The appearance of the staff symbol cannot be changed by
685 using @code{\override} or @code{\set}.  At the moment that
686 @code{\property Staff} is interpreted, a @internalsref{Staff} context
687 is made, and the @internalsref{StaffSymbol} is created before any
688 @code{\override} is effective. Properties can be changed in a
689 @code{\translator} definition, or by using @code{\outputproperty}.
690
691 @refbugs
692
693 If a staff is ended halfway a piece, the staff symbol may not end
694 exactly on the barline.
695
696
697 @node Key signature
698 @subsection Key signature
699 @cindex Key
700
701 @cindex @code{\key}
702
703 The key signature indicates the scale in which a piece is played. It
704 is denoted by a set of alterations (flats or sharps) at the start of
705 the staff.
706
707 @syntax
708
709 Setting or changing the key signature is done with the @code{\key}
710 command.
711 @example
712   @code{\key} @var{pitch} @var{type}
713 @end example
714
715 @cindex @code{\minor}
716 @cindex @code{\major}
717 @cindex @code{\minor}
718 @cindex @code{\ionian}
719 @cindex @code{\locrian}
720 @cindex @code{\aeolian}
721 @cindex @code{\mixolydian}
722 @cindex @code{\lydian}
723 @cindex @code{\phrygian}
724 @cindex @code{\dorian}
725
726 Here, @var{type} should be @code{\major} or @code{\minor} to get
727 @var{pitch}-major or @var{pitch}-minor, respectively.
728 The standard mode names @code{\ionian},
729 @code{\locrian}, @code{\aeolian}, @code{\mixolydian}, @code{\lydian},
730 @code{\phrygian}, and @code{\dorian} are also defined.
731
732 This command sets the context property
733 @internalsref{Staff}.@code{keySignature}.  Non-standard key signatures
734 can be specified by setting this property directly.
735
736 @refbugs
737
738 The ordering of a key restoration (alterations that change back to
739 natural) is wrong when combined with a repeat barline.
740
741 @seealso
742
743 @internalsref{KeyChangeEvent}, @internalsref{KeySignature}.
744
745 @cindex @code{keySignature}
746
747
748 @node Clef
749 @subsection Clef
750 @cindex @code{\clef}
751
752 The clef indicates which lines of the staff correspond to which
753 pitches.
754
755 @syntax
756
757 The clef can be set or changed with the @code{\clef} command:
758 @lilypond[fragment,verbatim]
759   \key f\major  c''2 \clef alto g'2
760 @end lilypond
761
762 Supported clef-names include 
763 @c Moved standard clefs to the top /MB
764 @table @code
765 @item treble, violin, G, G2
766 G clef on 2nd line
767 @item alto, C
768  C clef on 3rd line
769 @item tenor
770  C clef on 4th line
771 @item bass, F
772  F clef on 4th line
773 @item french
774  G clef on 1st line, so-called French violin clef
775 @item soprano
776  C clef on 1st line
777 @item mezzosoprano
778  C clef on 2nd line
779 @item baritone
780  C clef on 5th line
781 @item varbaritone
782  F clef on 3rd line
783 @item subbass
784  F clef on 5th line
785 @item percussion
786  percussion clef
787 @end table
788
789 By adding @code{_8} or @code{^8} to the clef name, the clef is
790 transposed one octave down or up, respectively.  @var{clefname} must
791 be enclosed in quotes when it contains underscores or digits. For
792 example,
793 @example
794         \clef "G_8"
795 @end example
796
797 This command is equivalent to setting @code{clefGlyph},
798 @code{clefPosition} (which controls the Y position of the clef),
799 @code{centralCPosition} and @code{clefOctavation}. A clef is printed
800 when any of these properties are changed.
801
802 @seealso
803
804 The object for this symbol is @internalsref{Clef}.
805
806
807
808 @node Ottava brackets
809 @subsection Ottava brackets
810
811 ``Ottava'' brackets introduce an extra transposition of an octave for
812 the staff. They are created by invoking the function
813 @code{set-octavation}
814
815 @cindex ottava
816 @cindex 15ma
817 @cindex octavation
818
819 @lilypond[verbatim,fragment]
820 \relative c''' {
821   a2 b
822   #(set-octavation 1)
823   a b 
824   #(set-octavation 0)
825   a b }
826 @end lilypond
827
828 Internally the @code{set-octavation} sets @code{ottavation} (eg. to
829 @code{"8va"}) and @code{centralCPosition} properties.
830
831 @seealso
832
833 @internalsref{OttavaBracket}
834
835 @refbugs
836
837 @code{set-octavation} will get confused when clef changes happen
838 during an octavation bracket.
839
840 @node Time signature
841 @subsection Time signature
842 @cindex Time signature
843 @cindex meter
844 @cindex @code{\time}
845
846 Time signature indicates the metrum of a piece: a regular pattern of
847 strong and weak beats. It is denoted by a fraction at the start of the
848 staff.
849
850 @syntax
851
852 The time signature is set or changed by the @code{\time}
853 command.
854 @lilypond[fragment,verbatim]
855  \time 2/4 c'2 \time 3/4 c'2. 
856 @end lilypond
857
858 The actual symbol that is printed can be customized with the
859 @code{style} property. Setting it to @code{#'()} uses fraction style
860 for 4/4 and 2/2 time.  There are many more options for its layout.
861 See @inputfileref{input/test,time.ly} for more examples.
862
863
864 This command sets the property @code{timeSignatureFraction},
865 @code{beatLength} and @code{measureLength} in the @code{Timing}
866 context, which is normally aliased to @internalsref{Score}.  The
867 property @code{timeSignatureFraction} determines where bar lines
868 should be inserted, and how automatic beams should be generated.
869 Changing the value of @code{timeSignatureFraction} also causes the
870 symbol to be printed.
871
872 More options are available through the Scheme function
873 @code{set-time-signature}. In combination with the
874 @internalsref{Measure_grouping_engraver}, it will create
875 @internalsref{MeasureGrouping} signs. Such signs ease reading
876 rhythmically complex modern music.  In the following example, the 9/8
877 measure is subdivided in 2, 2, 2 and 3. This is passed to
878 @code{set-time-signature} as the third argument @code{(2 2 2 3)}.
879
880 @lilypond[verbatim]
881 \score { \notes \relative c'' {
882    #(set-time-signature 9 8 '(2 2 2 3))
883    g8-[ g-] d-[ d-] g-[ g-] a8-[-( bes g-]-) | 
884    #(set-time-signature 5 8 '(3 2))
885    a4. g4
886    }
887    \paper {
888        raggedright = ##t
889        \translator { \StaffContext
890          \consists "Measure_grouping_engraver"
891    }}}
892 @end lilypond 
893
894 @seealso
895
896 @internalsref{TimeSignature}, @internalsref{Timing_engraver}.
897
898
899 @refbugs
900
901 Automatic beaming does not use measure grouping specified with
902 @code{set-time-signature}.
903
904
905 @subsection Partial
906 @cindex Partial
907 @cindex anacrusis
908 @cindex upbeat
909 @cindex partial measure
910 @cindex measure, partial
911 @cindex shorten measures
912 @cindex @code{\partial}
913
914 Partial measures, for example in upbeats, are entered using the
915 @code{\partial} command:
916 @lilypond[fragment,verbatim]
917 \partial 16*5  c'16 c4 f16 a'2. ~ a'8. a'16 | g'1
918 @end lilypond
919
920 The syntax for this command is 
921 @example
922   \partial @var{duration} 
923 @end example
924 This is  internally translated into
925 @example
926   \property Timing.measurePosition = -@var{length of duration}
927 @end example
928 @cindex @code{|}
929 The property @code{measurePosition} contains a rational number
930 indicating how much of the measure has passed at this point.
931
932 @node Unmetered music
933 @subsection Unmetered music
934
935 Bar lines and bar numbers are calculated automatically. For unmetered
936 music (e.g. cadenzas), this is not desirable.  By setting
937 @code{Score.timing} to false, this automatic timing can be switched
938 off.
939
940 @node Bar lines
941 @subsection Bar lines
942 @cindex Bar lines
943
944 @cindex @code{\bar}
945 @cindex measure lines
946 @cindex repeat bars
947
948
949 Bar lines delimit measures, but are also used to indicate
950 repeats. Line breaks may only happen on barlines.
951
952 @syntax
953
954 Bar lines are inserted automatically.  Special types
955 of barlines can be forced with the @code{\bar} command:
956 @lilypond[relative=1,fragment,verbatim]
957    c4 \bar "|:" c4
958 @end lilypond
959
960 The following bar types are available
961 @lilypond[fragment,  relative, singleline, verbatim]
962 c4
963 \bar "|" c
964 \bar "" c
965 \bar "|:" c
966 \bar "||" c
967 \bar ":|" c
968 \bar ".|" c
969 \bar ".|." c
970 \bar "|." 
971 @end lilypond
972
973 In scores with many staves, the barlines are automatically placed at
974 top level, and they are connected between different staves of a
975 @internalsref{StaffGroup}:
976 @lilypond[fragment, verbatim]
977 < \context StaffGroup <
978   \context Staff = up { e'4 d'
979      \bar "||"
980      f' e' }
981   \context Staff = down { \clef bass c4 g e g } >
982 \context Staff = pedal { \clef bass c2 c2 } >
983 @end lilypond
984
985
986 The command @code{\bar @var{bartype}} is a short cut for
987 doing  @code{\property Score.whichBar = @var{bartype}}
988 Whenever @code{whichBar} is set to a string, a bar line of that type is
989 created.  @code{whichBar} is usually set automatically: at the start of
990 a measure it is set to @code{defaultBarType}. The contents of
991 @code{repeatCommands} is used to override default measure bars.
992
993 @code{whichBar} can also be set directly, using @code{\property} or
994 @code{\bar  }.  These settings take precedence over the automatic
995 @code{whichBar} settings. 
996
997 @cindex whichBar
998 @cindex repeatCommands
999 @cindex defaultBarType
1000
1001 You are encouraged to use @code{\repeat} for repetitions.  See
1002 @ref{Repeats}.
1003
1004
1005
1006 @seealso
1007
1008 @ref{Repeats}.
1009
1010
1011 The bar line objects that are created at @internalsref{Staff} level
1012 are called @internalsref{BarLine}, the bar lines that span staffs are
1013 @internalsref{SpanBar}s.
1014
1015
1016 @node Polyphony
1017 @section Polyphony
1018 @cindex polyphony
1019
1020 The easiest way to enter fragments with more than one voice on a staff
1021 is to split chords using the separator @code{\\}.  You can use it for
1022 small, short-lived voices or for single chords:
1023
1024 @lilypond[verbatim,fragment]
1025 \context Voice = VA \relative c'' {
1026  c4 < { f d e  } \\ { b c2 } > c4 < g' \\ b, \\  f' \\ d' >
1027 }
1028 @end lilypond
1029
1030 The separator causes @internalsref{Voice} contexts to be instantiated,
1031 bearing the names @code{"1"}, @code{"2"}, etc. In each of these
1032 contexts, vertical direction of slurs, stems, etc. are set
1033 appropriately.
1034
1035 This can also be done by instantiating @internalsref{Voice} contexts
1036 by hand, and using @code{\voiceOne}, up to @code{\voiceFour} to assign
1037 a stem directions and horizontal shift for each part.
1038 @c
1039
1040 @lilypond[singleline, verbatim]
1041 \relative c''
1042 \context Staff < \context Voice = VA { \voiceOne cis2 b  }
1043   \context Voice = VB { \voiceThree b4 ais ~ ais4 gis4 } 
1044   \context Voice = VC { \voiceTwo fis4~  fis4 f ~ f  } >
1045 @end lilypond
1046
1047 Normally, note heads with a different number of dots are not merged, but
1048 when  the object property @code{merge-differently-dotted} is set in
1049 the @internalsref{NoteCollision} object, they are:
1050 @lilypond[verbatim,fragment,singleline]
1051 \relative c' \context Voice < {
1052      g8 g8 
1053      \property Staff.NoteCollision \override
1054         #'merge-differently-dotted = ##t
1055      g8 g8
1056   } \\ { g8.-[ f16-] g8.-[ f16-] } 
1057   >
1058 @end lilypond
1059
1060 Similarly, you can merge half note heads with eighth notes, by setting
1061 @code{merge-differently-headed}:
1062 @lilypond[fragment, relative=2,verbatim]
1063 \context Voice < {
1064     c8 c4.
1065     \property Staff.NoteCollision
1066       \override #'merge-differently-headed = ##t
1067     c8 c4. } \\ { c2 c2 } >
1068 @end lilypond
1069
1070 LilyPond also vertically shifts rests that are opposite of a stem. 
1071
1072 @lilypond[singleline,fragment,verbatim]
1073 \context Voice < c''4 \\  r4 >
1074 @end lilypond
1075
1076 @seealso
1077
1078 The objects responsible for resolving collisions are
1079 @internalsref{NoteCollision} and @internalsref{RestCollision}.  See
1080 also example files @inputfileref{input/regression,collision-dots.ly},
1081 @inputfileref{input/regression,collision-head-chords.ly},
1082 @inputfileref{input/regression,collision-heads.ly},
1083 @inputfileref{input/regression,collision-mesh.ly}, and
1084 @inputfileref{input/regression,collisions.ly}.
1085
1086
1087 @refbugs
1088
1089 Resolving collisions is a intricate subject, and only a few situations
1090 are handled. When LilyPond cannot cope, the @code{force-hshift}
1091 property of the @internalsref{NoteColumn} object and pitched rests can
1092 be used to override typesetting decisions.
1093
1094 @node Beaming
1095 @section Beaming
1096
1097 Beams are used to group short notes into chunks that are aligned with
1098 the metrum. They are inserted automatically in most cases.
1099
1100 @lilypond[fragment,verbatim, relative=2]
1101 \time 2/4 c8 c c c \time 6/8 c c c c8. c16  c8
1102 @end lilypond
1103
1104 When these automatic decisions are not good enough, beaming can be
1105 entered explicitly. It is also possible to define  beaming patterns
1106 that differ from the defaults.
1107
1108 @seealso
1109
1110 @internalsref{Beam}. 
1111
1112
1113 @cindex Automatic beams
1114 @subsection Manual beams
1115 @cindex beams, manual
1116 @cindex @code{]}
1117 @cindex @code{[}
1118
1119 In some cases it may be necessary to override the automatic beaming
1120 algorithm.  For example, the auto beamer will not beam over rests or
1121 bar lines, If you want that, specify the begin and end point manually
1122 using @code{[} and @code{]}.
1123
1124 @lilypond[fragment,relative,verbatim]
1125   \context Staff {
1126     r4 r8-[ g' a r8-] r8 g-[ | a-] r8
1127   }
1128 @end lilypond
1129
1130 @cindex @code{stemLeftBeamCount}
1131
1132 Normally, beaming patterns within a beam are determined automatically.
1133 When this mechanism fouls up, the properties
1134 @code{Voice.stemLeftBeamCount} and @code{Voice.stemRightBeamCount} can
1135 be used to control the beam subdivision on a stem.  If either property
1136 is set, its value will be used only once, and then it is erased.
1137
1138 @lilypond[fragment,relative,verbatim]
1139   \context Staff {
1140     f8-[ r16 f g a-]
1141     f8-[ r16 \property Voice.stemLeftBeamCount = #1 f g a-]
1142   }
1143 @end lilypond
1144 @cindex @code{stemRightBeamCount}
1145
1146
1147 The property @code{subdivideBeams} can be set in order to subdivide
1148 all 16th or shorter beams at beat positions.  This accomplishes the
1149 same effect as twiddling with @code{stemLeftBeamCount} and
1150 @code{stemRightBeamCount}, but it take less typing.
1151
1152
1153 @lilypond[relative=1,verbatim,noindent]
1154         c16-[ c c c c c c c-]
1155         \property Voice.subdivideBeams = ##t
1156         c16-[ c c c c c c c-]
1157         c32-[ c c c c c c c c c c c c c c c-]
1158         \property Score.beatLength = #(ly:make-moment 1 8)
1159         c32-[ c c c c c c c c c c c c c c c-]
1160 @end lilypond
1161 @cindex subdivideBeams
1162
1163 Kneed beams are inserted automatically, when a large gap is detected
1164 between the note heads.  This behavior can be tuned through the object
1165 property @code{auto-knee-gap}.
1166
1167 @cindex beams, kneed
1168 @cindex kneed beams
1169 @cindex auto-knee-gap
1170
1171
1172
1173 @refbugs
1174
1175 @cindex hara kiri
1176
1177 Automatically kneed beams cannot be used together with Hara Kiri
1178 staves.
1179
1180
1181 @menu
1182 * Setting automatic beam behavior ::  
1183 @end menu
1184
1185 @ignore
1186 @no de Beam typography
1187 @sub section Beam typography
1188
1189 One of the strong points of LilyPond is how beams are formatted. Beams
1190 are quantized, meaning that the left and right endpoints beams start
1191 exactly on staff lines. Without quantization, small wedges of white
1192 space appear between the beam and staff line, and this looks untidy.
1193
1194 Beams are also slope-damped: melodies that go up or down should also
1195 have beams that go up or down, but the slope of the beams should be
1196 less than the slope of the notes themselves.
1197
1198 Some beams should be horizontal. These are so-called concave beams. 
1199
1200 [TODO: some pictures.]
1201 @end ignore
1202
1203
1204 @node Setting automatic beam behavior 
1205 @subsection Setting automatic beam behavior 
1206
1207 @cindex @code{autoBeamSettings}
1208 @cindex @code{(end * * * *)}
1209 @cindex @code{(begin * * * *)}
1210 @cindex automatic beams, tuning
1211 @cindex tuning automatic beaming
1212
1213 [TODO: use \applycontext]
1214
1215 In normal time signatures, automatic beams can start on any note but can
1216 only end in a few positions within the measure: beams can end on a beat,
1217 or at durations specified by the properties in
1218 @code{Voice.autoBeamSettings}. The defaults for @code{autoBeamSettings}
1219 are defined in @file{scm/auto-beam.scm}.
1220
1221 The value of @code{autoBeamSettings} is changed using
1222 @code{\override} and unset using @code{\revert}:
1223 @example
1224 \property Voice.autoBeamSettings \override #'(@var{BE} @var{P} @var{Q} @var{N} @var{M}) = @var{dur}
1225 \property Voice.autoBeamSettings \revert #'(@var{BE} @var{P} @var{Q} @var{N} @var{M})
1226 @end example
1227 Here, @var{BE} is the symbol @code{begin} or @code{end}. It determines
1228 whether the rule applies to begin or end-points.  The quantity
1229 @var{P}/@var{Q} refers to the length of the beamed notes (and `@code{*
1230 *}' designates notes of any length), @var{N}/@var{M} refers to a time
1231 signature (wildcards, `@code{* *}' may be entered to designate all time
1232 signatures).
1233
1234 For example, if automatic beams should end on every quarter note, use
1235 the following:
1236 @example
1237 \property Voice.autoBeamSettings \override
1238     #'(end * * * *) = #(ly:make-moment 1 4)
1239 @end example
1240 Since the duration of a quarter note is 1/4 of a whole note, it is
1241 entered as @code{(ly:make-moment 1 4)}.
1242
1243 The same syntax can be used to specify beam starting points. In this
1244 example, automatic beams can only end on a dotted quarter note. 
1245 @example
1246 \property Voice.autoBeamSettings \override
1247     #'(end * * * *) = #(ly:make-moment 3 8)
1248 @end example
1249 In 4/4 time signature, this means that automatic beams could end only on
1250 3/8 and on the fourth beat of the measure (after 3/4, that is 2 times
1251 3/8 has passed within the measure).
1252
1253 Rules can also be restricted to specific time signatures. A rule that
1254 should only be applied in @var{N}/@var{M} time signature is formed by
1255 replacing the second asterisks by @var{N} and @var{M}. For example, a
1256 rule for 6/8 time exclusively looks like
1257 @example
1258 \property Voice.autoBeamSettings \override
1259     #'(begin * * 6 8) =  ... 
1260 @end example
1261
1262 If a rule should be to applied only to certain types of beams, use the
1263 first pair of asterisks. Beams are classified according to the
1264 shortest note they contain. For a beam ending rule that only applies
1265 to beams with 32nd notes (and no shorter notes), use @code{(end 1 32 *
1266 *)}.
1267
1268 If a score ends while an automatic beam has not been ended and is still
1269 accepting notes, this last beam will not be typeset at all.
1270
1271 @cindex automatic beam generation
1272 @cindex autobeam
1273 @cindex @code{Voice.autoBeaming}
1274 @cindex lyrics
1275
1276 For melodies that have lyrics, you may want to switch off 
1277 automatic beaming. This is done by setting @code{Voice.autoBeaming} to
1278 @code{#f}. 
1279
1280
1281 @refbugs
1282
1283 It is not possible to specify beaming parameters for beams with mixed
1284 durations, that differ from the beaming parameters of all separate
1285 durations, i.e., you will have to specify manual beams to get:
1286
1287 @lilypond[singleline,fragment,relative,noverbatim,quote]
1288   \property Voice.autoBeamSettings
1289   \override #'(end * * * *) = #(ly:make-moment 3 8)
1290   \time 12/8 c'8 c c c16 c c c c c c-[ c c c-] c8 c c4
1291 @end lilypond
1292 It is not possible to specify beaming parameters that act differently in
1293 different parts of a measure. This means that it is not possible to use
1294 automatic beaming in irregular meters such as @code{5/8}.
1295
1296 @node Accidentals
1297 @section Accidentals
1298 @cindex Accidentals
1299
1300 This section describes how to change the way that LilyPond automatically
1301 inserts accidentals before the running notes.
1302
1303
1304 @menu
1305 * Using the predefined accidental variables::  
1306 * Customized accidental rules::  
1307 @end menu
1308
1309 @node Using the predefined accidental variables
1310 @subsection Using the predefined accidental variables
1311
1312 The constructs for describing the accidental typesetting rules are
1313 quite hairy, so non-experts should stick to the variables
1314 defined in @file{ly/property-init.ly}.
1315 @cindex @file{property-init.ly}
1316
1317 The variables set properties in the ``Current'' context (see
1318 @ref{Context properties}). This means that the variables should
1319 normally be added right after the creation of the context in which the
1320 accidental typesetting described by the variable is to take
1321 effect. For example, if you want to use piano-accidentals in a piano
1322 staff then issue @code{\pianoAccidentals} first thing after the
1323 creation of the piano staff:
1324 @example
1325 \score @{
1326     \notes \relative c'' <
1327         \context Staff = sa @{ cis4 d e2 @}
1328         \context GrandStaff <
1329             \pianoAccidentals
1330             \context Staff = sb @{ cis4 d e2 @}
1331             \context Staff = sc @{ es2 c @}
1332         >
1333         \context Staff = sd @{ es2 c @}
1334     >
1335 @}
1336 @end example
1337 @lilypond[singleline]
1338 \score {
1339     \notes \relative c'' <
1340         \context Staff = sa { cis4 d e2 }
1341         \context GrandStaff <
1342             \pianoAccidentals
1343             \context Staff = sb { cis4 d e2 }
1344             \context Staff = sc { es2 c }
1345         >
1346         \context Staff = sd { es2 c }
1347     >
1348     \paper {
1349         \translator {
1350             \StaffContext
1351             minimumVerticalExtent = #'(-4.0 . 4.0)
1352         }
1353     }
1354 }
1355 @end lilypond
1356
1357 The variables are:
1358 @table @code
1359 @item \defaultAccidentals
1360       @cindex @code{\defaultAccidentals}
1361       This is the default typesetting behaviour. It should correspond
1362       to 18th century common practice: Accidentals are
1363       remembered to the end of the measure in which they occur and
1364       only on their own octave.
1365
1366 @item \voiceAccidentals
1367       @cindex @code{\voiceAccidentals}
1368 @c
1369       The normal behaviour is to
1370 remember the accidentals on Staff-level.  This variable, however,
1371 typesets accidentals individually for each voice.  Apart from that the
1372 rule is similar to @code{\defaultAccidentals}.
1373
1374       This leads to some weird and often unwanted results
1375       because accidentals from one voice do not get cancelled in other
1376       voices:
1377 @lilypond[singleline,relative,fragment,verbatim,quote]
1378     \context Staff <
1379         \voiceAccidentals
1380         <
1381          { es g } \\
1382          { c, e }
1383      > >
1384 @end lilypond
1385       Hence you should only use @code{\voiceAccidentals} if the voices
1386 are to be read solely by individual musicians. If the staff is to be
1387 used by one musician (e.g., a conductor) then you use
1388 @code{\modernVoiceAccidentals} or @code{\modernVoiceCautionaries}
1389 instead.
1390
1391 @item \modernAccidentals
1392       @cindex @code{\modernAccidentals}
1393       This rule  corresponds to the common practice in the 20th
1394       century.
1395       The rule is  more complex than @code{\defaultAccidentals}.
1396       You get all the same accidentals, but temporary
1397       accidentals also get cancelled in other octaves. Further more,
1398       in the same octave, they also get cancelled in the following measure:
1399 @lilypond[singleline,fragment,verbatim]
1400       \modernAccidentals
1401       cis' c'' cis'2 | c'' c'
1402 @end lilypond
1403
1404 @item \modernCautionaries
1405       @cindex @code{\modernCautionaries}
1406      This rule is similar to @code{\modernAccidentals}, but the
1407      ``extra'' accidentals (the ones not typeset by
1408      @code{\defaultAccidentals}) are typeset as cautionary accidentals
1409      (i.e. in reduced size):
1410 @lilypond[singleline,fragment,verbatim]
1411       \modernCautionaries
1412       cis' c'' cis'2 | c'' c'
1413 @end lilypond
1414
1415       @cindex @code{\modernVoiceAccidentals}
1416 @item \modernVoiceAccidentals
1417 is used for multivoice accidentals to be read both by musicians
1418 playing one voice and musicians playing all voices.  Accidentals are
1419 typeset for each voice, but they @emph{are} cancelled across voices in
1420 the same @internalsref{Staff}.
1421
1422       @cindex @code{\modernVoiceCautionaries}
1423 @item \modernVoiceCautionaries
1424 is the same as @code{\modernVoiceAccidentals}, but with the extra
1425 accidentals (the ones not typeset by @code{\voiceAccidentals}) typeset
1426 as cautionaries.  Even though all accidentals typeset by
1427 @code{\defaultAccidentals} @emph{are} typeset by this variable then
1428 some of them are typeset as cautionaries.
1429
1430 @item \pianoAccidentals
1431       @cindex @code{\pianoAccidentals}
1432       20th century practice for piano notation. Very similar to
1433       @code{\modernAccidentals} but accidentals also get cancelled
1434       across the staves in the same @internalsref{GrandStaff} or
1435       @internalsref{PianoStaff}.
1436
1437 @item \pianoCautionaries
1438       @cindex @code{\pianoCautionaries}
1439       As @code{\pianoAccidentals} but with the extra accidentals
1440       typeset as cautionaries.
1441
1442 @item \noResetKey
1443       @cindex @code{\noResetKey}
1444       Same as @code{\defaultAccidentals} but with accidentals lasting
1445       ``forever'' and not only until the next measure:
1446 @lilypond[singleline,fragment,verbatim,relative]
1447       \noResetKey
1448       c1 cis cis c
1449 @end lilypond
1450
1451 @item \forgetAccidentals
1452       @cindex @code{\forgetAccidentals}
1453       This is sort of the opposite of @code{\noResetKey}: Accidentals
1454       are not remembered at all - and hence all accidentals are
1455       typeset relative to the key signature, regardless of what was
1456       before in the music:
1457 @lilypond[singleline,fragment,verbatim,relative]
1458       \forgetAccidentals
1459       \key d\major c4 c cis cis d d dis dis
1460 @end lilypond
1461 @end table
1462
1463 @node Customized accidental rules
1464 @subsection  Customized accidental rules
1465
1466 This section must be considered gurus-only, and hence it must be
1467 sufficient with a short description of the system and a reference to
1468 the internal documentation.
1469
1470 The algorithm tries several different rules, and uses the rule
1471 that gives the highest number of accidentals.  Each rule consists of
1472 @table @var
1473 @item context:
1474       In which context is the rule applied. For example, if
1475 @var{context} is @internalsref{Score} then all staves share
1476 accidentals, and if @var{context} is @internalsref{Staff} then all
1477 voices in the same staff share accidentals, but staves do not.
1478 @item octavation:
1479       Whether the accidental changes all octaves or only the current
1480       octave.
1481 @item lazyness:
1482       Over how many barlines the accidental lasts.
1483       If @var{lazyness} is @code{-1} then the accidental is forget
1484       immediately, and if @var{lazyness} is @code{#t} then the accidental
1485       lasts forever.
1486
1487 [TODO: should use  +infinity for this case?]
1488
1489 @end table
1490
1491 @seealso
1492
1493 @internalsref{Accidental_engraver}, @internalsref{Accidental},
1494 @internalsref{AccidentalPlacement}.
1495
1496
1497 @refbugs
1498
1499 Currently the simultaneous notes are considered to be entered in
1500 sequential mode. This means that in a chord the accidentals are
1501 typeset as if the notes in the chord happened one at a time - in the
1502 order in which they appear in the input file.
1503
1504 This is only a problem when there are simultaneous notes whose
1505 accidentals depend on each other.  The problem only occurs when using
1506 non-default accidentals. In the default scheme, accidentals only
1507 depend on other accidentals with the same pitch on the same staff, so
1508 no conflicts possible.
1509
1510 This example shows two examples of the same music giving different
1511 accidentals depending on the order in which the notes occur in the
1512 input file:
1513
1514 @lilypond[singleline,fragment,verbatim]
1515 \property Staff.autoAccidentals = #'( Staff (any-octave . 0) )
1516 cis'4 <<c'' c'>> r2 | cis'4 <<c' c''>> r2
1517 | <<cis' c''>> r | <<c'' cis'>> r | 
1518 @end lilypond
1519
1520 This problem can be solved by manually inserting @code{!} and @code{?}
1521 for the problematic notes.
1522
1523 @node Expressive marks
1524 @section Expressive marks
1525
1526
1527 @menu
1528 * Slurs ::                      
1529 * Phrasing slurs::              
1530 * Breath marks::                
1531 * Metronome marks::             
1532 * Text spanners::               
1533 * Analysis brackets::           
1534 @end menu
1535
1536 @node Slurs 
1537 @subsection Slurs
1538 @cindex Slurs
1539
1540 A slur indicates that notes are to be played bound or @emph{legato}.
1541
1542 @syntax
1543
1544 They are entered using parentheses:
1545 @lilypond[fragment,verbatim,center]
1546   f'-( g'-)-( a'-) a'8-[ b'-(-] a'4 g'2 f'4-)
1547   <<c' e'>>2-( <<b d'>>2-)
1548 @end lilypond
1549
1550
1551 @c TODO: should explain that ^( and _( set directions
1552 @c should set attachments with ^ and _ ?  
1553
1554 Slurs avoid crossing stems, and are generally attached to note heads.
1555 However, in some situations with beams, slurs may be attached to stem
1556 ends.  If you want to override this layout you can do this through the
1557 object property @code{attachment} of @internalsref{Slur} in
1558 @internalsref{Voice} context.  Its value is a pair of symbols, specifying
1559 the attachment type of the left and right end points.
1560
1561 @lilypond[fragment,relative,verbatim]
1562   \slurUp
1563   \property Voice.Stem \set #'length = #5.5
1564   g'8-(g g4-)
1565   \property Voice.Slur \set #'attachment = #'(stem . stem)
1566   g8-( g g4-)
1567 @end lilypond
1568
1569 If a slur would strike through a stem or beam, the slur will be moved
1570 away upward or downward. If this happens, attaching the slur to the
1571 stems might look better:
1572
1573 @lilypond[fragment,relative,verbatim]
1574   \stemUp \slurUp
1575   d32-( d'4 d8..-)
1576   \property Voice.Slur \set #'attachment = #'(stem . stem)
1577   d,32-( d'4 d8..-)
1578 @end lilypond
1579
1580 @seealso
1581
1582 @seeinternals{Slur}, @internalsref{SlurEvent}.
1583
1584
1585 @refbugs
1586
1587 Producing nice slurs is a difficult problem, and LilyPond currently
1588 uses a simple, empiric method to produce slurs. In some cases, the
1589 results of this method are ugly.
1590
1591
1592 @cindex Adjusting slurs
1593
1594 @node Phrasing slurs
1595 @subsection Phrasing slurs
1596
1597 @cindex phrasing slurs
1598 @cindex phrasing marks
1599
1600 A phrasing slur (or phrasing mark) connects chords and is used to
1601 indicate a musical sentence. It is started using @code{\(} and @code{\)}
1602 respectively.
1603
1604 @lilypond[fragment,verbatim,center,relative]
1605   \time 6/4 c'-\(  d-( e-) f-( e-)  d-\) 
1606 @end lilypond
1607
1608 Typographically, the phrasing slur behaves almost exactly like a
1609 normal slur.  However, they are treated as different objects.  A
1610 @code{\slurUp} will have no effect on a phrasing slur; instead, you
1611 should use @code{\phrasingSlurUp}, @code{\phrasingSlurDown}, and
1612 @code{\phrasingSlurBoth}.
1613
1614 The commands @code{\slurUp}, @code{\slurDown}, and @code{\slurBoth}
1615 will only affect normal slurs and not phrasing slurs.
1616
1617 @seealso
1618
1619 See also @internalsref{PhrasingSlur},
1620 @internalsref{PhrasingSlurEvent}.
1621
1622 @refbugs
1623
1624 Phrasing slurs have the same limitations in their formatting as normal
1625 slurs.
1626
1627 @node Breath marks
1628 @subsection Breath marks
1629
1630 Breath marks are entered using @code{\breathe}.
1631
1632
1633 @lilypond[fragment,relative]
1634 c'4 \breathe d4
1635 @end lilypond
1636
1637 The glyph of the breath mark can be tweaked by overriding the
1638 @code{text} property of the @code{BreathingSign} grob with the name of
1639 any glyph of @ref{The Feta font}.  For example,
1640 @lilypond[fragment,verbatim,relative]
1641 c'4
1642 \property Voice.BreathingSign \override #'text = #"scripts-rvarcomma"
1643 \breathe
1644 d4
1645 @end lilypond
1646
1647 @seealso 
1648
1649 @internalsref{BreathingSign}, @internalsref{BreathingSignEvent},
1650 @inputfileref{input/regression,breathing-sign.ly}.
1651
1652
1653 @node Metronome marks
1654 @subsection Metronome marks
1655
1656 @cindex Tempo
1657 @cindex beats per minute
1658 @cindex metronome marking
1659
1660 Metronome settings can be entered as follows:
1661 @example 
1662   \tempo @var{duration} = @var{perminute} 
1663 @end example
1664
1665 In the MIDI output, they are interpreted as a tempo change, and in the
1666 paper output, a metronome marking is printed
1667 @cindex @code{\tempo}
1668 @lilypond[fragment,verbatim]
1669   \tempo 8.=120 c''1
1670 @end lilypond
1671
1672 @seealso
1673
1674 @internalsref{TempoEvent}
1675   
1676
1677
1678 @node Text spanners
1679 @subsection Text spanners
1680 @cindex Text spanners
1681
1682 Some performance indications, e.g. @i{rallentando} or @i{accelerando},
1683 are written as texts, and extended over many measures with dotted
1684 lines.  You can create such texts using text spanners: attach
1685 @code{\startTextSpan} and @code{\stopTextSpan} to the
1686 start and ending note of the spanner. 
1687
1688 The string to be printed, as well as the style, is set through object
1689 properties.
1690
1691 @lilypond[fragment,relative,verbatim]
1692  \relative c' {  c1 
1693   \property Voice.TextSpanner \set #'direction = #-1
1694   \property Voice.TextSpanner \set #'edge-text = #'("rall " . "")
1695   c2-\startTextSpan b c-\stopTextSpan a }
1696 @end lilypond
1697
1698
1699 @seealso
1700
1701 @internalsref{TextSpanEvent},
1702 @internalsref{TextSpanner}, @inputfileref{input/regression,text-spanner.ly}.
1703
1704
1705 @node Analysis brackets
1706 @subsection Analysis brackets
1707 @cindex brackets
1708 @cindex phrasing brackets
1709 @cindex musicological analysis
1710 @cindex note grouping bracket
1711
1712 Brackets are used in musical analysis to indicate structure in musical
1713 pieces. LilyPond supports a simple form of nested horizontal brackets.
1714 To use this, add the @internalsref{Horizontal_bracket_engraver} to
1715 @internalsref{Staff} context.  A bracket is started with
1716 @code{\startGroup} and closed with @code{\stopGroup}. 
1717
1718 @lilypond[singleline,verbatim]
1719 \score { \notes \relative c'' {  
1720         c4-\startGroup-\startGroup
1721         c4-\stopGroup
1722         c4-\startGroup
1723         c4-\stopGroup-\stopGroup
1724   }
1725   \paper { \translator {
1726             \StaffContext \consists "Horizontal_bracket_engraver"
1727         }}}
1728 @end lilypond
1729
1730 @seealso
1731
1732 @internalsref{HorizontalBracket}, @internalsref{NoteGroupingEvent},
1733 @inputfileref{input/regression,note-group-bracket.ly}. 
1734
1735 @refbugs
1736
1737 Bracket endings should be angled/slanted. (TODO)
1738  
1739
1740
1741
1742
1743 @node Articulations
1744 @section Articulations
1745 @cindex Articulations
1746
1747 @cindex articulations
1748 @cindex scripts
1749 @cindex ornaments
1750
1751 A variety of symbols can appear above and below notes to indicate
1752 different characteristics of the performance. They are added to a note
1753 by adding a dash and the the character signifying the
1754 articulation. They are demonstrated here.
1755
1756 @lilypondfile[notexidoc]{script-abbreviations.ly}
1757
1758 The script is automatically placed, but if you need to force
1759 directions, you can use @code{_} to force them down, or @code{^} to
1760 put them up:
1761 @lilypond[fragment, verbatim]
1762   c''4^^ c''4_^
1763 @end lilypond
1764
1765
1766
1767
1768 Other symbols can be added using the syntax
1769 @var{note}@code{-\}@var{name}. Again, they can be forced up or down
1770 using @code{^} and @code{_}.
1771
1772 @cindex accent
1773 @cindex marcato
1774 @cindex staccatissimo
1775 @cindex fermata
1776 @cindex stopped
1777 @cindex staccato
1778 @cindex portato
1779 @cindex tenuto
1780 @cindex upbow
1781 @cindex downbow
1782 @cindex foot marks
1783 @cindex organ pedal marks
1784 @cindex turn
1785 @cindex open
1786 @cindex flageolet
1787 @cindex reverseturn
1788 @cindex trill
1789 @cindex prall
1790 @cindex mordent
1791 @cindex prallprall
1792 @cindex prallmordent
1793 @cindex prall, up
1794 @cindex prall, down
1795 @cindex mordent
1796 @cindex thumb marking
1797 @cindex segno
1798 @cindex coda
1799 @cindex varcoda
1800
1801 @lilypondfile[notexidoc]{script-chart.ly}
1802
1803 @seealso
1804
1805 @internalsref{ScriptEvent}, @internalsref{Script}.
1806
1807 @refbugs
1808
1809 All of these note ornaments appear in the printed output but have no
1810 effect on the MIDI rendering of the music.
1811
1812
1813 @node Fingering instructions
1814 @section Fingering instructions
1815
1816 @cindex fingering
1817
1818 Fingering instructions can be entered using
1819 @example
1820   @var{note}-@var{digit}
1821 @end example
1822 For finger changes, use markup texts:
1823 @c
1824 @lilypond[verbatim, singleline, fragment]
1825       c'4-1 c'4-2 c'4-3 c'4-4
1826       c'^\markup { \fontsize #-3 \number "2-3" }
1827 @end lilypond
1828
1829 @cindex finger change
1830 @cindex scripts
1831 @cindex superscript
1832 @cindex subscript
1833
1834 @lilypond[verbatim,singleline,fragment,relative=1]
1835         << c-1  e-2 g-3 b-5 >> 4
1836         \property Voice.fingerHorizontalDirection = #LEFT
1837         << c-1  es-3 g-5 >> 4
1838         \property Voice.fingerHorizontalDirection = #RIGHT
1839         << c-1  e-2 g-3 b-5 >>4
1840         \property Voice.fingerHorizontalDirection = #LEFT
1841         << c_1  e-2 g-3 b^5 >>4
1842 @end lilypond
1843         
1844 @seealso
1845
1846 @internalsref{FingerEvent} and @internalsref{Fingering}.
1847
1848
1849 @menu
1850 * Text scripts::                
1851 * Grace notes::                 
1852 * Glissando ::                  
1853 * Dynamics::                    
1854 @end menu
1855
1856 @node Text scripts
1857 @subsection Text scripts
1858 @cindex Text scripts
1859
1860 It is possible to place arbitrary strings of text or markup text (see
1861 @ref{Text markup}) above or below notes by using a string:
1862 @code{c^"text"}.  By default, these indications do not influence the
1863 note spacing, but by using the command @code{\fatText}, the widths
1864 will be taken into account.
1865 @c
1866 @lilypond[fragment,singleline,verbatim] \relative c' {
1867 c4^"longtext" \fatText c4_"longlongtext" c4 }
1868 @end lilypond
1869
1870 It is possible to use @TeX{} commands in the strings, but this should be
1871 avoided because it makes it impossible for LilyPond to compute the
1872 exact length of the string, which may lead to collisions.  Also, @TeX{}
1873 commands will not work with direct PostScript output.
1874
1875
1876 @seealso
1877
1878 @internalsref{TextScriptEvent}, @internalsref{TextScript},
1879 @ref{Text markup}.
1880
1881
1882
1883 @node Grace notes
1884 @subsection Grace notes
1885
1886
1887
1888 @cindex @code{\grace}
1889 @cindex ornaments
1890 @cindex grace notes
1891
1892 Grace notes are ornaments that are written out
1893
1894 @lilypond[relative=2,verbatim,fragment] c4 \grace c16 c4 \grace {
1895 [c16 d16] } c4
1896 @end lilypond
1897
1898 In normal notation, grace notes take up no logical
1899 time in a measure. Such an idea is practical for normal notation, but
1900 is not strict enough to put it into a program. The model that LilyPond
1901 uses for grace notes internally is that all timing is done in two
1902 steps:
1903
1904 Every point in musical time consists of two rational numbers: one
1905 denotes the logical time, one denotes the grace timing. The above
1906 example is shown here with timing tuples.
1907
1908 @lilypond[]
1909 \score { \notes \relative c''{ 
1910   c4^"(0,0)"  \grace c16_" "_"(1/4,-1/16)"  c4^"(1/4,0)"  \grace {
1911   c16_"(2/4,-1/8)"-[  d16^"(2/4,-1/16)" ] } c4_" "_"(2/4,0)"
1912   }
1913 \paper {  linewidth = 8.\cm }
1914 }
1915 @end lilypond
1916
1917
1918 The placement of these grace notes is synchronized between different
1919 staves.
1920
1921 @lilypond[relative=2,verbatim,fragment] 
1922 < \context Staff = SA { e4 \grace { c16-[ d e f-] } e4 }
1923   \context Staff = SB { c'4 \grace { g8 b } c4 } >
1924 @end lilypond
1925
1926
1927 Unbeamed eighth notes and shorter by default have a slash through the
1928 stem. This can be controlled with object property @code{stroke-style} of
1929 @internalsref{Stem}. For proper  matching of override and reverts of
1930 such properties, it is necessary to use a Scheme function.
1931
1932 The following fragment overrides the default formatting Grace style stems.
1933 @example
1934   #(add-to-grace-init "Voice" 'Stem  'stroke-style '())
1935 @end example
1936
1937 The @code{\override} is carefully matched with a @code{\revert}.
1938
1939 @cindex slash
1940 @cindex grace slash
1941
1942 @lilypond[fragment,verbatim]
1943 \relative c'' \context Voice {
1944   \grace c8 c4 \grace { c16-[ c16-] } c4
1945   \grace { 
1946     \property Voice.Stem \override #'stroke-style = #'() 
1947     c16 
1948     \property Voice.Stem \revert #'stroke-style
1949   } c4
1950 }
1951 @end lilypond
1952
1953 If you want to end a note with a grace note, then the standard trick
1954 is to put the grace notes before a phantom ``space note'', e.g.
1955 @lilypond[fragment,verbatim, relative=2]
1956 \context Voice {
1957     < { d1^\trill ( }
1958      { s2 \grace { c16-[ d-] } } >
1959    )c4
1960 }
1961 @end lilypond
1962
1963 A @code{\grace} section has some default values, and LilyPond will
1964 use those default values unless you specify otherwise inside the
1965 @code{\grace} section.  For example, if you specify \slurUp
1966 @emph{before} your @code{\grace} section, a slur which starts inside
1967 the @code{\grace} will not be forced up, even if the slur ends outside
1968 of the @code{\grace}.  Note the difference between the first and
1969 second bars in this example:
1970
1971 @lilypond[fragment,verbatim]
1972 \relative c'' \context Voice {
1973     \slurUp
1974     \grace {
1975         a4-( }
1976     ) a4 a4-( a2-)
1977     \slurBoth
1978
1979     \grace {
1980         \slurUp
1981         a4-( }
1982     ) a4 a4-( a2-)
1983     \slurBoth
1984 }
1985 @end lilypond
1986
1987
1988 @seealso
1989
1990 @internalsref{GraceMusic}.
1991
1992 @refbugs
1993
1994 Grace notes cannot be used in the smallest size (@file{paper11.ly}).
1995
1996 Grace note synchronization can also lead to surprises. Staff notation,
1997 such as key signatures, barlines, etc. are also synchronized. Take
1998 care when you mix staves with grace notes and staves without.
1999
2000 @lilypond[relative=2,verbatim,fragment]
2001 < \context Staff = SA { e4 \bar "|:" \grace c16 d4 }
2002   \context Staff = SB { c4 \bar "|:"  d4 } >
2003 @end lilypond
2004
2005 Grace sections should only be used within sequential music
2006 expressions.  Nesting, juxtaposing, or ending sequential music with a
2007 grace section is not supported, and might produce crashes or other
2008 errors.
2009
2010 Overriding settings for grace music using @code{add-to-grace-init}
2011 cannot be done in a modular way.
2012
2013
2014 @node Glissando 
2015 @subsection Glissando
2016 @cindex Glissando 
2017
2018 @cindex @code{\glissando}
2019
2020 A glissando is a smooth change in pitch. It is denoted by a line or a
2021 wavy line between two notes.
2022
2023 @syntax
2024
2025 A glissando line can be requested by attaching a @code{\glissando} to
2026 a note:
2027
2028 @lilypond[fragment,relative,verbatim]
2029   c'-\glissando c'
2030 @end lilypond
2031
2032 @seealso
2033
2034 @internalsref{Glissando}, @internalsref{GlissandoEvent}.
2035
2036
2037 @refbugs
2038
2039 Printing of an additional text (such as @emph{gliss.}) must be done
2040 manually.
2041
2042
2043 @node Dynamics
2044 @subsection Dynamics
2045 @cindex Dynamics
2046
2047
2048
2049 @cindex @code{\ppp}
2050 @cindex @code{\pp}
2051 @cindex @code{\p}
2052 @cindex @code{\mp}
2053 @cindex @code{\mf}
2054 @cindex @code{\f}
2055 @cindex @code{\ff}
2056 @cindex @code{\fff}
2057 @cindex @code{\ffff}
2058 @cindex @code{\fp}
2059 @cindex @code{\sf}
2060 @cindex @code{\sff}
2061 @cindex @code{\sp}
2062 @cindex @code{\spp}
2063 @cindex @code{\sfz}
2064 @cindex @code{\rfz}
2065
2066
2067 Absolute dynamic marks are specified using an variable after a
2068 note: @code{c4-\ff}.  The available dynamic marks are: @code{\ppp},
2069 @code{\pp}, @code{\p}, @code{\mp}, @code{\mf}, @code{\f}, @code{\ff},
2070 @code{\fff}, @code{\fff}, @code{\fp}, @code{\sf}, @code{\sff},
2071 @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}.
2072
2073 @lilypond[verbatim,singleline,fragment,relative]
2074   c'-\ppp c-\pp c -\p c-\mp c-\mf c-\f c-\ff c-\fff
2075   c2-\sf c-\rfz
2076 @end lilypond
2077
2078 @cindex @code{\cr}
2079 @cindex @code{\rc}
2080 @cindex @code{\decr}
2081 @cindex @code{\rced}
2082 @cindex @code{\<}
2083 @cindex @code{\>}
2084 @cindex @code{\"!}
2085
2086
2087
2088 A crescendo mark is started with @code{\cr} and terminated with
2089 @code{\endcr}, and decrescendi similarly with @code{\decr} and
2090 @code{\enddecr}.  There are also shorthands for these marks.  A
2091 crescendo can be started with @code{\<} and a decrescendo can be
2092 started with @code{\>}.  Either one can be terminated with @code{\!}.
2093 Because these marks are bound to notes, if you must use spacer notes
2094 if multiple marks during one note are needed.
2095
2096 @lilypond[fragment,verbatim,center,quote]
2097   c''-\< c''-\!   d''-\decr e''-\rced 
2098   < f''1 { s4 s4-\< s4-\! \>  s4-\! } >
2099 @end lilypond
2100 This may give rise to very short hairpins. Use @code{minimum-length}
2101 in @internalsref{Voice}.@internalsref{HairPin} to lengthen them, for
2102 example:
2103
2104 @example
2105  \property Staff.Hairpin \override #'minimum-length = #5
2106 @end example
2107
2108 You can also use a text saying @emph{cresc.} instead of hairpins. Here
2109 is an example how to do it:
2110
2111 @lilypond[fragment,relative=2,verbatim]
2112   c4 \cresc c4 \endcresc c4
2113 @end lilypond
2114
2115
2116 @cindex crescendo
2117 @cindex decrescendo
2118
2119 You can also supply your own texts:
2120 @lilypond[fragment,relative,verbatim]
2121   \context Voice {
2122     \property Voice.crescendoText = "cresc. poco"
2123     \property Voice.crescendoSpanner = #'dashed-line
2124     a'2-\mf-\< a a a-\!
2125   }
2126 @end lilypond
2127
2128 @cindex diminuendo
2129
2130 @seealso
2131
2132 @internalsref{CrescendoEvent}, @internalsref{DecrescendoEvent},
2133 @internalsref{AbsoluteDynamicEvent}.
2134
2135 Dynamics are objects of @internalsref{DynamicText} and
2136 @internalsref{Hairpin}. Vertical positioning of these symbols is
2137 handled by the @internalsref{DynamicLineSpanner} object.
2138
2139 If you want to adjust padding or vertical direction of the dynamics,
2140 you must set properties for the @internalsref{DynamicLineSpanner}
2141 object. Predefined variables to set the vertical direction are
2142 @code{\dynamicUp} and  @code{\dynamicDown}.
2143
2144 @cindex direction, of dynamics
2145 @cindex @code{\dynamicDown}
2146 @cindex @code{\dynamicUp}
2147
2148
2149 @node Repeats
2150 @section Repeats
2151
2152
2153 @cindex repeats
2154 @cindex @code{\repeat}
2155
2156
2157 Repetition is a central concept in music, and multiple notations exist
2158 for repetitions. In LilyPond, most of these notations can be captured
2159 in a uniform syntax. One of the advantages is, all these repetitions
2160 can be rendered in MIDI accurately.
2161
2162 The following types of repetition are supported:
2163
2164 @table @code
2165 @item unfold
2166 Repeated music is fully written (played) out.  Useful for MIDI
2167 output, and entering repetitive music.
2168
2169 @item volta
2170 This is the normal notation: Repeats are not written out, but
2171 alternative endings (voltas) are printed, left to right.
2172
2173 @ignore
2174 @item fold
2175 Alternative endings are written stacked. This has limited use but may be
2176 used to typeset two lines of lyrics in songs with repeats, see
2177 @inputfileref{input,star-spangled-banner.ly}.
2178 @end ignore
2179
2180 @item tremolo
2181 Make tremolo beams.
2182
2183 @item percent
2184 Make beat or measure repeats. These look like percent signs.
2185
2186 @end table  
2187
2188 @menu
2189 * Repeat syntax::               
2190 * Repeats and MIDI::            
2191 * Manual repeat commands::      
2192 * Tremolo repeats::             
2193 * Tremolo subdivisions::        
2194 * Measure repeats::             
2195 @end menu
2196
2197 @node Repeat syntax
2198 @subsection Repeat syntax
2199
2200 @syntax
2201
2202 LilyPond has one syntactic construct for specifying different types of
2203 repeats.  The syntax is
2204
2205 @example
2206   \repeat @var{variant} @var{repeatcount} @var{repeatbody}
2207 @end example
2208
2209 If you have alternative endings, you may add
2210 @cindex @code{\alternative}
2211 @example
2212  \alternative @code{@{} @var{alternative1}
2213             @var{alternative2}
2214             @var{alternative3} @dots{} @code{@}}
2215 @end example
2216 where each @var{alternative} is a music expression.  If you do not
2217 give enough alternatives for all of the repeats, then the first
2218 alternative is assumed to be played more than once.
2219
2220 Normal notation repeats are used like this:
2221 @lilypond[fragment,verbatim]
2222   c'1
2223   \repeat volta 2 { c'4 d' e' f' }
2224   \repeat volta 2 { f' e' d' c' }
2225 @end lilypond
2226
2227 With alternative endings:
2228 @lilypond[fragment,verbatim]
2229   c'1
2230   \repeat volta 2 {c'4 d' e' f'} 
2231   \alternative { {d'2 d'} {f' f} }
2232 @end lilypond
2233
2234
2235 @lilypond[fragment,verbatim]
2236 \context Staff {
2237   \relative c' {
2238     \partial 4
2239     \repeat volta 4 { e | c2 d2 | e2 f2 | }
2240     \alternative { { g4 g g } { a | a a a a | b2. } }
2241   }
2242 }
2243 @end lilypond
2244
2245 @refbugs
2246
2247  If you do a nested repeat like
2248
2249 @example 
2250 \repeat @dots{}
2251 \repeat @dots{}
2252 \alternative 
2253 @end example 
2254
2255 @noindent
2256 then it is ambiguous to which @code{\repeat} the @code{\alternative}
2257 belongs. This ambiguity is resolved by always having the
2258 @code{\alternative} belong to the inner @code{\repeat}.  For clarity,
2259 it is advisable to use braces in such situations.
2260 @cindex ambiguity
2261
2262 @node Repeats and MIDI
2263 @subsection Repeats and MIDI
2264
2265 @cindex expanding repeats
2266
2267 For instructions on how to unfold repeats for MIDI output, see the
2268 example file @inputfileref{input/test,unfold-all-repeats.ly}.
2269
2270
2271 @refbugs
2272
2273 Timing information is not remembered at the start of an alternative,
2274 so you have to reset timing information after a repeat, e.g. using a
2275 bar-check (See @ref{Bar check}), setting @code{Score.measurePosition}
2276 or entering @code{\partial}.  Similarly, slurs or ties are also not
2277 repeated.
2278
2279
2280 @node Manual repeat commands
2281 @subsection Manual repeat commands
2282
2283 @cindex @code{repeatCommands}
2284
2285 The property @code{repeatCommands} can be used to control the layout of
2286 repeats. Its value is a Scheme list of repeat commands, where each repeat
2287 command can be
2288
2289 @table @code
2290 @item 'start-repeat
2291  Print a |: bar line
2292 @item 'end-repeat
2293  Print a :| bar line
2294 @item (volta . @var{text})
2295  Print a volta bracket saying @var{text}. The text can be specified as
2296 a text string or as a markup text, see @ref{Text markup}. Do not
2297 forget to change the font, as the default number font does not contain
2298 alphabetic characters.
2299 @item (volta . #f) 
2300  Stop a running volta bracket
2301 @end table
2302
2303 @lilypond[verbatim, fragment]
2304  c''4
2305     \property Score.repeatCommands = #'((volta "93") end-repeat)
2306  c''4 c''4
2307     \property Score.repeatCommands = #'((volta #f))
2308  c''4 c''4
2309 @end lilypond
2310
2311
2312 @seealso
2313
2314 @internalsref{VoltaBracket}, @internalsref{RepeatedMusic},
2315 @internalsref{VoltaRepeatedMusic},
2316 @internalsref{UnfoldedRepeatedMusic}
2317 @internalsref{FoldedRepeatedMusic}.
2318
2319 @node Tremolo repeats
2320 @subsection Tremolo repeats
2321 @cindex tremolo beams
2322
2323 To place tremolo marks between notes, use @code{\repeat} with tremolo
2324 style.  
2325 @lilypond[verbatim,center,singleline]
2326 \score { 
2327   \context Voice \notes\relative c' {
2328     \repeat "tremolo" 8 { c16 d16 }
2329     \repeat "tremolo" 4 { c16 d16 }    
2330     \repeat "tremolo" 2 { c16 d16 }
2331     \repeat "tremolo" 4 c16
2332   }
2333 }
2334 @end lilypond
2335
2336 @seealso
2337
2338 Tremolo beams are @internalsref{Beam} objects. Single stem tremolos are
2339 @internalsref{StemTremolo}.  @internalsref{TremoloEvent}.
2340
2341
2342 @refbugs
2343
2344 The single stem tremolo @emph{must} be entered without @code{@{} and
2345 @code{@}}.
2346
2347 @node Tremolo subdivisions
2348 @subsection Tremolo subdivisions
2349 @cindex tremolo marks
2350 @cindex @code{tremoloFlags}
2351
2352 Tremolo marks can be printed on a single note by adding
2353 `@code{:}[@var{length}]' after the note.  The length must be at least 8.
2354 A @var{length} value of 8 gives one line across the note stem.  If the
2355 length is omitted, then then the last value (stored in
2356 @code{Voice.tremoloFlags}) is used.
2357
2358 @lilypond[verbatim,fragment,center]
2359   c'2:8 c':32 | c': c': |
2360 @end lilypond
2361
2362 [TODO : stok is te kort bij 32en]
2363
2364 @refbugs
2365
2366 Tremolos in this style do not carry over into the MIDI output.
2367
2368
2369 @node Measure repeats
2370 @subsection Measure repeats
2371
2372 @cindex percent repeats
2373 @cindex measure repeats
2374
2375 In the @code{percent} style, a note pattern can be repeated. It is
2376 printed once, and then the pattern is replaced with a special sign.
2377 Patterns of a one and two measures are replaced by percent-like signs,
2378 patterns that divide the measure length are replaced by slashes.
2379
2380 @lilypond[verbatim,singleline]
2381  \context Voice { \repeat  "percent" 4  { c'4 }
2382     \repeat "percent" 2 { c'2 es'2 f'4 fis'4 g'4 c''4 }
2383 }
2384 @end lilypond   
2385
2386 @seealso
2387
2388 @internalsref{RepeatSlash}, @internalsref{PercentRepeat},
2389 @internalsref{PercentRepeatedMusic}, and
2390 @internalsref{DoublePercentRepeat}.
2391
2392
2393 @refbugs
2394
2395 Single measure and double measure percent-repeats cannot be nested.
2396
2397 @node Rhythmic music
2398 @section Rhythmic music
2399
2400 Sometimes you might want to show only the rhythm of a melody.  This can
2401 be done with the rhythmic staff. All pitches of notes on such a staff
2402 are squashed, and the  staff itself  looks has  a single staff line:
2403
2404 @lilypond[fragment,relative,verbatim]
2405   \context RhythmicStaff {
2406       \time 4/4
2407       c4 e8 f  g2 | r4 g r2 | g1:32 | r1 |
2408   }
2409 @end lilypond
2410
2411 @menu
2412 * Percussion staves::           
2413 * Percussion midi output::      
2414 @end menu
2415
2416 @node Percussion staves
2417 @subsection Percussion staves
2418 @cindex percussion
2419 @cindex drums
2420
2421 To typeset more than one piece of percussion to be played by the same
2422 musician one typically uses a multiline staff where each staff
2423 position refers to a specific piece of percussion.
2424
2425 @syntax
2426
2427 LilyPond is has a set of Scheme functions that can be used to typeset
2428 percussion staves. The system is based on the general MIDI
2429 drum-pitches.  Include @file{ly/drumpitch-init.ly} to use drum
2430 pitches. This file defines the pitches from the Scheme variable
2431 @code{drum-pitch-names}, the definition of which can be read in
2432 @file{scm/drums.scm}.  Each piece of percussion has a full name and an
2433 abbreviated name, and both the full name or the abbreviation may be
2434 used in input files.
2435
2436 To typeset the music on a staff apply the function @code{drums->paper}
2437 to the percussion music. This function takes a list of percussion
2438 instrument names, notehead scripts and staff positions (that is:
2439 pitches relative to the C-clef) and transforms the input
2440 music by moving the pitch, changing the notehead and (optionally)
2441 adding a script:
2442 @c
2443 @lilypond[singleline,verbatim,quote]
2444 \include "drumpitch-init.ly"
2445 up = \notes { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
2446 down = \notes { bassdrum4 snare8 bd r bd sn4 }
2447 \score {
2448     \apply #(drums->paper 'drums) \context Staff <
2449         \clef percussion
2450         \context Voice = up { \voiceOne \up }
2451         \context Voice = down { \voiceTwo \down }
2452     >
2453 }
2454
2455 @end lilypond
2456 In the above example the music was transformed using the list @code{'drums}.
2457 Currently the following lists are defined in @file{scm/drums.scm}:
2458 @table @code
2459 @item 'drums
2460 To typeset a typical drum kit on a five-line staff.
2461
2462 @lilypond[noindent]
2463 \include "drumpitch-init.ly"
2464 nam = \lyrics { cymc cyms cymr hh hhc hho hhho hhp cb hc
2465     bd sn ss tomh tommh tomml toml tomfh tomfl }
2466 mus = \notes  { cymc cyms cymr hh hhc hho hhho hhp cb hc
2467     bd sn ss tomh tommh tomml toml tomfh tomfl s16 }
2468 \score {
2469     <
2470         \apply #(drums->paper 'drums) \context Staff <
2471             \clef percussion
2472             \mus
2473         >
2474         \context Lyrics \nam 
2475     >
2476     \paper {
2477         linewidth = 100.0\mm
2478         \translator {
2479             \StaffContext
2480             \remove Bar_engraver
2481             \remove Time_signature_engraver
2482             minimumVerticalExtent = #'(-4.0 . 5.0)
2483         }
2484         \translator {
2485             \VoiceContext
2486             \remove Stem_engraver
2487         }
2488    }   
2489 }
2490 @end lilypond
2491
2492 Scheme supports six different toms.  When there fewer toms, simply
2493 select the toms that produce the desired result, i.e., to get toms on
2494 the three middle lines you use @code{tommh}, @code{tomml} and
2495 @code{tomfh}.
2496
2497 Because general MIDI does not contain rimshots the sidestick is used
2498 for this purpose instead.
2499 @item 'timbales
2500 To typeset timbales on a two line staff.
2501 @lilypond[singleline]
2502 \include "drumpitch-init.ly"
2503 nam = \lyrics { timh ssh timl ssl cb }
2504 mus = \notes  { timh ssh timl ssl cb s16 }
2505 \score {
2506     <
2507         \apply #(drums->paper 'timbales) \context Staff <
2508             \clef percussion
2509             \mus
2510         >
2511         \context Lyrics \nam 
2512     >
2513     \paper {
2514         \translator {
2515             \StaffContext
2516             \remove Bar_engraver
2517             \remove Time_signature_engraver
2518             StaffSymbol \override #'line-count = #2
2519             StaffSymbol \override #'staff-space = #2
2520             minimumVerticalExtent = #'(-3.0 . 4.0)
2521         }
2522         \translator {
2523             \VoiceContext
2524             \remove Stem_engraver
2525         }
2526
2527     }   
2528 }
2529 @end lilypond
2530 @item 'congas
2531 To typeset congas on a two line staff.
2532 @lilypond[singleline]
2533 \include "drumpitch-init.ly"
2534 nam = \lyrics { cgh cgho cghm ssh cgl cglo cglm ssl }
2535 mus = \notes  { cgh cgho cghm ssh cgl cglo cglm ssl s16 }
2536 \score {
2537     <
2538         \apply #(drums->paper 'congas) \context Staff <
2539             \clef percussion
2540             \mus
2541         >
2542         \context Lyrics \nam 
2543     >
2544     \paper {
2545         \translator {
2546             \StaffContext
2547             \remove Bar_engraver
2548             \remove Time_signature_engraver
2549             StaffSymbol \override #'line-count = #2
2550             StaffSymbol \override #'staff-space = #2
2551             minimumVerticalExtent = #'(-3.0 . 4.0)
2552         }
2553         \translator {
2554             \VoiceContext
2555             \remove Stem_engraver
2556         }
2557     }   
2558 }
2559 @end lilypond
2560 @item 'bongos
2561 To typeset bongos on a two line staff.
2562 @lilypond[singleline]
2563 \include "drumpitch-init.ly"
2564 nam = \lyrics { boh boho bohm ssh bol bolo bolm ssl }
2565 mus = \notes  { boh boho bohm ssh bol bolo bolm ssl s16 }
2566 \score {
2567     <
2568         \apply #(drums->paper 'bongos) \context Staff <
2569             \clef percussion
2570             \mus
2571         >
2572         \context Lyrics \nam 
2573     >
2574     \paper {
2575         \translator {
2576             \StaffContext
2577             \remove Bar_engraver
2578             \remove Time_signature_engraver
2579             StaffSymbol \override #'line-count = #2
2580             StaffSymbol \override #'staff-space = #2
2581             minimumVerticalExtent = #'(-3.0 . 4.0)
2582         }
2583         \translator {
2584             \VoiceContext
2585             \remove Stem_engraver
2586         }
2587     }   
2588 }
2589 @end lilypond
2590 @item 'percussion
2591 To typeset all kinds of simple percussion on one line staves.
2592 @lilypond[singleline]
2593 \include "drumpitch-init.ly"
2594 nam = \lyrics { tri trio trim gui guis guil cb cl tamb cab mar hc }
2595 mus = \notes  { tri trio trim gui guis guil cb cl tamb cab mar hc s16 }
2596 \score {
2597     <
2598         \apply #(drums->paper 'percussion) \context Staff <
2599             \clef percussion
2600             \mus
2601         >
2602         \context Lyrics \nam 
2603     >
2604     \paper {
2605         \translator {
2606             \StaffContext
2607             \remove Bar_engraver
2608             \remove Time_signature_engraver
2609             StaffSymbol \override #'line-count = #1
2610             minimumVerticalExtent = #'(-2.0 . 3.0)
2611         }
2612         \translator {
2613             \VoiceContext
2614             \remove Stem_engraver
2615         }
2616     }   
2617 }
2618 @end lilypond
2619 @end table
2620
2621 If you do not like any of the predefined lists you can define your own
2622 list at the top of your file:
2623
2624 @lilypond[singleline, verbatim]
2625 #(define mydrums `(
2626         (bassdrum     default   #f        ,(ly:make-pitch -1 2 0))
2627         (snare        default   #f        ,(ly:make-pitch 0 1 0))
2628         (hihat        cross     #f        ,(ly:make-pitch 0 5 0))
2629         (pedalhihat   xcircle   "stopped" ,(ly:make-pitch 0 5 0))
2630         (lowtom       diamond   #f        ,(ly:make-pitch -1 6 0))
2631 ))
2632 \include "drumpitch-init.ly"
2633 up = \notes { hh8 hh hh hh hhp4 hhp }
2634 down = \notes { bd4 sn bd toml8 toml }
2635 \score {    
2636     \apply #(drums->paper 'mydrums) \context Staff <
2637         \clef percussion
2638         \context Voice = up { \voiceOne \up }
2639         \context Voice = down { \voiceTwo \down }
2640     >
2641 }
2642 @end lilypond
2643
2644 To use a modified existing list, one can prepend modifications to the
2645 the existing list:
2646
2647 @example
2648 #(define mydrums (append `(
2649    (bassdrum default #f ,(ly:make-pitch -1 2 0))
2650    (lowtom   diamond #f ,(ly:make-pitch -1 6 0))
2651 ) drums ))
2652 @end example
2653
2654 The file @file{drumpitch-init.ly} replaces the normal pitch names, so
2655 you have to reinclude @file{nederlands.ly} after the
2656 drum-pattern-definitions to enter normal notes.
2657 @c
2658 @lilypond[singleline,verbatim]
2659 \include "drumpitch-init.ly"
2660 up = \notes { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
2661 down = \notes { bassdrum4 snare8 bd r bd sn4 }
2662 \include "nederlands.ly"
2663 bass = \notes \transpose c c,, { a4. e8 r e g e }
2664 \score {
2665     <
2666         \apply #(drums->paper 'drums) \context Staff = drums <
2667             \clef percussion
2668             \context Voice = up { \voiceOne \up }
2669             \context Voice = down { \voiceTwo \down }
2670         >
2671         \context Staff = bass { \clef "F_8" \bass }
2672     >
2673 }
2674 @end lilypond
2675
2676 @node Percussion midi output
2677 @subsection Percussion midi output
2678
2679 In order to produce correct midi output you need to produce two score
2680 blocks---one for the paper and one for the midi output.  To use the
2681 percussion channel you set the property @code{instrument} to
2682 @code{'drums}. Because the drum-pitches themself are similar to the
2683 general midi pitches all you have to do is to insert the voices with
2684 none of the scheme functions to get the correct midi output:
2685
2686 @example
2687 \score @{    
2688     \apply #(drums->paper 'mydrums) \context Staff <
2689         \clef percussion
2690         @{ \up @}  \\
2691         @{ \down @}
2692     >
2693     \paper@{@}
2694 @}
2695 \score @{    
2696     \context Staff <
2697         \property Staff.instrument = #'drums
2698         \up \down
2699     >
2700     \midi@{@}
2701 @}
2702 @end example
2703
2704 @refbugs
2705
2706 This scheme is to be considered a temporary implementation.
2707
2708
2709 @node Piano music
2710 @section Piano music
2711
2712 Piano staves are two normal staves coupled with a brace.  The staves
2713 are largely independent, but sometimes voices can cross between the
2714 two staves.  The same notation is also used for harps and other key
2715 instruments.  The @internalsref{PianoStaff} is especially built to
2716 handle this cross-staffing behavior.  In this section we discuss the
2717 @internalsref{PianoStaff} and some other pianistic peculiarities.
2718
2719
2720 @menu
2721 * Automatic staff changes::     
2722 * Manual staff switches::       
2723 * Pedals::                      
2724 * Arpeggio::                    
2725 * Voice follower lines::        
2726 @end menu 
2727
2728 @refbugs
2729
2730 There is no support for putting chords across staves.  You can get
2731 this result by increasing the length of the stem in the lower stave so
2732 it reaches the stem in the upper stave, or vice versa. An example is
2733 included with the distribution as @inputfileref{input/test,stem-cross-staff.ly}.
2734
2735 Dynamics are not centered, but kludges do exist. See
2736 @inputfileref{input/templates,piano-dynamics.ly}.
2737
2738 @cindex cross staff stem
2739 @cindex stem, cross staff
2740
2741
2742 @c fixme: should have hyperlinks as well.
2743
2744
2745
2746
2747
2748 @node Automatic staff changes
2749 @subsection Automatic staff changes
2750 @cindex Automatic staff changes
2751
2752 Voices can switch automatically between the top and the bottom
2753 staff. The syntax for this is
2754 @example
2755   \autochange Staff \context Voice @{ @dots{}@var{music}@dots{} @}
2756 @end example        
2757 The autochanger switches on basis of pitch (central C is the turning
2758 point), and it looks ahead skipping over rests to switch rests in
2759 advance. Here is a practical example:
2760         
2761 @lilypond[verbatim,singleline,quote]
2762 \score { \notes \context PianoStaff <
2763   \context Staff = "up" {
2764     \autochange Staff \context Voice = VA < \relative c' {
2765        g4 a  b c d r4 a g } > }
2766   \context Staff = "down" {
2767        \clef bass
2768        s1*2
2769 } > }
2770 @end lilypond
2771 Spacer rests are used to prevent the bottom staff from
2772 terminating too soon.
2773
2774
2775 @refbugs
2776
2777 The staff switches often do not end up in optimal places. For high
2778 quality output staff switches should be specified manually.
2779
2780  
2781
2782 @node Manual staff switches
2783 @subsection Manual staff switches
2784
2785 @cindex manual staff switches
2786 @cindex staff switch, manual
2787
2788 Voices can be switched between staves manually, using the following command:
2789 @example
2790   \translator Staff = @var{staffname} @var{music}
2791 @end example
2792 The string @var{staffname} is the name of the staff. It switches the
2793 current voice from its current staff to the Staff called
2794 @var{staffname}. Typically @var{staffname} is @code{"up"} or
2795 @code{"down"}.
2796
2797
2798 @node Pedals
2799 @subsection Pedals
2800 @cindex Pedals
2801
2802 Pianos have pedals that alter the way sound are produced. Generally, a
2803 piano has three pedals, sustain, una corda, and sostenuto.
2804
2805 @syntax
2806
2807 Piano pedal instruction can be expressed by attaching
2808 @code{\sustainDown}, @code{\sustainUp}, @code{\unaCorda},
2809 @code{\treCorde}, @code{\sostenutoDown} and @code{\sostenutoUp} to a
2810 note or chord.
2811
2812 The symbols that are printed can be modified by setting
2813 @code{pedal@var{X}Strings}, where @var{X} is one of the pedal types:
2814 Sustain, Sostenuto or UnaCorda.  Refer to the generated documentation
2815 of @internalsref{SustainPedal} for more information.
2816
2817 Pedals can also be indicated by a sequence of brackets, by setting the 
2818 @code{pedal-type} property of @internalsref{SustainPedal} objects: 
2819
2820 @lilypond[fragment,verbatim]
2821 \property Staff.SustainPedal \override #'pedal-type = #'bracket
2822  c''4-\sustainDown d''4 e''4
2823  a'4-\sustainUp-\sustainDown
2824  f'4 g'4 a'4-\sustainUp
2825 @end lilypond
2826
2827 A third style of pedal notation is a mixture of text and brackets,
2828 obtained by setting @code{pedal-type} to @code{mixed}:
2829
2830 @lilypond[fragment,verbatim]
2831 \property Staff.SustainPedal \override #'pedal-type = #'mixed
2832 c''4-\sustainDown d''4 e''4
2833 c'4-\sustainUp-\sustainDown
2834  f'4 g'4 a'4-\sustainUp
2835 @end lilypond
2836
2837 The default '*Ped' style for sustain and damper pedals corresponds to
2838 @code{\pedal-type = #'text}. However, @code{mixed} is the default style
2839 for a sostenuto pedal:
2840
2841 @lilypond[fragment,verbatim]
2842 c''4-\sostenutoDown d''4 e''4 c'4 f'4 g'4 a'4-\sostenutoUp
2843 @end lilypond
2844
2845 For fine-tuning of the appearance of a pedal bracket, the properties
2846 @code{edge-width}, @code{edge-height}, and @code{shorten-pair} of
2847 @code{PianoPedalBracket} objects (see the detailed documentation of
2848 @internalsref{PianoPedalBracket}) can be modified.  For example, the bracket
2849 may be extended to the end of the note head.
2850
2851 @lilypond[fragment,verbatim]
2852 \property Staff.PianoPedalBracket \override
2853    #'shorten-pair = #'(0 . -1.0)
2854 c''4-\sostenutoDown d''4 e''4 c'4
2855 f'4 g'4 a'4-\sostenutoUp
2856 @end lilypond
2857
2858 @node Arpeggio
2859 @subsection Arpeggio
2860 @cindex Arpeggio
2861
2862 @cindex broken arpeggio
2863 @cindex @code{\arpeggio}
2864
2865 You can specify an arpeggio sign on a chord by attaching an
2866 @code{\arpeggio} to a chord.
2867
2868
2869 @lilypond[fragment,relative,verbatim]
2870   <<c e g c>>-\arpeggio
2871 @end lilypond
2872
2873 When an arpeggio crosses staves in piano music, you attach an arpeggio
2874 to the chords in both staves, and set
2875 @internalsref{PianoStaff}.@code{connectArpeggios}.
2876
2877 @lilypond[fragment,relative,verbatim]
2878   \context PianoStaff <
2879     \property PianoStaff.connectArpeggios = ##t
2880     \context Voice = one  { <<c' e g c>>-\arpeggio }
2881     \context Voice = other { \clef bass  <<c,, e g>>-\arpeggio }
2882   >
2883 @end lilypond
2884
2885 This command creates @internalsref{Arpeggio} objects.  Cross staff
2886 arpeggios are @internalsref{PianoStaff}.@internalsref{Arpeggio}.
2887
2888 The direction of the arpeggio is sometimes denoted by adding an
2889 arrowhead to the wiggly line.  This can be typeset by setting
2890 @code{arpeggio-direction}.
2891
2892 @lilypond[fragment,relative,verbatim]
2893   \context Voice {
2894      \property Voice.Arpeggio \set #'arpeggio-direction = #1
2895      <<c e g c>>-\arpeggio
2896      \property Voice.Arpeggio \set #'arpeggio-direction = #-1
2897      <<c e g c>>-\arpeggio
2898   }
2899 @end lilypond
2900
2901 A square bracket on the left indicates that the player should not
2902 arpeggiate the chord. To draw these brackets, set the
2903 @code{molecule-callback} property of @code{Arpeggio} or
2904 @code{PianoStaff.Arpeggio} objects to @code{\arpeggioBracket}, and use
2905 @code{\arpeggio} statements within the chords as before.
2906
2907 @lilypond[fragment,relative,verbatim]
2908     \property PianoStaff.Arpeggio \override
2909         #'molecule-callback = \arpeggioBracket
2910        <<c' e g c>>-\arpeggio
2911 @end lilypond
2912
2913
2914 @refbugs
2915
2916 It is not possible to mix connected arpeggios and unconnected
2917 arpeggios in one @internalsref{PianoStaff} at the same time.
2918
2919 @node  Voice follower lines
2920 @subsection Voice follower lines
2921
2922
2923 [TODO: invent better name]
2924
2925 @cindex follow voice
2926 @cindex staff switching
2927 @cindex cross staff
2928
2929 @cindex @code{followVoice}
2930
2931 Whenever a voice switches to another staff a line connecting the notes
2932 can be printed automatically. This is enabled if the property
2933 @code{PianoStaff.followVoice} is set to true:
2934
2935 @lilypond[fragment,relative,verbatim]
2936   \context PianoStaff <
2937     \property PianoStaff.followVoice = ##t
2938     \context Staff \context Voice {
2939       c1
2940       \translator Staff=two
2941       b2 a
2942     }
2943     \context Staff=two { \clef bass \skip 1*2 }
2944   >  
2945 @end lilypond
2946
2947 The associated object is @internalsref{VoiceFollower}.
2948
2949
2950 @node Vocal music
2951 @section Vocal music
2952
2953 For a discussion of how to put lyrics into a score, see section
2954 @code{Printing lyrics} in the tutorial.
2955
2956 @cindex context variables
2957 @cindex setting context variables
2958 An interpretation context has variables that tune its behavior.  These
2959 variables are also called @emph{properties}.  The @code{autoBeaming}
2960 variable in a @code{Staff} controls whether 8th and shorter notes are
2961 beamed automatically. Setting the variable to @code{##f}, which is the
2962 boolean value @var{false}, turns it off.
2963
2964
2965 This will create an extender, which is a line
2966 that extends over the entire duration of the lyric.  This line will
2967 run all the way to the start of the next lyric, so you may want to
2968 shorten it by using a blank lyric (using @code{_}).
2969
2970 @cindex lyric mode
2971 @cindex @code{\lyrics}
2972
2973  To get them printed, you must do two
2974 things: indicate that lyrics   are entered with @code{\lyrics}, and
2975 indicate that this type of music must be interpreted as texts (and not
2976 notes). This is done with @code{\context Lyrics}. 
2977
2978 You can enter lyrics in a special input mode of LilyPond. This mode is
2979 called Lyrics mode, and it is introduced by the keyword
2980 @code{\lyrics}.  In this mode you can enter lyrics, with punctuation
2981 and accents without any hassle.  Syllables are entered like notes, but
2982 with pitches replaced by text.  For example,
2983 @example
2984   Twin- kle twin- kle
2985 @end example
2986
2987
2988
2989
2990 You can use ordinary hyphens at the end of a syllable, i.e.
2991 @example
2992         soft- ware
2993 @end example
2994 but then the hyphen will be attached to the end of the first syllable.
2995  
2996 If you want them centered between syllables you can use the special
2997 `@code{-}@code{-}' lyric as a separate word between syllables.  The
2998 hyphen will have variable length depending on the space between
2999 the syllables and it will be centered between the syllables.
3000
3001
3002
3003
3004 Normally the notes that you enter are transformed into note heads.
3005 Note heads alone make no sense. They need surrounding information: a
3006 key signature, a clef, staff lines, etc.  They need @emph{context}.
3007 In LilyPond, these symbols are created by objects called
3008 `interpretation contexts'.  Interpretation contexts exist for
3009 generating notation (`notation context') and for generating sound
3010 (`performance context').  These objects only exist while LilyPond is
3011 executing.  For lyrics, the command
3012 @example
3013   \context Lyrics
3014 @end example
3015 must be used to interpret a set of syllables as lyrics.
3016
3017
3018
3019 @cindex context
3020 @cindex interpretation context
3021 @cindex notation context
3022
3023
3024
3025 The melody and the lyrics can be combined with the @code{\addlyrics}:
3026 @example
3027 \addlyrics
3028   \notes \relative c' @dots{}
3029   \context Lyrics \lyrics @dots{} 
3030 @end example
3031
3032 [TODO: Move lyrics section from tutorial to here?]
3033
3034 See also the sections on @ref{Slurs} and @ref{Breath marks}.
3035
3036 [TODO: Move slurs / breath marks section to here?]
3037
3038 [TODO: Write subsection upon usage of ChoirStaff.]
3039
3040
3041
3042 @node More stanzas
3043 @section More stanzas
3044
3045
3046 @cindex phrasing
3047
3048 If you have multiple stanzas printed underneath each other, the vertical
3049 groups of syllables should be aligned around punctuation.  LilyPond can
3050 do this if you tell it which lyric lines belong to which melody.
3051 We show how you can do this by showing how you could print a frivolous
3052 fragment of a fictional Sesame Street duet. 
3053
3054 @lilypond[singleline,verbatim]
3055 \score {
3056 \addlyrics
3057   \notes \relative c'' \context Voice = duet { \time 3/4
3058      g2 e4 a2 f4 g2.  }
3059   \lyrics \context Lyrics <
3060   \context LyricsVoice = "duet-1" {
3061     \property LyricsVoice . stanza = "Bert"
3062     Hi, my name is bert.    }
3063   \context LyricsVoice = "duet-2" {
3064     \property LyricsVoice . stanza = "Ernie" 
3065     Ooooo, ch\'e -- ri, je t'aime. }
3066   >
3067 }
3068 @end lilypond
3069
3070 To this end, give the Voice context an identity, and set the
3071 LyricsVoice to a name starting with that identity followed by a dash.
3072 In the following example, the Voice identity is @code{duet},
3073 @example
3074 \context Voice = duet @{
3075      \time 3/4
3076      g2 e4 a2 f4 g2.  @}
3077 @end example
3078 and the
3079 identities of the LyricsVoices are @code{duet-1} and @code{duet-2}.
3080 @example
3081   \context LyricsVoice = "duet-1" @{
3082     Hi, my name is bert. @}
3083   \context LyricsVoice = "duet-2" @{
3084     Ooooo, ch\'e -- ri, je t'aime. @}
3085 @end example
3086 The convention for naming @code{LyricsVoice} and @code{Voice} must
3087 also be used to get melismata on rests correct.
3088
3089
3090 We add the names of the singers.  This can be done by setting
3091 @code{LyricsVoice.Stanza} (for the first system) and
3092 @code{LyricsVoice.stz} for the following systems.   You must
3093 surround dots with spaces in @code{\lyrics} mode.
3094
3095 @example
3096     \property LyricsVoice . stanza = "Bert"
3097     @dots{}
3098     \property LyricsVoice . stanza = "Ernie" 
3099 @end example
3100
3101
3102
3103
3104 For entering quotes in Lyrics mode, use the following
3105 @example
3106 "\"God\"" is "`King'"
3107 @end example
3108
3109 You can use empty syllables, e.g. @code{_4} or @code{" "4} to enter
3110 lyrics. This can confuse the LilyPond -- for example, this might put
3111 (empty) lyrics under rests. To remedy this, use @code{\skip}.
3112
3113
3114
3115 @refbugs
3116
3117 @cindex ambiguity
3118
3119 Input for lyrics introduces a syntactical ambiguity:
3120  
3121 @example 
3122 foo = bar 
3123 @end example 
3124
3125 @noindent
3126 is interpreted as assigning a string identifier @code{\foo} such that
3127 it contains @code{"bar"}.  However, it could also be interpreted as
3128 making or a music identifier @code{\foo} containing the syllable
3129 `bar'.  The force the latter interpretation, use
3130 @example
3131   foo = \lyrics bar
3132 @end example
3133
3134
3135 @menu
3136 * Ambitus::                     
3137 @end menu
3138
3139 @node Ambitus
3140 @subsection Ambitus
3141 @cindex ambitus
3142
3143 The term @emph{ambitus} denotes a range of pitches for a given voice in
3144 a part of music.  It also may denote the pitch range that a musical
3145 instrument is capable of playing.  Most musical instruments have their
3146 ambitus standardized (or at least there is agreement upon the minimal
3147 ambitus of a particular type of instrument), such that a composer or
3148 arranger of a piece of music can easily meet the ambitus constraints of
3149 the targeted instrument.  However, the ambitus of the human voice
3150 depends on individual physiological state, including education and
3151 training of the voice.  Therefore, a singer potentially has to check for
3152 each piece of music if the ambitus of that piece meets his individual
3153 capabilities.  This is why the ambitus of a piece may be of particular
3154 value to vocal performers.
3155
3156 The ambitus is typically notated on a per-voice basis at the very
3157 beginning of a piece, e.g. nearby the initial clef or time signature of
3158 each staff.  The range is graphically specified by two noteheads, that
3159 represent the minimum and maximum pitch.  Some publishers use a textual
3160 notation: they put the range in words in front of the corresponding
3161 staff.  Lilypond currently only supports the graphical ambitus notation.
3162
3163 To apply, add the @internalsref{Ambitus_engraver} to the
3164 @internalsref{Voice} context, i.e.
3165
3166 @example
3167   \paper @{ \translator @{
3168       \VoiceContext
3169       \consists Ambitus_engraver
3170     @} @}
3171 @end example
3172
3173 For example,
3174
3175 @lilypond[singleline]
3176 upper = \notes \relative c {
3177   \clef "treble"
3178   \key c \minor
3179   as'' c e2 bes f cis d4 e f2 g
3180 }
3181 lower = \notes \relative c {
3182   \clef "treble"
3183   \key e \major
3184   e'4 b g a c es fis a cis b a g f e d2
3185 }
3186 \score {
3187   \context ChoirStaff {
3188     <
3189       \context Staff = one { \upper }
3190       \context Staff = three { \lower }
3191     >
3192   }
3193   \paper {
3194     \translator {
3195       \VoiceContext
3196       \consists Ambitus_engraver
3197     }
3198   }
3199 }
3200 @end lilypond
3201
3202
3203 @seealso
3204
3205 @internalsref{Ambitus}, @inputfileref{input/regression,ambitus.ly}.
3206
3207 @node Tablatures
3208 @section Tablatures
3209
3210 Tablature notation is used for notating music for plucked string
3211 instruments.  It notates pitches not by using note heads, but by
3212 indicating on which string and fret a note must be played.  LilyPond
3213 offers limited support for tablature.
3214
3215 @menu
3216 * Tablatures basic::            
3217 * Non-guitar tablatures::       
3218 @end menu
3219
3220 @node Tablatures basic
3221 @subsection Tablatures basic
3222 @cindex Tablatures basic
3223
3224 The string number associated to a note is given as a backslash
3225 followed by a number, e.g. @code{c4\3} for a C quarter on the third
3226 string. By default, string 1 is the highest one, and the tuning
3227 defaults to the standard guitar tuning (with 6 strings).  The notes
3228 are printed as tablature, by using @internalsref{TabStaff} and
3229 @internalsref{TabVoice} contexts.
3230
3231 @lilypond[fragment,verbatim]
3232 \notes \context TabStaff  {
3233  a,4\5 c'\2 a\3 e'\1
3234  e\4 c'\2 a\3 e'\1
3235 }
3236 @end lilypond
3237
3238 If you do not specify a string number then one is selected
3239 automatically: the first string that does not give a fret number less
3240 than @code{minimumFret} is selected. The default value for
3241 @code{minimumFret} is 0.
3242
3243
3244 @example
3245 e8 fis gis a b cis' dis' e'
3246 \property TabStaff.minimumFret = #8
3247 e8 fis gis a b cis' dis' e'
3248 @end example
3249 @lilypond[noindent]
3250 frag = \notes {
3251     \key e \major
3252     e8 fis gis a b cis' dis' e'
3253     \property TabStaff.minimumFret = #8
3254     e8 fis gis a b cis' dis' e'
3255 }
3256 \score {
3257   \context StaffGroup <
3258     \context Staff { \clef "G_8" \frag }
3259     \context TabStaff { \frag }
3260   >
3261 }
3262 @end lilypond
3263
3264 @seealso
3265
3266 @internalsref{TabStaff}, @internalsref{TabVoice}, and
3267 @internalsref{StringNumberEvent}.
3268
3269 @refbugs
3270
3271 Chords are not handled in a special way, and hence the automatic
3272 string selector may easily select the same string to two notes in a
3273 chord.
3274
3275
3276 @node Non-guitar tablatures
3277 @subsection Non-guitar tablatures
3278 @cindex Non-guitar tablatures
3279
3280 You can change the number of strings, by setting the number of lines
3281 in the @internalsref{TabStaff} (the @code{line-count} property of
3282 @internalsref{TabStaff} can only be changed using
3283 @code{\outputproperty}, for more information, see @ref{Tuning objects}.
3284
3285 You can change the tuning of the strings. A string tuning is given as
3286 a Scheme list with one integer number for each string, the number
3287 being the pitch (measured in semitones relative to central C) of an
3288 open string.  The numbers specified for @code{stringTuning} are the
3289 numbers of semitones to subtract or add, starting the specified pitch
3290 by default middle C, in string order: thus the notes are e, a, d, and
3291 g.
3292
3293 @lilypond[fragment,verbatim]
3294   \context TabStaff <
3295
3296     \outputproperty #(make-type-checker 'staff-symbol-interface)
3297                     #'line-count = #4
3298     \property TabStaff.stringTunings =  #'(-5 -10 -15 -20)
3299     
3300     \notes {
3301       a,4 c' a e' e c' a e'
3302     }
3303   > 
3304 @end lilypond
3305
3306 Finally, it is possible to change the Scheme function to format the
3307 tablature note text. The default is
3308 @var{fret-number-tablature-format}, which uses the fret number. For
3309 some instruments that do not use this notation, you can create a
3310 special tablature formatting function. This function takes three
3311 argument: the string number, the string tuning and the note pitch.
3312
3313 @refbugs
3314
3315 As tablature is a recent feature, most of the guitar special effects
3316 such as bend are not yet supported.
3317
3318
3319 @node Chord names
3320 @section Chord namess
3321 @cindex Chords
3322
3323 LilyPond has support for both entering and printing chords. 
3324 @lilypond[verbatim,singleline]
3325 twoWays = \notes \transpose c c' {
3326   \chords {
3327     c1 f:sus4 bes/f
3328   }
3329   <<c e g>>
3330   <<f bes c'>>
3331   <<f bes d'>>
3332   }
3333
3334 \score {
3335    < \context ChordNames \twoWays
3336      \context Voice \twoWays > }
3337 @end lilypond
3338
3339 This example also shows that the chord printing routines do not try to
3340 be intelligent. If you enter @code{f bes d}, it does not interpret
3341 this as an inversion.
3342
3343 Chords are represented as a set of pitches. They are internally
3344 stored as simultaneous music expressions. This means you can enter
3345 chords by name and print them as notes, enter them as notes and print
3346 them as chord names, or (the most common case) enter them by name, and
3347 print them as name.
3348
3349 @menu
3350 * Chords mode::                 
3351 * Printing chord names::        
3352 @end menu
3353
3354
3355 @node Chords mode
3356 @subsection Chords mode
3357 @cindex Chords mode
3358
3359 Chord mode is a mode where you can input sets of pitches using common
3360 names.  It is introduced by the keyword @code{\chords}.
3361 In chords mode,  a  chord is entered by the root, which is entered
3362 like a common pitch, for example,
3363 @lilypond[fragment,verbatim,quote, relative=1]
3364 \chords { es4.  d8 c2 }
3365 @end lilypond
3366 @cindex chord entry
3367 @cindex chord mode
3368
3369 Other chords may be entered by suffixing a colon, and introducing a
3370 modifier, and optionally, a number, for example
3371 @c
3372 @lilypond[fragment,verbatim,quote]
3373 \chords { e1:m e1:7 e1:m7  }
3374 @end lilypond
3375 The first number following the root is taken to be the `type' of the
3376 chord, thirds are added to the root until it reaches the specified
3377 number, for example.
3378 @lilypond[fragment,verbatim]
3379  \chords { c:3 c:5 c:6 c:7 c:8 c:9 c:10 c:11 }
3380 @end lilypond
3381
3382 @cindex root of chord
3383 @cindex additions, in chords
3384 @cindex removals, in  chords
3385
3386 More complex chords may also be constructed  adding separate steps
3387 to a chord. Additions are added after the  number following
3388 the colon, and are separated by dots. For example
3389 @c
3390 @lilypond[verbatim,fragment,quote]
3391   \chords { c:5.6 c:3.7.8 c:3.6.13 }
3392 @end lilypond
3393 Chord steps can be  altered by suffixing a @code{-} or @code{+} sign
3394 to the number, for example:
3395 @lilypond[verbatim,fragment,quote]
3396   \chords { c:7+ c:5+.3-  c:3-.5-.7- }
3397 @end lilypond
3398 Removals are specified similarly, and are introduced by a caret.  They
3399 must come after the additions.
3400 @lilypond[verbatim,fragment]
3401   \chords { c^3 c:7^5 c:9^3.5 }
3402 @end lilypond
3403
3404 Modifiers can be used to change pitches. The following modifiers are
3405 supported
3406 @table @code
3407 @item m
3408   is the minor chord. This modifier lowers the 3rd and (if present) the 7th step.
3409 @item dim
3410   is the   diminished chord. This modifier lowers the 3rd, 5th and (if present)
3411   the 7th step 
3412 @item aug
3413   is the augmented chord. This modifier raises the 5th step.
3414 @item maj
3415   is the major 7th chord. This modifier raises the 7th step if present.  
3416 @item sus
3417   is the suspended 4th or 2nd. This modifier removes the 3rd
3418 step. Append either @code{2} or @code{4} to add the 2nd or 4th step to
3419 the chord.
3420 @end table
3421 Modifiers can be mixed with additions. 
3422 @lilypond[verbatim,fragment]
3423   \chords { c:sus4 c:7sus4 c:dim7 c:m6 } 
3424 @end lilypond
3425
3426 @cindex modifiers, in chords. 
3427 @cindex @code{aug}
3428 @cindex @code{dim}
3429 @cindex @code{maj}
3430 @cindex @code{sus}
3431 @cindex @code{m}
3432
3433 Since the unaltered 11 does sound well when combined with the
3434 unaltered 3, the 11 is removed in this case, unless it is added
3435 explicitly). For example,
3436 @lilypond[fragment,verbatim]
3437   \chords { c:13 c:13.11 c:m13 }
3438 @end lilypond 
3439
3440 @cindex @code{/}
3441
3442 An inversion (putting one pitch of the chord on the bottom), as well
3443 as bass notes, can be specified by appending
3444 @code{/}@var{pitch} to the chord. 
3445 @lilypond[fragment,verbatim,center]
3446    \chords { c1 c/g c/f }
3447 @end lilypond 
3448 @cindex @code{/+}
3449 If you do not want to remove the bass note from the chord, but rather
3450 add the note, then you can use @code{/+}@var{pitch}.
3451
3452 @lilypond[fragment,verbatim,center]
3453    \chords { c1 c/+g c/+f }
3454 @end lilypond 
3455
3456 Chords is a mode similar to @code{\lyrics}, @code{\notes} etc.  Most
3457 of the commands continue to work, for example, @code{r} and
3458 @code{\skip} can be used to insert rests and spaces, and
3459 @code{\property} may be used to change various settings.
3460
3461
3462
3463 @refbugs
3464
3465 Each step can only be present in a chord once.  The following
3466 simply produces the augmented chord, since @code{5+} is interpreted
3467 last.
3468 @cindex clusters
3469 @lilypond[verbatim,fragment]
3470   \chords { c:5.5-.5+ }
3471 @end lilypond
3472
3473 In chord mode, dashes and carets are used to indicate chord additions
3474 and subtractions, so articulation scripts cannot be entered.
3475
3476
3477 @node Printing chord names
3478 @subsection Printing chord names
3479
3480 @cindex printing chord names
3481 @cindex chord names
3482 @cindex chords
3483
3484 For displaying printed chord names, use the @internalsref{ChordNames} context.
3485 The chords may be entered either using the notation described above, or
3486 directly using simultaneous music.
3487
3488 @lilypond[verbatim,singleline]
3489 scheme = \notes {
3490   \chords {a1 b c} <<d f g>>  <<e g b>>
3491 }
3492 \score {
3493   \notes<
3494     \context ChordNames \scheme
3495     \context Staff \transpose c c' \scheme
3496   >
3497 }
3498 @end lilypond
3499
3500 You can make the chord changes stand out by setting
3501 @internalsref{ChordNames}.@code{chordChanges} to true.  This will only
3502 display chord names when there is a change in the chords scheme and at
3503 the start of a new line.
3504
3505 @lilypond[verbatim]
3506 scheme = \chords {
3507   c1:m c:m \break c:m c:m d
3508 }
3509 \score {
3510   \notes <
3511     \context ChordNames {
3512         \property ChordNames.chordChanges = ##t
3513         \scheme }
3514     \context Staff \transpose c c' \scheme
3515   >
3516 \paper{linewidth= 9.\cm}
3517 }
3518 @end lilypond
3519
3520 The default chord name layout is a system for Jazz music, proposed by
3521 Klaus Ignatzek (See @ref{Literature}).
3522
3523 [TODO: add description for banter other jazz.]
3524
3525 The Ignatzek chord name formatting can be tuned in a number of ways
3526 through the following properties:
3527 @table @code
3528 @item chordNameExceptions
3529 This is a list that contains the chords that have special formatting.
3530 For an example, see
3531 @inputfileref{input/regression,chord-name-exceptions.ly}.
3532
3533 @item majorSevenSymbol
3534 This property contains the markup object used for the 7th step, when
3535 it is major. Predefined options are @code{whiteTriangleMarkup},
3536 @code{blackTriangleMarkup}.  See
3537 @inputfileref{input/regression,chord-name-major7.ly} for an example.
3538
3539 @item chordNameSeparator
3540 Different parts of a chord name are normally separated by a
3541 slash. By setting @code{chordNameSeparator}, you can specify other
3542 separators, e.g.
3543 @lilypond[fragment,verbatim]
3544 \context ChordNames \chords {
3545       c:7sus4
3546       \property ChordNames.chordNameSeparator
3547         = \markup { "|" }
3548       c:7sus4 }
3549 @end lilypond
3550
3551 @item chordRootNamer
3552 The root of a chord is usually printed as a letter with an optional
3553 alteration. The transformation from pitch to letter is done by this
3554 function.  An application of setting this function, is providing chord
3555 names with german notation for the root.
3556
3557 @item chordNoteNamer
3558 The default is to print single notes (as for instance the bass note)
3559 using the chordRootNamer. However, by setting this function to a non-null
3560 value you can specify a different function. I.e. you could use letters
3561 in lower case for the base note.
3562
3563 @end table
3564
3565 @seealso
3566
3567 @inputfileref{input/regression,chord-name-major7.ly},
3568 @inputfileref{input/regression,chord-name-exceptions.ly},
3569 @inputfileref{input/test,chord-names-german.ly},
3570 @file{scm/chords-ignatzek.scm}, @file{scm/chord-entry.scm}
3571
3572
3573 @refbugs
3574
3575 Chord names are determined solely from the list of pitches. Chord
3576 inversions are not identified, and neither are added bass notes. This
3577 may result in strange chord names when chords are entered with the
3578 @code{<< .. >>} syntax.
3579
3580
3581
3582
3583 @node Writing parts
3584 @section Writing parts
3585
3586 Orchestral music involves some special notation, both in the full score,
3587 as in the individual parts. This section explains how to tackle common
3588 problems in orchestral music.
3589
3590
3591
3592 @menu
3593 * Rehearsal marks::             
3594 * Bar numbers::                 
3595 * Instrument names::            
3596 * Transpose::                   
3597 * Multi measure rests::         
3598 * Automatic part combining::    
3599 * Hara kiri staves::            
3600 * Sound output for transposing instruments::  
3601 @end menu
3602
3603
3604 @node Rehearsal marks
3605 @subsection Rehearsal marks
3606 @cindex Rehearsal marks
3607 @cindex mark
3608 @cindex @code{\mark}
3609
3610 To print a  rehearsal mark, use the @code{\mark} command. 
3611 @lilypond[fragment,verbatim]
3612 \relative c'' {
3613   c1 \mark "A"
3614   c1 \mark "B"
3615   c1 \mark "12"
3616   c1 \mark "13"
3617   c1
3618 }
3619 @end lilypond
3620
3621 The mark is incremented automatically if you use @code{\mark
3622 \default}. The value to use is stored in the property
3623 @code{rehearsalMark} is used and automatically incremented.
3624
3625 The @code{\mark} command can also be used to put signs like coda,
3626 segno and fermatas on a barline. Use @code{\markup} to
3627 to access the appropriate symbol.
3628
3629 @lilypond[fragment,verbatim,relative=1]
3630   c1 \mark \markup { \musicglyph #"scripts-ufermata" }
3631   c1
3632 @end lilypond
3633
3634 In this case, during line breaks,
3635 marks must also be printed at the end of the line, and not at the
3636 beginning. Use the following to force that behavior
3637 @example
3638 \property Score.RehearsalMark \override
3639   #'break-visibility = #begin-of-line-invisible
3640 @end example
3641
3642 See @inputfileref{input/test,boxed-molecule.ly}.  for putting boxes
3643 around the marks.
3644
3645 @cindex fermatas
3646 @cindex coda
3647 @cindex segno
3648 @cindex barlines, putting symbols on 
3649
3650 @seealso
3651
3652 @internalsref{MarkEvent}, @internalsref{RehearsalMark}, 
3653 @inputfileref{input/test,boxed-molecule.ly}.
3654
3655
3656 @node Bar numbers
3657 @subsection Bar numbers
3658
3659
3660 @cindex bar numbers
3661 @cindex measure numbers
3662 @cindex currentBarNumber
3663
3664 Bar numbers are printed by default at the start of the line.  The
3665 number itself is stored in the 
3666 @code{currentBarNumber} property,
3667 which is normally updated automatically for every measure.
3668
3669 Bar numbers can be typeset at regular intervals instead of at the
3670 beginning of each line. This is illustrated in the following example,
3671 whose source is available as
3672 @inputfileref{input/test,bar-number-every-fifth.ly}
3673
3674 @lilypondfile[notexidoc]{bar-number-every-fifth.ly}
3675
3676 The start of that numbering can also be reset, as demonstrated in
3677 @inputfileref{input/test,bar-number-every-5-reset.ly}.
3678
3679 @lilypondfile[notexidoc]{bar-number-every-5-reset.ly}
3680
3681
3682 @seealso
3683
3684 @internalsref{BarNumber}.
3685 @inputfileref{input/test,bar-number-every-5-reset.ly}.
3686 @inputfileref{input/test,bar-number-every-fifth.ly}
3687
3688 @refbugs
3689
3690 Bar numbers can collide with the @internalsref{StaffGroup} bracket, if
3691 there is one at the top. To solve this, You have to twiddle with the
3692 @internalsref{padding} property of @internalsref{BarNumber} if your
3693 score starts with a @internalsref{StaffGroup}.
3694
3695 @node Instrument names
3696 @subsection Instrument names
3697
3698 In an orchestral score, instrument names are printed left of the
3699 staffs.
3700
3701 This can be achieved by setting @internalsref{Staff}.@code{instrument}
3702 and @internalsref{Staff}.@code{instr}. This will print a string before
3703 the start of the staff. For the first start, @code{instrument} is
3704 used, for the next ones @code{instr} is used.
3705
3706 @lilypond[verbatim,singleline]
3707   \property Staff.instrument = "ploink " { c''4 }  
3708 @end lilypond
3709
3710 You can also use markup texts to construct more complicated instrument
3711 names.
3712
3713 @lilypond[fragment,verbatim,singleline]
3714   \notes \context Staff = treble {
3715     \property Staff.instrument = \markup {
3716         \column << "Clarinetti"
3717           { "in B"
3718             \smaller \musicglyph #"accidentals--1"
3719           }
3720           >>
3721      }
3722      { c''1 }
3723   }
3724 @end lilypond
3725
3726
3727 @seealso
3728
3729 @internalsref{InstrumentName}
3730
3731 @refbugs
3732
3733 When you put a name on a grand staff or piano staff the width of the
3734 brace is not taken into account. You must add extra spaces to the end of
3735 the name to avoid a collision.
3736
3737 @node Transpose
3738 @subsection Transpose
3739 @cindex Transpose
3740 @cindex transposition of pitches
3741 @cindex @code{\transpose}
3742
3743 A music expression can be transposed with @code{\transpose}.  The syntax
3744 is
3745 @example
3746   \transpose @var{from} @var{to} @var{musicexpr}
3747 @end example
3748
3749 This means that @var{musicexpr} is transposed by the interval
3750 between @var{from} and @var{to}.
3751
3752 @code{\transpose} distinguishes between enharmonic pitches: both
3753 @code{\transpose c cis} or @code{\transpose c des} will transpose up
3754 half a tone.  The first version will print sharps and the second
3755 version will print flats.
3756
3757 @lilypond[singleline, verbatim]
3758 mus =\notes { \key d \major cis d fis g }
3759 \score { \notes \context Staff {
3760   \clef "F" \mus
3761   \clef "G"
3762   \transpose c g' \mus
3763   \transpose c f' \mus
3764 }}
3765 @end lilypond
3766
3767 @seealso
3768
3769 @internalsref{TransposedMusic}, @internalsref{UntransposableMusic}. 
3770
3771 @refbugs
3772
3773 If you want to use both @code{\transpose} and @code{\relative}, then
3774 you must put @code{\transpose} outside of @code{\relative}, since
3775 @code{\relative} will have no effect music that appears inside a
3776 @code{\transpose}.
3777
3778
3779
3780
3781 @node  Multi measure rests
3782 @subsection Multi measure rests
3783 @cindex Multi measure rests
3784
3785 @cindex @code{R}
3786
3787 Multi measure rests are entered using `@code{R}'. It is specifically
3788 meant for full bar rests and for entering parts: the rest can expand to
3789 fill a score with rests, or it can be printed as a single multimeasure
3790 rest. This expansion is controlled by the property
3791 @code{Score.skipBars}. If this is set to true, Lily will not expand
3792 empty measures, and the appropriate number is added automatically.
3793
3794 @lilypond[fragment,verbatim]
3795  \time 4/4 r1 | R1 | R1*2
3796  \property Score.skipBars = ##t R1*17  R1*4
3797 @end lilypond
3798
3799 The @code{1} in @code{R1} is similar to the duration notation used for
3800 notes. Hence, for time signatures other than 4/4, you must enter other
3801 durations.  This can be done with augmentation dots or fractions:
3802
3803 @lilypond[fragment,verbatim]
3804  \property Score.skipBars = ##t
3805  \time 3/4
3806   R2. | R2.*2
3807  \time 13/8
3808  R1*13/8
3809  R1*13/8*12
3810 @end lilypond
3811
3812 A @code{R} spanning a single measure is printed as a whole rest
3813 centered in the measure (or a breve when the measure lasts longer than
3814 two whole notes), regardless of the time signature.
3815
3816  
3817
3818 @cindex text on multi-measure rest
3819 @cindex script on multi-measure rest
3820 @cindex fermata on multi-measure rest
3821
3822 Texts can be added to multi-measure rests by using the
3823 @var{note}-@code{markup} syntax.  In this case, the number is
3824 replaced. If you need both texts and the number, you must add the
3825 number by hand. A variable (@code{\fermataMarkup}) is provided for
3826 adding fermatas.
3827
3828
3829 @lilypond[verbatim,fragment]
3830   \time 3/4
3831   R2._\markup { "Ad lib" }
3832   R2.^\fermataMarkup
3833 @end lilypond
3834
3835
3836 @cindex whole rests for a full measure 
3837
3838 @seealso
3839
3840 @internalsref{MultiMeasureRestEvent},
3841 @internalsref{MultiMeasureTextEvent},
3842 @internalsref{MultiMeasureRestMusicGroup},
3843 @internalsref{MultiMeasureRest}.
3844
3845 The graphical object @internalsref{MultiMeasureRestNumber} is for the
3846 default number, and @internalsref{MultiMeasureRestText} for user
3847 specified texts.
3848
3849 @refbugs
3850
3851 It is not possible to use fingerings (e.g. @code{R1-4}) to put numbers
3852 over multi-measure rests.
3853
3854 @cindex condensing rests
3855
3856 There is no way to automatically condense multiple rests into a single
3857 multimeasure rest. Multi measure rests do not take part in rest
3858 collisions.
3859
3860 Be careful when entering multimeasure rests followed by whole notes,
3861 @example
3862  R1*4 cis cis 
3863 @end example
3864 will enter two notes lasting four measures each. The result will look
3865 ok, but the bar numbering will be off.
3866
3867 @node Automatic part combining
3868 @subsection Automatic part combining
3869 @cindex automatic part combining
3870 @cindex part combiner
3871
3872
3873 Automatic part combining is used to merge two parts of music onto a
3874 staff.  It is aimed at typesetting orchestral scores.  When the two
3875 parts are identical for a period of time, only one is shown.  In
3876 places where the two parts differ, they are typeset as separate
3877 voices, and stem directions are set automatically.  Also, solo and
3878 @emph{a due} parts are identified and can be marked.
3879
3880 @syntax
3881
3882 The syntax for part combining is
3883
3884 @example
3885   \partcombine @var{context} @var{musicexpr1} @var{musicexpr2}
3886 @end example
3887 where the pieces of music @var{musicexpr1} and @var{musicexpr2} will be
3888 combined into one context of type @var{context}.  The music expressions
3889 must be interpreted by contexts whose names should start with @code{one}
3890 and @code{two}.
3891
3892 The following example demonstrates the basic functionality of the part
3893 combiner: putting parts on one staff, and setting stem directions and
3894 polyphony.
3895
3896 @lilypond[verbatim,singleline,fragment]
3897   \context Staff <
3898     \context Voice=one \partcombine Voice
3899       \context Thread=one \relative c'' {
3900         g a-( b-) r
3901       }
3902       \context Thread=two \relative c'' {
3903         g r4 r f
3904       }
3905   >
3906 @end lilypond
3907
3908 The first @code{g} appears only once, although it was
3909 specified twice (once in each part).  Stem, slur and tie directions are
3910 set automatically, depending whether there is a solo or unisono. The
3911 first part (with context called @code{one}) always gets up stems, and
3912 `solo', while the second (called @code{two}) always gets down stems and
3913 `Solo II'.
3914
3915 If you just want the merging parts, and not the textual markings, you
3916 may set the property @var{soloADue} to false.
3917
3918 @lilypond[verbatim,singleline,fragment]
3919   \context Staff <
3920     \property Staff.soloADue = ##f
3921     \context Voice=one \partcombine Voice
3922       \context Thread=one \relative c'' {
3923         b4 a c g
3924       }
3925       \context Thread=two \relative c'' {
3926         d,2 a4 g'
3927       }
3928   >
3929 @end lilypond
3930
3931 @seealso
3932
3933 @internalsref{PartCombineMusic},
3934 @internalsref{Thread_devnull_engraver},
3935 @internalsref{Voice_devnull_engraver} and @internalsref{A2_engraver}.
3936
3937 @refbugs
3938
3939 The syntax for naming contexts in inconsistent with the syntax for
3940 combining stanzas.
3941
3942 In @code{soloADue} mode, when the two voices play the same notes on and
3943 off, the part combiner may typeset @code{a2} more than once in a
3944 measure.
3945
3946 @lilypond[fragment,singleline]
3947   \context Staff <
3948     \context Voice=one \partcombine Voice
3949       \context Thread=one \relative c'' {
3950         c b c b c a c a
3951       }
3952       \context Thread=two \relative c'' {
3953         b b b b f a f a
3954       }
3955   >
3956 @end lilypond
3957
3958 The part combiner is slated to be rewritten [TODO: explain why] .
3959
3960 @cindex @code{Thread_devnull_engraver}
3961 @cindex @code{Voice_engraver}
3962 @cindex @code{A2_engraver}
3963
3964 @node Hara kiri staves
3965 @subsection Hara kiri staves
3966
3967 In orchestral scores, staff lines that only have rests are usually removed.
3968 This saves some space. This style is called `French Score'. 
3969
3970 @syntax
3971
3972 This is supported through the hara kiri@footnote{Hara kiri is the
3973 vulgar name for Seppuku, is the ritual suicide of the Japanese
3974 Samourai warriors.} staff. This staff commits suicide when it finds
3975 itself to be empty after the line-breaking process.  It will not
3976 disappear when it contains normal rests, you must use multi measure
3977 rests.
3978
3979 For @internalsref{Lyrics}, @internalsref{LyricsVoice},
3980 @internalsref{ChordNames} and @internalsref{FiguredBass}, hara-kiri is
3981 switched on by default. For normal staffs, hara kiri is available as a
3982 specialized @internalsref{Staff} context, with the name variable
3983 @code{\HaraKiriStaffContext}.  Observe how the second staff in this
3984 example disappears in the second line.
3985
3986 @lilypond[verbatim]
3987 \score  {
3988   \notes \relative c' <
3989     \context Staff = SA { e4 f g a \break c1 }
3990     \context Staff = SB { c4 d e f \break R1 }
3991   >
3992   \paper {
3993     linewidth = 6.\cm 
3994     \translator { \HaraKiriStaffContext }
3995   }
3996 }
3997 @end lilypond
3998
3999
4000 @node Sound output for transposing instruments
4001 @subsection Sound output for transposing instruments
4002
4003 When you want to make a MIDI file from a score containing transposed
4004 and untransposed instruments, you have to instruct LilyPond the pitch
4005 offset (in semitones) for the transposed instruments. This is done
4006 using the @code{transposing} property. It does not affect printed
4007 output.
4008
4009 @cindex @code{transposing}
4010
4011 @example
4012         \property Staff.instrument = #"Cl. in B-flat"
4013         \property Staff.transposing = #-2
4014 @end example
4015
4016
4017 @node Ancient notation 
4018 @section Ancient notation
4019
4020 @cindex Vaticana, Editio
4021 @cindex Medicaea, Editio
4022 @cindex hufnagel
4023 @cindex Petrucci
4024 @cindex mensural
4025
4026 [TODO: write introduction on ancient notation]
4027
4028 @menu
4029 * Ancient note heads::          
4030 * Ancient clefs ::              
4031 * Custodes::                    
4032 * Divisiones::                  
4033 * Ligatures::                   
4034 * Figured bass::                
4035 @end menu
4036
4037
4038 @node Ancient note heads
4039 @subsection Ancient note heads
4040
4041 To get a longa note head, you have to use mensural note heads. This
4042 is accomplished by setting the @code{style} property of the
4043 NoteHead object to @code{mensural}. There is also a note head style
4044 @code{baroque} which gives mensural note heads for @code{\longa} and
4045 @code{\breve} but standard note heads for shorter notes.
4046
4047 @lilypond[fragment,singleline,verbatim]
4048  \property Voice.NoteHead \set #'style = #'mensural
4049  a'\longa
4050 @end lilypond
4051
4052 @node Ancient clefs 
4053 @subsection Ancient clefs
4054
4055 LilyPond supports a variety of clefs, many of them ancient.
4056
4057 For modern clefs, see section @ref{Clef}.  For the percussion clef, see
4058 section @ref{Percussion staves}.  For the @code{TAB} clef, see section
4059 @ref{Tablatures}.
4060
4061 The following table shows all ancient clefs that are supported via the
4062 @code{\clef} command.  Some of the clefs use the same glyph, but
4063 differ only with respect to the line they are printed on.  In such
4064 cases, a trailing number in the name is used to enumerate these clefs.
4065 Still, you can manually force a clef glyph to be typeset on an
4066 arbitrary line, as described in section @ref{Clef}.  The note printed
4067 to the right side of each clef in the example column denotes the
4068 @code{c'} with respect to that clef.
4069
4070 @c --- This should go somewhere else: ---
4071 @c @item modern style G clef (glyph: @code{clefs-G})
4072 @c
4073 @c Supported clefs:
4074 @c @code{treble}, @code{violin}, @code{G}, @code{G2}, @code{french}
4075 @c
4076 @c @lilypond[26pt]{\property Staff.TimeSignature \set #'transparent = ##t \clef "G" c'}
4077 @c
4078 @c @item modern style F clef (glyph: @code{clefs-F})
4079 @c
4080 @c Supported clefs:
4081 @c @code{varbaritone}, @code{bass}, @code{F}, @code{subbass}
4082 @c
4083 @c @lilypond{\property Staff.TimeSignature \set #'transparent = ##t \clef "F" c'}
4084 @c
4085 @c @item modern style C clef (glyph: @code{clefs-C})
4086 @c
4087 @c Supported clefs:
4088 @c @code{soprano}, @code{mezzosoprano}, @code{alto}, @code{C},
4089 @c @code{tenor}, @code{baritone}
4090 @c
4091 @c @lilypond{\property Staff.TimeSignature \set #'transparent = ##t \clef "C" c'}
4092
4093 @multitable @columnfractions  .3 .3 .3 .1
4094
4095 @item
4096 @b{Glyph Name} @tab
4097 @b{Description} @tab
4098 @b{Supported Clefs} @tab
4099 @b{Example}
4100
4101 @item
4102 @code{clefs-neo_mensural_c} @tab
4103 modern style mensural C clef @tab
4104 @code{neo_mensural_c1}, @code{neo_mensural_c2},
4105 @code{neo_mensural_c3}, @code{neo_mensural_c4} @tab
4106 @lilypond[relative 0, notime]
4107 \property Staff.TimeSignature \set #'transparent = ##t
4108 \clef "neo_mensural_c2" c
4109 @end lilypond
4110
4111 @item
4112 @code{clefs-petrucci_c1} @tab
4113 petrucci style mensural C clef (specifically for use on 1st staffline) @tab
4114 @code{petrucci_c1} @tab
4115 @lilypond[relative 0, notime]
4116 \property Staff.TimeSignature \set #'transparent = ##t
4117 \clef "petrucci_c1" c
4118 @end lilypond
4119
4120 @item
4121 @code{clefs-petrucci_c2} @tab
4122 petrucci style mensural C clef (specifically for use on 2nd staffline) @tab
4123 @code{petrucci_c2} @tab
4124 @lilypond[relative 0, notime]
4125 \property Staff.TimeSignature \set #'transparent = ##t
4126 \clef "petrucci_c2" c
4127 @end lilypond
4128
4129 @item
4130 @code{clefs-petrucci_c3} @tab
4131 petrucci style mensural C clef (specifically for use on 3rd staffline) @tab
4132 @code{petrucci_c3} @tab
4133 @lilypond[relative 0, notime]
4134 \property Staff.TimeSignature \set #'transparent = ##t
4135 \clef "petrucci_c3" c
4136 @end lilypond
4137
4138 @item
4139 @code{clefs-petrucci_c4} @tab
4140 petrucci style mensural C clef (specifically for use on 4th staffline) @tab
4141 @code{petrucci_c4} @tab
4142 @lilypond[relative 0, notime]
4143 \property Staff.TimeSignature \set #'transparent = ##t
4144 \clef "petrucci_c4" c
4145 @end lilypond
4146
4147 @item
4148 @code{clefs-petrucci_c5} @tab
4149 petrucci style mensural C clef (specifically for use on 5th staffline) @tab
4150 @code{petrucci_c5} @tab
4151 @lilypond[relative 0, notime]
4152 \property Staff.TimeSignature \set #'transparent = ##t
4153 \clef "petrucci_c5" c
4154 @end lilypond
4155
4156 @item
4157 @code{clefs-petrucci_f} @tab
4158 petrucci style mensural F clef @tab
4159 @code{petrucci_f} @tab
4160 @lilypond[relative 0, notime]
4161 \property Staff.TimeSignature \set #'transparent = ##t
4162 \clef "petrucci_f" c
4163 @end lilypond
4164
4165 @item
4166 @code{clefs-petrucci_g} @tab
4167 petrucci style mensural G clef @tab
4168 @code{petrucci_g} @tab
4169 @lilypond[relative 0, notime]
4170 \property Staff.TimeSignature \set #'transparent = ##t
4171 \clef "petrucci_g" c
4172 @end lilypond
4173
4174 @item
4175 @code{clefs-mensural_c'} @tab
4176 historic style mensural C clef @tab
4177 @code{mensural_c1}, @code{mensural_c2}, @code{mensural_c3},
4178 @code{mensural_c4} @tab
4179 @lilypond[relative 0, notime]
4180 \property Staff.TimeSignature \set #'transparent = ##t
4181 \clef "mensural_c2" c
4182 @end lilypond
4183
4184 @item
4185 @code{clefs-mensural_f} @tab
4186 historic style mensural F clef @tab
4187 @code{mensural_f} @tab
4188 @lilypond[relative 0, notime]
4189 \property Staff.TimeSignature \set #'transparent = ##t
4190 \clef "mensural_f" c
4191 @end lilypond
4192
4193 @item
4194 @code{clefs-mensural_g} @tab
4195 historic style mensural G clef @tab
4196 @code{mensural_g} @tab
4197 @lilypond[relative 0, notime]
4198 \property Staff.TimeSignature \set #'transparent = ##t
4199 \clef "mensural_g" c
4200 @end lilypond
4201
4202 @item
4203 @code{clefs-vaticana_do} @tab
4204 Editio Vaticana style do clef @tab
4205 @code{vaticana_do1}, @code{vaticana_do2}, @code{vaticana_do3} @tab
4206 @lilypond[relative 0, notime]
4207 \context Staff
4208 \outputproperty #(make-type-checker 'staff-symbol-interface) #'line-count = #4
4209 \property Staff.TimeSignature \set #'transparent = ##t
4210 \clef "vaticana_do2" c
4211 @end lilypond
4212
4213 @item
4214 @code{clefs-vaticana_fa} @tab
4215 Editio Vaticana style fa clef @tab
4216 @code{vaticana_fa1}, @code{vaticana_fa2} @tab
4217 @lilypond[relative 0, notime]
4218 \context Staff
4219 \outputproperty #(make-type-checker 'staff-symbol-interface) #'line-count = #4
4220 \property Staff.TimeSignature \set #'transparent = ##t
4221 \clef "vaticana_fa2" c
4222 @end lilypond
4223
4224 @item
4225 @code{clefs-medicaea_do} @tab
4226 Editio Medicaea style do clef @tab
4227 @code{medicaea_do1}, @code{medicaea_do2}, @code{medicaea_do3} @tab
4228 @lilypond[relative 0, notime]
4229 \context Staff
4230 \outputproperty #(make-type-checker 'staff-symbol-interface) #'line-count = #4
4231 \property Staff.TimeSignature \set #'transparent = ##t
4232 \clef "medicaea_do2" c
4233 @end lilypond
4234
4235 @item
4236 @code{clefs-medicaea_fa} @tab
4237 Editio Medicaea style fa clef @tab
4238 @code{medicaea_fa1}, @code{medicaea_fa2} @tab
4239 @lilypond[relative 0, notime]
4240 \context Staff
4241 \outputproperty #(make-type-checker 'staff-symbol-interface) #'line-count = #4
4242 \property Staff.TimeSignature \set #'transparent = ##t
4243 \clef "medicaea_fa2" c
4244 @end lilypond
4245
4246 @item
4247 @code{clefs-hufnagel_do} @tab
4248 historic style hufnagel do clef @tab
4249 @code{hufnagel_do1}, @code{hufnagel_do2}, @code{hufnagel_do3} @tab
4250 @lilypond[relative 0, notime]
4251 \context Staff
4252 \outputproperty #(make-type-checker 'staff-symbol-interface) #'line-count = #4
4253 \property Staff.TimeSignature \set #'transparent = ##t
4254 \clef "hufnagel_do2" c
4255 @end lilypond
4256
4257 @item
4258 @code{clefs-hufnagel_fa} @tab
4259 historic style hufnagel fa clef @tab
4260 @code{hufnagel_fa1}, @code{hufnagel_fa2} @tab
4261 @lilypond[relative 0, notime]
4262 \context Staff
4263 \outputproperty #(make-type-checker 'staff-symbol-interface) #'line-count = #4
4264 \property Staff.TimeSignature \set #'transparent = ##t
4265 \clef "hufnagel_fa2" c
4266 @end lilypond
4267
4268 @item
4269 @code{clefs-hufnagel_do_fa} @tab
4270 historic style hufnagel combined do/fa clef @tab
4271 @code{hufnagel_do_fa} @tab
4272 @lilypond[relative 0, notime]
4273 \property Staff.TimeSignature \set #'transparent = ##t
4274 \clef "hufnagel_do_fa" c
4275 @end lilypond
4276
4277 @end multitable
4278
4279 @c --- This should go somewhere else: ---
4280 @c @item modern style percussion clef (glyph: @code{clefs-percussion})
4281 @c
4282 @c Supported clefs:
4283 @c @code{percussion}
4284 @c
4285 @c @lilypond{\property Staff.TimeSignature \set #'transparent = ##t \clef "percussion" c'}
4286 @c
4287 @c @item modern style tab clef (glyph: @code{clefs-tab})
4288 @c
4289 @c Supported clefs:
4290 @c @code{tab}
4291 @c
4292 @c @lilypond{\context Staff \outputproperty #(make-type-checker 'staff-symbol-interface) #'line-count = #6 \property Staff.TimeSignature \set #'transparent = ##t \clef "tab" c'}
4293
4294 @emph{Modern style} means ``as is typeset in contemporary editions of
4295 transcribed mensural music''.
4296
4297 @emph{Petrucci style} means ``inspired by printings published by the
4298 famous engraver Petrucci (1466-1539)''.
4299
4300 @emph{Historic style} means ``as was typeset or written in historic
4301 editions (other than those of Petrucci)''.
4302
4303 @emph{Editio XXX style} means ``as is/was printed in Editio XXX''.
4304
4305 Petrucci used C clefs with differently balanced left-side vertical
4306 beams, depending on which staffline it is printed.
4307
4308
4309 @node Custodes
4310 @subsection Custodes
4311
4312 @cindex custos
4313 @cindex custodes
4314
4315 A @emph{custos} (plural: @emph{custodes}; latin word for `guard') is a
4316 symbol that appears at the end of a staff.  It anticipates the pitch
4317 of the first note(s) of the following line and thus helps the player
4318 or singer to manage line breaks during performance, thus enhancing
4319 readability of a score.
4320
4321 Custodes were frequently used in music notation until the 17th
4322 century.  Nowadays, they have survived only in a few particular forms
4323 of musical notation such as contemporary editions of Gregorian chant
4324 like the @emph{editio vaticana}.  There are different custos glyphs
4325 used in different flavours of notational style.
4326
4327 For typesetting custodes, just put a @internalsref{Custos_engraver} into the
4328 @internalsref{Staff} context when declaring the @code{\paper} block,
4329 as shown in the following example.
4330
4331 @example
4332 \paper @{
4333   \translator @{
4334      \StaffContext
4335      \consists Custos_engraver
4336      Custos \override #'style = #'mensural
4337   @}
4338 @}
4339 @end example
4340
4341 The result looks like this:
4342
4343 @lilypond
4344 \score {
4345     \notes {
4346         a'1
4347         \property Staff.Custos \set #'style = #'mensural
4348         \break
4349         g'
4350     }
4351     \paper {
4352         \translator {
4353             \StaffContext
4354             \consists Custos_engraver
4355         }
4356         linewidth = 4.0\cm
4357     }
4358 }
4359 @end lilypond
4360
4361 The custos glyph is selected by the @code{style} property. The styles
4362 supported are @code{vaticana}, @code{medicaea}, @code{hufnagel} and
4363 @code{mensural}.  They are demonstrated in the following fragment:
4364
4365 @lilypond
4366 \score {
4367     \notes {
4368         \fatText
4369         s
4370         ^\markup {
4371             \column <<
4372                 "vaticana" 
4373                 { " " \musicglyph #"custodes-vaticana-u0" }
4374             >>
4375             \column <<
4376                 "medicaea"
4377                 { " " \musicglyph #"custodes-medicaea-u0" }
4378             >>
4379             \column <<
4380                 "hufnagel"
4381                 { " " \musicglyph #"custodes-hufnagel-u0" }
4382             >>
4383             \column <<
4384                 "mensural"
4385                 { " " \musicglyph #"custodes-mensural-u0" }
4386             >>
4387         }
4388     }
4389     \paper {
4390         raggedright = ##t 
4391         interscoreline = 1
4392         \translator {
4393             \ScoreContext
4394             \remove "Bar_number_engraver"
4395         }
4396         \translator{
4397             \StaffContext
4398             \remove "Clef_engraver"
4399             \remove "Key_engraver"
4400             \remove "Time_signature_engraver"
4401             \remove "Staff_symbol_engraver"
4402             minimumVerticalExtent = ##f
4403         }
4404     }
4405 }
4406 @end lilypond
4407
4408 If the boolean property @code{adjust-if-on-staffline} is set to
4409 @code{#t} (which it is by default), lily typesets slightly different
4410 variants of the custos glyph, depending on whether the custos, is
4411 typeset on or between stafflines.  The idea is that the glyph will
4412 optically fit well into the staff, with the appendage on the right of
4413 the custos always ending at the same vertical position between two
4414 stafflines regardless of the pitch.  If you set
4415 @code{adjust-if-on-staffline} to @code{#f}, then lily takes regardless
4416 of the pitch always a glyph that is a compromise of the former two
4417 variants.
4418
4419 Just like stems can be attached to noteheads in two directions
4420 @emph{up} and @emph{down}, each custos glyph is available with its
4421 appendage pointing either up or down.  If the pitch of a custos is
4422 above a selectable position, the appendage will point downwards; if
4423 the pitch is below this position, the appendage will point upwards.
4424 Use property @code{neutral-position} to select this position.  By
4425 default, it is set to @code{0}, such that the neutral position is the
4426 center of the staff.  Use property @code{neutral-direction} to control
4427 what happens if a custos is typeset on the neutral position itself.
4428 By default, this property is set to @code{-1}, such that the appendage
4429 will point downwards.  If set to @code{1}, the appendage will point
4430 upwards.  Other values such as @code{0} are reserved for future
4431 extensions and should not be used.
4432
4433 @seealso
4434
4435
4436 @internalsref{Custos}, @inputfileref{input/test,custos-style.ly} and
4437 @inputfileref{input/regression,custos.ly}.
4438
4439
4440 @node Divisiones
4441 @subsection Divisiones
4442
4443 @cindex divisio
4444 @cindex divisiones
4445 @cindex finalis
4446
4447 A @emph{divisio} (plural: @emph{divisiones}; latin word for
4448 `division') is a staff context symbol that is used to structure
4449 Gregorian music into phrases and sections.  The musical meaning of
4450 @emph{divisio minima}, @emph{divisio maior} and @emph{divisio maxima}
4451 can be characterized as short, medium and long pause, somewhat like
4452 @ref{Breath marks}.  The @emph{finalis} sign not only marks the end of
4453 a chant, but is also frequently used within a single
4454 antiphonal/responsorial chant to mark the end of each section.
4455
4456 @syntax
4457
4458 To use divisiones, include the file @code{gregorian-init.ly}.  It
4459 contains definitions that you can apply by just inserting
4460 @code{\divisioMinima}, @code{\divisioMaior}, @code{\divisioMaxima},
4461 and @code{\finalis} at proper places in the input.  Some editions use
4462 @emph{virgula} or @emph{caesura} instead of divisio minima.
4463 Therefore, @code{gregorian-init.ly} also defines @code{\virgula} and
4464 @code{\caesura}.
4465
4466
4467 @lilypondfile[notexidoc]{divisiones.ly}
4468
4469 @seealso
4470
4471 @internalsref{BreathingSign}, @internalsref{BreathingSignEvent},
4472 @inputfileref{input/test,divisiones.ly}, @ref{Breath marks}.
4473
4474 @node Ligatures
4475 @subsection Ligatures
4476
4477 @cindex Ligatures
4478
4479 @c TODO: Should double check if I recalled things correctly when I wrote
4480 @c down the following paragraph by heart.
4481
4482 In musical terminology, a ligature is a coherent graphical symbol that
4483 represents at least two different notes.  Ligatures originally appeared
4484 in the manuscripts of Gregorian chant notation roughly since the 9th
4485 century as an allusion to the accent symbols of greek lyric poetry to
4486 denote ascending or descending sequences of notes.  Both, the shape and
4487 the exact meaning of ligatures changed tremendously during the following
4488 centuries: In early notation, ligatures where used for monophonic tunes
4489 (Gregorian chant) and very soon denoted also the way of performance in
4490 the sense of articulation.  With upcoming multiphony, the need for a
4491 metric system arised, since multiple voices of a piece have to be
4492 synchronized some way.  New notation systems were invented that used
4493 the manifold shapes of ligatures to now denote rhythmical patterns
4494 (e.g. black mensural notation, mannered notation, ars nova).  With the
4495 invention of the metric system of the white mensural notation, the need
4496 for ligatures to denote such patterns disappeared.  Nevertheless,
4497 ligatures were still in use in the mensural system for a couple of
4498 decades until they finally disappeared during the late 16th / early 17th
4499 century.  Still, ligatures have survived in contemporary editions of
4500 Gregorian chant such as the Editio Vaticana from 1905/08.
4501
4502 @syntax
4503
4504 Syntactically, ligatures are simply enclosed by @code{\[} and
4505 @code{\]}.  Some ligature styles (such as Editio Vaticana) may need
4506 additional input syntax specific for this particular type of ligature.
4507 By default, the @internalsref{LigatureBracket} engraver just puts a
4508 square bracket above the ligature.
4509
4510 @lilypond[singleline,verbatim]
4511 \score {
4512     \notes \transpose c c' {
4513         \[ g c a f d' \]
4514         a g f
4515         \[ e f a g \]
4516     }
4517 }
4518 @end lilypond
4519
4520 To select a specific style of ligatures, a proper ligature engraver has
4521 to be added to the @internalsref{Voice} context, as explained in the
4522 following subsections.  Currently, Lilypond only supports white mensural
4523 ligatures with certain limitations.  Support for Editio Vaticana will be
4524 added in the future.
4525
4526 @menu
4527 * White mensural ligatures::    
4528 @end menu
4529
4530 @node White mensural ligatures
4531 @subsubsection White mensural ligatures
4532
4533 @cindex Mensural ligatures
4534 @cindex White mensural ligatures
4535
4536 There is limited support for white mensural ligatures.  The
4537 implementation is still experimental; it currently may output strange
4538 warnings or even crash in some cases or produce weird results on more
4539 complex ligatures.  To engrave white mensural ligatures, in the paper
4540 block the @internalsref{Mensural_ligature_engraver} has to be put into
4541 the @internalsref{Voice} context (and you probably want to remove the
4542 @internalsref{Ligature_bracket_engraver}).  There is no additional
4543 input language to describe the shape of a white mensural ligature.
4544 The shape is rather determined solely from the pitch and duration of
4545 the enclosed notes.  While this approach may take a new user a while
4546 to get accustomed, it has the great advantage that the full musical
4547 information of the ligature is known internally.  This is not only
4548 required for correct MIDI output, but also allows for automatic
4549 transcription of the ligatures.
4550
4551 Example:
4552
4553 @lilypond[singleline,verbatim]
4554 \score {
4555     \notes \transpose c c' {
4556         \property Score.timing = ##f
4557         \property Score.defaultBarType = "empty"
4558         \property Voice.NoteHead \set #'style = #'neo_mensural
4559         \property Staff.TimeSignature \set #'style = #'neo_mensural
4560         \clef "petrucci_g"
4561         \[ g\longa c\breve a\breve f\breve d'\longa \]
4562         s4
4563         \[ e1 f1 a\breve g\longa \]
4564     }
4565     \paper {
4566         \translator {
4567             \VoiceContext
4568             \remove Ligature_bracket_engraver
4569             \consists Mensural_ligature_engraver
4570         }
4571     }
4572 }
4573 @end lilypond
4574
4575 Without replacing @internalsref{Ligature_bracket_engraver} with
4576 @internalsref{Mensural_ligature_engraver}, the same music transcribes
4577 to the following:
4578
4579 @lilypond[singleline]
4580 \score {
4581     \notes \transpose c c' {
4582         \property Score.timing = ##f
4583         \property Score.defaultBarType = "empty"
4584         \property Voice.NoteHead \set #'style = #'neo_mensural
4585         \property Staff.TimeSignature \set #'style = #'neo_mensural
4586         \clef "petrucci_g"
4587         \[ g\longa c\breve a\breve f\breve d'\longa \]
4588         s4
4589         \[ e1 f1 a\breve g\longa \]
4590     }
4591 }
4592 @end lilypond
4593
4594 @node Figured bass
4595 @subsection Figured bass
4596
4597 @cindex Basso continuo
4598
4599 @c TODO: musicological blurb about FB
4600
4601 @syntax
4602
4603 LilyPond has limited support for figured bass:
4604
4605 @lilypond[verbatim,fragment]
4606 <
4607  \context Voice \notes { \clef bass dis4  c d ais}
4608  \context FiguredBass
4609    \figures {
4610     < 6 >4 < 7 >8 < 6+ [_!] >
4611     < 6 >4 <6 5 [3+] >
4612    }
4613  >
4614 @end lilypond
4615
4616 The support for figured bass consists of two parts: there is an input
4617 mode, introduced by @code{\figures}, where you can enter bass figures
4618 as numbers, and there is a context called @internalsref{FiguredBass}
4619 that takes care of making @internalsref{BassFigure} objects.
4620
4621 In figures input mode, a group of bass figures is delimited by
4622 @code{<} and @code{>}. The duration is entered after the @code{>}.
4623 @example
4624         <4 6>
4625 @end example
4626 @lilypond[fragment]
4627 \context FiguredBass
4628 \figures { <4 6> }
4629 @end lilypond
4630
4631 Accidentals are added to the numbers if you alterate them by
4632 appending @code{-}, @code{!}  and @code{+}.
4633
4634 @example
4635   <4- 6+ 7!>
4636 @end example
4637 @lilypond[fragment]
4638   \context FiguredBass
4639     \figures { <4- 6+ 7!> }
4640 @end lilypond
4641
4642 Spaces or dashes may be inserted by using @code{_}. Brackets are
4643 introduced with @code{[} and @code{]}.
4644
4645 @example
4646         < [4 6] 8 [_ 12]>
4647 @end example
4648 @lilypond[fragment]
4649  \context FiguredBass
4650 \figures { < [4 6] 8 [_ 12]> }
4651 @end lilypond
4652
4653 Although the support for figured bass may superficially resemble chord
4654 support, it works much simpler.  The @code{\figures} mode simply
4655 stores the numbers , and @internalsref{FiguredBass} context prints
4656 them as entered. There is no conversion to pitches, and no
4657 realizations of the bass are played in the MIDI file.
4658
4659 Internally, the code produces markup texts. You can use any of the
4660 markup text properties to override formatting. For example, the
4661 vertical spacing of the figures may be set with @code{baseline-skip}.
4662
4663 @seealso
4664
4665 @internalsref{BassFigureEvent} music, @internalsref{BassFigure} grob,
4666 @internalsref{FiguredBass} context
4667
4668 @refbugs
4669
4670 Slash notation for alterations is not supported.
4671
4672
4673 @node Contemporary notation
4674 @section Contemporary notation
4675
4676 In the 20th century, composers have greatly expanded the musical
4677 vocabulary. With this expansion, many innovations in musical notation
4678 have been tried. For a comprehensive overview, refer to @cite{Stone
4679 1980} (see @ref{Literature}). In general, the use of new, innovative
4680 notation makes a piece harder to understand and perform and its use
4681 should be avoided if possible.  For this reason, support for
4682 contemporary notation in LilyPond is limited.
4683
4684
4685 @menu
4686 * Clusters::                    
4687 * Fermatas::                    
4688 @end menu
4689
4690 @node Clusters
4691 @subsection Clusters
4692
4693 @cindex cluster
4694
4695 In musical terminology, a @emph{cluster} denotes a range of
4696 simultaneously sounding pitches that may change over time.  The set of
4697 available pitches to apply usually depends on the accoustic source.
4698 Thus, in piano music, a cluster typically consists of a continous range
4699 of the semitones as provided by the piano's fixed set of a chromatic
4700 scale.  In choral music, each singer of the choir typically may sing an
4701 arbitrary pitch within the cluster's range that is not bound to any
4702 diatonic, chromatic or other scale.  In electronic music, a cluster
4703 (theoretically) may even cover a continuous range of pitches, thus
4704 resulting in coloured noise, such as pink noise.
4705
4706 Clusters can be denoted in the context of ordinary staff notation by
4707 engraving simple geometrical shapes that replace ordinary notation of
4708 notes.  Ordinary notes as musical events specify starting time and
4709 duration of pitches; however, the duration of a note is expressed by the
4710 shape of the note head rather than by the horizontal graphical extent of
4711 the note symbol.  In contrast, the shape of a cluster geometrically
4712 describes the development of a range of pitches (vertical extent) over
4713 time (horizontal extent).  Still, the geometrical shape of a cluster
4714 covers the area in wich any single pitch contained in the cluster would
4715 be notated as an ordinary note.  From this point of view, it is
4716 reasonable to specify a cluster as the envelope of a set of notes.
4717
4718 @syntax
4719
4720 A cluster is engraved as the envelope of a set of notes. The starting
4721 note is marked with @code{\startCluster}, and the ending note with
4722 @code{\stopCluster}, e.g.,
4723
4724 @example
4725   c4-\startCluster
4726      ...
4727   f4-\stopCluster 
4728 @end example
4729
4730 The following example (from
4731 @inputfileref{input/regression,cluster.ly}) shows what the result
4732 looks like.
4733
4734 @lilypondfile[notexidoc]{cluster.ly}
4735
4736 By default, @internalsref{Cluster_engraver} is in the
4737 @internalsref{Voice} context.  This allows putting ordinary notes and
4738 clusters together in the same staff, even simultaneously.  In such a
4739 case no attempt is made to automatically avoid collisions between
4740 ordinary notes and clusters.
4741
4742 @seealso
4743
4744 @internalsref{Cluster}, @inputfileref{input/regression,cluster.ly},
4745 @internalsref{Cluster_engraver}, @internalsref{ClusterEvent}.
4746
4747 @refbugs
4748
4749 When a cluster is active, note heads must be switched off manually using
4750 @code{\hideNotes}. 
4751
4752 Music expressions like @code{< @{ g8 e8 @} a4 >} are not printed
4753 accurately.  Use @code{<<g a>>8 <<e a>>8} instead.
4754
4755
4756
4757 @node Fermatas
4758 @subsection Fermatas
4759
4760 @cindex fermatas
4761
4762
4763
4764 Contemporary music notation frequently uses special fermata symbols to
4765 indicate fermatas of differing lengths.
4766
4767 @syntax
4768
4769 The following are supported
4770
4771 @lilypond[singleline]
4772 \score {
4773   <  \notes {
4774         \fatText
4775         b'
4776         ^\shortfermata
4777         _\shortfermata
4778         r
4779         b'
4780         ^\fermata
4781         _\fermata
4782
4783         r
4784         b'
4785         ^\longfermata
4786         _\longfermata
4787
4788         r
4789         b'
4790         ^\verylongfermata
4791         _\verylongfermata
4792         r
4793     }
4794     \context Lyrics \lyrics {
4795       "shortfermata" "fermata"  "longfermata" "verylongfermata"
4796     } >
4797 }
4798 @end lilypond
4799
4800 See @ref{Articulations} for general instructions how to apply scripts
4801 such as fermatas to a @code{\notes@{@}} block.
4802
4803 @node Tuning output
4804 @section Tuning output
4805
4806 As much formatting as possible is performed
4807 automatically. Nevertheless, there are situations where LilyPond needs
4808 some help, or where you want to override its decisions. In this
4809 section we discuss ways to do just that.
4810
4811 Formatting is internally done by manipulating so called objects (graphic
4812 objects). Each object carries with it a set of properties (object
4813 properties) specific to that object.  For example, a stem object has
4814 properties that specify its direction, length and thickness.
4815
4816 The most direct way of tuning the output is by altering the values of
4817 these properties. There are two ways of doing that: first, you can
4818 temporarily change the definition of one type of object, thus
4819 affecting a whole set of objects.  Second, you can select one specific
4820 object, and set a object property in that object.
4821
4822 @menu
4823 * Tuning objects ::             
4824 * Applyoutput::                 
4825 * Outputproperty::              
4826 * Font selection::              
4827 * Text markup::                 
4828 @end menu
4829
4830 @node Tuning objects 
4831 @subsection Tuning objects 
4832
4833 @cindex object description
4834
4835 The definition of an object is actually a list of default object
4836 properties. For example, the definition of the Stem object (available
4837 in @file{scm/grob-description.scm}), includes the following definitions for
4838 @internalsref{Stem}
4839
4840 @example
4841         (thickness . 0.8)
4842         (beamed-lengths . (0.0 2.5 2.0 1.5))
4843         (Y-extent-callback . ,Stem::height)
4844         @var{...}
4845 @end example
4846
4847
4848 By adding variables on top of these existing definitions, the system
4849 defaults is overriden, and the appearance of a graphical objects is
4850 altered.
4851
4852 @syntax
4853
4854
4855 Changing a variable for only   one object is commonly achieved with
4856 @code{\once}:
4857
4858 @example
4859 \once \property @var{context}.@var{grobname}
4860   \override @var{symbol} = @var{value}
4861 @end example
4862 Here @var{symbol} is a Scheme expression of symbol type, @var{context}
4863 and @var{grobname} is a string and @var{value} is a Scheme expression.
4864 This command applies a setting only during one moment in the score.
4865
4866 In the following example, only one @internalsref{Stem} object is
4867 changed from its original setting:
4868
4869 @lilypond[verbatim, fragment, relative=1]
4870   c4 
4871   \once \property Voice.Stem \set #'thickness = #4
4872   c4
4873   c4
4874 @end lilypond
4875 @cindex @code{\once}
4876
4877 For changing more objects, the same command, without @code{\once} can
4878 be used.
4879 @example
4880 \property @var{context}.@var{grobname} \override @var{symbol} = @var{value}
4881 @end example
4882 This command adds @code{@var{symbol} = @var{value}} to the definition
4883 of @var{grobname} in the context @var{context}, and this definition
4884 stays in place until it is removed.
4885
4886 An existing definition may be removed by the following command
4887 @c
4888 @example
4889 \property @var{context}.@var{grobname} \revert @var{symbol}
4890 @end example
4891 @c
4892 All @code{\override} and @code{\revert} commands should be balanced.
4893 The @code{\set} shorthand, performs a revert followed by an override,
4894 and is often more convenient to use
4895
4896 @example
4897 \property @var{context}.@var{grobname} \set @var{symbol} = @var{value}
4898 @end example
4899
4900 Some examples: 
4901 @lilypond[verbatim,quote]
4902 c'4 \property Voice.Stem \override #'thickness = #4.0
4903 c'4
4904 c'4 \property Voice.Stem \revert #'thickness
4905 c'4
4906 @end lilypond
4907
4908 The following example gives exactly the same result as the previous
4909 one (assuming the system default for stem thickness is 0.8).
4910 @c
4911 @lilypond[verbatim,quote]
4912   c'4 \property Voice.Stem \set #'thickness = #4.0
4913   c'4
4914   c'4 \property Voice.Stem \set #'thickness = #0.8
4915   c'4
4916 @end lilypond
4917
4918 If you revert a setting which was not set in the first place, then it
4919 has no effect. However, if the setting was set as a system default, it
4920 may remove the default value, and this may give surprising results,
4921 including crashes.  In other words, @code{\override} and
4922 @code{\revert}, must be carefully balanced.
4923
4924 These are examples of correct nesting of @code{\override}, @code{\set},
4925 @code{\revert}. 
4926
4927 A clumsy but correct form:
4928 @example
4929   \override \revert \override \revert \override \revert
4930 @end example
4931
4932 Shorter version of the same:
4933 @example 
4934   \override \set \set  \revert
4935 @end example
4936
4937 A short form, using only @code{\set}. This requires you to know the
4938 default value:
4939 @example
4940   \set \set \set \set @var{to default value}
4941 @end example
4942
4943 If there is no default (i.e. by default, the object property is unset),
4944 then you can use
4945 @example
4946   \set \set \set \revert
4947 @end example
4948
4949 For the digirati, the object description is an Scheme association
4950 list. Since a Scheme list is a singly linked list, we can treat it as
4951 a stack, and @code{\override} and @code{\revert} are push and pop
4952 operations.  The association list is stored in a normal context
4953 property, hence
4954 @example
4955  \property Voice.NoteHead  = #'() 
4956 @end example
4957 will effectively erase @internalsref{NoteHead}s from the current
4958 @internalsref{Voice}. However, this mechanism is not guaranteed to
4959 work, and may cause crashes or other anomalous behavior.
4960
4961 @seealso
4962
4963 @internalsref{OverrideProperty}, @internalsref{RevertProperty},
4964 @internalsref{PropertySet}, @internalsref{backend properties},
4965 @internalsref{All Graphical Objects}.
4966
4967
4968 @refbugs
4969
4970 LilyPond will hang or crash if @var{value} contains cyclic references.
4971 The backend is not very strict in type-checking object properties. If you
4972 @code{\revert} properties that are expected to be set by default,
4973 LilyPond may crash.
4974
4975
4976 @node Applyoutput
4977 @subsection Applyoutput
4978
4979 The most versatile way of tuning object is @code{\applyoutput}. Its
4980 syntax is
4981 @example
4982 \applyoutput @var{proc}
4983 @end example
4984 where @var{proc} is a Scheme function, taking four arguments.
4985
4986 When interpreted, the function @var{proc} is called for every grob found
4987 in the context, with the following arguments:
4988 @itemize @bullet
4989 @item the grob itself
4990 @item the context where the grob was created
4991 @item the context where @code{\applyoutput} is processed.
4992 @end itemize
4993
4994 In addition, the cause of the grob, i.e.  the music expression or object
4995 that was responsible for creating the object, is in the object property
4996 @code{cause}.  For example, for a note head, this is a
4997 @internalsref{NoteHead} event, and for a @internalsref{Stem} object,
4998 this is a @internalsref{NoteHead} object.
4999
5000
5001 @node Outputproperty
5002 @subsection Outputproperty
5003
5004 @cindex \outputproperty
5005
5006 Another way of tuning objects is the more arcane @code{\outputproperty}
5007 feature.  The syntax is as follows:
5008 @example
5009 \outputproperty @var{predicate} @var{symbol} = @var{value}
5010 @end example
5011 Here @code{predicate} is a Scheme function taking an object argument, and
5012 returning a boolean.  This statement is processed by the
5013 @code{Output_property_engraver}.  It instructs the engraver to feed all
5014 objects that it sees to @var{predicate}. Whenever the predicate returns
5015 true, the object property @var{symbol} will be set to @var{value}.
5016
5017 You will need to combine this statement with @code{\context} to select
5018 the appropriate context to apply this to.
5019 @inputfileref{input/regression,output-property.ly} shows an example of
5020 the use of @code{\outputproperty}.
5021
5022 @refbugs
5023
5024 If possible, avoid this feature: the semantics are not very clean, and
5025 the syntax and semantics are up for rewrite.
5026
5027
5028 @node Font selection
5029 @subsection Font selection
5030
5031 The most common thing to change about the appearance of fonts is
5032 their size. The font size of any context can be easily
5033 changed by setting the @code{fontSize} property for that context:
5034 @c
5035 @lilypond[fragment,relative=1,verbatim,quote]
5036   c4 c4 \property Voice.fontSize = #-1
5037   f4 g4
5038 @end lilypond
5039  This command will set @code{font-relative-size} (see below),
5040  and does not change the size of variable symbols, such as
5041 beams or slurs.  You can use this command to get smaller symbol for
5042 cue notes, but that involves some more subtleties. An elaborate
5043 example of those is in @inputfileref{input/test,cue-notes.ly}.
5044
5045 @cindex magnification
5046
5047 The size of the font may be scaled with the object property
5048 @code{font-magnification}.  For example, @code{2.0} blows up all
5049 letters by a factor 2 in both directions.
5050
5051
5052 @cindex cue notes
5053 @cindex font size
5054 @cindex size
5055 @cindex symbol size
5056 @cindex glyph size
5057
5058 The font used for printing a object can be selected by setting
5059 @code{font-name}, e.g.
5060 @example
5061   \property Staff.TimeSignature
5062     \set #'font-name = #"cmr17"
5063 @end example
5064 You may use any font which is available to @TeX{}, such as foreign
5065 fonts or fonts that do not belong to the Computer Modern font family.
5066
5067 Font selection for the standard fonts, @TeX{}'s Computer Modern fonts,
5068 can also be adjusted with a more fine-grained mechanism.  By setting
5069 the object properties described below, you can select a different font.
5070 All three mechanisms work for every object that supports
5071 @code{font-interface}.
5072
5073 @table @code
5074 @item font-family
5075  A symbol indicating the general class of the typeface.  Supported are
5076 @code{roman} (Computer Modern), @code{braces} (for piano staff
5077 braces), @code{music} (the standard music font), @code{ancient} (the
5078 ancient notation font) @code{dynamic} (font for dynamic signs) and
5079 @code{typewriter}. 
5080   
5081 @item font-shape
5082   A symbol indicating the shape of the font, there are typically several
5083   font shapes available for each font family. Choices are @code{italic},
5084   @code{caps} and @code{upright} 
5085
5086 @item font-series
5087 A  symbol indicating the series of the font. There are typically several
5088 font series for each font family and shape. Choices are @code{medium}
5089 and @code{bold}. 
5090
5091 @item font-relative-size
5092   A number indicating the size relative the standard size.  For example,
5093   with 20pt staff height, relative size -1  corresponds to 16pt staff
5094   height, and relative size +1 corresponds to 23 pt staff height.
5095
5096    There are small differences in design between fonts designed for
5097 different sizes, hence font-relative-size is the preferred way to
5098 change a font size.
5099
5100
5101 @item font-design-size
5102 A number indicating  the design size of the font. 
5103
5104 This is a feature of the Computer Modern Font: each point size has a
5105 slightly different design. Smaller design sizes are relatively wider,
5106 which enhances readability.
5107 @end table
5108
5109 For any of these properties, the value @code{*} (i.e. the symbol
5110 @code{*}, entered as @code{#'*}), acts as a wildcard. This can be used
5111 to override default setting, which are always present. For example:
5112 @example
5113   \property Lyrics.LyricText \override #'font-series = #'bold
5114   \property Lyrics.LyricText \override #'font-family = #'typewriter
5115   \property Lyrics.LyricText \override #'font-shape  = #'*
5116 @end example
5117
5118 @cindex @code{font-style}
5119
5120
5121
5122 @refbugs
5123
5124 Relative size is not linked to any real size.
5125
5126 There is no style sheet provided for other fonts besides the @TeX{}
5127 family, and the style sheet cannot be modified easily.
5128
5129 @cindex font selection
5130 @cindex font magnification
5131 @cindex @code{font-interface}
5132
5133
5134 @node Text markup
5135 @subsection Text markup
5136 @cindex text markup
5137 @cindex markup text
5138
5139
5140 @cindex typeset text
5141
5142 LilyPond has an internal mechanism to typeset texts. You can access it
5143 with the keyword @code{\markup}. Within markup mode, you can enter texts
5144 similar to lyrics: simply enter them, surrounded by spaces. 
5145 @cindex markup
5146
5147 @lilypond[verbatim,fragment,relative=1]
5148  c1^\markup { hello }
5149  c1_\markup { hi there }
5150  c1^\markup { hi \bold there, is \italic anyone home? }
5151 @end lilypond
5152
5153 @cindex font switching
5154
5155 The line of the example demonstrates font switching commands.  The
5156 command only apply to the first following word; enclose a set of texts
5157 with braces to apply a command to more words.
5158 @example
5159   \markup @{ \bold @{ hi there @} @}
5160 @end example
5161 For clarity, you can also do this for single arguments, e.g.
5162 @example
5163   \markup @{ is \italic @{ anyone @} home @}
5164 @end example
5165
5166 @cindex font size, texts
5167
5168 The following size commands set abolute sizes
5169
5170 @cindex \teeny
5171 @cindex \tiny
5172 @cindex \small
5173 @cindex \large
5174 @cindex \huge
5175
5176 @table @code
5177 @item \teeny
5178 @item \tiny
5179 @item \small
5180 @item \large
5181 @item \huge
5182 @end table
5183
5184 You can also make letter larger or smaller relative to their neighbors,
5185 with the commands @code{\larger} and @code{\smaller}.
5186 @cindex smaller
5187 @cindex larger
5188
5189 @cindex font style, for texts
5190 @cindex \bold
5191 @cindex \dynamic
5192 @cindex \number
5193 @cindex \italic
5194
5195 The following font change commands are defined:
5196 @table @code
5197 @item \dynamic
5198 This changes to the font used for dynamic signs.  This font does not
5199 contain all characters of the alphabet, so when producing ``piu f'',
5200 the ``piu'' should be done in a different font.
5201
5202
5203 @item \number
5204 This changes to the font used for time signatures. It only contains
5205 numbers and a few punctuation marks.
5206 @item \italic
5207 Changes @code{font-shape} to @code{italic}
5208 @item \bold
5209 Changes @code{font-series} to @code{bold}
5210 @end table
5211
5212 @cindex raising text
5213 @cindex lowering text
5214 @cindex moving text
5215 @cindex translating text
5216
5217 @cindex \sub
5218 @cindex \super
5219
5220 Raising and lowering texts can be done with @code{\super} and
5221 @code{\sub}.
5222
5223 @lilypond[verbatim,fragment,relative=1]
5224  c1^\markup { E "=" mc \super "2" }
5225 @end lilypond
5226
5227 @cindex \raise
5228
5229 If you want to give an explicit amount for lowering or raising, use
5230 @code{\raise}.  This command takes a Scheme valued first argument, and
5231 a markup object as second argument
5232 @c
5233 @lilypond[verbatim,fragment,relative=1,quote]
5234  c1^\markup { C \small \raise #1.0 \bold { "9/7+" }}
5235 @end lilypond
5236 The argument to @code{\raise} is the vertical displacement amount,
5237 measured in (global) staff spaces.
5238
5239 Other commands taking  single arguments include
5240 @table @code
5241
5242 @item \bracket, \hbracket
5243  Bracket the argument markup with normal and horizontal brackets
5244 respectively.
5245
5246 @item \musicglyph
5247 @cindex \musicglyph
5248   This is converted to a musical symbol, e.g. @code{\musicglyph
5249 #"accidentals-0"} will select the natural sign from the music font.
5250 See @ref{The Feta font} for  a complete listing of the possible glyphs.
5251 @item \char
5252 This produces a single character, e.g. @code{\char #65} produces the 
5253 letter 'A'.
5254
5255 @item \hspace #@var{amount}
5256 @cindex \hspace
5257 This produces a invisible object taking horizontal space.
5258 @example 
5259 \markup @{ A \hspace #2.0 B @} 
5260 @end example
5261 will put extra space between A and B, on top of the space that is
5262 normally inserted before elements on a line.
5263
5264 @item \fontsize #@var{size}
5265 @cindex \fontsize
5266 This sets the relative font size, eg.
5267 @example
5268 A \fontsize #2 @{ B C @} D
5269 @end example
5270
5271
5272 This will enlarge the B and the C by two steps.
5273 @item  \translate #(cons @var{x} @var{y})
5274 @cindex  \translate
5275 This translates an object. Its first argument is a cons of numbers
5276 @example
5277 A \translate #(cons 2 -3) @{ B C @} D
5278 @end example
5279 This moves `B C' 2 spaces to the right, and 3 down.
5280
5281 @item \magnify  #@var{mag}
5282 @cindex \magnify
5283 This sets the font magnification for the its argument. In the following
5284 example, the middle A will be 10% larger.
5285 @example
5286 A \magnify #1.1 @{ A @} A
5287 @end example
5288
5289
5290 @item \override #(@var{key} . @var{value})
5291 @cindex \override
5292 This overrides a  formatting property for its argument. The argument
5293 should be a key/value pair, e.g.
5294 @example
5295 m \override #'(font-family . math) m m
5296 @end example
5297 @end table
5298
5299 In markup mode you can compose expressions, similar to mathematical
5300 expressions, XML documents and music expressions.  The braces group
5301 notes into horizontal lines. Other types of lists also exist: you can
5302 stack expressions grouped with @code{<<}, and @code{>>} vertically with
5303 the command @code{\column}. Similarly, @code{\center} aligns texts by
5304 their center lines. 
5305
5306 @lilypond[verbatim,fragment,relative=1]
5307  c1^\markup { \column << a bbbb c >> }
5308  c1^\markup { \center << a bbbb c >> }
5309  c1^\markup { \line << a b c >> }
5310 @end lilypond
5311
5312 The markup mechanism is very flexible and extensible.  Refer to
5313 @file{scm/new-markup.scm} for more information on extending the markup
5314 mode.
5315
5316
5317
5318 @seealso
5319
5320 @internalsref{Markup functions}, @file{scm/new-markup.scm}
5321
5322 @refbugs
5323
5324 @cindex kerning
5325
5326
5327 Text layout is ultimately done by @TeX{}, which does kerning of
5328 letters.  LilyPond does not account for kerning, so texts will be
5329 spaced slightly too wide.
5330
5331 Syntax errors for markup mode are confusing.
5332
5333
5334 @node Global layout
5335 @section Global layout
5336
5337 The global layout determined by three factors: the page layout, the
5338 line breaks and the spacing. These all influence each other. The
5339 choice of spacing determines how densely each system of music is set,
5340 which influences where line breaks breaks are chosen, and thus
5341 ultimately how many pages a piece of music takes. In this section we
5342 will explain how the lilypond spacing engine works, and how you can
5343 tune its results.
5344
5345 Globally spoken, this procedure happens in three steps: first,
5346 flexible distances (``springs'') are chosen, based on durations. All
5347 possible line breaking combination are tried, and the one with the
5348 best results---a layout that has uniform density and requires as
5349 little stretching or cramping as possible---is chosen. When the score
5350 is processed by @TeX{}, page are filled with systems, and page breaks
5351 are chosen whenever the page gets full.
5352
5353
5354
5355 @menu
5356 * Vertical spacing::            
5357 * Horizontal spacing::          
5358 * Font Size::                   
5359 * Line breaking::               
5360 * Page layout::                 
5361 @end menu
5362
5363
5364 @node Vertical spacing
5365 @subsection Vertical spacing
5366
5367 @cindex vertical spacing
5368 @cindex distance between staves
5369 @cindex staff distance
5370 @cindex between staves, distance
5371 @cindex staffs per page
5372
5373
5374 The height of each system is determined automatically by lilypond, to
5375 keep systems from bumping into each other, some minimum distances are
5376 set.  By changing these, you can put staves closer together, and thus
5377 put more  systems onto one page.
5378
5379 Normally staves are stacked vertically. To make
5380 staves maintain a distance, their vertical size is padded. This is
5381 done with the property @code{minimumVerticalExtent}. It takes a pair
5382 of numbers, so if you want to make it smaller from its, then you could
5383 set
5384 @example
5385   \property Staff.minimumVerticalExtent = #'(-4 . 4)
5386 @end example
5387 This sets the vertical size of the current staff to 4 staff-space on
5388 either side of the center staff line.  The argument of
5389 @code{minimumVerticalExtent} is interpreted as an interval, where the
5390 center line is the 0, so the first number is generally negative.  The
5391 staff can be made larger at the bottom by setting it to @code{(-6
5392 . 4)}.
5393
5394 The piano staves are handled a little differently: to make cross-staff
5395 beaming work correctly, it necessary that the distance between staves
5396 is fixed.  This is also done with a @internalsref{VerticalAlignment}
5397 object, created in @internalsref{PianoStaff}. In this object the
5398 distance between the staves is fixed by setting
5399 @code{forced-distance}. If you want to override this, use a
5400 @code{\translator} block as follows:
5401 @example
5402   \translator @{
5403     \PianoStaffContext
5404     VerticalAlignment \override #'forced-distance = #9
5405   @}
5406 @end example
5407 This would bring the staves together at a distance of 9 staff spaces,
5408 measured from the center line of each staff.
5409
5410 @seealso
5411
5412 Vertical aligment of staves is handled by the
5413 @internalsref{VerticalAlignment} object.
5414
5415
5416
5417 @node Horizontal spacing
5418 @subsection Horizontal Spacing
5419
5420 The spacing engine translates differences in durations into
5421 stretchable distances (``springs'') of differing lengths. Longer
5422 durations get more space, shorter durations get less.  The shortest
5423 durations get a fixed amount of space (which is controlled by
5424 @code{shortest-duration-space} in the @internalsref{SpacingSpanner}
5425 object). The longer the duration, the more space it gets: doubling a
5426 duration adds a fixed amount (this amount is controlled by
5427 @code{spacing-increment}) of space to the note.
5428
5429 For example, the following piece contains lots of half, quarter and
5430 8th notes, the eighth note is followed by 1 note head width (NHW). The
5431 The quarter note is followed by 2 NHW, the half by 3 NHW, etc.
5432 @lilypond[fragment, verbatim, relative=1] c2 c4. c8 c4. c8 c4. c8 c8
5433 c8 c4 c4 c4
5434 @end lilypond
5435
5436 Normally, @code{shortest-duration-space} is set to 1.2, which is the
5437 width of a note head, and @code{shortest-duration-space} is set to
5438 2.0, meaning that the shortest note gets 2 NHW (2 times
5439 @code{shortest-duration-space}) of space. For normal notes, this space
5440 is always counted from the left edge of the symbol, so the shortest
5441 notes are generally followed by one NHW of space.
5442
5443 If one would follow the above procedure exactly, then adding a single
5444 32th note to a score that uses 8th and 16th notes, would widen up the
5445 entire score a lot. The shortest note is no longer a 16th, but a 32nd,
5446 thus adding 2 noteheads of space to every note. To prevent this, the
5447 shortest duration for spacing is not the shortest note in the score,
5448 but the most commonly found shortest note.  Notes that are even
5449 shorter this are followed by a space that is proportonial to their
5450 duration relative to the common shortest note.  So if we were to add
5451 only a few 16th notes to the example above, they would be followed by
5452 half a NHW:
5453
5454 @lilypond[fragment, verbatim, relative=2]
5455  c2 c4. c8 c4. c16-[ c-] c4. c8 c8 c8 c4 c4 c4
5456 @end lilypond
5457
5458 The most common shortest duration is determined as follows: in every
5459 measure, the shortest duration is determined. The most common short
5460 duration, is taken as the basis for the spacing, with the stipulation
5461 that this shortest duration should always be equal to or shorter than
5462 1/8th note. The shortest duration is printed when you run lilypond
5463 with @code{--verbose}.  These durations may also be customized. If you
5464 set the @code{common-shortest-duration} in
5465 @internalsref{SpacingSpanner}, then this sets the base duration for
5466 spacing. The maximum duration for this base (normally 1/8th), is set
5467 through @code{base-shortest-duration}.
5468
5469 @cindex @code{common-shortest-duration}
5470 @cindex @code{base-shortest-duration}
5471 @cindex @code{stem-spacing-correction}
5472 @cindex @code{spacing}
5473
5474 In the introduction it was explained that stem directions influence
5475 spacing. This is controlled with @code{stem-spacing-correction}
5476 property in @internalsref{NoteSpacing}, which are generated for every
5477 @internalsref{Voice} context. The @code{StaffSpacing} object
5478 (generated at @internalsref{Staff} context) contains the same property
5479 for controlling the stem/barline spacing. In the following example
5480 shows these corrections, once with default settings, and once with
5481 exaggerated corrections.
5482
5483 @lilypond
5484     \score { \notes {
5485       c'4 e''4 e'4 b'4 |
5486       b'4 e''4 b'4 e''4|
5487       \property Staff.NoteSpacing \override #'stem-spacing-correction
5488       = #1.5
5489       \property Staff.StaffSpacing \override #'stem-spacing-correction
5490       = #1.5
5491       c'4 e''4 e'4 b'4 |
5492       b'4 e''4 b'4 e''4|      
5493     }
5494     \paper { raggedright = ##t } }
5495 @end lilypond
5496
5497 @cindex SpacingSpanner, overriding properties
5498
5499 Properties of the  @internalsref{SpacingSpanner} must be overriden
5500 from the @code{\paper} block, since the @internalsref{SpacingSpanner}
5501 is created before any @code{\property} statements are interpreted.
5502 @example
5503 \paper @{ \translator  @{
5504   \ScoreContext
5505   SpacingSpanner \override #'spacing-increment = #3.0
5506 @} @}
5507 @end example
5508
5509
5510 @seealso
5511
5512 @internalsref{SpacingSpanner}, @internalsref{NoteSpacing},
5513 @internalsref{StaffSpacing}, @internalsref{SeparationItem},
5514 @internalsref{SeparatingGroupSpanner}.
5515
5516 @refbugs
5517
5518 Spacing is determined on a score wide basis. If you have a score that
5519 changes its character (measured in durations) halfway during the
5520 score, the part containing the longer durations will be spaced too
5521 widely.
5522
5523 There is no convenient mechanism to manually override spacing.
5524
5525
5526
5527 @node Font Size
5528 @subsection Font size
5529 @cindex font size, setting
5530 @cindex staff size, setting
5531 @cindex @code{paper} file
5532
5533 The Feta font provides musical symbols at seven different sizes.
5534 These fonts are 11 point, 13 point, 16 point, 19 pt, 20 point, 23
5535 point, and 26 point.  The point size of a font is the height of the
5536 five lines in a staff when displayed in the font.
5537
5538 Definitions for these sizes are the files @file{paperSZ.ly}, where
5539 @code{SZ} is one of 11, 13, 16, 19, 20, 23 and 26.  If you include any
5540 of these files, the variables @code{paperEleven},
5541 @code{paperThirteen}, @code{paperSixteen}, @code{paperNineteen},
5542 @code{paperTwenty}, @code{paperTwentythree}, and @code{paperTwentysix}
5543 are defined respectively.  The default @code{\paper} block is also
5544 set. These files should be imported at toplevel, i.e.
5545 @example
5546         \include "paper26.ly"
5547         \score @{  ... @}
5548 @end example
5549
5550 The font definitions are generated using a Scheme function. For more
5551 details, see the file @file{scm/font.scm}.
5552
5553
5554
5555 @node Line breaking
5556 @subsection Line breaking
5557
5558 @cindex line breaks
5559 @cindex breaking lines
5560
5561 Line breaks are normally computed automatically. They are chosen such
5562 that lines look neither cramped nor loose, and that consecutive lines
5563 have similar density.
5564
5565 Occasionally you might want to override the automatic breaks; you can
5566 do this by  specifying @code{\break}. This will force a line break at
5567 this point.  Line breaks can only occur at places where there are bar
5568 lines.  If you want to have a line break where there is no bar line,
5569 you can force an invisible bar line by entering @code{\bar
5570 ""}. Similarly, @code{\noBreak} forbids a line break at a 
5571 point.
5572
5573
5574 @cindex regular line breaks
5575 @cindex four bar music. 
5576
5577 If you want linebreaks at regular intervals, you can use the following:
5578 @example
5579 <  \repeat unfold 7 @{ s1 * 4 \break  @}
5580    @emph{the real music}
5581
5582 @end  example
5583 This makes the following 28 measures (assuming 4/4 time) be broken every
5584 4 measures.
5585
5586 @seealso
5587
5588 @internalsref{BreakEvent}
5589
5590
5591 @node Page layout
5592 @subsection Page layout
5593
5594 @cindex page breaks
5595 @cindex breaking pages
5596
5597 @cindex @code{indent}
5598 @cindex @code{linewidth}
5599
5600 The most basic settings influencing the spacing are @code{indent} and
5601 @code{linewidth}. They are set in the @code{\paper} block. They
5602 control the indentation of the first line of music, and the lengths of
5603 the lines.
5604
5605 If  @code{raggedright} is set to true in the @code{\paper}
5606 block, then the lines are justified at their natural length. This
5607 useful for short fragments, and for checking how tight the natural
5608 spacing is.
5609
5610 @cindex page layout
5611 @cindex vertical spacing
5612
5613 The page layout process happens outside lilypond: variables
5614 controlling page layout are passed to the output, and are further
5615 interpreted by @code{ly2dvi}. @code{ly2dvi} responds to the following
5616 variables in the @code{\paper} block.  The variable @code{textheight}
5617 sets the total height of the music on each page.  The spacing between
5618 systems is controlled with @code{interscoreline}, its default is 16pt.
5619 The distance between the score lines will stretch in order to fill the
5620 full page @code{interscorelinefill} is set to a positive number.  In
5621 that case @code{interscoreline} specifies the minimum spacing.
5622
5623 @cindex @code{textheight}
5624 @cindex @code{interscoreline}
5625 @cindex @code{interscorelinefill}
5626
5627 If the variable @code{lastpagefill} is defined,
5628 @c fixme: this should only be done if lastpagefill == #t 
5629 systems are evenly distributed vertically on the last page.  This
5630 might produce ugly results in case there are not enough systems on the
5631 last page.  The @command{lilypond-book} command ignores
5632 @code{lastpagefill}.  See @ref{lilypond-book manual} for more
5633 information.
5634
5635 @cindex @code{lastpagefill}
5636
5637 Page breaks are normally computed by @TeX{}, so they are not under
5638 direct control of LilyPond.  However, you can insert a commands into
5639 the @file{.tex} output to instruct @TeX{} where to break pages.  This
5640 is done by setting the @code{between-systems-strings} on the
5641 @internalsref{NonMusicalPaperColumn} where the system is broken.
5642 An example is shown in @inputfileref{input/regression,between-systems.ly}.
5643
5644 @cindex paper size
5645 @cindex page size
5646 @cindex @code{papersize}
5647
5648 To change the paper size, you must first set the
5649 @code{papersize} paper variable variable.  Set it to
5650 the strings @code{a4}, @code{letter}, or @code{legal}.  After this
5651 specification, you must set the font as described above.  If you want
5652 the default font, then use the 20 point font.
5653
5654 @example
5655         \paper@{ papersize = "a4" @}
5656         \include "paper16.ly"
5657 @end example
5658
5659 The file @code{paper16.ly}  will now include a file named @file{a4.ly}, which
5660 will set the paper variables @code{hsize} and @code{vsize} (used by
5661 Lilypond and @code{ly2dvi})
5662
5663
5664 @seealso
5665
5666 @ref{Invoking ly2dvi},
5667 @inputfileref{input/regression,between-systems.ly},
5668 @internalsref{NonMusicalPaperColumn}.
5669
5670 @refbugs
5671
5672 There is no concept of page breaking, which makes it difficult to
5673 choose sensible page breaks in multi-page pieces.
5674
5675
5676
5677
5678 @node Sound
5679 @section Sound
5680 @cindex Sound
5681
5682 Entered music can also be converted to MIDI output.  The performance
5683 is good enough for proof-hearing the music for errors.
5684
5685
5686 Ties, dynamics and tempo changes are interpreted.  Dynamic marks,
5687 crescendi and decrescendi translate into MIDI volume levels.  Dynamic
5688 marks translate to a fixed fraction of the available MIDI volume
5689 range, crescendi and decrescendi make the the volume vary linearly
5690 between their two extremities.  The fractions be adjusted by
5691 @code{dynamicAbsoluteVolumeFunction} in @internalsref{Voice} context.
5692
5693 For each type of musical instrument (that MIDI supports), a volume range
5694 can be defined.  This gives you basic equalizer control, which can
5695 enhance the quality of the MIDI output remarkably.  The equalizer
5696 can be controlled by setting @code{instrumentEqualizer}.
5697
5698 Both loudness controls are combined to produce the final  MIDI volume. 
5699
5700 @refbugs
5701
5702 Many musically interesting effects, such as swing, articulation,
5703 slurring, etc., are translated to MIDI.
5704
5705
5706 @menu
5707 * MIDI block::                  
5708 * MIDI instrument names::       
5709 @end menu
5710
5711
5712 @node MIDI block
5713 @subsection MIDI block
5714 @cindex MIDI block
5715
5716
5717 The MIDI block is analogous to the paper block, but it is somewhat
5718 simpler.  The @code{\midi} block can contain:
5719 @cindex MIDI block
5720
5721 @itemize @bullet
5722   @item  a @code{\tempo} definition
5723   @item  context definitions
5724 @end itemize
5725
5726 Assignments in the @code{\midi} block are not allowed.
5727
5728
5729
5730 @cindex context definition
5731
5732 Context definitions follow precisely the same syntax as within the
5733 \paper block.  Translation modules for sound are called performers.
5734 The contexts for MIDI output are defined in @file{ly/performer-init.ly}.
5735
5736
5737 @node MIDI instrument names
5738 @subsection MIDI instrument names
5739
5740 @cindex instrument names
5741 @cindex @code{Staff.midiInstrument}
5742 @cindex @code{Staff.instrument}
5743
5744 The MIDI instrument name is set by the @code{Staff.midiInstrument}
5745 property or, if that property is not set, the @code{Staff.instrument}
5746 property.  The instrument name should be chosen from the list in
5747 @ref{MIDI instruments}.
5748
5749 @refbugs
5750
5751 If the selected string does not exactly match, then LilyPond uses the
5752 default (Grand Piano). It is not possible to select an instrument by
5753 number.
5754
5755