]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/refman.itely
* Documentation/user/refman.itely: Compile fix for \mark #'(music ...).
[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
7 @c FIXME: singular vs. plural:  Beams/Beam
8
9
10 @macro refbugs
11 @strong{BUGS}
12
13 @end macro
14
15
16 @c .{Reference Manual}
17
18 @node Reference Manual
19 @chapter Reference Manual
20
21 @html
22 <!--- @@WEB-TITLE@@=Reference Manual --->
23 @end html
24
25 This document describes GNU LilyPond and its input format. The last
26 revision of this document was made for LilyPond 1.4.1.  It supposes a
27 passing familiarity with how LilyPond input works. New users are
28 encouraged to study the tutorial first.
29
30
31 @menu
32 * Note entry::                  
33 * Easier music entry::          
34 * Staff notation::              
35 * Polyphony::                   
36 * Beaming::                     
37 * Accidentals::                 
38 * Expressive marks::            
39 * Ornaments::                   
40 * Repeats::                     
41 * Rhythmic music::              
42 * Piano music::                 
43 * Tablatures::                  
44 * Chords::                      
45 * Writing parts::               
46 * Ancient notation ::           
47 * Tuning output::               
48 * Global layout::               
49 * Output formats::              
50 * Sound::                       
51 @end menu
52
53 @c FIXME: Note entry vs Music entry at top level menu is confusing.
54 @c . {Note entry}
55 @node Note entry
56 @section Note entry
57 @cindex Note entry
58
59 The most basic forms of music are notes.  Notes on their own don't
60 form valid input, but for the sake of brevity we omit @code{\score}
61 blocks and @code{\paper} declarations.
62
63
64 @menu
65 * Notes::                       
66 * Pitches::                     
67 * Chromatic alterations::       
68 * Rests::                       
69 * Skips::                       
70 * Durations::                   
71 * Ties::                        
72 * Automatic note splitting ::   
73 * Tuplets::                     
74 * Easy Notation note heads ::   
75 @end menu
76
77 @c . {Notes}
78 @node Notes
79 @subsection Notes
80
81
82 A note is printed by specifying its pitch, and then its duration.
83 @lilypond[fragment,verbatim]
84   cis'4 d'8 e'16 c'16
85 @end lilypond
86
87 @c .  {Pitches}
88 @node Pitches
89 @subsection Pitches
90
91 @cindex Pitch names
92 @cindex Note specification
93 @cindex pitches
94 @cindex entering notes
95
96 The verbose syntax for pitch specification is
97
98 @cindex @code{\pitch}
99 @example
100   \pitch @var{scmpitch}
101 @end example
102
103 @var{scmpitch} is a pitch scheme object.
104
105 In Note and Chord mode, pitches may be designated by names.  The default
106 names are the Dutch note names.  The notes are specified by the letters
107 @code{a} through @code{g} (where the octave is formed by notes ranging
108 from @code{c} to @code{b}).  The pitch @code{c} is an octave below
109 middle C and the letters span the octave above that C.
110
111 @cindex note names, Dutch
112
113 In Dutch, a sharp is formed by adding @code{-is} to the end of a pitch
114 name and a flat is formed by adding @code{-es}. Double sharps and double
115 flats are obtained by adding @code{-isis} or @code{-eses}.  @code{aes}
116 and @code{ees} are contracted to @code{as} and @code{es} in Dutch, but
117 both forms are accepted.
118
119 LilyPond has predefined sets of note names for various other languages.
120 To use them, simply include the language specific init file.  For
121 example: @code{\include "english.ly"}.  The available language files and
122 the names they define are:
123
124 @example 
125                         Note Names               sharp       flat
126 nederlands.ly  c   d   e   f   g   a   bes b   -is         -es
127 english.ly     c   d   e   f   g   a   bf  b   -s/-sharp   -f/-flat
128 deutsch.ly     c   d   e   f   g   a   b   h   -is         -es
129 norsk.ly       c   d   e   f   g   a   b   h   -iss/-is    -ess/-es
130 svenska.ly     c   d   e   f   g   a   b   h   -iss        -ess
131 italiano.ly    do  re  mi  fa  sol la  sib si  -d          -b
132 catalan.ly     do  re  mi  fa  sol la  sib si  -d/-s       -b 
133 espanol.ly     do  re  mi  fa  sol la  sib si  -s          -b 
134
135 @end example 
136
137 @cindex @code{'}
138 @cindex @code{,}
139
140
141
142 The optional octave specification takes the form of a series of
143 single quote (`@code{'}') characters or a series of comma
144 (`@code{,}') characters.  Each @code{'} raises the pitch by one
145 octave; each @code{,} lowers the pitch by an octave.
146
147 @lilypond[fragment,verbatim,center]
148   c' c'' es' g' as' gisis' ais'  
149 @end lilypond
150
151 @node Chromatic alterations
152 @subsection Chromatic alterations
153
154 Normally, accidentals are printed automatically, but you may force
155 accidentals in the following ways: A reminder accidental
156 @cindex reminder accidental
157 @cindex @code{?}
158 can be forced by adding an exclamation mark @code{!} after the pitch.  A
159 cautionary accidental,
160 @cindex cautionary accidental
161 @cindex parenthesized accidental
162 i.e., an accidental within parentheses can be obtained by adding the
163 question mark `@code{?}' after the pitch.
164
165 The automatic production of accidentals can be tuned in many
166 ways. Refer to @ref{Accidentals} for more information.
167
168 @c .  {Rests}
169 @node  Rests
170 @subsection Rests
171 @cindex Rests
172
173 A rest is entered like a note, with note name `@code{r}':
174
175 @lilypond[singleline,verbatim]
176 r1 r2 r4 r8
177 @end lilypond
178
179 Whole bar rests centered in the bar are specified using @code{R}, see
180 @ref{Multi measure rests}. See also @seeinternals{Rest}.
181
182 For polyphonic music, it can be convenient to specify the rest position
183 directly. You can do that by entering a note, with the keyword
184 @code{\rest} appended, e.g. Rest collisions will leave these rests alone.
185
186 @lilypond[singleline,verbatim]
187 a'4\rest d'4\rest
188 @end lilypond
189
190
191 @c .  {Skips}
192 @c FIXME: naming.
193 @node Skips
194 @subsection Skips
195 @cindex Skip
196 @cindex Invisible rest
197 @cindex Space note
198
199 An invisible rest, or skip, can be entered like a note with note name
200 @code{s}, or with @code{\skip @var{duration}}:
201
202 @lilypond[singleline,verbatim]
203 a2 s4 a4 \skip 1 a4 
204 @end lilypond
205
206 The @code{s} syntax  is only available in Note mode and Chord mode. 
207 In other situations, you should use the @code{\skip} command, and it is
208 only available in Note mode and Chord mode.
209
210 @c FIXME: in lyrics mode, we have " " and _
211
212 In Lyrics mode, you can use `@code{" "}' and `@code{_}':
213 @lilypond[singleline,verbatim]
214 <
215   \context Lyrics \lyrics { lah2 di4 " " dah2 _4 di }
216   \notes\relative c'' { a2 a4 a a2 a4 a }
217 >
218 @end lilypond
219
220 The unabbreviated `@code{\skip} @var{duration}' also works outside of
221 note mode:
222
223 @lilypond[singleline,verbatim]
224 \score {
225   \context Staff <
226     { \time 4/8 \skip 2 \time 4/4 } 
227     \notes\relative c'' { a2 a1 }
228   >
229 }
230 @end lilypond
231
232 The skip command is merely a empty musical placeholder. It does not
233 produce any output, not even transparent output.
234
235
236 @c .  {Durations}
237 @node Durations
238 @subsection Durations
239
240
241 @cindex duration
242 @cindex @code{\duration}
243
244
245 In Note, Chord, and Lyrics mode, durations may be designated by numbers
246 and dots: durations are entered as their reciprocal values.  For notes
247 longer than a whole you must use identifiers.
248
249 @example 
250  c'\breve  
251 c'1 c'2 c'4 c'8 c'16 c'32 c'64 c'64 
252 r\longa r\breve  
253 r1 r2 r4 r8 r16 r32 r64 r64 
254 @end example 
255
256
257 @lilypond[]
258 \score {
259   \notes \relative c'' {
260     a\breve  \autoBeamOff
261     a1 a2 a4 a8 a16 a32 a64 a64 
262     r\longa r\breve  
263     r1 r2 r4 r8 r16 r32 r64 r64 
264   }
265   \paper {
266     \translator {
267       \StaffContext
268         \remove "Clef_engraver"
269         \remove "Staff_symbol_engraver"
270         \remove "Time_signature_engraver"
271         \consists "Pitch_squash_engraver"
272     }
273   }
274 }
275 @end lilypond
276
277
278 If the duration is omitted then it is set to the previous duration
279 entered.  At the start of parsing a quarter note is assumed.  The
280 duration can be followed by dots (`@code{.}')  to obtain dotted note
281 lengths.
282 @cindex @code{.}
283
284 @lilypond[fragment,verbatim,center]
285   a'4. b'4.. c'8.
286 @end lilypond
287 @cindex @code{r}
288 @cindex @code{s}
289
290 You can alter the length of duration by a fraction @var{N/M} by
291 appending `@code{*}@var{N/M}' (or `@code{*}@var{N}' if @var{M=1}). This
292 will not affect the appearance of the notes or rests produced.
293
294 Durations can also be produced through GUILE extension mechanism. 
295 @lilypond[verbatim,fragment]
296  c\duration #(make-duration 2 1)
297 @end lilypond
298
299
300 @node Ties
301 @subsection Ties
302
303 @cindex Tie
304 @cindex ties
305 @cindex @code{~}
306
307 A tie connects two adjacent note heads of the same pitch.  The tie in
308 effect extends the length of a note. A tie is entered with @code{~}.
309
310 @lilypond[fragment,verbatim,center]
311   e' ~ e' <c' e' g'> ~ <c' e' g'>
312 @end lilypond
313
314 When ties are used with chords, all note heads whose pitches match are
315 connected.  Ties are indicated using the tilde symbol `@code{~}'.  If
316 you try to tie together chords which have no common pitches then no
317 ties will be created.
318
319 If you want less  ties created for a chord, you can  set
320 @code{Voice.sparseTies} to true. In this case, a single tie is used
321 for every tied chord.
322 @lilypond[fragment,verbatim,center]
323   \property Voice.sparseTies = ##t
324   <c' e' g'> ~ <c' e' g'>
325 @end lilypond
326
327 In its meaning a tie is just a way of extending a note duration, similar
328 to the augmentation dot: the following example are two ways of notating
329 exactly the same concept.
330 @c
331 @lilypond[fragment, singleline]
332 \time 3/4 c'2. c'2 ~ c'4
333 @end lilypond
334 Ties should not be confused with slurs, which indicate articulation,
335 and phrasing slurs, which indicate musical phrasing.
336
337 See also  @seeinternals{Tie}.
338
339
340 @refbugs
341
342 At present, the tie is represented as a separate event, temporally
343 located in between the notes.  Tieing only a subset of the note heads
344 of a chord is not supported in a simple way.  It can be achieved by
345 moving the tie-engraver into the Thread context and turning on and off
346 ties per Thread.
347
348 @node Automatic note splitting 
349 @subsection Automatic note splitting
350 @c FIXME: This subsection doesn't belong in @ref{Note entry}.
351
352 There is a facility for automatically converting long notes to  tied
353 notes. This is done by replacing the @code{Note_heads_engraver} by the
354 @code{Completion_heads_engraver}. 
355
356 @lilypond[verbatim,center]
357 \score{
358   \notes\relative c'{ \time 2/4
359   c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2 
360   }
361   \paper{ \translator{
362       \ThreadContext
363       \remove "Note_heads_engraver"
364       \consists "Completion_heads_engraver"
365   } } }
366 @end lilypond
367
368 This engraver splits all running notes at the bar line, and inserts
369 ties. One of its uses is to debug complex scores: if the measures are
370 not entirely filled, then the ties exactly show how much each measure
371 is off.
372
373 @refbugs
374
375 Not all durations (especially those containing tuplets) can be
376 represented exactly; the engraver will not insert tuplets. 
377
378 @node Tuplets
379 @subsection Tuplets
380
381 @cindex tuplets
382 @cindex triplets
383 @cindex @code{\times}
384
385 Tuplets are made out of a music expression by multiplying all duration
386 with a fraction.
387
388 @cindex @code{\times}
389 @example
390   \times @var{fraction} @var{musicexpr}
391 @end example
392
393 The duration of @var{musicexpr} will be multiplied by the fraction. 
394 In print, the fraction's denominator will be printed over the notes,
395 optionally with a bracket.  The most common tuplet is the triplet in
396 which 3 notes have the length of 2, so the notes are 2/3 of
397 their written length:
398
399 @lilypond[fragment,verbatim,center]
400   g'4 \times 2/3 {c'4 c' c'} d'4 d'4
401 @end lilypond
402
403 The property @code{tupletSpannerDuration} specifies how long each bracket
404 should last.  With this, you can make lots of tuplets while typing
405 @code{\times} only once, thus  saving typing work.
406
407 @lilypond[fragment,  relative, singleline, verbatim]
408 \property Voice.tupletSpannerDuration = #(make-moment 1 4)
409 \times 2/3 { c'8 c c c c c }
410 @end lilypond
411
412 The format of the number is determined by the property
413 @code{tupletNumberFormatFunction}. The default prints only the
414 denominator, but if you set it to the Scheme function
415 @code{fraction-tuplet-formatter}, Lilypond will print @var{num}:@var{den}
416 instead.
417
418
419 @cindex @code{tupletNumberFormatFunction}
420 @cindex tuplet formatting 
421
422 See also @seeinternals{TupletBracket}.
423
424 @refbugs
425
426 Nested tuplets are not formatted automatically. In this case, outer
427 tuplet brackets should be moved automatically.
428
429 @node Easy Notation note heads 
430 @subsection Easy Notation note heads
431
432 @cindex easy notation
433 @cindex Hal Leonard
434
435 A entirely different type of note head is the "easyplay" note head: a
436 note head that includes a note name.  It is used in some publications by
437 Hal-Leonard Inc.  music publishers.
438
439 @lilypond[singleline,verbatim]
440 \include "paper23.ly"
441 \score {
442   \notes { c'2 e'4 f' | g'1 }
443   \paper { \translator { \EasyNotation } } 
444 }
445 @end lilypond
446
447 Note that @code{EasyNotation} overrides a @internalsref{Score} context.  You
448 probably will want to print it with magnification to make it more
449 readable.
450
451
452 @cindex Xdvi
453 @cindex ghostscript
454
455 If you view the result with Xdvi, then staff lines will show through
456 the letters.  Printing the postscript file obtained with ly2dvi does
457 produce the correct result.
458
459
460 @node Easier music entry
461 @section Easier music entry
462 @cindex Music entry
463 @menu
464 * Relative octaves::            
465 * Bar check::                   
466 * Point and click::             
467 * Skipping corrected music::    
468 @end menu
469
470 When entering music with LilyPond, it is easy to introduce errors. This
471 section deals with tricks and features that help you enter music, and
472 find and correct mistakes.
473
474 @c .  {Relative}
475 @node Relative octaves
476 @subsection Relative octaves
477 @cindex Relative
478 @cindex relative octave specification
479
480 Octaves are specified by adding @code{'} and @code{,} to pitch names.
481 When you copy existing music, it is easy to accidentally put a pitch in
482 the wrong octave and hard to find such an error.  To prevent these
483 errors, LilyPond features octave entry.
484
485 @cindex @code{\relative}
486 @example
487   \relative @var{startpitch} @var{musicexpr}
488 @end example
489
490 The octave of notes that appear in @var{musicexpr} are calculated as
491 follows: If no octave changing marks are used, the basic interval
492 between this and the last note is always taken to be a fourth or less
493 (This distance is determined without regarding alterations; a
494 @code{fisis} following a @code{ceses} will be put above the
495 @code{ceses})
496
497 The octave changing marks @code{'} and @code{,} can be added to raise or
498 lower the pitch by an extra octave.  Upon entering relative mode, an
499 absolute starting pitch must be specified that will act as the
500 predecessor of the first note of @var{musicexpr}.
501
502 Entering music that changes octave frequently  is easy in relative mode.
503 @lilypond[fragment,singleline,verbatim,center]
504   \relative c'' {
505     b c d c b c bes a 
506   }
507 @end lilypond
508
509 And octave changing marks are used for intervals greater than a fourth.
510 @lilypond[fragment,verbatim,center]
511   \relative c'' {
512     c g c f, c' a, e'' }
513 @end lilypond
514
515 If the preceding item is a chord, the first note of the chord is used
516 to determine the first note of the next chord. However, other notes
517 within the second chord are determined by looking at the immediately
518 preceding note.
519
520 @lilypond[fragment,verbatim,center]
521   \relative c' {
522     c <c e g> 
523     <c' e g>
524     <c, e' g>
525   }
526 @end lilypond 
527 @cindex @code{\notes}
528
529 The pitch after the @code{\relative} contains a note name.  To parse
530 the pitch as a note name, you have to be in note mode, so there must
531 be a surrounding @code{\notes} keyword (which is not
532 shown here).
533
534 The relative conversion will not affect @code{\transpose},
535 @code{\chords} or @code{\relative} sections in its argument.  If you
536 want to use relative within transposed music, you must place an
537 additional @code{\relative} inside the @code{\transpose}.
538
539
540 @c .  {Bar check}
541 @node Bar check
542 @subsection Bar check
543 @cindex Bar check
544
545 @cindex bar check
546 @cindex @code{barCheckSynchronize}
547 @cindex @code{|}
548
549
550 Whenever a bar check is encountered during interpretation, a warning
551 message is issued if it doesn't fall at a measure boundary.  This can
552 help you find errors in the input.  Depending on the value of
553 @code{barCheckSynchronize}, the beginning of the measure will be
554 relocated, so this can also be used to shorten measures.
555
556 A bar check is entered using the bar symbol, @code{|}:
557 @example
558   \time 3/4 c2 e4 | g2.
559 @end example
560
561
562
563 @cindex skipTypesetting
564
565 Failed bar checks are most often caused by entering incorrect
566 durations. Incorrect durations often completely garble up the score,
567 especially if it is polyphonic, so you should start correcting the score
568 by scanning for failed bar checks and incorrect durations.  To speed up
569 this process, you can use @code{skipTypesetting} (See @ref{Skipping
570 corrected music})). 
571
572 @c .  {Point and click}
573 @node Point and click
574 @subsection Point and click
575
576 Point and click lets you find notes in the input by clicking on them in
577 the Xdvi window. This makes it very easy to find input that causes some
578 error in the sheet music.
579
580 To use it, you need the following software
581
582 @itemize @bullet
583 @item 
584 @uref{ftp://ftp.math.berkeley.edu/pub/Software/TeX/xdvi.tar.gz,plain
585 Xdvi} version 22.36 or newer.
586
587   Note that most @TeX{} distributions ship with xdvik, which is a
588   different and less well maintained program. To find out which xdvi you
589   are running, try @code{xdvi --version} or @code{xdvi.bin --version}.
590 @item Emacs. Emacs is an extensible text-editor It is available from
591 @uref{http://www.gnu.org/software/emacs/}. You need version 21 to use
592 column location.
593 @end itemize
594
595 Xdvi must be configured to find the @TeX{} fonts and music
596 fonts. Refer to the Xdvi documentation for more information.
597
598 To use point-and-click, add one of these lines to the top of your .ly
599 file.
600 @example
601 #(set! point-and-click line-location)
602 @end example
603
604 In the emacs startup file (usually @file{~/.emacs}), add the following
605 @example
606 (server-start)
607 @end example
608
609 Make sure that the environment variable @code{XEDITOR} is set to
610 @example
611 emacsclient --no-wait +%l %f
612 @end example
613
614 When viewing, Control-Mousebutton 1 will take you to the originating
615 spot in the @file{.ly} file. Control-Mousebutton 2 will show all
616 clickable boxes.
617
618 If you use Emacs version 21, then you can make emacs jump to the exact
619 spot (and not just the line) on a click, you must enable column
620 positioning.  At the top of the @code{ly} file, replace the
621 @code{set!} line with the following line
622 @example
623 #(set! point-and-click line-column-location)
624 @end example
625 Set @code{XEDITOR} to @code{emacsclient --no-wait +%l:%c %f}.
626
627 If you correct large files with point-and-click, be sure to start
628 correcting at the end of the file. When you start at the top, and
629 insert one line, all following locations will be off by a line.
630
631
632 @refbugs
633
634 When you convert the @TeX{} file to PostScript using @code{dvips}, it
635 will complain about not finding @code{src:X:Y} files. These complaints
636 are harmless, and can be ignored.
637
638 @node Skipping corrected music
639 @subsection Skipping corrected music
640
641 The property @code{Score.skipTypesetting} can be used to switch on and
642 off typesetting completely during the interpretation phase. When
643 typesetting is switched off, the music is processed much more quickly.
644 You can use this to skip over the parts of a score that you have already
645 checked for errors. 
646
647 @lilypond[fragment,singleline,verbatim]
648 \relative c'' { c8 d
649 \property Score.skipTypesetting = ##t
650   e f g a g c, f e d
651 \property Score.skipTypesetting = ##f
652 c d b bes a g c2 } 
653 @end lilypond
654
655
656
657
658 @node Staff notation
659 @section Staff notation
660
661 This section deals with music notation that occurs on staff level,
662 such as keys, clefs and time signatures.
663
664 @cindex Staff notation
665
666 @menu
667 * Key signature::               
668 * Clef::                        
669 * Time signature::              
670 * Unmetered music::             
671 * Bar lines::                   
672 @end menu
673
674 @c .  {Key}
675 @node Key signature
676 @subsection Key signature
677 @cindex Key
678
679 @cindex @code{\key}
680
681 Setting or changing the key signature is done with the @code{\key}
682 command.
683 @example
684   @code{\key} @var{pitch} @var{type}
685 @end example
686
687 @cindex @code{\minor}
688 @cindex @code{\major}
689 @cindex @code{\minor}
690 @cindex @code{\ionian}
691 @cindex @code{\locrian}
692 @cindex @code{\aeolian}
693 @cindex @code{\mixolydian}
694 @cindex @code{\lydian}
695 @cindex @code{\phrygian}
696 @cindex @code{\dorian}
697
698 Here, @var{type} should be @code{\major} or @code{\minor} to get
699 @var{pitch}-major or @var{pitch}-minor, respectively.
700 The standard mode names @code{\ionian},
701 @code{\locrian}, @code{\aeolian}, @code{\mixolydian}, @code{\lydian},
702 @code{\phrygian}, and @code{\dorian} are also defined.
703
704 This command sets the context property @code{Staff.keySignature}. 
705 Non-standard key signatures can be specified by setting this property
706 directly.
707
708 The printed signature is a @internalsref{KeySignature} grob, typically
709 created in @internalsref{Staff} context.
710
711 @cindex @code{keySignature}
712
713 @c .  {Clef}
714 @node Clef
715 @subsection Clef
716 @cindex @code{\clef}
717
718 The clef can be set or changed with the @code{\clef} command:
719 @lilypond[fragment,verbatim]
720   \key f\major  c''2 \clef alto g'2
721 @end lilypond
722
723 Supported clef-names include 
724 @c Moved standard clefs to the top /MB
725 @table @code
726 @item treble, violin, G, G2
727 G clef on 2nd line
728 @item alto, C
729  C clef on 3rd line
730 @item tenor
731  C clef on 4th line
732 @item bass, F
733  F clef on 4th line
734 @item french
735  G clef on 1st line, so-called French violin clef
736 @item soprano
737  C clef on 1st line
738 @item mezzosoprano
739  C clef on 2nd line
740 @item baritone
741  C clef on 5th line
742 @item varbaritone
743  F clef on 3rd line
744 @item subbass
745  F clef on 5th line
746 @item percussion
747  percussion clef
748 @end table
749
750 By adding @code{_8} or @code{^8} to the clef name, the clef is
751 transposed one octave down or up, respectively.  Note that you have to
752 enclose @var{clefname} in quotes if you use underscores or digits in the
753 name. For example,
754 @example
755         \clef "G_8"
756 @end example
757
758 The grob for this symbol is @internalsref{Clef}. 
759
760
761 This command is equivalent to setting @code{clefGlyph},
762 @code{clefPosition} (which controls the Y position of the clef),
763 @code{centralCPosition} and @code{clefOctavation}. A clef is created
764 when any of these properties are changed.
765
766
767 @c .  {Time signature}
768 @node Time signature
769 @subsection Time signature
770 @cindex Time signature
771 @cindex meter
772 @cindex @code{\time}
773
774 The time signature is set or changed by the @code{\time}
775 command.
776 @lilypond[fragment,verbatim]
777  \time 2/4 c'2 \time 3/4 c'2. 
778 @end lilypond
779
780 The actual symbol that's printed can be customized with the @code{style}
781 property. Setting it to @code{#'()} uses fraction style for 4/4 and
782 2/2 time.
783
784
785 The grob for this symbol is @internalsref{TimeSignature}.  There are
786 many more options for its layout. They are selected through the
787 @code{style} grob property. See @file{input/test/time.ly} for more
788 examples.
789
790 This command sets the property @code{timeSignatureFraction},
791 @code{beatLength} and @code{measureLength}.  The property
792 @code{timeSignatureFraction} determine where bar lines should be
793 inserted, and how automatic beams should be generated.  Changing the
794 value of @code{timeSignatureFraction} also causes a time signature
795 symbol to be printed.
796
797 @c .   {Partial}
798 @subsection Partial
799 @cindex Partial
800 @cindex anacrusis
801 @cindex upbeat
802 @cindex partial measure
803 @cindex measure, partial
804 @cindex shorten measures
805 @cindex @code{\partial}
806
807 Partial measures, for example in upbeats, are entered using the
808 @code{\partial} command:
809 @lilypond[fragment,verbatim]
810 \partial 4* 5/16  c'16 c4 f16 a'2. ~ a'8. a'16 | g'1
811 @end lilypond
812
813 The syntax for this command is 
814 @example
815   \partial @var{duration} 
816 @end example
817 This is  internally translated into
818 @example
819   \property Score.measurePosition = -@var{length of duration}
820 @end example
821 @cindex @code{|}
822 The property @code{measurePosition} contains a rational number
823 indicating how much of the measure has passed at this point.
824
825
826 @node Unmetered music
827 @subsection Unmetered music
828
829 Bar lines and bar numbers are calculated automatically. For unmetered
830 music (e.g. cadenzas), this is not desirable.  The commands
831 @code{\cadenzaOn} and @code{\cadenzaOff} can be used to switch off the
832 timing information:
833
834 @lilypond[fragment,relative,singleline,verbatim]
835 c'2.
836 \cadenzaOn
837 c2
838 \cadenzaOff
839 c4 c4 c4 
840 @end lilypond
841
842 The property @code{Score.timing} can be used to switch off this
843 automatic timing
844
845 @c .   {Bar lines}
846 @node Bar lines
847 @subsection Bar lines
848 @cindex Bar lines
849
850 @cindex @code{\bar}
851 @cindex measure lines
852 @cindex repeat bars
853
854 Bar lines are inserted automatically, but if you need a special type
855 of barline, you can force one using the @code{\bar} command:
856 @lilypond[fragment,verbatim] c4 \bar "|:" c4
857 @end lilypond
858
859 The following bar types are available
860 @lilypond[fragment,  relative, singleline, verbatim]
861 c4
862 \bar "|" c
863 \bar "" c
864 \bar "|:" c
865 \bar "||" c
866 \bar ":|" c
867 \bar ".|" c
868 \bar ".|." c
869 \bar "|." 
870 @end lilypond
871
872 You are encouraged to use @code{\repeat} for repetitions.  See
873 @ref{Repeats}.
874
875 In scores with many staffs, the barlines are automatically placed at
876 top level, and they are connected between different staffs of a
877 @internalsref{StaffGroup}:
878 @lilypond[fragment, verbatim]
879 < \context StaffGroup <
880   \context Staff = up { e'4 d'
881      \bar "||"
882      f' e' }
883   \context Staff = down { \clef bass c4 g e g } >
884 \context Staff = pedal { \clef bass c2 c2 } >
885 @end lilypond
886
887 The grobs that are created at @internalsref{Staff} level. The name is
888 @internalsref{BarLine}.
889
890 The command @code{\bar @var{bartype}} is a short cut for
891 doing  @code{\property Score.whichBar = @var{bartype}}
892 Whenever @code{whichBar} is set to a string, a bar line of that type is
893 created.  @code{whichBar} is usually set automatically: at the start of
894 a measure it is set to @code{defaultBarType}. The contents of
895 @code{repeatCommands} is used to override default measure bars.
896
897 @code{whichBar} can also be set directly, using @code{\property} or
898 @code{\bar  }.  These settings take precedence over the automatic
899 @code{whichBar} settings. 
900
901
902 @cindex Bar_line_engraver
903 @cindex whichBar
904 @cindex repeatCommands
905 @cindex defaultBarType
906
907
908
909 @c .   {Polyphony}
910 @node Polyphony
911 @section Polyphony
912 @cindex polyphony
913
914 The easiest way to enter such fragments with more than one voice on a
915 staff is to split chords using the separator @code{\\}.  You can use
916 it for small, short-lived voices (make a chord of voices) or for
917 single chords:
918
919 @lilypond[verbatim,fragment]
920 \context Voice = VA \relative c'' {
921  c4 < { f d e  } \\ { b c2 } > c4 < g' \\ b, \\  f \\ d >
922 }
923 @end lilypond
924
925 The separator causes @internalsref{Voice} contexts to be instantiated,
926 bearing the names @code{"1"}, @code{"2"}, etc.
927
928 Sometimes, it is necessary to instantiate these contexts by hand: For
929 Instantiate a separate Voice context for each part, and use
930 @code{\voiceOne}, up to @code{\voiceFour} to assign a stem directions
931 and horizontal shift for each part.
932 @c
933
934 @lilypond[singleline, verbatim]
935 \relative c''
936 \context Staff < \context Voice = VA { \voiceOne cis2 b  }
937   \context Voice = VB { \voiceThree b4 ais ~ ais4 gis4 } 
938   \context Voice = VC { \voiceTwo fis4~  fis4 f ~ f  } >
939 @end lilypond
940
941 The identifiers @code{\voiceOne} to @code{\voiceFour} set directions
942 ties, slurs and stems, and set shift directions.
943
944 If you want more than four voices, you can also manually set
945 horizontal shifts and stem directions, as is shown  in the following example:
946 @lilypond[fragment, verbatim]
947   \context Staff \notes\relative c''<
948        \context Voice=one {
949        \shiftOff \stemUp e4
950        }
951        \context Voice=two {
952           \shiftOn \stemUp cis
953        }
954        \context Voice=three {
955          \shiftOnn \stemUp ais
956        }
957        \context Voice=four {
958           \shiftOnnn \stemUp fis
959        }
960   >
961 @end lilypond
962
963
964 Normally, note heads with a different number of dots are not merged, but
965 if you set the grob property @code{merge-differently-dotted}, they are:
966 @lilypond[verbatim,fragment,singleline]
967 \context Voice < {
968      g'8 g'8 
969      \property Staff.NoteCollision \override
970         #'merge-differently-dotted = ##t
971      g'8 g'8
972   } \\ { [g'8. f16] [g'8. f'16] } 
973   >
974 @end lilypond
975
976 Similarly, you can merge half note heads with eighth notes, by setting
977 @code{merge-differently-headed}:
978 @lilypond[fragment, relative=2,verbatim]
979 \context Voice < {
980     c8 c4.
981     \property Staff.NoteCollision
982       \override #'merge-differently-headed = ##t
983     c8 c4. } \\ { c2 c2 } >
984 @end lilypond
985
986 LilyPond also vertically shifts rests that are opposite of a stem. 
987
988 @lilypond[singleline,fragment,verbatim]
989 \context Voice < c''4 \\  r4 >
990 @end lilypond
991
992 See also @internalsref{NoteCollision} and @internalsref{RestCollision}
993
994 @refbugs
995
996 Resolving collisions is a very intricate subject, and LilyPond only
997 handles a few situations. When it can not cope, you are advised to use
998 @code{force-hshift} of the @internalsref{NoteColumn} grob and pitched
999 rests to override typesetting decisions.
1000
1001 @node Beaming
1002 @section Beaming
1003
1004 Beams are used to group short notes into chunks that are aligned with
1005 the metrum. They are inserted automatically in most cases.
1006
1007 @lilypond[fragment,verbatim, relative=2]
1008 \time 2/4 c8 c c c \time 6/8 c c c c8. c16  c8
1009 @end lilypond
1010
1011 If you're not satisfied with the automatic beaming, you can enter the
1012 beams explicitly. If you have beaming patterns that differ from the
1013 defaults, you can also set the patterns for automatic beamer.
1014
1015 See also @internalsref{Beam}.
1016
1017 @c .    {Manual beams}
1018 @cindex Automatic beams
1019 @subsection Manual beams
1020 @cindex beams, manual
1021 @cindex @code{]}
1022 @cindex @code{[}
1023
1024 In some cases it may be necessary to override LilyPond's automatic
1025 beaming algorithm.  For example, the auto beamer will not beam over
1026 rests or bar lines, If you want that, specify the begin and end point
1027 manually using a @code{[} before the first beamed note and a @code{]}
1028 after the last note:
1029
1030 @lilypond[fragment,relative,verbatim]
1031   \context Staff {
1032     r4 [r8 g' a r8] r8 [g | a] r8
1033   }
1034 @end lilypond
1035
1036 @cindex @code{stemLeftBeamCount}
1037
1038 Normally, beaming patterns within a beam are determined automatically.
1039 When this mechanism fouls up, the properties
1040 @code{Voice.stemLeftBeamCount} and @code{Voice.stemRightBeamCount} can
1041 be used to control the beam subdivision on a stem.  If you set either
1042 property, its value will be used only once, and then it is erased.
1043
1044 @lilypond[fragment,relative,verbatim]
1045   \context Staff {
1046     [f8 r16 f g a]
1047     [f8 r16 \property Voice.stemLeftBeamCount = #1 f g a]
1048   }
1049 @end lilypond
1050 @cindex @code{stemRightBeamCount}
1051
1052
1053 The property @code{subdivideBeams} can be set in order to subdivide
1054 all 16th or shorter beams at beat positions.  This accomplishes the
1055 same effect as twiddling with @code{stemLeftBeamCount} and
1056 @code{stemRightBeamCount}, but it take less typing.
1057
1058
1059 @example
1060 [c16 c c c c c c c]
1061 \property Voice.subdivideBeams = ##t
1062 [c16 c c c c c c c]
1063 [c32 c c c c c c c c c c c c c c c]
1064 \property Score.beatLength = #(make-moment 1 8)
1065 [c32 c c c c c c c c c c c c c c c]
1066 @end example
1067 @lilypond[]
1068 \score {
1069     \notes \relative c' {
1070         [c16 c c c c c c c]
1071         \property Voice.subdivideBeams = ##t
1072         [c16 c c c c c c c]
1073         [c32 c c c c c c c c c c c c c c c]
1074         \property Score.beatLength = #(make-moment 1 8)
1075         [c32 c c c c c c c c c c c c c c c]
1076     }
1077 }
1078 @end lilypond
1079 @cindex subdivideBeams
1080
1081 Kneed beams are inserted automatically, when a large gap between two
1082 adjacent beamed notes is detected. This behavior can be tuned through
1083 the grob property @code{auto-knee-gap}.
1084
1085 @cindex beams, kneed
1086 @cindex kneed beams
1087 @cindex auto-knee-gap
1088 @cindex hara kiri
1089
1090
1091 @c TODO -> why this ref? Document? 
1092 @cindex @code{neutral-direction}
1093
1094 @refbugs
1095
1096 Auto knee beams can not be used together with hara kiri staffs.
1097
1098 @menu
1099 * Setting automatic beam behavior ::  
1100 @end menu
1101
1102 @ignore
1103 @no de Beam typography
1104 @sub section Beam typography
1105
1106 One of the strong points of LilyPond is how beams are formatted. Beams
1107 are quantized, meaning that the left and right endpoints beams start
1108 exactly on staff lines. Without quantization, small wedges of white
1109 space appear between the beam and staff line, and this looks untidy.
1110
1111 Beams are also slope-damped: melodies that go up or down should also
1112 have beams that go up or down, but the slope of the beams should be
1113 less than the slope of the notes themselves.
1114
1115 Some beams should be horizontal. These are so-called concave beams. 
1116
1117 [TODO: some pictures.]
1118 @end ignore
1119
1120 @c .    {Automatic beams}
1121 @node Setting automatic beam behavior 
1122 @subsection Setting automatic beam behavior 
1123
1124 @cindex @code{autoBeamSettings}
1125 @cindex @code{(end * * * *)}
1126 @cindex @code{(begin * * * *)}
1127 @cindex automatic beams, tuning
1128 @cindex tuning automatic beaming
1129
1130 In normal time signatures, automatic beams can start on any note but can
1131 only end in a few positions within the measure: beams can end on a beat,
1132 or at durations specified by the properties in
1133 @code{Voice.autoBeamSettings}. The defaults for @code{autoBeamSettings}
1134 are defined in @file{scm/auto-beam.scm}.
1135
1136 The value of @code{autoBeamSettings} is changed using
1137 @code{\override} and unset using @code{\revert}:
1138 @example
1139 \property Voice.autoBeamSettings \override #'(@var{BE} @var{P} @var{Q} @var{N} @var{M}) = @var{dur}
1140 \property Voice.autoBeamSettings \revert #'(@var{BE} @var{P} @var{Q} @var{N} @var{M})
1141 @end example
1142 Here, @var{BE} is the symbol @code{begin} or @code{end}. It determines
1143 whether the rule applies to begin or end-points.  The quantity
1144 @var{P}/@var{Q} refers to the length of the beamed notes (and `@code{*
1145 *}' designates notes of any length), @var{N}/@var{M} refers to a time
1146 signature (wildcards, `@code{* *}' may be entered to designate all time
1147 signatures).
1148
1149 For example, if you want automatic beams to end on every quarter note,
1150 you can use the following:
1151 @example
1152 \property Voice.autoBeamSettings \override
1153     #'(end * * * *) = #(make-moment 1 4)
1154 @end example
1155 Since the duration of a quarter note is 1/4 of a whole note, it is
1156 entered as @code{(make-moment 1 4)}.
1157
1158 The same syntax can be used to specify beam starting points. In this
1159 example, automatic beams can only end on a dotted quarter note. 
1160 @example
1161 \property Voice.autoBeamSettings \override
1162     #'(end * * * *) = #(make-moment 3 8)
1163 @end example
1164 In 4/4 time signature, this means that automatic beams could end only on
1165 3/8 and on the fourth beat of the measure (after 3/4, that is 2 times
1166 3/8 has passed within the measure).
1167
1168 You can also restrict rules to specific time signatures. A rule that
1169 should only be applied in @var{N}/@var{M} time signature is formed by
1170 replacing the second asterisks by @var{N} and @var{M}. For example, a
1171 rule for 6/8 time exclusively looks like
1172 @example
1173 \property Voice.autoBeamSettings \override
1174     #'(begin * * 6 8) =  ... 
1175 @end example
1176
1177 If you want a rule to apply to certain types of beams, you can use the
1178 first pair of asterisks. Beams are classified according to the shortest
1179 note they contain. For a beam ending rule that only applies to beams
1180 with 32nd notes (and no shorter notes), you would use @code{(end 1
1181 32 * *)}.
1182
1183 @c not true
1184 @c Automatic beams can not be put on the last note in a score.
1185
1186 If a score ends while an automatic beam has not been ended and is still
1187 accepting notes, this last beam will not be typeset at all.
1188
1189 @cindex automatic beam generation
1190 @cindex autobeam
1191 @cindex @code{Voice.autoBeaming}
1192 @cindex lyrics
1193
1194 For melodies that have lyrics, you may want to switch off 
1195 automatic beaming. This is done by setting @code{Voice.autoBeaming} to
1196 @code{#f}. 
1197
1198
1199 @refbugs
1200
1201 It is not possible to specify beaming parameters for beams with mixed
1202 durations, that differ from the beaming parameters of all separate
1203 durations, i.e., you'll have to specify manual beams to get:
1204 @lilypond[fragment,singleline,relative]
1205   \property Voice.autoBeamSettings
1206   \override #'(end * * * *) = #(make-moment 3 8)
1207   \time 12/8 c'8 c c c16 c c c c c [c c c c] c8 c c4
1208 @end lilypond
1209
1210 It is not possible to specify beaming parameters that act differently in
1211 different parts of a measure. This means that it is not possible to use
1212 automatic beaming in irregular meters such as @code{5/8}.
1213
1214 @node Accidentals
1215 @section Accidentals
1216 @cindex Accidentals
1217 This section describes how to change the way that LilyPond automatically
1218 inserts accidentals before the running notes.
1219
1220 @menu
1221 * Using the predefined accidental macros::  
1222 * Defining your own accidental typesettings::  
1223 @end menu
1224
1225 @node Using the predefined accidental macros
1226 @subsection Using the predefined accidental macros
1227 The constructs for describing the accidental typesetting rules are
1228 quite hairy, so non-experts should stick to the macros defined in
1229 @file{ly/property-init.ly}.
1230 @cindex @file{property-init.ly}
1231
1232 The normal way of using the macros is to enter the macro name right after the
1233 creation of the context in which the accidental typesetting described
1234 by the macro is to take effect. I.e. if you want to use
1235 piano-accidentals in a pianostaff then you issue
1236 @code{\pianoAccidentals} first thing after the creation of the piano
1237 staff:
1238 @example
1239 \score @{
1240     \notes \relative c'' <
1241         \context Staff = sa @{ cis4 d e2 @}
1242         \context GrandStaff <
1243             \pianoAccidentals
1244             \context Staff = sb @{ cis4 d e2 @}
1245             \context Staff = sc @{ es2 c @}
1246         >
1247         \context Staff = sd @{ es2 c @}
1248     >
1249 @}
1250 @end example
1251 @lilypond[singleline]
1252 \score {
1253     \notes \relative c'' <
1254         \context Staff = sa { cis4 d e2 }
1255         \context GrandStaff <
1256             \pianoAccidentals
1257             \context Staff = sb { cis4 d e2 }
1258             \context Staff = sc { es2 c }
1259         >
1260         \context Staff = sd { es2 c }
1261     >
1262     \paper {
1263         \translator {
1264             \StaffContext
1265             minimumVerticalExtent = #'(-4.0 . 4.0)
1266         }
1267     }
1268 }
1269 @end lilypond
1270
1271 The macros are:
1272 @table @code
1273 @item \defaultAccidentals
1274       @cindex @code{\defaultAccidentals}
1275       This is the default typesetting behaviour. It should correspond
1276       to 18th century common practice: Accidentals are
1277       remembered to the end of the measure in which they occur and
1278       only on their own octave.
1279
1280 @item \voiceAccidentals
1281       @cindex @code{\voiceAccidentals}
1282       The normal behaviour is to remember the accidentals on
1283       Staff-level.
1284       This macro, however, typesets accidentals individually for each
1285       voice.
1286       Apart from that the rule is similar to
1287       @code{\defaultAccidentals}.
1288
1289       Warning: This leads to some weird and often unwanted results
1290       because accidentals from one voice DO NOT get cancelled in other
1291       voices:
1292 @lilypond[singleline,relative,fragment,verbatim]
1293     \context Staff <
1294         \voiceAccidentals
1295         \context Voice=va { \voiceOne es g }
1296         \context Voice=vb { \voiceTwo c, e }
1297     >
1298 @end lilypond
1299       Hence you should only use @code{\voiceAccidentals}
1300       if the voices are to be read solely by
1301       individual musicians. if the staff should be readable also
1302       by one musician/conductor then you should use
1303       @code{\modernVoiceAccidentals} or @code{\modernVoiceCautionaries}
1304       instead.
1305
1306 @item \modernAccidentals
1307       @cindex @code{\modernAccidentals}
1308       This rule should correspond to the common practice in the 20th
1309       century.
1310       The rule is a bit more complex than @code{\defaultAccidentals}:
1311       You get all the same accidentals, but temporary
1312       accidentals also get cancelled in other octaves. Further more,
1313       in the same octave, they also get cancelled in the following measure:
1314 @lilypond[singleline,fragment,verbatim]
1315       \modernAccidentals
1316       cis' c'' cis'2 | c'' c'
1317 @end lilypond
1318
1319 @item \modernCautionaries
1320       @cindex @code{\modernCautionaries}
1321      This rule is similar to @code{\modernAccidentals}, but the
1322      ``extra'' accidentals (the ones not typeset by
1323      @code{\defaultAccidentals}) are typeset as cautionary accidentals
1324      (i.e. in reduced size):
1325 @lilypond[singleline,fragment,verbatim]
1326       \modernCautionaries
1327       cis' c'' cis'2 | c'' c'
1328 @end lilypond
1329
1330 @item \modernVoiceAccidentals
1331       @cindex @code{\modernVoiceAccidentals}
1332       Multivoice accidentals to be read both by musicians playing one voice
1333       and musicians playing all voices.
1334
1335       Accidentals are typeset for each voice, but they ARE cancelled
1336       across voices in the same @internalsref{Staff}.
1337
1338 @item \modernVoiceCautionaries
1339       @cindex @code{\modernVoiceCautionaries}
1340       The same as @code{\modernVoiceAccidentals}, but with the
1341       extra accidentals (the ones not typeset by
1342       @code{\voiceAccidentals}) typeset as cautionaries.
1343       Notice that even though all accidentals typeset by
1344       @code{\defaultAccidentals} ARE typeset by this macro then some
1345       of them are typeset as cautionaries.
1346
1347 @item \pianoAccidentals
1348       @cindex @code{\pianoAccidentals}
1349       20th century practice for piano notation. Very similar to
1350       @code{\modernAccidentals} but accidentals also get cancelled
1351       across the staves in the same @internalsref{GrandStaff} or
1352       @internalsref{PianoStaff}.
1353
1354 @item \pianoCautionaries
1355       @cindex @code{\pianoCautionaries}
1356       As @code{\pianoAccidentals} but with the extra accidentals
1357       typeset as cationaries.
1358
1359 @item \noResetKey
1360       @cindex @code{\noResetKey}
1361       Same as @code{\defaultAccidentals} but with accidentals lasting
1362       ``forever'' and not only until the next measure:
1363 @lilypond[singleline,fragment,verbatim,relative]
1364       \noResetKey
1365       c1 cis cis c
1366 @end lilypond
1367
1368 @item \forgetAccidentals
1369       @cindex @code{\forgetAccidentals}
1370       This is sort of the opposite of @code{\noResetKey}: Accidentals
1371       are not remembered at all - and hence all accidentals are
1372       typeset relative to the key signature, regardless of what was
1373       before in the music:
1374 @lilypond[singleline,fragment,verbatim,relative]
1375       \forgetAccidentals
1376       \key d\major c4 c cis cis d d dis dis
1377 @end lilypond
1378 @end table
1379
1380 @node Defining your own accidental typesettings
1381 @subsection Defining your own accidental typesettings
1382
1383 This section must be considered gurus-only, and hence it must be
1384 sufficient with a short description of the system and a reference to
1385 the internal documentation.
1386
1387 The idea of the algorithm is to try several different rules and then
1388 use the rule that gives the highest number of accidentals.
1389 Each rule cosists of
1390 @table @asis
1391 @item Context:
1392       In which context is the rule applied. I.e. if context is
1393       @internalsref{Score} then all staves share accidentals, and if
1394       context is @internalsref{Staff} then all voices in the same
1395       staff share accidentals, but staves don't - like normally.
1396 @item Octavation:
1397       Whether the accidental changes all octaves or only the current
1398       octave.
1399 @item Lazyness:
1400       Over how many barlines the accidental lasts.
1401       If lazyness is @code{-1} then the accidental is forget
1402       immidiately, and if lazyness is @code{#t} then the accidental
1403       lasts forever.
1404 @end table
1405
1406 As described in the internal documentation of
1407 @reng{Accidental_engraver}, the properties @code{autoAccidentals} and
1408 @code{autoCautionaries} contain lists of rule descriptions. Notice
1409 that the contexts must be listed from in to out - that is
1410 @internalsref{Thread} before @internalsref{Voice},
1411 @internalsref{Voice} before @internalsref{Staff}, etc. 
1412 see the macros in @file{ly/property-init.ly} for examples of how the
1413 properties are set.
1414
1415 @refbugs
1416
1417 Currently the simultaneous notes are considered to be entered in
1418 sequential mode. This means that in a chord the accidentals are
1419 typeset as if the notes in the chord happened one at a time - in the
1420 order in which they appear in the input file.
1421
1422 Of course this is only a problem when you have simultainous notes
1423 which accidentals should depend on each other.
1424 Notice that the problem only occurs when using non-default accidentals
1425 - as the default accidentals only depend on other accidentals on the
1426 same staff and same pitch and hence cannot depend on other
1427 simultainous notes.
1428
1429 This example shows two examples of the same music giving different
1430 accidentals depending on the order in which the notes occur in the
1431 input file:
1432
1433 @lilypond[singleline,fragment,verbatim]
1434 \property Staff.autoAccidentals = #'( Staff (any-octave . 0) )
1435 cis'4 <c'' c'> r2 | cis'4 <c' c''> r2 | <cis' c''> r | <c'' cis'> r | 
1436 @end lilypond
1437
1438 The only solution is to manually insert the problematic
1439 accidentals using @code{!} and @code{?}.
1440
1441 @node Expressive marks
1442 @section Expressive marks
1443
1444 @c .   {Slurs}
1445 @menu
1446 * Slurs ::                      
1447 * Phrasing slurs::              
1448 * Breath marks::                
1449 * Tempo::                       
1450 * Text spanners::               
1451 @end menu
1452
1453 @node Slurs 
1454 @subsection Slurs
1455 @cindex Slurs
1456
1457 A slur indicates that notes are to be played bound or @emph{legato}.
1458 They are entered using parentheses:
1459 @lilypond[fragment,verbatim,center]
1460   f'()g'()a' [a'8 b'(] a'4 g'2 )f'4
1461 @end lilypond
1462
1463 See also @seeinternals{Slur}.
1464
1465 Slurs avoid crossing stems, and are generally attached to note heads.
1466 However, in some situations with beams, slurs may be attached to stem
1467 ends.  If you want to override this layout you can do this through the
1468 grob-property @code{attachment} of @internalsref{Slur} in
1469 @internalsref{Voice} context It's value is a pair of symbols, specifying
1470 the attachment type of the left and right end points.
1471
1472 @lilypond[fragment,relative,verbatim]
1473   \slurUp
1474   \property Voice.Stem \set #'length = #5.5
1475   g'8(g)g4
1476   \property Voice.Slur \set #'attachment = #'(stem . stem)
1477   g8(g)g4
1478 @end lilypond
1479
1480 If a slur would strike through a stem or beam, the slur will be moved
1481 away upward or downward. If this happens, attaching the slur to the
1482 stems might look better:
1483
1484 @lilypond[fragment,relative,verbatim]
1485   \stemUp \slurUp
1486   d32( d'4 )d8..
1487   \property Voice.Slur \set #'attachment = #'(stem . stem)
1488   d,32( d'4 )d8..
1489 @end lilypond
1490
1491 @ignore
1492 Similarly, the curvature of a slur is adjusted to stay clear of note
1493 heads and stems.  When that would increase the curvature too much, the
1494 slur is reverted to its default shape.  The threshold for this
1495 decision is in @internalsref{Slur}'s grob-property @code{beautiful}.
1496 It is loosely related to the enclosed area between the slur and the
1497 notes.  Usually, the default setting works well, but in some cases you
1498 may prefer a curved slur when LilyPond decides for a vertically moved
1499 one.  You can indicate this preference by increasing the
1500 @code{beautiful} value:
1501
1502 @lilyp ond[verbatim,singleline,relative]
1503   \stemDown \slurUp
1504   c16( a' f' a a f a, )c,
1505   c( a' f' a a f d, )c
1506   \property Voice.Slur \override #'beautiful = #5.0
1507   c( a' f' a a f d, )c
1508 @end lilypond
1509 @end ignore
1510
1511 @refbugs
1512
1513 Producing nice slurs is a difficult problem, and LilyPond currently
1514 uses a simple, empiric method to produce slurs. In some cases, the
1515 results of this method are ugly.
1516
1517 @ignore
1518 This is reflected by the
1519 @code{beautiful} property, which it is an arbitrary parameter in the
1520 slur formatter.  Useful values can only be determined by trial and
1521 error.
1522 @end ignore
1523
1524 @cindex Adjusting slurs
1525
1526 @node Phrasing slurs
1527 @subsection Phrasing slurs
1528
1529 @cindex phrasing slurs
1530 @cindex phrasing marks
1531
1532 A phrasing slur (or phrasing mark) connects chords and is used to
1533 indicate a musical sentence. It is started using @code{\(} and @code{\)}
1534 respectively.
1535
1536 @lilypond[fragment,verbatim,center,relative]
1537   \time 6/4 c' \(  d () e f () e  \) d
1538 @end lilypond
1539
1540 Typographically, the phrasing slur behaves almost exactly like a normal
1541 slur. See also  @seeinternals{PhrasingSlur}.
1542
1543
1544 @node Breath marks
1545 @subsection Breath marks
1546
1547 Breath marks are entered using @code{\breathe}.  See also
1548 @seeinternals{BreathingSign}.
1549
1550 @lilypond[fragment,relative]
1551 c'4 \breathe d4
1552 @end lilypond
1553
1554
1555 @c .  {Tempo}
1556 @node Tempo
1557 @subsection Tempo
1558 @cindex Tempo
1559 @cindex beats per minute
1560 @cindex metronome marking
1561
1562 Metronome settings can be entered as follows:
1563
1564 @cindex @code{\tempo}
1565 @example
1566   \tempo @var{duration} = @var{perminute} 
1567 @end example
1568
1569 For example, @code{\tempo 4 = 76} requests output with 76 quarter notes
1570 per minute.
1571   
1572 @refbugs
1573   
1574 The tempo setting is not printed, but is only used in the MIDI
1575 output. You can trick lily into producing a metronome mark,
1576 though. Details are in @ref{Text markup}.
1577   
1578
1579
1580 @node Text spanners
1581 @subsection Text spanners
1582 @cindex Text spanners
1583
1584 Some textual indications, e.g. rallentando or accelerando, often extend
1585 over many measures. This is indicated by following the text with a
1586 dotted line.  You can create such texts using text spanners. The syntax
1587 is as follows:
1588 @example
1589 \spanrequest \start "text"
1590 \spanrequest \stop "text"
1591 @end example
1592 LilyPond will respond by creating a @internalsref{TextSpanner} grob (typically
1593 in @internalsref{Voice} context).  The string to be printed, as well as the
1594 style is set through grob properties.
1595
1596 An application---or rather, a hack---is to fake octavation indications.
1597 @lilypond[fragment,relative,verbatim]
1598  \relative c' {  a''' b c a
1599   \property Voice.TextSpanner \set #'type = #'dotted-line
1600   \property Voice.TextSpanner \set #'edge-height = #'(0 . 1.5)
1601   \property Voice.TextSpanner \set #'edge-text = #'("8va " . "")
1602   \property Staff.centralCPosition = #-13
1603   a\spanrequest \start "text" b c a \spanrequest \stop "text" }
1604 @end lilypond
1605
1606
1607 @c .  {Ornaments}
1608 @node Ornaments
1609 @section Ornaments
1610 @cindex Ornaments
1611 @menu
1612 * Articulations::               
1613 * Text scripts::                
1614 * Grace notes::                 
1615 * Glissando ::                  
1616 * Dynamics::                    
1617 @end menu
1618
1619 @c .   {Articulation}
1620 @node Articulations
1621 @subsection Articulations
1622 @cindex Articulations
1623
1624 @cindex articulations
1625 @cindex scripts
1626 @cindex ornaments
1627
1628 A variety of symbols can appear above and below notes to indicate
1629 different characteristics of the performance. They are added to a note
1630 by adding a dash and the the character signifying the
1631 articulation. They are demonstrated here.
1632 @lilypond[singleline]
1633   \score {
1634     \notes \context Voice {
1635       \property Voice.TextScript \set #'font-family = #'typewriter
1636       \property Voice.TextScript \set #'font-shape = #'upright
1637       c''4-._"c-."      s4
1638       c''4--_"c-{}-"    s4
1639       c''4-+_"c-+"      s4
1640       c''4-|_"c-|"      s4
1641       c''4->_"c->"      s4
1642       c''4-^_"c-\\^{ }" s4
1643     }
1644   }
1645 @end lilypond
1646
1647 The script is automatically placed, but if you need to force
1648 directions, you can use @code{_} to force them down, or @code{^} to
1649 put them up:
1650 @lilypond[fragment, verbatim]
1651   c''4^^ c''4_^
1652 @end lilypond
1653
1654
1655 Other symbols can be added using the syntax
1656 @var{note}@code{-\}@var{name}. Again, they can be forced up or down
1657 using @code{^} and @code{_}.
1658 @lilypond[]
1659   \score {
1660     <
1661       \property Score.LyricText \override #'font-family =#'typewriter
1662       \property Score.LyricText \override #'font-shape = #'upright
1663       \context Staff \notes {
1664         c''-\accent      c''-\marcato      c''-\staccatissimo c''^\fermata 
1665         c''-\stopped     c''-\staccato     c''-\tenuto        c''-\upbow
1666         c''-\downbow     c''^\lheel        c''-\rheel         c''^\ltoe
1667         c''-\rtoe        c''-\turn         c''-\open          c''-\flageolet
1668         c''-\reverseturn c''-\trill        c''-\prall         c''-\mordent
1669         c''-\prallprall  c''-\prallmordent c''-\upprall       c''-\downprall
1670         c''-\upmordent   c''-\downmordent  c''-\pralldown     c''-\prallup
1671         c''-\lineprall   c''-\thumb        c''-\segno         c''-\coda
1672       }
1673       \context Lyrics \lyrics {
1674         accent__      marcato__      staccatissimo__ fermata
1675         stopped__     staccato__     tenuto__        upbow
1676         downbow__     lheel__        rheel__         ltoe
1677         rtoe__        turn__         open__          flageolet
1678         reverseturn__ trill__        prall__         mordent
1679         prallprall__  prallmordent__ uprall__        downprall
1680         upmordent__   downmordent__  pralldown__  prallup__
1681         lineprall__   thumb__       segno__        coda
1682       }
1683     >
1684     \paper {
1685       linewidth = 5.875\in
1686       indent    = 0.0
1687     }
1688   }
1689 @end lilypond
1690
1691
1692 @cindex fingering
1693
1694 Fingering instructions can also be entered in this shorthand. For
1695 finger changes, use markup texts:
1696 @c
1697 @lilypond[verbatim, singleline, fragment]
1698       c'4-1 c'4-2 c'4-3 c'4-4
1699       c^#'(finger "2-3")
1700 @end lilypond
1701
1702
1703 @cindex @code{\script}
1704 @cindex scripts
1705 @cindex superscript
1706 @cindex subscript
1707
1708 See also @seeinternals{Script} and @seeinternals{Fingering}.
1709
1710 @refbugs
1711
1712 All of these note ornaments appear in the printed output but have no
1713 effect on the MIDI rendering of the music.
1714
1715 Unfortunately, there is no support for adding fingering instructions or 
1716 ornaments to individual note heads. Some hacks exist, though. See
1717 @file{input/test/script-horizontal.ly}.
1718
1719
1720 @c .  {Text scripts}
1721 @node Text scripts
1722 @subsection Text scripts
1723 @cindex Text scripts
1724
1725 In addition, it is possible to place arbitrary strings of text or markup
1726 text (see @ref{Text markup}) above or below notes by using a string:
1727 @code{c^"text"}. 
1728
1729 By default, these indications do not influence the note spacing, but
1730 by using the command @code{\fatText}, the widths will be taken into
1731 account.
1732 @c
1733 @lilypond[fragment,singleline,verbatim] \relative c' {
1734 c4^"longtext" \fatText c4_"longlongtext" c4 }
1735 @end lilypond
1736
1737 It is possible to use @TeX{} commands in the strings, but this should be
1738 avoided because it makes it impossible for LilyPond to compute the
1739 exact length of the string, which may lead to collisions.  Also, @TeX{}
1740 commands won't work with direct PostScript output (see @ref{PostScript
1741 output}).
1742
1743 Text scripts are created in form of @internalsref{TextScript} grobs, in
1744 @internalsref{Voice} context. 
1745
1746 @ref{Text markup} describes how to change the font or access
1747 special symbols in text scripts.
1748
1749
1750 @c .   {Grace notes}
1751 @node Grace notes
1752 @subsection Grace notes
1753
1754
1755
1756 @cindex @code{\grace}
1757 @cindex ornaments
1758 @cindex grace notes
1759
1760 Grace notes are ornaments  are written out ornaments
1761 @lilypond[relative=2,verbatim,ifragment] 
1762   c4  \grace c16  c4 \grace { [c16 d16] } c4 
1763 @end lilypond
1764
1765 In normal notation, grace notes are supposed to take up no logical
1766 time in a measure. Such an idea is practical for normal notation, but
1767 is not strict enough to put it into a program. The model that LilyPond
1768 uses for grace notes internally is that all timing is done in two
1769 steps:
1770
1771 Every point in musical time consists of two rational numbers: one
1772 denotes the logical time, one denotes the grace timing. The above
1773 example is shown here with timing tuples.
1774
1775 @lilypond[]
1776 \score { \notes \relative c''{ 
1777   c4^"(0,0)"  \grace c16_" "_"(1/4,-1/16)"  c4^"(1/4,0)"  \grace {
1778   [c16_"(2/4,-1/8)"  d16^"(2/4,-1/16)" ] } c4_" "_"(2/4,0)"
1779   }
1780 \paper {  linewidth = 8.\cm }
1781 }
1782 @end lilypond
1783
1784 The advantage of this approach is that you can use almost any lilypond
1785 construction together with grace notes, for example slurs and clef
1786 changes may appear halfway in between grace notes:
1787
1788 @lilypond[relative=2,verbatim,fragment] 
1789   c4  \grace { [ c16 c, \clef bass c, b(] }  )c4 
1790 @end lilypond
1791
1792 The placement of these grace notes is synchronized between different
1793 staffs, using this grace timing.
1794
1795 @lilypond[relative=2,verbatim,fragment] 
1796 < \context Staff = SA { e4 \grace { c16 d e f } e4 }
1797   \context Staff = SB { c4 \grace { g8 b } c4 } >
1798 @end lilypond
1799
1800
1801 The syntax is as follows.
1802 @example
1803   \grace @var{musicexpr}
1804 @end example
1805
1806 Unbeamed eighth notes and shorter by default have a slash through the
1807 stem.
1808
1809 @lilypond[fragment,verbatim]
1810 \relative c'' \context Voice {
1811   \grace c8 c4 \grace { [c16 c16] } c4
1812   \grace { 
1813     \property Voice.Stem \override #'flag-style = #'() 
1814     c16 
1815     \property Voice.Stem \revert #'flag-style
1816   } c4
1817 }
1818 @end lilypond
1819
1820 @refbugs
1821
1822 Grace note synchronization can also lead to surprises. Staff notation,
1823 such as key signatures, barlines, etc. are also synchronized. Take
1824 care when you mix staffs with grace notes and staffs without.
1825
1826 @lilypond[relative=2,verbatim,fragment]
1827 < \context Staff = SA { e4 \bar "|:" \grace c16 d4 }
1828   \context Staff = SB { c4 \bar "|:"  d4 } >
1829 @end lilypond
1830
1831 Grace sections should only be used within sequential music
1832 expressions.  Nesting, juxtaposing, or ending sequential music with a
1833 grace section is not supported, and might produce crashes or other
1834 errors.
1835
1836 @menu
1837 * Glissando ::                  
1838 * Dynamics::                    
1839 @end menu
1840
1841
1842
1843 @c .   {Glissando}
1844 @node Glissando 
1845 @subsection Glissando
1846 @cindex Glissando 
1847
1848 @cindex @code{\glissando}
1849
1850 A glissando line can be requested by attaching a @code{\glissando} to
1851 a note:
1852
1853 @lilypond[fragment,relative,verbatim]
1854   c'-\glissando c'
1855 @end lilypond
1856
1857 @refbugs
1858
1859 Printing of an additional text (such as @emph{gliss.}) must be done
1860 manually. See also @seeinternals{Glissando}.
1861
1862
1863
1864 @c .   {Dynamics}
1865 @node Dynamics
1866 @subsection Dynamics
1867 @cindex Dynamics
1868
1869
1870
1871 @cindex @code{\ppp}
1872 @cindex @code{\pp}
1873 @cindex @code{\p}
1874 @cindex @code{\mp}
1875 @cindex @code{\mf}
1876 @cindex @code{\f}
1877 @cindex @code{\ff}
1878 @cindex @code{\fff}
1879 @cindex @code{\ffff}
1880 @cindex @code{\fp}
1881 @cindex @code{\sf}
1882 @cindex @code{\sff}
1883 @cindex @code{\sp}
1884 @cindex @code{\spp}
1885 @cindex @code{\sfz}
1886 @cindex @code{\rfz}
1887
1888
1889 Absolute dynamic marks are specified using an identifier after a
1890 note: @code{c4-\ff}.  The available dynamic marks are: @code{\ppp},
1891 @code{\pp}, @code{\p}, @code{\mp}, @code{\mf}, @code{\f}, @code{\ff},
1892 @code{\fff}, @code{\fff}, @code{\fp}, @code{\sf}, @code{\sff},
1893 @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}.
1894
1895 @lilypond[verbatim,singleline,fragment,relative]
1896   c'\ppp c\pp c \p c\mp c\mf c\f c\ff c\fff
1897   c2\sf c\rfz
1898 @end lilypond
1899
1900 @cindex @code{\cr}
1901 @cindex @code{\rc}
1902 @cindex @code{\decr}
1903 @cindex @code{\rced}
1904 @cindex @code{\<}
1905 @cindex @code{\>}
1906 @cindex @code{\"!}
1907
1908
1909 A crescendo mark is started with @code{\cr} and terminated with
1910 @code{\rc} (the textual reverse of @code{cr}).  A decrescendo mark is
1911 started with @code{\decr} and terminated with @code{\rced}.  There are
1912 also shorthands for these marks.  A crescendo can be started with
1913 @code{\<} and a decrescendo can be started with @code{\>}.  Either one
1914 can be terminated with @code{\!}.  Note that @code{\!}  must go before
1915 the last note of the dynamic mark whereas @code{\rc} and @code{\rced} go
1916 after the last note.  Because these marks are bound to notes, if you
1917 want several marks during one note, you have to use spacer notes.
1918
1919 @lilypond[fragment,verbatim,center]
1920   c'' \< \! c''   d'' \decr e'' \rced 
1921   < f''1 { s4 s4 \< \! s4 \> \! s4 } >
1922 @end lilypond
1923
1924 You can also use a text saying @emph{cresc.} instead of hairpins. Here
1925 is an example how to do it:
1926
1927 @lilypond[fragment,relative=2,verbatim]
1928   c4 \cresc c4 \endcresc c4
1929 @end lilypond
1930
1931
1932 @cindex crescendo
1933 @cindex decrescendo
1934
1935 You can also supply your own texts:
1936 @lilypond[fragment,relative,verbatim]
1937   \context Voice {
1938     \property Voice.crescendoText = "cresc. poco"
1939     \property Voice.crescendoSpanner = #'dashed-line
1940     a'2\mf\< a a \!a 
1941   }
1942 @end lilypond
1943
1944 @cindex diminuendo
1945
1946 Dynamics are grobs of @internalsref{DynamicText} and
1947 @internalsref{Hairpin}. Vertical positioning of these symbols is
1948 handled by the @internalsref{DynamicLineSpanner} grob.  If you want to
1949 adjust padding or vertical direction of the dynamics, you must set
1950 properties for the @internalsref{DynamicLineSpanner} grob. Predefined
1951 identifiers to set the vertical direction are \dynamicUp and
1952 \dynamicDown.
1953
1954 @cindex direction, of dynamics
1955 @cindex @code{\dynamicDown}
1956 @cindex @code{\dynamicUp}
1957
1958 @c .  {Repeats}
1959 @node Repeats
1960 @section Repeats
1961
1962
1963 @cindex repeats
1964 @cindex @code{\repeat}
1965
1966 To specify repeats, use the @code{\repeat} keyword.  Since repeats
1967 should work differently when played or printed, there are a few
1968 different variants of repeats.
1969
1970 @table @code
1971 @item unfold
1972 Repeated music is fully written (played) out.  Useful for MIDI
1973 output, and entering repetitive music.
1974
1975 @item volta
1976 This is the normal notation: Repeats are not written out, but
1977 alternative endings (voltas) are printed, left to right.
1978
1979 @item fold
1980 Alternative endings are written stacked. This has limited use but may be
1981 used to typeset two lines of lyrics in songs with repeats, see
1982 @file{input/star-spangled-banner.ly}.
1983
1984 @item tremolo
1985 Make tremolo beams.
1986
1987 @item percent
1988 Make beat or measure repeats. These look like percent signs.
1989
1990 @end table  
1991
1992 @menu
1993 * Repeat syntax::               
1994 * Repeats and MIDI::            
1995 * Manual repeat commands::      
1996 * Tremolo repeats::             
1997 * Tremolo subdivisions::        
1998 * Measure repeats::             
1999 @end menu
2000
2001 @node Repeat syntax
2002 @subsection Repeat syntax
2003
2004 The syntax for repeats is
2005
2006 @example
2007   \repeat @var{variant} @var{repeatcount} @var{repeatbody}
2008 @end example
2009
2010 If you have alternative endings, you may add
2011 @cindex @code{\alternative}
2012 @example
2013  \alternative @code{@{} @var{alternative1}
2014             @var{alternative2}
2015             @var{alternative3} @dots{} @code{@}}
2016 @end example
2017 where each @var{alternative} is a music expression.
2018
2019 Normal notation repeats are used like this:
2020 @lilypond[fragment,verbatim]
2021   c'1
2022   \repeat volta 2 { c'4 d' e' f' }
2023   \repeat volta 2 { f' e' d' c' }
2024 @end lilypond
2025
2026 With alternative endings:
2027 @lilypond[fragment,verbatim]
2028   c'1
2029   \repeat volta 2 {c'4 d' e' f'} 
2030   \alternative { {d'2 d'} {f' f} }
2031 @end lilypond
2032
2033 Folded repeats look like this:
2034
2035
2036 @lilypond[fragment,verbatim]
2037   c'1
2038   \repeat fold 2 {c'4 d' e' f'} 
2039   \alternative { {d'2 d'} {f' f} }
2040
2041 @end lilypond
2042
2043 If you don't give enough alternatives for all of the repeats, then
2044 the first alternative is assumed to be repeated often enough to equal
2045 the specified number of repeats.
2046
2047 @lilypond[fragment,verbatim]
2048 \context Staff {
2049   \relative c' {
2050     \partial 4
2051     \repeat volta 4 { e | c2 d2 | e2 f2 | }
2052     \alternative { { g4 g g } { a | a a a a | b2. } }
2053   }
2054 }
2055 @end lilypond
2056
2057 @node Repeats and MIDI
2058 @subsection Repeats and MIDI
2059
2060 @cindex expanding repeats
2061
2062 For instructions on how to unfoldi repeats for MIDI output, see
2063 the example file @file{input/test/unfold-all-repeats.ly}.
2064
2065
2066 @refbugs
2067
2068 Notice that timing information is not remembered at the start of an
2069 alternative, so you have to reset timing information after a repeat,
2070 e.g. using a bar-check (See @ref{Bar check}), setting
2071 @code{Score.measurePosition} or entering @code{\partial}.  Slurs or ties
2072 are also not repeated.
2073
2074 It is possible to nest @code{\repeat}s, although this probably is only
2075 meaningful for unfolded repeats.
2076
2077 Folded repeats offer little more over simultaneous music.
2078
2079 @node Manual repeat commands
2080 @subsection Manual repeat commands
2081
2082 @cindex @code{repeatCommands}
2083
2084 The property @code{repeatCommands} can be used to control the layout of
2085 repeats. Its value is a Scheme list of repeat commands, where each repeat
2086 command can be
2087
2088 @table @code
2089 @item 'start-repeat
2090  Print a |: bar line
2091 @item 'end-repeat
2092  Print a :| bar line
2093 @item (volta . @var{text})
2094   Print a volta bracket saying @var{text}.
2095 @item (volta . #f)
2096   Stop a running volta bracket
2097 @end table
2098
2099 @lilypond[verbatim, fragment]
2100  c''4
2101     \property Score.repeatCommands = #'((volta "93") end-repeat)
2102  c''4 c''4
2103     \property Score.repeatCommands = #'((volta #f))
2104  c''4 c''4
2105 @end lilypond
2106
2107
2108 Repeats brackets are @internalsref{VoltaBracket} grobs.
2109
2110 @node Tremolo repeats
2111 @subsection Tremolo repeats
2112 @cindex tremolo beams
2113
2114 To place tremolo marks between notes, use @code{\repeat} with tremolo
2115 style.  
2116 @lilypond[verbatim,center,singleline]
2117 \score { 
2118   \context Voice \notes\relative c' {
2119     \repeat "tremolo" 8 { c16 d16 }
2120     \repeat "tremolo" 4 { c16 d16 }    
2121     \repeat "tremolo" 2 { c16 d16 }
2122     \repeat "tremolo" 4 c16
2123   }
2124 }
2125 @end lilypond
2126
2127 Tremolo beams are @internalsref{Beam} grobs. Single stem tremolos are
2128 @internalsref{StemTremolo}. The single stem tremolo @emph{must} be
2129 entered without @code{@{} and @code{@}}.  
2130
2131 @refbugs
2132
2133 Only powers of two and undotted notes are supported repeat counts.
2134
2135 @node Tremolo subdivisions
2136 @subsection Tremolo subdivisions
2137 @cindex tremolo marks
2138 @cindex @code{tremoloFlags}
2139
2140 Tremolo marks can be printed on a single note by adding
2141 `@code{:}[@var{length}]' after the note.  The length must be at least 8.
2142 A @var{length} value of 8 gives one line across the note stem.  If the
2143 length is omitted, then then the last value (stored in
2144 @code{Voice.tremoloFlags}) is used.
2145
2146 @lilypond[verbatim,fragment,center]
2147   c'2:8 c':32 | c': c': |
2148 @end lilypond
2149
2150 @refbugs
2151
2152
2153 Tremolos in this style do not carry over into the MIDI output.
2154
2155
2156 @node Measure repeats
2157 @subsection Measure repeats
2158
2159 @cindex percent repeats
2160 @cindex measure repeats
2161
2162 In the @code{percent} style, a note pattern can be repeated. It is
2163 printed once, and then the pattern is replaced with a special sign.
2164 Patterns of a one and two measures are replaced by percent-like signs,
2165 patterns that divide the measure length are replaced by slashes.
2166
2167 @lilypond[verbatim,singleline]
2168  \context Voice { \repeat  "percent" 4  { c'4 }
2169     \repeat "percent" 2 { c'2 es'2 f'4 fis'4 g'4 c''4 }
2170 }
2171 @end lilypond   
2172
2173 The signs are represented by these grobs: @internalsref{RepeatSlash} and
2174 @internalsref{PercentRepeat} and @internalsref{DoublePercentRepeat}.
2175
2176 @refbugs
2177
2178 You can not nest percent repeats, e.g. by filling in the first measure
2179 with slashes, and repeating that measure with percents.
2180
2181 @node Rhythmic music
2182 @section Rhythmic music
2183
2184 Sometimes you might want to show only the rhythm of a melody.  This can
2185 be done with the rhythmic staff. All pitches of notes on such a staff
2186 are squashed, and the  staff itself  looks has  a single staff line:
2187
2188 @lilypond[fragment,relative,verbatim]
2189   \context RhythmicStaff {
2190       \time 4/4
2191       c4 e8 f  g2 | r4 g r2 | g1:32 | r1 |
2192   }
2193 @end lilypond
2194
2195 @menu
2196 * Percussion staves::           
2197 @end menu
2198
2199 @node Percussion staves
2200 @subsection Percussion staves
2201 @cindex percussion
2202 @cindex drums
2203 To typeset more than one piece of percussion to be played by the same
2204 musician one typically uses a multiline staff where each staff
2205 position refers to a specific piece of percussion.
2206
2207 LilyPond is shipped with a bunch of scheme functions which allows you
2208 to do this fairly easily.
2209
2210 The system is based on the general midi drum-pitches.
2211 In order to use the drum pitches you include
2212 @file{ly/drumpitch-init.ly}. This file defines the pitches from the scheme
2213 variable @code{drum-pitch-names} - which definition can be read in
2214 @file{scm/drums.scm}. You see that each piece of percussion has a full
2215 name and an abbreviated name - and you may freely select whether to
2216 refer to the full name or the abbreviation in your music definition.
2217
2218 To typeset the music on a staff you apply the scheme function
2219 @code{drums->paper} to the percussion music. This function takes a
2220 list of percussion instrument names, notehead scripts and staff
2221 positions (that is: pitches relative to the C-clef) and uses this to
2222 transform the input music by moving the pitch, changing the notehead
2223 and (optionally) adding a script:
2224 @lilypond[singleline,verbatim]
2225 \include "drumpitch-init.ly"
2226 up = \notes { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
2227 down = \notes { bassdrum4 snare8 bd r bd sn4 }
2228 \score {
2229     \apply #(drums->paper 'drums) \context Staff <
2230         \clef percussion
2231         \context Voice = up { \voiceOne \up }
2232         \context Voice = down { \voiceTwo \down }
2233     >
2234 }
2235
2236 @end lilypond
2237 In the above example the music was transformed using the list @code{'drums}.
2238 Currently the following lists are defined in @file{scm/drums.scm}:
2239 @table @code
2240 @item 'drums
2241 To typeset a typical drum kit on a five line staff.
2242 @lilypond[]
2243 \include "drumpitch-init.ly"
2244 nam = \lyrics { cymc cyms cymr hh hhc hho hhho hhp cb hc
2245     bd sn ss tomh tommh tomml toml tomfh tomfl }
2246 mus = \notes  { cymc cyms cymr hh hhc hho hhho hhp cb hc
2247     bd sn ss tomh tommh tomml toml tomfh tomfl s16 }
2248 \score {
2249     <
2250         \apply #(drums->paper 'drums) \context Staff <
2251             \clef percussion
2252             \mus
2253         >
2254         \context Lyrics \nam 
2255     >
2256     \paper {
2257         \translator {
2258             \StaffContext
2259             \remove Bar_engraver
2260             \remove Time_signature_engraver
2261             minimumVerticalExtent = #'(-4.0 . 5.0)
2262         }
2263         \translator {
2264             \VoiceContext
2265             \remove Stem_engraver
2266         }
2267    }   
2268 }
2269 @end lilypond
2270 Notice that the scheme supports six different toms.
2271 If you are using fewer toms then you simply select the toms that produce
2272 the desired result - i.e. to get toms on the three middle lines you
2273 use @code{tommh}, @code{tomml} and @code{tomfh}.
2274
2275 Because the general midi contain no rimshots we use the sidestick for
2276 this purpose instead.
2277 @item 'timbales
2278 To typeset timbales on a two line staff.
2279 @lilypond[singleline]
2280 \include "drumpitch-init.ly"
2281 nam = \lyrics { timh ssh timl ssl cb }
2282 mus = \notes  { timh ssh timl ssl cb s16 }
2283 \score {
2284     <
2285         \apply #(drums->paper 'timbales) \context Staff <
2286             \clef percussion
2287             \mus
2288         >
2289         \context Lyrics \nam 
2290     >
2291     \paper {
2292         \translator {
2293             \StaffContext
2294             \remove Bar_engraver
2295             \remove Time_signature_engraver
2296             StaffSymbol \override #'line-count = #2
2297             StaffSymbol \override #'staff-space = #2
2298             minimumVerticalExtent = #'(-3.0 . 4.0)
2299         }
2300         \translator {
2301             \VoiceContext
2302             \remove Stem_engraver
2303         }
2304
2305     }   
2306 }
2307 @end lilypond
2308 @item 'congas
2309 To typeset congas on a two line staff.
2310 @lilypond[singleline]
2311 \include "drumpitch-init.ly"
2312 nam = \lyrics { cgh cgho cghm ssh cgl cglo cglm ssl }
2313 mus = \notes  { cgh cgho cghm ssh cgl cglo cglm ssl s16 }
2314 \score {
2315     <
2316         \apply #(drums->paper 'congas) \context Staff <
2317             \clef percussion
2318             \mus
2319         >
2320         \context Lyrics \nam 
2321     >
2322     \paper {
2323         \translator {
2324             \StaffContext
2325             \remove Bar_engraver
2326             \remove Time_signature_engraver
2327             StaffSymbol \override #'line-count = #2
2328             StaffSymbol \override #'staff-space = #2
2329             minimumVerticalExtent = #'(-3.0 . 4.0)
2330         }
2331         \translator {
2332             \VoiceContext
2333             \remove Stem_engraver
2334         }
2335     }   
2336 }
2337 @end lilypond
2338 @item 'bongos
2339 To typeset bongos on a two line staff.
2340 @lilypond[singleline]
2341 \include "drumpitch-init.ly"
2342 nam = \lyrics { boh boho bohm ssh bol bolo bolm ssl }
2343 mus = \notes  { boh boho bohm ssh bol bolo bolm ssl s16 }
2344 \score {
2345     <
2346         \apply #(drums->paper 'bongos) \context Staff <
2347             \clef percussion
2348             \mus
2349         >
2350         \context Lyrics \nam 
2351     >
2352     \paper {
2353         \translator {
2354             \StaffContext
2355             \remove Bar_engraver
2356             \remove Time_signature_engraver
2357             StaffSymbol \override #'line-count = #2
2358             StaffSymbol \override #'staff-space = #2
2359             minimumVerticalExtent = #'(-3.0 . 4.0)
2360         }
2361         \translator {
2362             \VoiceContext
2363             \remove Stem_engraver
2364         }
2365     }   
2366 }
2367 @end lilypond
2368 @item 'percussion
2369 To typeset all kinds of simple percussion on one line staves.
2370 @lilypond[singleline]
2371 \include "drumpitch-init.ly"
2372 nam = \lyrics { tri trio trim gui guis guil cb cl tamb cab mar hc }
2373 mus = \notes  { tri trio trim gui guis guil cb cl tamb cab mar hc s16 }
2374 \score {
2375     <
2376         \apply #(drums->paper 'percussion) \context Staff <
2377             \clef percussion
2378             \mus
2379         >
2380         \context Lyrics \nam 
2381     >
2382     \paper {
2383         \translator {
2384             \StaffContext
2385             \remove Bar_engraver
2386             \remove Time_signature_engraver
2387             StaffSymbol \override #'line-count = #1
2388             minimumVerticalExtent = #'(-2.0 . 3.0)
2389         }
2390         \translator {
2391             \VoiceContext
2392             \remove Stem_engraver
2393         }
2394     }   
2395 }
2396 @end lilypond
2397 @end table
2398
2399 If you don't like any of the predefined lists you can define your own
2400 list at the top of your file:
2401
2402 @lilypond[singleline, verbatim]
2403 #(define mydrums `(
2404         (bassdrum     default   #f        ,(make-pitch -1 2 0))
2405         (snare        default   #f        ,(make-pitch 0 1 0))
2406         (hihat        cross     #f        ,(make-pitch 0 5 0))
2407         (pedalhihat   xcircle   "stopped" ,(make-pitch 0 5 0))
2408         (lowtom       diamond   #f        ,(make-pitch -1 6 0))
2409 ))
2410 \include "drumpitch-init.ly"
2411 up = \notes { hh8 hh hh hh hhp4 hhp }
2412 down = \notes { bd4 sn bd toml8 toml }
2413 \score {    
2414     \apply #(drums->paper 'mydrums) \context Staff <
2415         \clef percussion
2416         \context Voice = up { \voiceOne \up }
2417         \context Voice = down { \voiceTwo \down }
2418     >
2419 }
2420 @end lilypond
2421
2422 To use a modified existing list instead of building your own from
2423 scratch you can append your modifications to the start of the existing
2424 list:
2425
2426 @example
2427 #(define mydrums (append `(
2428    (bassdrum default #f ,(make-pitch -1 2 0))
2429    (lowtom   diamond #f ,(make-pitch -1 6 0))
2430 ) drums ))
2431 @end example
2432
2433 @c FIXME: Too many levels of headers when using subsubsections.
2434 @c Perhaps junk subsection ``Percussion staves''
2435 @subsubsection Percussion staves with normal staves
2436 When you include @file{drumpitch-init.ly} then the default pitches
2437 are overridden so that you after the inclusion cannot use the common
2438 dutch pitch names anymore. Hence you might wan't to reinclude
2439 @file{nederlands.ly} after the drum-pattern-definitions:
2440 @lilypond[singleline,verbatim]
2441 \include "drumpitch-init.ly"
2442 up = \notes { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
2443 down = \notes { bassdrum4 snare8 bd r bd sn4 }
2444 \include "nederlands.ly"
2445 bass = \notes \transpose c, { a4. e8 r e g e }
2446 \score {
2447     <
2448         \apply #(drums->paper 'drums) \context Staff = drums <
2449             \clef percussion
2450             \context Voice = up { \voiceOne \up }
2451             \context Voice = down { \voiceTwo \down }
2452         >
2453         \context Staff = bass { \clef "F_8" \bass }
2454     >
2455 }
2456 @end lilypond
2457
2458 @subsubsection Percussion midi output
2459 In order to produce correct midi output you need to produce two score
2460 blocks - one for the paper and one for the midi.
2461 To use the percussion channel you set the property @code{instrument}
2462 to @code{'drums}. Because the drum-pitches themself are similar to the
2463 general midi pitches all you have to do is to insert the voices with
2464 none of the scheme functions to get the correct midi output:
2465
2466 @example
2467 \score @{    
2468     \apply #(drums->paper 'mydrums) \context Staff <
2469         \clef percussion
2470         \context Voice = up @{ \voiceOne \up @}
2471         \context Voice = down @{ \voiceTwo \down @}
2472     >
2473     \paper@{@}
2474 @}
2475 \score @{    
2476     \context Staff <
2477         \property Staff.instrument = #'drums
2478         \up \down
2479     >
2480     \midi@{@}
2481 @}
2482 @end example
2483
2484 @refbugs
2485
2486 This scheme is to be considered a temporary implementation. Even
2487 though the scheme will probably keep on working then the future might
2488 bring some other way of typesetting drums, and probably
2489 there will be made no great efforts in keeping things downwards
2490 compatible.
2491
2492 @c . {Piano music}
2493 @node Piano music
2494 @section Piano music
2495
2496 Piano music is an odd type of notation. Piano staves are two normal
2497 staves coupled with a brace.  The staves are largely independent, but
2498 sometimes voices can cross between the two staves.  The
2499 @internalsref{PianoStaff} is especially built to handle this cross-staffing
2500 behavior.  In this section we discuss the @internalsref{PianoStaff} and some
2501 other pianistic peculiarities.
2502
2503 @menu
2504 * Automatic staff changes::     
2505 * Manual staff switches::       
2506 * Pedals::                      
2507 * Arpeggio::                    
2508 * Voice follower lines::        
2509 @end menu 
2510
2511
2512 @c .   {Automatic staff changes}
2513 @node Automatic staff changes
2514 @subsection Automatic staff changes
2515 @cindex Automatic staff changes
2516
2517 Voices can switch automatically between the top and the bottom
2518 staff. The syntax for this is
2519 @example
2520         \autochange Staff \context Voice @{ @dots{}@var{music}@dots{} @}
2521 @end example        
2522 The autochanger switches on basis of pitch (central C is the turning
2523 point), and it looks ahead skipping over rests to switch rests in
2524 advance. Here is a practical example:
2525         
2526 @lilypond[verbatim,singleline]
2527 \score { \notes \context PianoStaff <
2528   \context Staff = "up" {
2529     \autochange Staff \context Voice = VA < \relative c' {
2530        g4 a  b c d r4 a g } > }
2531   \context Staff = "down" {
2532        \clef bass
2533        s1*2
2534 } > }
2535 @end lilypond
2536 Spacer rests are used to prevent the bottom staff from
2537 terminating too soon.
2538
2539
2540 @node Manual staff switches
2541 @subsection Manual staff switches
2542
2543 @cindex manual staff switches
2544 @cindex staff switch, manual
2545
2546 Voices can be switched between staves manually, using the following command:
2547 @example
2548   \translator Staff = @var{staffname} @var{music}
2549 @end example
2550 The string @var{staffname} is the name of the staff. It switches the
2551 current voice from its current staff to the Staff called
2552 @var{staffname}. Typically @var{staffname} is @code{"up"} or
2553 @code{"down"}.
2554
2555 @c .   {Pedals}
2556 @node Pedals
2557 @subsection Pedals
2558 @cindex Pedals
2559
2560 Piano pedal instruction can be expressed using 
2561 @code{\sustainDown}, @code{\sustainUp}, @code{\unaCorda},
2562 @code{\treCorde}, @code{\sostenutoDown} and @code{\sostenutoUp}.
2563
2564 These identifiers are shorthands for spanner commands of the types
2565 @internalsref{Sustain}, @internalsref{UnaCorda} and @internalsref{Sostenuto}:
2566
2567 @lilypond[fragment,verbatim]
2568 c''4 \spanrequest \start "Sustain" c''4
2569 c''4 \spanrequest \stop "Sustain"
2570 @end lilypond
2571
2572 The symbols that are printed can be modified by setting
2573 @code{pedal@var{X}Strings}, where @var{X} is one of the pedal types:
2574 Sustain, Sostenuto or UnaCorda.  Refer to the generated documentation of
2575 @rgrob{SustainPedal}, for example, for more information.
2576
2577 Pedals can also be indicated by a sequence of brackets, by setting the 
2578 @code{pedal-type} property of SustainPedal grobs: 
2579
2580 @lilypond[fragment,verbatim]
2581 \property Staff.SustainPedal \override #'pedal-type = #'bracket
2582 c''4 \sustainDown d''4 e''4 a'4
2583 \sustainUp \sustainDown
2584  f'4 g'4 a'4 \sustainUp
2585 @end lilypond
2586
2587 A third style of pedal notation is a mixture of text and brackets,
2588 obtained by setting @code{pedal-type} to @code{mixed}:
2589
2590 @lilypond[fragment,verbatim]
2591 \property Staff.SustainPedal \override #'pedal-type = #'mixed
2592 c''4 \sustainDown d''4 e''4 c'4
2593 \sustainUp \sustainDown
2594  f'4 g'4 a'4 \sustainUp
2595 @end lilypond
2596
2597 The default '*Ped' style for sustain and damper pedals corresponds to
2598 @code{\pedal-type = #'text}. However, @code{mixed} is the default style
2599 for a sostenuto pedal:
2600
2601 @lilypond[fragment,verbatim]
2602 c''4 \sostenutoDown d''4 e''4 c'4 f'4 g'4 a'4 \sostenutoUp
2603 @end lilypond
2604
2605 For fine-tuning of the appearance of a pedal bracket, the properties
2606 @code{edge-width}, @code{edge-height}, and @code{shorten-pair} of
2607 @code{PianoPedalBracket} grobs (see the detailed documentation of
2608 @rgrob{PianoPedalBracket}) can be modified.  For example, the bracket
2609 may be extended to the end of the note head.
2610
2611 @lilypond[fragment,verbatim]
2612 \property Staff.PianoPedalBracket \override
2613    #'shorten-pair = #'(0 . -1.0)
2614 c''4 \sostenutoDown d''4 e''4 c'4
2615 f'4 g'4 a'4 \sostenutoUp
2616 @end lilypond
2617
2618
2619
2620 @c .   {Arpeggio}
2621 @node Arpeggio
2622 @subsection Arpeggio
2623 @cindex Arpeggio
2624
2625 @cindex broken arpeggio
2626 @cindex @code{\arpeggio}
2627
2628 You can specify an arpeggio sign on a chord by attaching an
2629 @code{\arpeggio} to a note of the chord.
2630
2631
2632 @lilypond[fragment,relative,verbatim]
2633   \context Voice <c\arpeggio e g c>
2634 @end lilypond
2635
2636 When an arpeggio crosses staves in piano music, you attach an arpeggio
2637 to the chords in both staves, and set
2638 @code{PianoStaff.connectArpeggios}.
2639
2640 @lilypond[fragment,relative,verbatim]
2641   \context PianoStaff <
2642     \property PianoStaff.connectArpeggios = ##t
2643     \context Voice = one  { <c'\arpeggio e g c> }
2644     \context Voice = other { \clef bass  <c,,\arpeggio e g>}
2645   >  
2646 @end lilypond
2647
2648 This command creates @internalsref{Arpeggio} grobs.  Cross staff arpeggios
2649 are @code{PianoStaff.Arpeggio}.
2650
2651 To add an arrow head to explicitly specify the direction of the
2652 arpeggio, you should set the arpeggio grob property
2653 @code{arpeggio-direction}.
2654
2655 @lilypond[fragment,relative,verbatim]
2656   \context Voice {
2657      \property Voice.Arpeggio \set #'arpeggio-direction = #1
2658      <c\arpeggio e g c>
2659      \property Voice.Arpeggio \set #'arpeggio-direction = #-1
2660      <c\arpeggio e g c>
2661   }
2662 @end lilypond
2663
2664 A square bracket on the left indicates that the player should not
2665 arpeggiate the chord. To draw these brackets, set the
2666 @code{molecule-callback} property of @code{Arpeggio} or
2667 @code{PianoStaff.Arpeggio} grobs to @code{\arpeggioBracket}, and use
2668 @code{\arpeggio} statements within the chords as before.
2669
2670 @lilypond[fragment,relative,verbatim]
2671   \context PianoStaff <
2672     \property PianoStaff.connectArpeggios = ##t
2673     \property PianoStaff.Arpeggio \override
2674         #'molecule-callback = \arpeggioBracket
2675     \context Voice = one  { <c'\arpeggio e g c> }
2676     \context Voice = other { \clef bass  <c,,\arpeggio e g>}
2677   >  
2678 @end lilypond
2679
2680
2681 @refbugs
2682
2683 It is not possible to mix connected arpeggios and unconnected
2684 arpeggios in one PianoStaff at the same time.
2685
2686
2687
2688 @node  Voice follower lines
2689 @subsection Voice follower lines
2690
2691 @cindex follow voice
2692 @cindex staff switching
2693 @cindex cross staff
2694
2695 @cindex @code{followVoice}
2696
2697 Whenever a voice switches to another staff a line connecting the notes
2698 can be printed automatically. This is enabled if the property
2699 @code{PianoStaff.followVoice} is set to true:
2700
2701 @lilypond[fragment,relative,verbatim]
2702   \context PianoStaff <
2703     \property PianoStaff.followVoice = ##t
2704     \context Staff \context Voice {
2705       c1
2706       \translator Staff=two
2707       b2 a
2708     }
2709     \context Staff=two {\clef bass \skip 1*2 }
2710   >  
2711 @end lilypond
2712
2713 The associated grob is @internalsref{VoiceFollower}.
2714
2715
2716 @node Tablatures
2717 @section Tablatures
2718
2719 Tablature notation is used music for plucked string instruments.  It
2720 notates pitches not by using note heads, but by indicating on which
2721 string and fret a note must be played.  LilyPond offers limited
2722 support for tablature, by abusing the fingering system.
2723
2724 @menu
2725 * Tablatures basic::            
2726 * Non-guitar tablatures::       
2727 * Tablature in addition to normal staff::  
2728 @end menu
2729
2730 @node Tablatures basic
2731 @subsection Tablatures basic
2732 @cindex Tablatures basic
2733
2734 Tablature can be typeset with Lilypond by using the
2735 @internalsref{TabStaff} and @internalsref{TabVoice} contexts. As
2736 tablature is a recent feature in Lilypond, most of the guitar special
2737 effects such as hammer, pull, bend are not yet supported.
2738
2739 With the @internalsref{TabStaff}, the string number associated to a note
2740 is given though the fingering mechanism, e.g. @code{c4-3} for a C
2741 quarter on the third string. The string 1 is the lowest one, and the
2742 tuning defaults to the standard guitar tuning (with 6 strings).
2743
2744 @lilypond[fragment,verbatim]
2745   \context TabStaff <
2746     \notes {
2747       \property Staff.Stem \override #'direction = #1
2748       
2749       a,4-2 c'-5 a-4 e'-6
2750       e-3 c'-5 a-4 e'-6
2751     }
2752   >  
2753 @end lilypond
2754
2755
2756 @node Non-guitar tablatures
2757 @subsection Non-guitar tablatures
2758 @cindex Non-guitar tablatures
2759
2760 There are many ways to customize Lilypond tablatures.
2761
2762 First you can change the number of strings, by setting the number of
2763 lines in the @internalsref{TabStaff}.  You can change the strings
2764 tuning. A string tuning is given as a Scheme list with one integer
2765 number for each string, the number being the pitch of an open string.
2766
2767 Finally, it is possible to change the Scheme function to format the
2768 tablature note text. The default is @var{fret-number-tablature-format},
2769 which uses the fret number, but for some instruments that may not use
2770 this notation, just create your own tablature-format function. This
2771 function takes three argument: the string number, the string tuning and
2772 the note pitch.
2773
2774
2775 @node Tablature in addition to normal staff
2776 @subsection Tablature in addition to normal staff
2777 @cindex Tablature in addition to normal staff
2778
2779 It is possible to typeset both tablature and a "normal" staff, as
2780 commonly done in many parts.
2781
2782 A common trick for that is to put the notes in a variables, and to hide
2783 the fingering information (which correspond to the string number) for
2784 the standard staff.
2785
2786 @lilypond[verbatim]
2787   part = \notes {
2788     a,4-2 c'-5 a-4 e'-6
2789     e-3 c'-5 a-4 e'-6
2790   }
2791   \score{
2792     \context StaffGroup <
2793       \context Staff <
2794         % Hide fingering number
2795         \property Staff.Fingering \override #'transparent = ##t
2796
2797         \part
2798       >
2799       \context TabStaff <
2800         \property Staff.Stem \override #'direction = #1
2801
2802         \part
2803       >
2804     >
2805   }
2806 @end lilypond
2807
2808
2809 @c . {Chords}
2810 @node Chords
2811 @section Chords
2812 @cindex Chords
2813
2814 LilyPond has support for both entering and printing chords. 
2815 @lilypond[verbatim,singleline]
2816 twoWays = \notes \transpose c'' {
2817   \chords {
2818     c1 f:sus4 bes/f
2819   }
2820   <c e g>
2821   <f bes c'>
2822   <f bes d'>
2823   }
2824
2825 \score {
2826    < \context ChordNames \twoWays
2827      \context Voice \twoWays > }
2828 @end lilypond
2829
2830 This example also shows that the chord printing routines do not try to
2831 be intelligent. If you enter @code{f bes d}, it does not interpret
2832 this as an inversion.
2833
2834 As you can see chords really are a set of pitches. They are internally
2835 stored as simultaneous music expressions. This means you can enter
2836 chords by name and print them as notes, enter them as notes and print
2837 them as chord names, or (the most common case) enter them by name, and
2838 print them as name.
2839
2840 @menu
2841 * Chords mode::                 
2842 * Printing named chords::       
2843 @end menu
2844
2845 @c .  {Chords mode}
2846 @node Chords mode
2847 @subsection Chords mode
2848 @cindex Chords mode
2849
2850 Chord mode is a mode where you can input sets of pitches using common
2851 names.  It is introduced by the keyword @code{\chords}.  It is similar
2852 to note mode, but words are also looked up in a chord modifier table
2853 (containing @code{maj}, @code{dim}, etc). Dashes and carets are used
2854 to indicate chord additions and subtractions, so articulation scripts
2855 can not be entered in Chord mode.
2856
2857 Throughout these examples, chords have been shifted around the staff
2858 using @code{\transpose}.
2859
2860 @lilypond[fragment,verbatim]
2861 \transpose c'' {
2862   \chords {
2863     c1  c:3-       c:7     c:8
2864     c:9 c:9-.5+.7+ c:3-.5- 
2865   }
2866 }
2867 @end lilypond
2868
2869 @cindex @code{aug}
2870 @cindex @code{dim}
2871 @cindex @code{maj}
2872 @cindex @code{sus}
2873
2874 The second type of modifier that may appear after the @code{:} is a
2875 named modifier.  Named modifiers are listed in the file
2876 @file{chord-modifiers.ly}.  The available modifiers are @code{m} and
2877 @code{min} which lower the 3rd half a step, `@code{aug}' which
2878 raises the 5th, `@code{dim}' which lowers the 5th,
2879 `@code{maj}' which adds a raised 7th, and `@code{sus}'
2880 which replaces the 5th with a 4th.
2881
2882 @lilypond[fragment,verbatim]
2883 \transpose c'' {
2884   \chords {
2885     c1:m c:min7 c:maj c:aug c:dim c:sus
2886   }
2887 }
2888 @end lilypond
2889  
2890
2891 Chord subtractions are used to eliminate notes from a chord.  The
2892 notes to be subtracted are listed after a @code{^} character,
2893 separated by dots.
2894
2895 @lilypond[fragment,verbatim,center]
2896   \transpose c'' {
2897     \chords {
2898       c1^3 c:7^5.3 c:8^7
2899     }
2900   }
2901 @end lilypond 
2902 @cindex @code{/}
2903
2904 Chord inversions can be specified by appending `@code{/}' and the name
2905 of a single note to a chord.  In a chord inversion, the inverted note is
2906 transposed down until it is the lowest note in the chord.  If the note
2907 is not in the chord, a warning will be printed.
2908
2909 @lilypond[fragment,verbatim,center]
2910   \transpose c''' {
2911     \chords {
2912       c1 c/e c/g c:7/e
2913     }
2914   }
2915
2916 @end lilypond 
2917 @cindex @code{/+}
2918
2919 Bass notes can be added by `@code{/+}' and
2920 the name of a single note to a chord.  This has the effect of
2921 adding the specified note to the chord, lowered by an octave,
2922 so it becomes the lowest note in the chord.
2923
2924 @lilypond[fragment,verbatim,center]
2925   \transpose c''' {
2926     \chords {
2927       c1 c/+c c/+g c:7/+b
2928     }
2929   }
2930
2931 @end lilypond 
2932
2933 The formal syntax for named chords is as follows:
2934 @example
2935   @var{tonic}[@var{duration}][@code{-}@var{modifiers}][@code{^}@var{subtractions}][@code{/}@var{inversion}][@code{/+}@var{bass}].
2936 @end example
2937
2938 @var{tonic} should be the tonic note of the chord, and @var{duration} is
2939 the chord duration in the usual notation.  There are two kinds of
2940 modifiers.  One type is formed by @emph{chord additions}. Additions are
2941 obtained by listing intervals separated by dots.  An interval is written
2942 by its number with an optional @code{+} or @code{-} to indicate raising
2943 or lowering by half a step.  Chord additions have two effects: they adds
2944 the specified interval and all lower odd numbered intervals to the
2945 chord, and they may lower or raise the specified interval.
2946
2947
2948 @refbugs
2949
2950 Implementation details are gory. For example @code{c:4} not only adds
2951 a fourth, but also removes the third.
2952
2953
2954 @c .  {Printing named chords}
2955 @node Printing named chords
2956 @subsection Printing named chords
2957
2958 @cindex printing chord names
2959 @cindex chord names
2960 @cindex chords
2961
2962 For displaying printed chord names, use the @internalsref{ChordNames} context.
2963 The chords may be entered either using the notation described above, or
2964 directly using simultaneous music.
2965
2966 @lilypond[verbatim,singleline]
2967 scheme = \notes {
2968   \chords {a1 b c} <d f g>  <e g b>
2969 }
2970 \score {
2971   \notes<
2972     \context ChordNames \scheme
2973     \context Staff \transpose c'' \scheme
2974   >
2975 }
2976 @end lilypond
2977
2978 You can make the chord changes stand out by setting
2979 @code{ChordNames.chordChanges} to true.  This will only display chord
2980 names when there's a change in the chords scheme and at the start of a
2981 new line.
2982
2983 @lilypond[verbatim]
2984 scheme = \chords {
2985   c1:m c:m \break c:m c:m d
2986 }
2987 \score {
2988   \notes <
2989     \context ChordNames {
2990         \property ChordNames.chordChanges = ##t
2991         \scheme }
2992     \context Staff \transpose c'' \scheme
2993   >
2994 \paper{linewidth= 9.\cm}
2995 }
2996 @end lilypond
2997
2998 LilyPond examines chords specified as lists of notes to determine a name
2999 to give the chord. LilyPond will not try to identify chord inversions or
3000 an added bass note, which may result in strange chord names when chords
3001 are entered as a list of pitches:
3002
3003 @lilypond[verbatim,center,singleline]
3004 scheme = \notes {
3005   <c'1 e' g'>
3006   <e' g' c''>
3007   <e e' g' c''>
3008 }
3009
3010 \score {
3011   <
3012     \context ChordNames \scheme
3013     \context Staff \scheme
3014   >
3015 }
3016 @end lilypond
3017
3018
3019 By default, a chord name system proposed by Harald Banter (See
3020 @ref{Literature}) is used. The system is very regular and predictable.
3021 Typical American style chord names may be selected by setting the
3022 @code{style} property of the @code{ChordNames.ChordName} grob to
3023 @code{'american}. Similarly @code{'jazz} selects Jazz chordnames.
3024
3025 Routines that determine the names to be printed are written in Scheme,
3026 and may be customized by the user.  The code can be found in
3027 @file{scm/chord-name.scm}.  Here's an example showing the differences in
3028 chord name styles:
3029
3030 @c too long?
3031 @c maybe just junk verbatim option?
3032 @lilypond[verbatim,singleline]
3033 scheme = \chords {
3034   c1 c:5^3 c:4^3 c:5+
3035   c:m7+ c:m5-.7
3036   c:5-.7 c:5+.7
3037   c:9^7
3038 }
3039
3040 \score {
3041   \notes <
3042     \context ChordNames = banter \scheme
3043     \context ChordNames = american {
3044       \property ChordNames.ChordName \override
3045         #'style = #'american \scheme }
3046     \context ChordNames = jazz {
3047       \property ChordNames.ChordName \override
3048         #'style = #'jazz \scheme }
3049     \context Staff \transpose c'' \scheme
3050   >
3051 }
3052 @end lilypond
3053
3054
3055 @node Writing parts
3056 @section Writing parts
3057
3058 Orchestral music involves some special notation, both in the full score,
3059 as in the individual parts. This section explains how to tackle common
3060 problems in orchestral music.
3061
3062
3063 @c .  {Transpose}
3064 @menu
3065 * Rehearsal marks::             
3066 * Bar numbers::                 
3067 * Instrument names::            
3068 * Transpose::                   
3069 * Multi measure rests::         
3070 * Automatic part combining::    
3071 * Hara kiri staves::            
3072 * Sound output for transposing instruments::  
3073 @end menu
3074
3075 @c .   {Rehearsal marks}
3076 @node Rehearsal marks
3077 @subsection Rehearsal marks
3078 @cindex Rehearsal marks
3079 @cindex mark
3080 @cindex @code{\mark}
3081
3082 To print a  rehearsal mark, use the @code{\mark} command. 
3083 @lilypond[fragment,verbatim]
3084 \relative c'' {
3085   c1 \mark "A"
3086   c1 \mark \default
3087   c1 \mark \default 
3088   c1 \mark "12"
3089   c1 \mark \default
3090 %% FIXME  
3091 %%  c1 \mark #'(music "scripts-segno") 
3092   c1
3093 }
3094 @end lilypond
3095
3096 As you can see, the mark is incremented automatically if you use
3097 @code{\mark \default}. The value to use is stored in the property
3098 @code{rehearsalMark} is used and automatically incremented.  The grob
3099 is @internalsref{RehearsalMark} in @internalsref{Score} context. See
3100 @code{input/test/boxed-molecule.ly} if you need boxes around the
3101 marks.
3102
3103 @node Bar numbers
3104 @subsection Bar numbers
3105
3106
3107 @cindex bar numbers
3108 @cindex measure numbers
3109 @cindex currentBarNumber
3110
3111 Bar numbers are printed by default at the start of the line.  The
3112 number itself is a property that can be set by modifying the
3113 @code{currentBarNumber} property, i.e.
3114 @example
3115   \property Score.currentBarNumber = #217
3116 @end example
3117
3118 If you want boxed bar numbers, see the example file
3119 @code{input/test/boxed-molecule.ly}.
3120
3121 See also @seeinternals{BarNumber}.
3122
3123 @refbugs
3124
3125 Printing bar numbers at regular intervals is not implemented.
3126 Barnumbers can collide with the StaffGroup, if there is one at the
3127 top. To solve this, You have to twiddle with the
3128 @internalsref{padding} property of @internalsref{BarNumber} if your
3129 score starts with a @internalsref{StaffGroup}.
3130
3131 @node Instrument names
3132 @subsection Instrument names
3133
3134 In scores, the instrument name is printed before the staff. This can
3135 be done by setting @code{Staff.instrument} and
3136 @code{Staff.instr}. This will print a string before the start of the
3137 staff. For the first start, @code{instrument} is used, for the next
3138 ones @code{instr} is used.
3139
3140 @lilypond[verbatim,singleline]
3141   \property Staff.instrument = "ploink " { c''4 }  
3142 @end lilypond
3143
3144 You can also use markup texts to construct more complicated instrument
3145 names:
3146
3147
3148 @lilypond[verbatim,singleline]
3149 #(define text-flat
3150   '((font-relative-size . -2 ) (music "accidentals--1")))
3151
3152 \score { \notes {
3153   \property Staff.instrument = #`((kern . 0.5) (lines
3154     "2 Clarinetti" (columns "     (B" ,text-flat ")")))
3155     c'' 4 }
3156 }
3157 @end lilypond
3158
3159
3160 @refbugs
3161
3162 When you put a name on a grand staff or piano staff the width of the
3163 brace is not taken into account. You must add extra spaces to the end of
3164 the name to avoid a collision.
3165
3166 @node Transpose
3167 @subsection Transpose
3168 @cindex Transpose
3169 @cindex transposition of pitches
3170 @cindex @code{\transpose}
3171
3172 A music expression can be transposed with @code{\transpose}.  The syntax
3173 is
3174 @example
3175   \transpose @var{pitch} @var{musicexpr}
3176 @end example
3177
3178 This means that middle C in @var{musicexpr} is transposed to
3179 @var{pitch}.
3180
3181 @code{\transpose} distinguishes between enharmonic pitches: both
3182 @code{\transpose cis'} or @code{\transpose des'} will transpose up half
3183 a tone.  The first version will print sharps and the second version
3184 will print flats.
3185
3186 @lilypond[singleline, verbatim]
3187 mus =\notes { \key d \major cis d fis g }
3188 \score { \notes \context Staff {
3189   \clef "F" \mus
3190   \clef "G"
3191   \transpose g'' \mus
3192   \transpose f'' \mus
3193 }}
3194 @end lilypond
3195
3196 If you want to use both @code{\transpose} and @code{\relative}, then
3197 you must use @code{\transpose} first.  @code{\relative} will have no
3198 effect music that appears inside a @code{\transpose}.
3199
3200 @c .  {Multi measure rests}
3201 @node  Multi measure rests
3202 @subsection Multi measure rests
3203 @cindex Multi measure rests
3204
3205 @cindex @code{R}
3206
3207 Multi measure rests are entered using `@code{R}'. It is specifically
3208 meant for full bar rests and for entering parts: the rest can expand to
3209 fill a score with 
3210 rests, or it can be printed as a single multimeasure rest This expansion
3211 is controlled by the property @code{Score.skipBars}. If this is set to true,
3212 Lily will not expand empty measures, and the appropriate number is added
3213 automatically.
3214
3215 @lilypond[fragment,verbatim]
3216  \time 3/4 r2. | R2. | R2.*2
3217  \property Score.skipBars = ##t R2.*17  R2.*4
3218 @end lilypond
3219
3220 Notice that the @code{R2.} is printed as a whole rest, centered in the
3221 measure. 
3222
3223 @cindex whole rests for a full measure 
3224
3225 The grob for this object is @internalsref{MultiMeasureRest}.
3226
3227 @refbugs
3228
3229 Currently, there is no way to automatically condense multiple rests
3230 into a single multimeasure rest. Multi measure rests do not take part
3231 in rest collisions.
3232
3233 @cindex condensing rests
3234
3235 @node Automatic part combining
3236 @subsection Automatic part combining
3237 @cindex automatic part combining
3238 @cindex part combiner
3239
3240
3241 Automatic part combining is used to merge two parts of music onto a
3242 staff in an intelligent way.  It is aimed primarily at typesetting
3243 orchestral scores.  When the two parts are identical for a period of
3244 time, only one is shown.  In places where the two parts differ, they
3245 are typeset as separate voices, and stem directions are set
3246 automatically.  Also, solo and @emph{a due} parts can be identified
3247 and marked.
3248
3249 The syntax for part combining is
3250
3251 @example
3252   \partcombine @var{context} @var{musicexpr1} @var{musicexpr2}
3253 @end example
3254 where the pieces of music @var{musicexpr1} and @var{musicexpr2} will be
3255 combined into one context of type @var{context}.  The music expressions
3256 must be interpreted by contexts whose names should start with @code{one}
3257 and @code{two}.
3258
3259 The most useful function of the part combiner is to combine parts into
3260 one voice, as common for wind parts in orchestral scores:
3261
3262 @lilypond[verbatim,singleline,fragment]
3263   \context Staff <
3264     \context Voice=one \partcombine Voice
3265       \context Thread=one \relative c'' {
3266         g a () b r
3267       }
3268       \context Thread=two \relative c'' {
3269         g r4 r f
3270       }
3271   >
3272 @end lilypond
3273
3274 Notice that the first @code{g} appears only once, although it was
3275 specified twice (once in each part).  Stem, slur and tie directions are
3276 set automatically, depending whether there is a solo or unisono. The
3277 first part (with context called @code{one}) always gets up stems, and
3278 `solo', while the second (called @code{two}) always gets down stems and
3279 `Solo II'.
3280
3281 If you just want the merging parts, and not the textual markings, you
3282 may set the property @var{soloADue} to false.
3283
3284 @lilypond[verbatim,singleline,fragment]
3285   \context Staff <
3286     \property Staff.soloADue = ##f
3287     \context Voice=one \partcombine Voice
3288       \context Thread=one \relative c'' {
3289         b4 a c g
3290       }
3291       \context Thread=two \relative c'' {
3292         d,2 a4 g'
3293       }
3294   >
3295 @end lilypond
3296
3297 There are a number of other properties that you can use to tweak the
3298 behavior of part combining, refer to the automatically generated
3299 documentation of @reng{Thread_devnull_engraver} and
3300 @reng{Voice_devnull_engraver}. Look at the documentation of the
3301 responsible engravers, @code{Thread_devnull_engraver},
3302 @code{Voice_devnull_engraver} and @code{A2_engraver}.
3303
3304 @refbugs
3305
3306 In @code{soloADue} mode, when the two voices play the same notes on and
3307 off, the part combiner may typeset @code{a2} more than once in a
3308 measure.
3309
3310 @lilypond[fragment,singleline]
3311   \context Staff <
3312     \context Voice=one \partcombine Voice
3313       \context Thread=one \relative c'' {
3314         c b c b c a c a
3315       }
3316       \context Thread=two \relative c'' {
3317         b b b b f a f a
3318       }
3319   >
3320 @end lilypond
3321
3322 @cindex @code{Thread_devnull_engraver}
3323 @cindex @code{Voice_engraver}
3324 @cindex @code{A2_engraver}
3325
3326 @node Hara kiri staves
3327 @subsection Hara kiri staves
3328
3329 In orchestral scores, staff lines that only have rests are usually removed.
3330 This saves some space.  LilyPond also supports this through the hara
3331 kiri@footnote{Hara kiri, also called Seppuku, is the ritual suicide of
3332 the Japanese Samourai warriors.} staff. This staff commits suicide when
3333 it finds itself to be empty after the line-breaking process.  It will
3334 not disappear when it contains normal rests, you must use multi measure
3335 rests.
3336
3337 The hara kiri staff is specialized version of the @internalsref{Staff}
3338 context. It is available as the context identifier
3339 @code{\HaraKiriStaffContext}.  Observe how the second staff in this
3340 example disappears in the second line.
3341
3342 @lilypond[verbatim]
3343 \score  {
3344   \notes \relative c' <
3345     \context Staff = SA { e4 f g a \break c1 }
3346     \context Staff = SB { c4 d e f \break R1 }
3347   >
3348   \paper {
3349     linewidth = 6.\cm 
3350     \translator { \HaraKiriStaffContext }
3351   }
3352 }
3353 @end lilypond
3354
3355
3356 @node Sound output for transposing instruments
3357 @subsection Sound output for transposing instruments
3358
3359 When you want to make a MIDI file from a score containing transposed
3360 and untransposed instruments, you have to instruct LilyPond the pitch
3361 offset (in semitones) for the transposed instruments. This is done
3362 using the @code{transposing} property. It does not affect printed
3363 output.
3364
3365 @cindex @code{transposing}
3366
3367 @example
3368         \property Staff.instrument = #"Cl. in B-flat"
3369         \property Staff.transposing = #-2
3370 @end example
3371
3372
3373
3374 @c . {Custodes}
3375 @node Ancient notation 
3376 @section Ancient notation
3377
3378 @menu
3379 * Ancient note heads::          
3380 * Custodes::                    
3381 * Ancient clefs ::              
3382 * Figured bass::                
3383 @end menu
3384
3385
3386 @node Ancient note heads
3387 @subsection Ancient note heads
3388
3389  To get a longa note head, you have to use mensural note heads. This
3390 is accomplished by setting the @code{style} property of the
3391 NoteHead grob to @code{mensural}. There is also a note head style
3392 @code{baroque} which gives mensural note heads for @code{\longa} and
3393 @code{\breve} but standard note heads for shorter notes.
3394
3395 @lilypond[fragment,singleline,verbatim]
3396  \property Voice.NoteHead \set #'style = #'mensural
3397  \property Voice.NoteHead \set #'font-family = #'ancient
3398  a'\longa
3399 @end lilypond
3400
3401 @node Custodes
3402 @subsection Custodes
3403
3404 @cindex Custos
3405 @cindex Custodes
3406
3407 A @emph{custos} (plural: @emph{custodes}; latin word for `guard') is a
3408 staff context symbol that appears at the end of a staff line.  It
3409 anticipates the pitch of the first note(s) of the following line and
3410 thus helps the player or singer to manage line breaks during
3411 performance, thus enhancing readability of a score.
3412
3413 @lilypond[verbatim]
3414 \score {
3415   \notes { c'1 \break
3416         \property Staff.Custos \set #'style = #'mensural
3417         d' }
3418   \paper {
3419     \translator {
3420       \StaffContext
3421       \consists Custos_engraver
3422     }
3423   }
3424 }
3425 @end lilypond
3426
3427 Custodes were frequently used in music notation until the 17th century.
3428 There were different appearances for different notation styles.
3429 Nowadays, they have survived only in special forms of musical notation
3430 such as via the @emph{editio vaticana} dating back to the beginning of
3431 the 20th century.
3432
3433 For typesetting custodes, just put a @code{Custos_engraver} into the
3434 @internalsref{Staff} context when declaring the @code{\paper} block.  In this
3435 block, you can also globally control the appearance of the custos symbol
3436 by setting the custos @code{style} property.  Currently supported styles
3437 are @code{vaticana}, @code{medicaea}, @code{hufnagel} and
3438 @code{mensural}.
3439
3440 @example
3441 \paper @{
3442   \translator @{
3443       \StaffContext
3444       \consists Custos_engraver
3445       Custos \override #'style = #'mensural
3446   @}
3447 @}
3448 @end example
3449
3450 The property can also be set locally, for example in a @code{\notes}
3451 block:
3452
3453 @example
3454 \notes @{
3455   \property Staff.Custos \override #'style = #'vaticana
3456   c'1 d' e' d' \break c' d' e' d'
3457 @}
3458 @end example
3459
3460 @node Ancient clefs 
3461 @subsection Ancient clefs
3462
3463 LilyPond supports a variety of clefs, many of them ancient. These can
3464 be selected from the @code{ancient} font family, by setting
3465 @code{Staff.clefGlyph}) to one of the following values
3466
3467 @table @code
3468 @item clefs-C
3469  modern style C clef
3470 @item clefs-F
3471  modern style F clef
3472 @item clefs-G
3473  modern style G clef
3474 @item clefs-vaticana_do
3475  Editio Vaticana style do clef
3476 @item clefs-vaticana_fa
3477  Editio Vaticana style fa clef
3478 @item clefs-medicaea_do
3479  Editio Medicaea style do clef
3480 @item clefs-medicaea_fa
3481  Editio Medicaea style fa clef
3482 @item clefs-mensural1_c
3483  modern style mensural C clef
3484 @item clefs-mensural2_c
3485  historic style small mensural C clef
3486 @item clefs-mensural3_c
3487  historic style big mensural C clef
3488 @item clefs-mensural1_f
3489  historic style traditional mensural F clef
3490 @item clefs-mensural2_f
3491  historic style new mensural F clef
3492 @item clefs-mensural_g
3493  historic style mensural G clef
3494 @item clefs-hufnagel_do
3495  historic style hufnagel do clef
3496 @item clefs-hufnagel_fa
3497  historic style hufnagel fa clef
3498 @item clefs-hufnagel_do_fa
3499  historic style hufnagel combined do/fa clef
3500 @item clefs-percussion
3501  modern style percussion clef
3502 @end table
3503
3504 @emph{Modern style} means ``as is typeset in current editions.''
3505 @emph{Historic style} means ``as was typeset or written in contemporary
3506 historic editions''.  @emph{Editio XXX style} means ``as is/was printed in
3507 Editio XXX.''
3508
3509 @cindex Vaticana, Editio
3510 @cindex Medicaea, Editio
3511 @cindex hufnagel clefs
3512
3513
3514 @node Figured bass
3515 @subsection Figured bass
3516
3517 @cindex Basso continuo
3518
3519 LilyPond has limited support for figured bass:
3520
3521 @lilypond[verbatim,fragment]
3522 <
3523  \context FiguredBass
3524    \figures {
3525         <_! 3+ 5- >4
3526         < [4 6] 8 >
3527    }
3528  \context Voice { c4 g8 }
3529 >
3530 @end lilypond
3531
3532 The support for figured bass consists of two parts: there is an input
3533 mode, introduced by @code{\figures}, where you can enter bass figures
3534 as numbers, and there is a context called @internalsref{FiguredBass}
3535 that takes care of making @internalsref{BassFigure} grobs.
3536
3537 In figures input mode, a group of bass figures is delimited by
3538 @code{<} and @code{>}. The duration is entered after the @code{>}.
3539 @example
3540         <4 6>
3541 @end example
3542 @lilypond[fragment]
3543 \context FiguredBass
3544 \figures { <4 6> }
3545 @end lilypond
3546
3547 Accidentals are added to the numbers if you alterate them by
3548 appending @code{-}, @code{!}  and @code{+}.
3549
3550 @example
3551   <4- 6+ 7!>
3552 @end example
3553 @lilypond[fragment]
3554   \context FiguredBass
3555 \figures { <4- 6+ 7!> }
3556 @end lilypond
3557
3558 Spaces or dashes may be inserted by using @code{_}. Brackets are
3559 introduced with @code{[} and @code{]}.
3560
3561 @example
3562         < [4 6] 8 [_ 12]>
3563 @end example
3564 @lilypond[fragment]
3565  \context FiguredBass
3566 \figures { < [4 6] 8 [_ 12]> }
3567 @end lilypond
3568
3569 Although the support for figured bass may superficially resemble chord
3570 support, it works much simpler: in figured bass simply stores the
3571 numbers, and then prints the numbers you entered. There is no
3572 conversion to pitches, and no realizations of the bass are played in
3573 the MIDI file.
3574
3575
3576 @c . {Tuning output}
3577 @node Tuning output
3578 @section Tuning output
3579
3580 LilyPond tries to take as much formatting as possible out of your
3581 hands. Nevertheless, there are situations where it needs some help, or
3582 where you want to override its decisions. In this section we discuss
3583 ways to do just that.
3584
3585 Formatting is internally done by manipulating so called grobs (graphic
3586 objects). Each grob carries with it a set of properties (grob
3587 properties) specific to that object.  For example, a stem grob has
3588 properties that specify its direction, length and thickness.
3589
3590 The most direct way of tuning the output is by altering the values of
3591 these properties. There are two ways of doing that: first, you can
3592 temporarily change the definition of a certain type of grob, thus
3593 affecting a whole set of objects.  Second, you can select one specific
3594 object, and set a grob property in that object.
3595
3596 @menu
3597 * Tuning groups of grobs ::     
3598 * Tuning per grob ::            
3599 * Font selection::              
3600 * Text markup::                 
3601 @end menu
3602
3603 @node Tuning groups of grobs 
3604 @subsection Tuning groups of grobs 
3605
3606 @cindex grob description
3607
3608
3609
3610 A grob definition is a Scheme association list, that is stored in a
3611 context property.  By assigning to that property (using plain
3612 @code{\property}), you can change the resulting grobs.
3613
3614 @lilypond[verbatim, fragment]
3615 c'4 \property Voice.Stem  = #'()
3616 @end lilypond
3617
3618 The @code{\property} assignment effectively empties the definition of
3619 the Stem object. One of the effects is that the recipe of how it should be
3620 printed is erased, with the effect of rendering it invisible.  The above
3621 assignment is available as a standard identifier, for the case that you
3622 find this useful:
3623
3624 @example
3625   \property Voice.Stem = \turnOff
3626 @end example
3627
3628 @cindex \override
3629 @cindex \revert
3630 @cindex \set
3631
3632 This mechanism is fairly crude, since you can only set, but not modify,
3633 the definition of a grob. For this reason, there is a more advanced
3634 mechanism.
3635
3636 The definition of a grob is actually a list of default grob
3637 properties. For example, the definition of the Stem grob (available in
3638 @file{scm/grob-description.scm}), defines the following values for
3639 @internalsref{Stem}
3640
3641 @example
3642         (thickness . 0.8)
3643         (beamed-lengths . (0.0 2.5 2.0 1.5))
3644         (Y-extent-callback . ,Stem::height)
3645         @var{...}
3646 @end example
3647
3648 You can add a property on top of the existing definition, or remove a
3649 property, thus overriding the system defaults:
3650 @lilypond[verbatim]
3651 c'4 \property Voice.Stem \override #'thickness = #4.0
3652 c'4 \property Voice.Stem \revert #'thickness
3653 c'4
3654 @end lilypond
3655 You should balance @code{\override} and @code{\revert}. If that's too
3656 much work, you can use the @code{\set} shorthand. It performs a revert
3657 followed by an override. The following example gives exactly the same
3658 result as the previous one. 
3659 @lilypond[verbatim]
3660 c'4 \property Voice.Stem \set #'thickness = #4.0
3661 c'4 \property Voice.Stem \set #'thickness = #0.8
3662 c'4
3663 @end lilypond
3664 If you use @code{\set}, you must explicitly restore the default.
3665
3666
3667 Formally the syntax for these constructions is
3668 @example
3669 \property @var{context}.@var{grobname} \override @var{symbol} = @var{value}
3670 \property @var{context}.@var{grobname} \set @var{symbol} = @var{value}
3671 \property @var{context}.@var{grobname} \revert @var{symbol}
3672 @end example
3673 Here @var{symbol} is a Scheme expression of symbol type, @var{context}
3674 and @var{grobname} are strings and @var{value} is a Scheme expression.
3675
3676
3677 If you revert a setting which was not set in the first place, then it
3678 has no effect. However, if the setting was set as a system default, it
3679 may remove the default value, and this may give surprising results,
3680 including crashes.  In other words, @code{\override} and @code{\revert},
3681 must be carefully balanced.
3682
3683 These are examples of correct nesting of @code{\override}, @code{\set},
3684 @code{\revert}. 
3685
3686 A clumsy but correct form:
3687 @example
3688   \override \revert \override \revert \override \revert
3689 @end example
3690
3691 Shorter version of the same:
3692 @example 
3693   \override \set \set  \revert
3694 @end example
3695
3696 A short form, using only @code{\set}. This requires you to know the
3697 default value:
3698 @example
3699   \set \set \set \set @var{to default value}
3700 @end example
3701
3702 If there is no default (i.e. by default, the grob property is unset),
3703 then you can use
3704 @example
3705   \set \set \set \revert
3706 @end example
3707
3708 For the digirati, the grob description is an Scheme association
3709 list. Since a Scheme list is a singly linked list, we can treat it as a
3710 stack, and @code{\override} and @code{\revert} are just push and pop
3711 operations. This pushing and popping is also used for overriding
3712 automatic beaming settings.
3713
3714 @refbugs
3715
3716 LilyPond will hang or crash if @var{value} contains cyclic references.
3717 The backend is not very strict in type-checking grob properties. If you
3718 @code{\revert} properties that are expected to be set by default,
3719 LilyPond may crash.
3720
3721
3722 @cindex adjusting staff symbol
3723 @cindex StaffSymbol, using \property
3724 @cindex staff lines, setting number of
3725
3726 Some grobs are created at the moment that their context is created. An
3727 example of such a grob is the staff itself (i.e. the horizontal lines).
3728 You can not change the appearance of the staff symbol by manipulating
3729 @code{\property Staff.StaffSymbol}.  At the moment that @code{\property
3730 Staff} is interpreted, a Staff context is made, and the StaffSymbol is
3731 created before any @code{\override} is effective. You can deal with this
3732 either overriding properties in a @code{\translator} definition, or by
3733 using @code{\outputproperty}.
3734
3735
3736
3737
3738 @node Tuning per grob 
3739 @subsection Tuning per grob 
3740
3741 @cindex \outputproperty
3742
3743 A second way of tuning grobs is the more arcane @code{\outputproperty}
3744 feature.  The syntax is as follows:
3745 @example
3746 \outputproperty @var{predicate} @var{symbol} = @var{value}
3747 @end example
3748 Here @code{predicate} is a Scheme function taking a grob argument, and
3749 returning a boolean.  This statement is processed by the
3750 @code{Output_property_engraver}.  It instructs the engraver to feed all
3751 grobs that it sees to @var{predicate}. Whenever the predicate returns
3752 true, the grob property @var{symbol} will be set to @var{value}.
3753
3754 You will need to combine this statement with @code{\context} to select
3755 the appropriate context to apply this to.
3756
3757 Here are some random examples. 
3758
3759
3760 In the following example, all note heads occurring at current staff
3761 level, are shifted up and right by setting their @code{extra-offset}
3762 property.
3763
3764 @lilypond[fragment,verbatim,singleline]
3765 \relative c'' { c4
3766   \context Staff \outputproperty
3767   #(make-type-checker 'note-head-interface)
3768   #'extra-offset = #'(0.5 . 0.75)
3769   <c8 e g> }
3770 @end lilypond
3771
3772 @cindex @code{extra-offset}
3773
3774 In this example, the predicate checks the @code{text} grob property, to
3775 shift only the `m.d.' text,  but not the fingering instruction "2".
3776 @lilypond[verbatim,singleline]
3777 #(define (make-text-checker text)
3778    (lambda (grob) (equal? text (ly-get-grob-property grob 'text))))
3779
3780 \score {    
3781   \notes\relative c''' {
3782     \property Voice.Stem \set #'direction = #1
3783     \outputproperty #(make-text-checker "m.d.")
3784       #'extra-offset = #'(-3.5 . -4.5)
3785     a^2^"m.d."    
3786   }
3787 }
3788 @end lilypond
3789
3790 @refbugs
3791
3792 If possible, avoid this feature: the semantics are not very clean, and
3793 the syntax and semantics are up for rewrite.
3794
3795
3796
3797
3798 @node Font selection
3799 @subsection Font selection
3800
3801 Most graphics in LilyPond are composed of characters of fonts.  You can
3802 alter the characteristics of the font by setting certain grob
3803 properties. The mechanism that is used for this resembles La@TeX{}'s New
3804 Font Selection Scheme. Within this scheme, a font is entirely
3805 characterized by its font name.
3806
3807 For each grob that uses fonts (in other words, each grob that supports
3808 @code{font-interface}) a font-name must be selected before it can be
3809 printed.  The font name is selected by looking at a number of grob
3810 properties:
3811
3812 @table @code
3813 @item font-family
3814  A symbol indicating the general class of the typeface.  Supported are
3815 @code{roman} (Computer Modern), @code{braces} (for piano staff
3816 braces), @code{music} (the standard music font), @code{ancient} (the
3817 ancient notation font) @code{dynamic} (font for dynamic signs) and
3818 @code{typewriter}
3819
3820 @item font-shape
3821   A symbol indicating the shape of the font, there are typically several
3822   font shapes available for each font family. Choices are @code{italic},
3823   @code{caps} and @code{upright} 
3824
3825 @item font-series
3826 A  symbol indicating the series of the font. There are typically several
3827 font series for each font family and shape. Choices are @code{medium}
3828 and @code{bold}. 
3829
3830 @item font-relative-size
3831   A number indicating the size relative the standard size.  For example,
3832   with 20pt staff height, relative size -1  corresponds to 16pt staff
3833   height, and relative size +1 corresponds to 23 pt staff height.
3834
3835 @item font-design-size
3836 A number indicating  the design size of the font. 
3837
3838 This is a feature of the Computer Modern Font: each point size has a
3839 slightly different design. Smaller design sizes are relatively wider,
3840 which enhances readability.
3841
3842 @item font-name
3843   The name of the font, as a string, e.g. @code{"cmr12"}. This overrides
3844 all other font-qualifiers. 
3845 You may use this to use special fonts, which are not a part of the
3846 style sheet, or which have special encodings.
3847
3848 @end table
3849
3850
3851 The font is selected by taking the first font that satisfies all
3852 qualifiers specified. You can override any of these fields through
3853 @code{\override} and @code{\revert}. The special value @code{*} matches
3854 any value for that qualifier.  The value @code{*} is needed to
3855 override default settings which are always present. 
3856
3857 @example
3858   \property Lyrics.LyricText \override #'font-series = #'bold
3859   \property Lyrics.LyricText \override #'font-shape = #'*
3860 @end example
3861
3862 @cindex @code{font-style}
3863
3864 There are also pre-cooked font selection qualifiers. These are selected
3865 through the grob property @code{font-style}.  For example, the style
3866 @code{finger} selects family @code{number} and relative size @code{-3}.
3867 Styles available include @code{volta}, @code{finger}, @code{tuplet},
3868 @code{timesig}, @code{mmrest}, @code{script}, @code{large}, @code{Large}
3869 and @code{dynamic}.
3870
3871 The style sheets and tables for selecting fonts are located in
3872 @file{scm/font.scm}. Refer to this file for more information.
3873
3874 The size of the font may be scaled with the grob property
3875 @code{font-magnification}.  For example, @code{2.0} blows up all
3876 letters by a factor 2 in both directions.
3877
3878 @refbugs
3879
3880 Relative size is not linked to any real size.
3881
3882 There is no style sheet provided for other fonts besides the @TeX{}
3883 family, and the style sheet can not be modified easiyl.
3884
3885 @cindex font selection
3886 @cindex font magnification
3887 @cindex @code{font-interface}
3888
3889
3890 @node Text markup
3891 @subsection Text markup
3892 @cindex text markup
3893 @cindex markup text
3894
3895 LilyPond has an internal mechanism to typeset texts. You can
3896 form text markup expressions by composing scheme expressions
3897 in the following way.
3898
3899 @lilypond[verbatim, singleline]
3900  \relative c' {
3901     \fatText
3902     a^#"upright"
3903     b_#'(bold "bold")
3904     c^#'(italic "italic")
3905     d_#'((bold italic) "ff")
3906     e^#'(dynamic "ff")
3907     f_#'(lines "one" (bold "two"))
3908     g^#'(music "noteheads-2" ((raise . 2.4) "flags-u3"))
3909   }
3910 @end lilypond
3911
3912 Normally, the Scheme markup text is stored in the @code{text} property
3913 of a grob.  Formally, it is defined as follows:
3914
3915 @example
3916 text: string | (head? text+)
3917 head: markup | (markup+)
3918 markup-item: property | abbrev
3919 property: (@var{key} . @var{value})
3920 abbrev: @code{columns lines roman music bold italic named super sub}
3921         @code{overstrike text finger volta timesig mmrest mark script}
3922         @code{large Large dynamic}
3923 @end example
3924
3925 The markup is broken down and converted into a list of grob properties,
3926 which are prepended to the property list.  The @var{key}-@var{value}
3927 pair is a grob property. A list of properties available is included in
3928 the generated documentation for @rint{Text_interface}.
3929
3930 The following abbreviations are defined:
3931 @table @code
3932 @item columns
3933  horizontal mode: set all text on one line (default)
3934 @item lines
3935  vertical mode: set every text on a new line
3936 @item roman
3937  select roman font
3938 @item music
3939  selects the Feta font (the standard font for music notation glyphs),
3940 and uses named lookup
3941
3942 @item bold
3943  select bold series
3944 @item italic
3945  select italic shape
3946 @item named
3947  lookup by character name
3948 @item text
3949  plain text lookup (by character value)
3950 @item super
3951  superscript
3952 @item sub
3953  subscript
3954 @item overstrike
3955  the next text or character overstrikes this one
3956 @item finger
3957  select fingering number fontstyle
3958 @item volta
3959  select volta number fontstyle
3960 @item timesig
3961  select time signature number fontstyle
3962 @item mmrest
3963  select multi measure rest number fontstyle
3964 @item mark
3965  select mark number fontstyle
3966 @item script
3967  select scriptsize roman fontstyle
3968 @item large
3969  select large roman fontstyle
3970 @item Large
3971  select Large roman fontstyle
3972 @item dynamic
3973  select dynamics fontstyle
3974 @end table
3975
3976
3977 @cindex metronome mark
3978
3979 One practical application of complicated markup is to fake a metronome
3980 marking:
3981
3982 @lilypond[verbatim]
3983 #(define note '(columns
3984   (music "noteheads-2" ((kern . -0.1) "flags-stem"))))
3985 #(define eight-note `(columns ,note ((kern . -0.1)
3986   (music ((raise . 3.5) "flags-u3")))))
3987 #(define dotted-eight-note
3988   `(columns ,eight-note (music "dots-dot")))
3989
3990 \score {
3991   \notes\relative c'' {
3992     a1^#`((columns (font-relative-size . -1)) ,dotted-eight-note " = 64")
3993   }
3994   \paper {
3995     linewidth = -1.
3996     \translator{
3997       \ScoreContext
3998       TextScript \override #'font-shape = #'upright
3999     }
4000   }
4001 }
4002 @end lilypond
4003
4004 @refbugs
4005
4006 The syntax and semantics of markup texts are not clean, and both
4007 syntax and semantics are slated for a rewrite.
4008
4009 @node Global layout
4010 @section Global layout
4011
4012 The global layout determined by three factors: the page layout, the
4013 line breaks and the spacing. These all influence each other: The
4014 choice of spacing determines how densely each system of music is set,
4015 whree line breaks breaks are chosen, and thus ultimately how many
4016 pages a piece of music takes. In this section we will explain how the
4017 lilypond spacing engine works, and how you can tune its results.
4018
4019 Globally spoken, this procedure happens in three steps: first,
4020 flexible distances (``springs'') are chosen, based on durations. All
4021 possible line breaking combination are tried, and the one with the
4022 best results---a layout that has uniform density and requires as
4023 little stretching or cramping as possible---is chosen. When the score
4024 is processed by @TeX{}, page are filled with systems, and page breaks
4025 are chosen whenever the page gets full.
4026
4027 @menu
4028 * Spacing::                     
4029 * Font Size::                   
4030 * Line breaking::               
4031 * Page layout::                 
4032 @end menu
4033
4034 @node Spacing
4035 @subsection Spacing
4036
4037 The spacing engine translates differences in durations into
4038 stretchable distances (``springs'') of differing lengths. Longer
4039 durations get more space, shorter durations get less.  The basis for
4040 assigning spaces to durations, is that the shortest durations get a
4041 fixed amount of space, and the longer durations get more: doubling a
4042 duration adds a fixed amount of space to the note.
4043
4044 For example, the following piece contains lots of half, quarter and
4045 8th notes, the eighth note is followed by 1 note head width. The The
4046 quarter note is followed by 2 NHW, the half by 3 NHW, etc.
4047 @lilypond[fragment, verbatim, relative=1]
4048  c2 c4. c8 c4. c8 c4. c8 c8 c8 c4 c4 c4
4049 @end lilypond
4050
4051 These two amounts of space are @code{shortest-duration-space}
4052 @code{spacing-increment}, grob properties of
4053 @internalsref{SpacingSpanner}. Normally @code{spacing-increment} is
4054 set to 1.2, which is the width of a note head, and
4055 @code{shortest-duration-space} is set to 2.0, meaning that the
4056 shortest note gets 2 noteheads of space. For normal notes, this space
4057 is always counted from the left edge of the symbol, so the short notes
4058 in a score is generally followed by one note head width of space.
4059
4060 If one would follow the above procedure exactly, then adding a single
4061 32th note to a score that uses 8th and 16th notes, would widen up the
4062 entire score a lot. The shortest note is no longer a 16th, but a 64th,
4063 thus adding 2 noteheads of space to every note. To prevent this, the
4064 shortest duration for spacing is not the shortest note in the score,
4065 but the most commonly found shortest note.  Notes that are even
4066 shorter this are followed by a space that is proportonial to their
4067 duration relative to the common shortest note.  So if we were to add
4068 only a few 16th notes to the example above, they would be followed by
4069 half a NHW:
4070
4071 @lilypond[fragment, verbatim, relative=1]
4072  c2 c4. c8 c4. [c16 c] c4. c8 c8 c8 c4 c4 c4
4073 @end lilypond
4074
4075 The most common shortest duration is determined as follows: in every
4076 measure, the shortest duration is determined. The most common short
4077 duration, is taken as the basis for the spacing, with the stipulation
4078 that this shortest duration should always be equal to or shorter than
4079 1/8th note. The shortest duration is printed when you run lilypond
4080 with @code{--verbose}.  These durations may also be customized. If you
4081 set the @code{common-shortest-duration} in
4082 @internalsref{SpacingSpanner}, then this sets the base duration for
4083 spacing. The maximum duration for this base (normally 1/8th), is set
4084 through @code{base-shortest-duration}.
4085
4086 @cindex @code{common-shortest-duration}
4087 @cindex @code{base-shortest-duration}
4088 @cindex @code{stem-spacing-correction}
4089 @cindex @code{spacing}
4090
4091 In the introduction it was explained that stem directions influence
4092 spacing. This is controlled with @code{stem-spacing-correction} in
4093 @internalsref{NoteSpacing}. The @code{StaffSpacing} grob contains the
4094 same property for controlling the stem/barline spacing. In the
4095 following example shows these corrections, once with default settings,
4096 and once with exaggerated corrections.  
4097
4098 @lilypond
4099     \score { \notes {
4100       c'4 e''4 e'4 b'4 |
4101       b'4 e''4 b'4 e''4|
4102       \property Staff.NoteSpacing \override #'stem-spacing-correction
4103       = #1.5
4104       \property Staff.StaffSpacing \override #'stem-spacing-correction
4105       = #1.5
4106       c'4 e''4 e'4 b'4 |
4107       b'4 e''4 b'4 e''4|      
4108     }
4109     \paper { linewidth = -1. } }
4110 @end lilypond
4111
4112
4113
4114 @refbugs
4115
4116 Spacing is determined on a score wide basis. If you have a score that
4117 changes its character (measured in durations) half way during the
4118 score, the part containing the longer durations will be spaced too
4119 widely.
4120
4121 Generating optically pleasing spacing is black magic. LilyPond tries
4122 to deal with a number of frequent cases. Here is an example that is
4123 not handled correctly, due to the combination of chord collisions and
4124 kneed stems.
4125
4126 @lilypond
4127 \score {
4128      \context PianoStaff \notes \transpose c''' <
4129      \context Staff = up { s1 }
4130      \context Staff = down { [c8 c \translator Staff=up <c d> c 
4131 \translator Staff=down c c c] }
4132      >
4133      \paper { linewidth = -1 }
4134 }
4135 @end lilypond
4136
4137
4138 @c .  {Font size}
4139 @node Font Size
4140 @subsection Font size
4141 @cindex font size, setting
4142 @cindex staff size, setting
4143 @cindex @code{paper} file
4144
4145 The Feta font provides musical symbols at six different sizes.  These
4146 fonts are 11 point, 13 point, 16 point, 20 point, 23 point, and 26
4147 point.  The point size of a font is the height of the five lines in a
4148 staff when displayed in the font.
4149
4150 Definitions for these sizes are the files @file{paperSZ.ly}, where
4151 @code{SZ} is one of 11, 13, 16, 20, 23 and 26.  If you include any of
4152 these files, the identifiers @code{paperEleven}, @code{paperThirteen},
4153 @code{paperSixteen}, @code{paperTwenty}, @code{paperTwentythree}, and
4154 @code{paperTwentysix} are defined respectively.  The default
4155 @code{\paper} block is also set. These files should be imported at toplevel, i.e.
4156 @example
4157         \include "paper26.ly"
4158         \score @{  ... @}
4159 @end example
4160
4161 The font definitions are generated using a Scheme function. For more
4162 details, see the file @file{scm/font.scm}.
4163
4164
4165 @c .  {Line break}
4166 @node Line breaking
4167 @subsection Line breaking
4168
4169 @cindex line breaks
4170 @cindex breaking lines
4171
4172 Line breaks are normally computed automatically. They are chosen such
4173 that it looks neither cramped nor loose, and that consecutive lines have
4174 similar density.
4175
4176 Occasionally you might want to override the automatic breaks; you can
4177 do this by specifying @code{\break}. This will force a line break at
4178 this point.  Line breaks can only occur at places where there are bar
4179 lines.  If you want to have a line break where there is no bar line,
4180 you can force an invisible bar line by entering @code{\bar
4181 ""}. Similarly, @code{\noBreak} forbids a line break at a certain
4182 point.
4183
4184 If you want linebreaks at regular intervals, you can use the following:
4185 @example
4186 <  \repeat 7 unfold @{ s1 * 4 \break  @}
4187    @emph{real music}
4188
4189 @end  example
4190 This makes the following 28 measures (assuming 4/4 time) be broken every
4191 4 measures.
4192
4193 @node Page layout
4194 @subsection Page layout
4195
4196 @cindex page breaks
4197 @cindex breaking pages
4198
4199 @cindex @code{indent}
4200 @cindex @code{linewidth}
4201
4202 The most basic settings influencing the spacing are @code{linewidth}
4203 and @code{indent}, both set in the @code{\paper} block.  They control
4204 the indentation of the first line of music, and the lengths of the
4205 lines.  If @code{linewidth} set to a negative value, a single
4206 unjustified line is produced.  A similar effect for scores that are
4207 longer than one line, can be produced by setting @code{raggedright} to
4208 true in the @code{\paper} block.
4209
4210 @cindex page layout
4211
4212 The page layout process happens outside lilypond. Ly2dvi sets page
4213 layout instructions. Ly2dvi responds to the following variables in the
4214 @code{\paper} block.  The variable @code{textheight} sets the total
4215 height of the music on each page.  The spacing between systems is
4216 controlled with @code{interscoreline}, its default is 16pt.
4217 The distance between the score lines will stretch in order to fill the
4218 full page @code{interscorelinefill} is set to a positive number.  In
4219 that case @code{interscoreline} specifies the minimum spacing.
4220
4221 @cindex @code{textheight}
4222 @cindex @code{interscoreline}
4223 @cindex @code{interscorelinefill}
4224
4225 Page breaks are normally computed by @TeX{}, so they are not under
4226 direct control of LilyPond.  However, you can insert a commands into
4227 the @file{.tex} output to instruct @TeX{} where to break pages. You
4228 can insert a @code{\newpage} from within lilypond. This is done by
4229 setting the @code{between-systems-strings} on the
4230 @internalsref{NonMusicalPaperColumn} where the system is broken.
4231
4232 @cindex paper size
4233 @cindex page size
4234 @cindex @code{papersize}
4235
4236 To change the paper size, you must first set the
4237 @code{papersize} paper variable variable.  Set it to
4238 the strings @code{a4}, @code{letter}, or @code{legal}.  After this
4239 specification, you must set the font as described above.  If you want
4240 the default font, then use the 20 point font.
4241
4242 @example
4243         \paper@{ papersize = "a4" @}
4244         \include "paper16.ly"
4245 @end example
4246
4247 The file @code{paper16.ly}  will now include a file named @file{a4.ly}, which
4248 will set the paper variables @code{hsize} and @code{vsize} (used by
4249 Lilypond and @code{ly2dvi})
4250
4251
4252
4253
4254 @c . {Sound}
4255 @node Sound
4256 @section Sound
4257 @cindex Sound
4258
4259 LilyPond can produce MIDI output.  The performance lacks lots of
4260 interesting effects, such as swing, articulation, slurring, etc., but it
4261 is good enough for proof-hearing the music you have entered.  Ties,
4262 dynamics and tempo changes are interpreted.
4263
4264 Dynamic marks, crescendi and decrescendi translate into MIDI volume
4265 levels.  Dynamic marks translate to a fixed fraction of the available
4266 MIDI volume range, crescendi and decrescendi make the the volume vary
4267 linearly between their two extremities.  The fractions be adjusted by
4268 overriding the @code{absolute-volume-alist} defined in
4269 @file{scm/midi.scm}.
4270
4271 For each type of musical instrument (that MIDI supports), a volume range
4272 can be defined.  This gives you basic equalizer control, which can
4273 enhance the quality of the MIDI output remarkably.  You can add
4274 instruments and ranges or change the default settings by overriding the
4275 @code{instrument-equalizer-alist} defined in @file{scm/midi.scm}.
4276
4277 Both loudness controls are combined to produce the final  MIDI volume. 
4278
4279
4280
4281 @menu
4282 * MIDI block::                  
4283 * MIDI instrument names::       
4284 @end menu
4285
4286 @c .  {MIDI block}
4287 @node MIDI block
4288 @subsection MIDI block
4289 @cindex MIDI block
4290
4291
4292 The MIDI block is analogous to the paper block, but it is somewhat
4293 simpler.  The @code{\midi} block can contain:
4294 @cindex MIDI block
4295
4296 @itemize @bullet
4297   @item  a @code{\tempo} definition
4298   @item  context definitions
4299 @end itemize
4300
4301 Assignments in the @code{\midi} block are not allowed.
4302
4303
4304
4305 @cindex context definition
4306
4307 Context definitions follow precisely the same syntax as within the
4308 \paper block.  Translation modules for sound are called performers.
4309 The contexts for MIDI output are defined in @file{ly/performer-init.ly}.
4310
4311
4312 @node MIDI instrument names
4313 @subsection MIDI instrument names
4314
4315 @cindex instrument names
4316 @cindex @code{Staff.midiInstrument}
4317 @cindex @code{Staff.instrument}
4318
4319 The MIDI instrument name is set by the @code{Staff.midiInstrument}
4320 property or, if that property is not set, the @code{Staff.instrument}
4321 property.  The instrument name should be chosen from the list in
4322 @ref{MIDI instruments}.
4323
4324 @refbugs
4325
4326 If the selected string does not exactly match, then LilyPond uses the
4327 default (Grand Piano). It is not possible to select an instrument by
4328 number.
4329
4330