]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/refman.itely
release: 1.5.23
[lilypond.git] / Documentation / user / refman.itely
1
2 @c Note:
3 @c
4 @c A menu is needed before every deeper *section nesting of @node's; run
5 @c     M-x texinfo-all-menus-update
6 @c to automagically fill in these menus before saving changes
7
8 @c FIXME: singular vs. plural:  Beams/Beam
9
10
11 @macro refbugs
12 @strong{BUGS}
13
14 @end macro
15
16 @ifhtml
17 @macro internalsref{NAME}
18 @uref{../lilypond-internals/\NAME\.html,\NAME\}
19 @cindex \NAME\
20 @end macro
21 @macro seeinternals{NAME}
22 See @internalsref{\NAME\}
23 @end macro
24 @end ifhtml
25
26
27 @ifnothtml
28 @macro seeinternals{NAME}
29 @end macro
30 @macro internalsref{NAME}
31 \NAME\
32 @cindex \NAME\
33
34 @end macro
35 @end ifnothtml
36
37 @c .{Reference Manual}
38
39 @node Reference Manual
40 @chapter Reference Manual
41
42 @html
43 <!--- @@WEB-TITLE@@=Reference Manual --->
44 @end html
45
46 This document describes GNU LilyPond and its input format. The last
47 revision of this document was made for LilyPond 1.4.1.  It supposes a
48 passing familiarity with how LilyPond input works. New users are
49 encouraged to study the tutorial first.
50
51 The reference manual is ordered according to different tasks. 
52 More details on the property setting mechanisms and context handling is
53 provided in @ref{Tuning output} and @ref{Interpretation context}. The
54 syntactical details are described at the end of the manual.
55
56 @menu
57 * Overview::                    
58 * Note entry::                  
59 * Staff notation::              
60 * Polyphony::                   
61 * Beaming::                     
62 * Expressive marks::            
63 * Ornaments::                   
64 * Repeats::                     
65 * Rhythmic music::              
66 * Piano music::                 
67 * Lyrics::                      
68 * Chords::                      
69 * Writing parts::               
70 * Custodes::                    
71 * Tuning output::               
72 * Page layout::                 
73 * Output formats::              
74 * Sound::                       
75 * Music entry::                 
76 * Skipping corrected music::    
77 * Interpretation context::      
78 * Syntactic details::           
79 * Lexical details::             
80 @end menu
81
82 @c . {Overview}
83 @node Overview
84 @section Overview
85
86
87 The purpose of LilyPond is explained informally by the term `music
88 typesetter'.  This is not a fully correct name: not only does the
89 program print musical symbols, it also makes aesthetic decisions.
90 Symbols and their placements are @emph{generated} from a high-level
91 musical description.  In other words, LilyPond would be best described
92 by `music compiler' or `music to notation compiler'.
93
94 LilyPond is linked to GUILE, GNU's Scheme library for extension
95 programming. The Scheme library provides the glue that holds together
96 the low-level routines and separate modules which are written in C++.
97
98 When lilypond is run to typeset sheet music, the following happens:
99 @itemize @bullet
100 @item GUILE Initialization: various scheme files are read
101 @item parsing: first standard @code{ly} initialization  files are read, and
102 then the user @file{ly} file is read.
103 @item interpretation: the music in the file is processed ``in playing
104 order'', i.e. the order that  you  use to read sheet music, or the
105 order in which notes are played. The result of this step is a typesetting
106 specification.
107
108 @item typesetting:
109 The typesetting specification is solved: positions and formatting is
110 calculated.
111
112 @item the visible results ("virtual ink") are written to the output file.
113 @end itemize
114
115 During these stages different types of data play the the main role:
116 during parsing, @strong{Music} objects are created.  During the
117 interpretation, @strong{contexts} are constructed, and with these contexts
118 a network of @strong{graphical objects} (``grobs'') is created. These
119 grobs contain unknown variables, and the network forms a set of
120 equations. After solving the equations and filling in these variables,
121 the printed output (in the form of @strong{molecules}) is written to an
122 output file.
123
124 These threemanship of tasks (parsing, translating, typesetting) and
125 data-structures (music, context, graphical objects) permeates the entire
126 design of the program.
127
128 @c FIXME: Note entry vs Music entry at top level menu is confusing.
129 @c . {Note entry}
130 @node Note entry
131 @section Note entry
132 @cindex Note entry
133
134 The most basic forms of music are notes. We discuss how you enter them
135 here.  Notes on their own don't form valid input, but for the sake of
136 brevity we omit obligatory lint such as @code{\score} blocks and
137 @code{\paper} declarations.
138
139
140 @menu
141 * Notes::                       
142 * Pitches::                     
143 * Rests::                       
144 * Skips::
145 * Durations::                   
146 * Ties::                        
147 * Tuplets::                     
148 * Defining pitch names::        
149 * Easy Notation note heads ::   
150 @end menu
151
152 @c . {Notes}
153 @node Notes
154 @subsection Notes
155
156 A note specification has the form
157
158 @example
159   @var{pitch}[!][?][@var{duration}]
160 @end example
161
162 The alteration refers to what note is heard, not to whether an
163 accidental is printed. This is done depending on the key and context.
164 A reminder accidental
165 @cindex reminder accidental
166 @cindex @code{?}
167 can be forced by adding an exclamation mark @code{!} after the pitch.  A
168 cautionary accidental,
169 @cindex cautionary accidental
170 @cindex parenthesized accidental
171 i.e., an accidental within parentheses can be obtained by adding the
172 question mark `@code{?}' after the pitch.
173
174 @lilypond[fragment,verbatim,center]
175   cis' d' e' cis'  c'? d' e' c'!
176 @end lilypond
177
178 The grob for a note head is called @internalsref{NoteHead}.
179
180
181 @c .  {Pitches}
182 @node Pitches
183 @subsection Pitches
184
185 @cindex Pitch names
186 @cindex Note specification
187 @cindex pitches
188 @cindex entering notes
189
190 The verbose syntax for pitch specification is
191
192 @cindex @code{\pitch}
193 @example
194   \pitch @var{scmpitch}
195 @end example
196
197 @var{scmpitch} is a pitch scheme object, see @ref{Pitch data type}.
198
199 In Note and Chord mode, pitches may be designated by names.  The default
200 names are the Dutch note names.  The notes are specified by the letters
201 @code{a} through @code{g} (where the octave is formed by notes ranging
202 from @code{c} to @code{b}).  The pitch @code{c} is an octave below
203 middle C and the letters span the octave above that C.
204
205 @cindex note names, Dutch
206
207 In Dutch, a sharp is formed by adding @code{-is} to the end of a pitch
208 name and a flat is formed by adding @code{-es}. Double sharps and double
209 flats are obtained by adding @code{-isis} or @code{-eses}.  @code{aes}
210 and @code{ees} are contracted to @code{as} and @code{es} in Dutch, but
211 both forms are accepted.
212
213 LilyPond has predefined sets of note names for various other languages.
214 To use them, simply include the language specific init file.  For
215 example: @code{\include "english.ly"}.  The available language files and
216 the names they define are:
217
218 @example 
219                         Note Names               sharp       flat
220 nederlands.ly  c   d   e   f   g   a   bes b   -is         -es
221 english.ly     c   d   e   f   g   a   bf  b   -s/-sharp   -f/-flat
222 deutsch.ly     c   d   e   f   g   a   b   h   -is         -es
223 norsk.ly       c   d   e   f   g   a   b   h   -iss/-is    -ess/-es
224 svenska.ly     c   d   e   f   g   a   b   h   -iss        -ess
225 italiano.ly    do  re  mi  fa  sol la  sib si  -d          -b
226 catalan.ly     do  re  mi  fa  sol la  sib si  -d/-s       -b 
227 @end example 
228
229 @cindex @code{'}
230 @cindex @code{,}
231
232
233
234 The optional octave specification takes the form of a series of
235 single quote (`@code{'}') characters or a series of comma
236 (`@code{,}') characters.  Each @code{'} raises the pitch by one
237 octave; each @code{,} lowers the pitch by an octave.
238
239 @lilypond[fragment,verbatim,center]
240   c' c'' es' g' as' gisis' ais'  
241 @end lilypond
242
243 @c .  {Rests}
244 @node  Rests
245 @subsection Rests
246 @cindex Rests
247
248 A rest is entered like a note, with note name `@code{r}':
249
250 @lilypond[singleline,verbatim]
251 r1 r2 r4 r8
252 @end lilypond
253
254 The grob is @internalsref{Rest}. Whole bar rests centered in the bar are
255 specified using @code{R}, see @ref{Multi measure rests}.
256
257
258 @c .  {Skips}
259 @c FIXME: naming.
260 @node Skips
261 @subsection Skips
262 @cindex Skip
263 @cindex Invisible rest
264 @cindex Space note
265
266 An invisible rest, or skip, can be entered like a note with note name
267 `@code{s}':
268
269 @lilypond[singleline,verbatim]
270 a2 s4 a4 s1 a4
271 @end lilypond
272
273 Actually, this is a shorthand for the @code{\skip} command, and it is
274 only available in Note mode and Chord mode.
275
276 @c FIXME: in lyrics mode, we have " " and _
277
278 In Lyrics mode, you can use `@code{" "}' and `@code{_}':
279 @lilypond[singleline,verbatim]
280 <
281   \context Lyrics \lyrics { lah2 di4 " " dah2 _4 di }
282   \notes\relative c'' { a2 a4 a a2 a4 a }
283 >
284 @end lilypond
285
286 The unabbreviated `@code{\skip} @var{duration}' also works outside of
287 note mode:
288
289 @lilypond[singleline,verbatim]
290 \score {
291   \context Staff <
292     { \time 4/8 \skip 2 \time 4/4 } 
293     \notes\relative c'' { a2 a1 }
294   >
295 }
296 @end lilypond
297
298 Note that the skip does not produce any output, not even transparent output.
299
300
301 @c .  {Durations}
302 @node Durations
303 @subsection Durations
304
305
306 @cindex duration
307 @cindex @code{\duration}
308
309 The syntax for a verbose duration specification is
310 @example
311  \duration @var{scmduration}
312 @end example
313 Here, @var{scmduration} is a Scheme object of type @code{Duration}. See
314 @ref{Duration} for more information.
315
316
317 In Note, Chord, and Lyrics mode, durations may be designated by numbers
318 and dots: durations are entered as their reciprocal values.  For notes
319 longer than a whole you must use identifiers.
320
321 @example 
322  c'\breve  
323 c'1 c'2 c'4 c'8 c'16 c'32 c'64 c'64 
324 r\longa r\breve  
325 r1 r2 r4 r8 r16 r32 r64 r64 
326 @end example 
327
328
329 @lilypond[]
330 \score {
331   \notes \relative c'' {
332     a\breve  \autoBeamOff
333     a1 a2 a4 a8 a16 a32 a64 a64 
334     r\longa r\breve  
335     r1 r2 r4 r8 r16 r32 r64 r64 
336   }
337   \paper {
338     \translator {
339       \StaffContext
340         \remove "Clef_engraver"
341         \remove "Staff_symbol_engraver"
342         \remove "Time_signature_engraver"
343         \consists "Pitch_squash_engraver"
344     }
345   }
346 }
347 @end lilypond
348
349  To get a longa note head, you have to use mensural note heads. This
350 is accomplished by setting the @code{style} property of the
351 NoteHead grob to @code{mensural}. There is also a note head style
352 @code{baroque} which gives mensural note heads for @code{\longa} and
353 @code{\breve} but standard note heads for shorter notes.
354
355 @lilypond[fragment,singleline,verbatim]
356  \property Voice.NoteHead \set #'style = #'mensural
357  a'\longa
358 @end lilypond
359
360 If the duration is omitted then it is set to the previous duration
361 entered.  At the start of parsing a quarter note is assumed.  The
362 duration can be followed by dots (`@code{.}')  to obtain dotted note
363 lengths.
364 @cindex @code{.}
365
366 @lilypond[fragment,verbatim,center]
367   a'4. b'4.. c'8.
368 @end lilypond
369 @cindex @code{r}
370 @cindex @code{s}
371
372 You can alter the length of duration by a fraction @var{N/M} by
373 appending `@code{*}@var{N/M}' (or `@code{*}@var{N}' if @var{M=1}). This
374 will not affect the appearance of the notes or rests produced.
375
376
377
378
379 @node Ties
380 @subsection Ties
381
382 @cindex Tie
383 @cindex ties
384 @cindex @code{~}
385
386 A tie connects two adjacent note heads of the same pitch.  When used
387 with chords, it connects all the note heads whose pitches match.
388 Ties are indicated using the tilde symbol `@code{~}'.  If you try to tie
389 together chords which have no common pitches then no ties will be
390 created.
391
392 @lilypond[fragment,verbatim,center]
393   e' ~ e' <c' e' g'> ~ <c' e' g'>
394 @end lilypond
395
396 If you dislike the amount of ties created for a chord, you set
397 @code{Voice.sparseTies} to true, resulting in  a smaller number of
398 ties:
399 @lilypond[fragment,verbatim,center]
400   \property Voice.sparseTies = ##t
401   <c' e' g'> ~ <c' e' g'>
402 @end lilypond
403
404 In its meaning a tie is just a way of extending a note duration, similar
405 to the augmentation dot: the following example are two ways of notating
406 exactly the same concept.
407 @c
408 @lilypond[fragment, singleline]
409 \time 3/4 c'2. c'2 ~ c'4
410 @end lilypond
411
412 The name of the tie grob is @internalsref{Tie}, and it is created in the
413 @internalsref{Voice} context.
414
415 @refbugs
416
417 At present, the tie is implemented as a separate thing, temporally
418 located in between the notes. There is also no way to convert
419 between tied notes, dotted notes and plain notes.
420
421 Tieing only a subset of the note heads of a chord is not supported in a
422 simple way.  It can be achieved by moving the tie-engraver into the Thread
423 context and turning on and off ties per Thread.
424
425
426 @node Tuplets
427 @subsection Tuplets
428
429 @cindex tuplets
430 @cindex triplets
431 @cindex @code{\times}
432
433 Tuplets are made out of a music expression by multiplying all duration
434 with a fraction.
435
436 @cindex @code{\times}
437 @example
438   \times @var{fraction} @var{musicexpr}
439 @end example
440
441 The duration of @var{musicexpr} will be multiplied by the fraction. 
442 In print, the fraction's denominator will be printed over the notes,
443 optionally with a bracket.  The most common tuplet is the triplet in
444 which 3 notes have the length of 2, so the notes are 2/3 of
445 their written length:
446
447 @lilypond[fragment,verbatim,center]
448   g'4 \times 2/3 {c'4 c' c'} d'4 d'4
449 @end lilypond
450
451 The property @code{tupletSpannerDuration} specifies how long each bracket
452 should last.  With this, you can make lots of tuplets while typing
453 @code{\times} only once, thus  saving typing work.
454
455 @lilypond[fragment,  relative, singleline, verbatim]
456 \property Voice.tupletSpannerDuration = #(make-moment 1 4)
457 \times 2/3 { c'8 c c c c c }
458 @end lilypond
459
460 The format of the number is determined by the property
461 @code{tupletNumberFormatFunction}. The default prints only the
462 denominator, but if you set it to the Scheme function
463 @code{fraction-tuplet-formatter}, Lilypond will print @var{num}:@var{den}
464 instead.
465
466 The typesetting of brackets and numbers is controlled by the properties
467 @code{tuplet-bracket-visibility} and @code{tuplet-number-visibility}. 
468
469 @lilypond[fragment,  relative, singleline, verbatim]
470 \property Voice.TupletBracket \set #'tuplet-bracket-visibility = ##t
471 \times 2/3{c'8 d e} \times 2/3{d4 e8} 
472 \property Voice.TupletBracket \set #'tuplet-bracket-visibility = #'if-no-beam
473 \times 2/3{c d e} \times 2/3{d4 e8} 
474 \property Voice.TupletBracket \set #'tuplet-bracket-visibility = ##f
475 \times 2/3{c d e} \times 2/3{d4 e8}
476 \property Voice.TupletBracket \set #'tuplet-number-visibility = ##f
477 \times 2/3{c d e} \times 2/3{d4 e8}
478 \property Voice.TupletBracket \set #'tuplet-number-visibility = #'if-no-beam
479 \times 2/3{c d e} \times 2/3{d4 e8}
480 @end lilypond
481
482 @cindex @code{tupletNumberFormatFunction}
483 @cindex tuplet formatting 
484
485 Tuplet brackets are printed as @internalsref{TupletBracket} grobs, most
486 often in the @internalsref{Voice} context.
487
488 @c .  {Defining pitch names}
489 @node Defining pitch names
490 @subsection Defining pitch names
491
492 @cindex defining pitch names
493 @cindex pitch names, defining 
494
495 Note names and chord modifiers can be customized for nationalities.  The
496 syntax is as follows.
497
498 @cindex @code{\pitchnames}
499 @cindex @code{\chordmodifiers}
500 @example
501    \pitchnames @var{scheme-alist}
502    \chordmodifiers @var{scheme-alist}
503 @end example
504
505 See @file{ly/nederlands.ly} and @file{ly/chord-modifiers.ly} for
506 specific examples on how to do this.
507
508
509 @node Easy Notation note heads 
510 @subsection Easy Notation note heads
511
512 @cindex easy notation
513 @cindex Hal Leonard
514
515 A entirely different type of note head is the "easyplay" note head: a
516 note head that includes a note name.  It is used in some publications by
517 Hal-Leonard Inc.  music publishers.
518
519 @lilypond[singleline,verbatim]
520 \include "paper23.ly"
521 \score {
522   \notes { c'2 e'4 f' | g'1 }
523   \paper { \translator { \EasyNotation } } 
524 }
525 @end lilypond
526
527 Note that @internalsref{EasyNotation} overrides a @internalsref{Score} context.  You
528 probably will want to print it with magnification to make it more
529 readable, see @ref{Output scaling}.
530
531
532 @cindex Xdvi
533 @cindex ghostscript
534
535 If you view the result with Xdvi, then staff lines will show through the
536 letters.  Printing the postscript file obtained either by using dvips or
537 the @code{-f ps} option of lilypond produces the correct result.
538
539
540
541 @node Staff notation
542 @section Staff notation
543
544 @cindex Staff notation
545
546 @menu
547 * Key signature::               
548 * Clef::                        
549 * Time signature::              
550 * Unmetered music::             
551 * Bar lines::                   
552 @end menu
553
554 @c .  {Key}
555 @node Key signature
556 @subsection Key signature
557 @cindex Key
558
559 @cindex @code{\key}
560
561 Setting or changing the key signature is done with the @code{\key}
562 command.
563 @example
564   @code{\key} @var{pitch} @var{type}
565 @end example
566
567 @cindex @code{\minor}
568 @cindex @code{\major}
569 @cindex @code{\minor}
570 @cindex @code{\ionian}
571 @cindex @code{\locrian}
572 @cindex @code{\aeolian}
573 @cindex @code{\mixolydian}
574 @cindex @code{\lydian}
575 @cindex @code{\phrygian}
576 @cindex @code{\dorian}
577
578 Here, @var{type} should be @code{\major} or @code{\minor} to get
579 @var{pitch}-major or @var{pitch}-minor, respectively.
580 The standard mode names @code{\ionian},
581 @code{\locrian}, @code{\aeolian}, @code{\mixolydian}, @code{\lydian},
582 @code{\phrygian}, and @code{\dorian} are also defined.
583
584 This command sets the context property @code{Staff.keySignature}. 
585 Non-standard key signatures can be specified by setting this property
586 directly.
587
588 The printed signature is a @internalsref{KeySignature} grob, typically
589 created in @internalsref{Staff} context.
590
591 @cindex @code{keySignature}
592
593 @c .  {Clef}
594 @node Clef
595 @subsection Clef
596 @cindex @code{\clef}
597
598 The clef can be set or changed with the @code{\clef} command.
599 @example
600   \clef @var{clefname}
601 @end example
602
603 Shortcut for
604
605 @example
606   \property Staff.clefGlyph = @var{glyph associated with clefname} 
607   \property Staff.clefPosition = @var{clef Y-position for clefname}
608   \property Staff.centralCPosition = @var{position for central C} 
609   \property Staff.clefOctavation = @var{extra transposition of clefname}
610 @end example
611
612
613 Any change in these properties creates a clef (A @internalsref{Clef} grob).
614
615 Supported clef-names include 
616
617 @c Moved standard clefs to the top /MB
618 @table @code
619 @item treble, violin, G, G2
620 G clef on 2nd line
621 @item alto, C
622  C clef on 3rd line
623 @item tenor
624  C clef on 4th line
625 @item bass, F
626  F clef on 4th line
627 @item french
628  G clef on 1st line, so-called French violin clef
629 @item soprano
630  C clef on 1st line
631 @item mezzosoprano
632  C clef on 2nd line
633 @item baritone
634  C clef on 5th line
635 @item varbaritone
636  F clef on 3rd line
637 @item subbass
638  F clef on 5th line
639 @item percussion
640  percussion clef
641 @end table
642
643 By adding @code{_8} or @code{^8} to the clef name, the clef is
644 transposed one octave down or up, respectively.  Note that you have to
645 enclose @var{clefname} in quotes if you use underscores or digits in the
646 name. For example,
647 @example
648         \clef "G_8"
649 @end example 
650
651 Supported associated glyphs (for @code{Staff.clefGlyph}) are:
652
653 @table @code
654 @item clefs-C
655  modern style C clef
656 @item clefs-F
657  modern style F clef
658 @item clefs-G
659  modern style G clef
660 @item clefs-vaticana_do
661  Editio Vaticana style do clef
662 @item clefs-vaticana_fa
663  Editio Vaticana style fa clef
664 @item clefs-medicaea_do
665  Editio Medicaea style do clef
666 @item clefs-medicaea_fa
667  Editio Medicaea style fa clef
668 @item clefs-mensural1_c
669  modern style mensural C clef
670 @item clefs-mensural2_c
671  historic style small mensural C clef
672 @item clefs-mensural3_c
673  historic style big mensural C clef
674 @item clefs-mensural1_f
675  historic style traditional mensural F clef
676 @item clefs-mensural2_f
677  historic style new mensural F clef
678 @item clefs-mensural_g
679  historic style mensural G clef
680 @item clefs-hufnagel_do
681  historic style hufnagel do clef
682 @item clefs-hufnagel_fa
683  historic style hufnagel fa clef
684 @item clefs-hufnagel_do_fa
685  historic style hufnagel combined do/fa clef
686 @item clefs-percussion
687  modern style percussion clef
688 @end table
689
690 @emph{Modern style} means ``as is typeset in current editions.''
691 @emph{Historic style} means ``as was typeset or written in contemporary
692 historic editions''.  @emph{Editio XXX style} means ``as is/was printed in
693 Editio XXX.''
694
695 @cindex Vaticana, Editio
696 @cindex Medicaea, Editio
697 @cindex hufnagel clefs
698
699
700 @c .  {Time signature}
701 @node Time signature
702 @subsection Time signature
703 @cindex Time signature
704 @cindex meter
705 @cindex @code{\time}
706
707 The time signature is set or changed by the @code{\time}
708 command. Syntax:
709 @example
710   \time @var{n}@code{/}@var{d} 
711 @end example
712 Internally, this is a shortcut for doing
713 @example
714 \property Score.timeSignatureFraction = #'(@var{n} . @var{d})
715 \property Score.beatLength = #(make-moment 1 @var{d})
716 \property Score.measureLength = #(make-moment @var{n} @var{d})
717 @end example
718
719 These properties @code{timeSignatureFraction} determine where bar lines
720 should be inserted, and how automatic beams should be
721 generated.
722
723 Changing the value of @code{timeSignatureFraction} also causes a
724 fraction to be printed. This grob is @internalsref{TimeSignature}.
725
726 The actual symbol that's printed can be customized with the style
727 property.
728 @lilypond[fragment, verbatim, singleline]
729 \time 3/4 s2
730 \property Staff.TimeSignature \override #'style = #'C
731 \time 4/4 s2
732 \property Staff.TimeSignature \override #'style = #'()
733 \time 4/4 s2
734 \property Staff.TimeSignature \override #'style = #'C
735 \time 2/2 s2
736 @end lilypond
737
738 There are many more options for the layout of this grob. They are
739 selected through the @code{style} grob property.
740
741 @c FIXME: this isn't documented except in example?
742 See
743 @file{input/test/time.ly} for examples.
744
745 @c .   {Partial}
746 @subsection Partial
747 @cindex Partial
748 @cindex anacrusis
749 @cindex upbeat
750 @cindex partial measure
751 @cindex measure, partial
752 @cindex shorten measures
753 @cindex @code{\partial}
754
755 Partial measures, for example in upbeats, are entered using the
756 @code{\partial} command: 
757 @example
758   \partial @var{duration} 
759 @end example
760
761 Internally,  this is a shortcut for 
762
763 @example
764   \property Score.measurePosition = -@var{length of duration}
765 @end example
766 @cindex @code{|}
767
768 The property @code{measurePosition} contains a rational number
769 indicating how much of the measure has passed at this point. 
770
771
772 @node Unmetered music
773 @subsection Unmetered music
774
775 Bar lines and bar numbers are calculated automatically. For unmetered
776 music (e.g. cadenzas), this is not desirable. The property
777 @code{Score.timing} can be used to switch off this automatic timing
778
779 @lilypond[fragment,relative,singleline,verbatim]
780 c'2.
781 \property Score.timing = ##f
782 c2
783 \property Score.timing = ##t
784 c4 c4 c4 
785 @end lilypond
786
787 The identifiers @code{\cadenzaOn} and @code{\cadenzaOff} can be used as
788 shortcuts.
789
790
791
792 @c .   {Bar lines}
793 @node Bar lines
794 @subsection Bar lines
795 @cindex Bar lines
796
797 @cindex @code{\bar}
798 @cindex measure lines
799 @cindex repeat bars
800
801 @example
802   \bar @var{bartype}
803 @end example
804
805 This is a shortcut for doing
806 @example
807   \property Score.whichBar = @var{bartype} 
808 @end example
809 The following bar types are available
810
811 @lilypond[fragment,  relative, singleline, verbatim]
812 c4
813 \bar "|" c
814 \bar "" c
815 \bar "|:" c
816 \bar "||" c
817 \bar ":|" c
818 \bar ".|" c
819 \bar ".|." c
820 \bar "|." 
821 @end lilypond
822
823
824 You are encouraged to use @code{\repeat} for repetitions.  See
825 @ref{Repeats}.
826
827
828 @cindex Bar_line_engraver
829 @cindex whichBar
830 @cindex repeatCommands
831 @cindex defaultBarType
832
833 Whenever @code{whichBar} is set to a string, a bar line of that type is
834 created.  @code{whichBar} is usually set automatically: at the start of
835 a measure it is set to @code{defaultBarType}. The contents of
836 @code{repeatCommands} is used to override default measure bars.
837
838 @code{whichBar} can also be set directly, using @code{\property} or
839 @code{\bar  }.  These settings take precedence over the automatic
840 @code{whichBar} settings. 
841
842 @internalsref{BarLine} grobs are created by the @code{Bar_engraver}.
843
844 @c .   {Polyphony}
845 @node Polyphony
846 @section Polyphony
847 @cindex polyphony
848
849 Polyphonic parts, i.e. parts with more than one voice on a staff can be
850 typeset with LilyPond.   To use this, instantiate a separate Voice
851 context for each part, and assign a stem direction to each part. 
852 @lilypond[fragment,verbatim]
853 \context Staff
854 < \context Voice = VA { \stemUp b'4 a' g' f' e' }
855   \context Voice = VB { \stemDown g'4 g' g' g' g' } >
856 @end lilypond
857
858 When there are more than two voices on a staff, you must also indicate
859 which voice should moved horizontally in case of a collision. This can
860 be done with the identifiers @code{\shiftOff}, @code{\shiftOn},
861 @code{\shiftOnn}, etc. (which sets the grob property @code{horizontal-shift}
862 in @internalsref{NoteColumn}).
863
864 @lilypond[fragment, verbatim]
865   \context Staff \notes\relative c''<
866        \context Voice=one {
867        \shiftOff \stemUp e4
868        }
869        \context Voice=two {
870           \shiftOn \stemUp cis
871        }
872        \context Voice=three {
873          \shiftOnn \stemUp ais
874        }
875        \context Voice=four {
876           \shiftOnnn \stemUp fis
877        }
878   >
879 @end lilypond
880
881 The most convenient way is to use the identifiers @code{\voiceOne}
882 through @code{\voiceFour}, which also set slur and tie directions in the
883 correct manner.
884
885 @lilypond[singleline, verbatim]
886 \relative c''
887 \context Staff < \context Voice = VA { \voiceOne cis2 b  }
888   \context Voice = VB { \voiceThree b4 ais ~ ais4 gis4 } 
889   \context Voice = VC { \voiceTwo fis4~  fis4 f ~ f  } >
890 @end lilypond
891
892 Normally, note heads with a different number of dots are not merged, but
893 if you set the grob property @code{merge-differently-dotted}, they are:
894
895 @lilypond[verbatim,fragment,singleline]
896   \context Staff <
897   \context Voice = VA { \voiceOne
898      g'8 g'8 
899      \property Staff.NoteCollision \override #'merge-differently-dotted = ##t
900      g'8 g'8
901   }
902   \context Voice = VB { \voiceTwo [g'8. f16] [g'8. f'16] } 
903   >
904 @end lilypond
905
906 LilyPond also vertically shifts rests that are opposite of a stem. 
907
908 @lilypond[singleline,verbatim]
909 \context Staff <
910 \context Voice {  \stemUp c''4  }
911 \context Voice =VB { r4 }
912 >
913 @end lilypond
914
915 Note head collisions (horizontal shifting of note heads) are handled by
916 the @internalsref{NoteCollision} grob. @internalsref{RestCollision} handles vertical
917 shifting of rests.
918
919
920
921 @refbugs
922
923 Resolving collisions is a very intricate subject, and LilyPond only
924 handles a few situations. When it can not cope, you are advised to use
925 @code{force-hshift} of the NoteColumn grob and @code{staff-position} of
926 the Rest grob to override typesetting decisions.
927
928 @node Beaming
929 @section Beaming
930
931 Beams are used to group short notes into chunks that are aligned with
932 the metrum.  LilyPond guesses where beams should be inserted. If you're
933 not satisfied with the automatic beaming, you can specify which patterns
934 to beam automatically. In specific cases, you can also enter the beams
935 explicitly.
936
937
938 @c .    {Automatic beams}
939 @subsection Automatic beams
940
941 @cindex @code{Voice.autoBeamSettings}
942 @cindex @code{(end * * * *)}
943 @cindex @code{(begin * * * *)}
944
945
946 In normal time signatures, automatic beams can start on any note but can
947 only end in a few positions within the measure: beams can end on a beat,
948 or at durations specified by the properties in
949 @code{Voice.autoBeamSettings}. The defaults for @code{autoBeamSettings}
950 are defined in @file{scm/auto-beam.scm}.
951
952 The value of @code{autoBeamSettings} is changed using
953 @code{\override} and unset using @code{\revert}:
954 @example
955 \property Voice.autoBeamSettings \override #'(@var{BE} @var{P} @var{Q} @var{N} @var{M}) = @var{dur}
956 \property Voice.autoBeamSettings \revert #'(@var{BE} @var{P} @var{Q} @var{N} @var{M})
957 @end example
958 Here, @var{BE} is the symbol @code{begin} or @code{end}. It determines
959 whether the rule applies to begin or end-points.  The quantity
960 @var{P}/@var{Q} refers to the length of the beamed notes (and `@code{*
961 *}' designates notes of any length), @var{N}/@var{M} refers to a time
962 signature (wildcards, `@code{* *}' may be entered to designate all time
963 signatures).
964
965 For example, if you want automatic beams to end on every quarter note,
966 you can use the following:
967 @example
968 \property Voice.autoBeamSettings \override
969     #'(end * * * *) = #(make-moment 1 4)
970 @end example
971 Since the duration of a quarter note is 1/4 of a whole note, it is
972 entered as @code{(make-moment 1 4)}.
973
974 The same syntax can be used to specify beam starting points. In this
975 example, automatic beams can only end on a dotted quarter note. 
976 @example
977 \property Voice.autoBeamSettings \override
978     #'(end * * * *) = #(make-moment 3 8)
979 @end example
980 In 4/4 time signature, this means that automatic beams could end only on
981 3/8 and on the fourth beat of the measure (after 3/4, that is 2 times
982 3/8 has passed within the measure).
983
984 You can also restrict rules to specific time signatures. A rule that
985 should only be applied in @var{N}/@var{M} time signature is formed by
986 replacing the second asterisks by @var{N} and @var{M}. For example, a
987 rule for 6/8 time exclusively looks like
988 @example
989 \property Voice.autoBeamSettings \override
990     #'(begin * * 6 8) =  ... 
991 @end example
992
993 If you want a rule to apply to certain types of beams, you can use the
994 first pair of asterisks. Beams are classified according to the shortest
995 note they contain. For a beam ending rule that only applies to beams
996 with 32nd notes (and no shorter notes), you would use @code{(end 1
997 32 * *)}.
998
999 @c not true
1000 @c Automatic beams can not be put on the last note in a score.
1001
1002 If a score ends while an automatic beam has not been ended and is still
1003 accepting notes, this last beam will not be typeset at all.
1004
1005 @cindex automatic beam generation
1006 @cindex autobeam
1007 @cindex @code{Voice.noAutoBeaming}
1008
1009 Automatic beaming is on by default, but can be switched off by setting
1010 @code{Voice.noAutoBeaming} to true.  You you may find this necessary for
1011 a melody that goes with lyrics.
1012
1013 @refbugs
1014
1015 It is not possible to specify beaming parameters for beams with mixed
1016 durations, that differ from the beaming parameters of all separate
1017 durations, i.e., you'll have to specify manual beams to get:
1018 @lilypond[fragment,singleline,relative]
1019   \property Voice.autoBeamSettings
1020   \override #'(end * * * *) = #(make-moment 3 8)
1021   \time 12/8 c'8 c c c16 c c c c c [c c c c] c8 c c4
1022 @end lilypond
1023
1024 It is not possible to specify beaming parameters that act differently in
1025 different parts of a measure. This means that it is not possible to use
1026 automatic beaming in irregular meters such as @code{5/8}.
1027
1028 @c .    {Manual beams}
1029 @cindex Automatic beams
1030 @subsection Manual beams
1031 @cindex beams, manual
1032 @cindex @code{]}
1033 @cindex @code{[}
1034
1035 In some cases it may be necessary to override LilyPond's automatic
1036 beaming algorithm.  For example, the auto beamer will not beam over
1037 rests or bar lines, If you want that, specify the begin and end point
1038 manually using a @code{[} before the first beamed note and a @code{]}
1039 after the last note:
1040
1041 @lilypond[fragment,relative,verbatim]
1042   \context Staff {
1043     r4 [r8 g' a r8] r8 [g | a] r8
1044   }
1045 @end lilypond
1046 Whenever an manual beam is busy, the automatic beamer will not produce
1047 anything.
1048
1049 @cindex @code{stemLeftBeamCount}
1050
1051 Normally, beaming patterns within a beam are determined automatically.
1052 When this mechanism fouls up, the properties
1053 @code{Voice.stemLeftBeamCount} and @code{Voice.stemRightBeamCount}.  can
1054 be used to control the beam subdivision on a stem.  If you set either
1055 property, it's value will be used only once, and then it is erased.
1056
1057 @lilypond[fragment,relative,verbatim]
1058   \context Staff {
1059     [f8 r16 f g a]
1060     [f8 r16 \property Voice.stemLeftBeamCount = #1 f g a]
1061   }
1062 @end lilypond
1063 @cindex @code{stemRightBeamCount}
1064
1065 The beam symbol (grob @internalsref{Beam} in @internalsref{Voice}
1066 context), both for automatic and manual beams) can be tweaked through
1067 grob-properties @code{height} and @code{staff-position}. These specify
1068 vertical location and vertical span. Both are measured in half
1069 staff-spaces, @code{staff-position=0} corresponds to the middle staff
1070 line.
1071
1072 Set @code{height} to zero, to get horizontal beams:
1073
1074 @lilypond[fragment,relative,verbatim]
1075   \property Voice.Beam \set #'direction = #1
1076   \property Voice.Beam \set #'height = #0
1077   [a'8 e' d c]
1078 @end lilypond
1079
1080 Here's how you'd specify a weird looking beam that instead of being
1081 horizontal, falls two staff spaces:
1082
1083 @lilypond[fragment,relative,verbatim]
1084   \property Voice.Beam \set #'staff-position = #4
1085   \property Voice.Beam \set #'height = #-4
1086   [c8 c] 
1087 @end lilypond
1088
1089 @c TODO -> why this ref? Document? 
1090 @cindex @code{neutral-direction}
1091
1092 @node Expressive marks
1093 @section Expressive marks
1094
1095 @c .   {Slurs}
1096 @menu
1097 * Slurs ::                      
1098 * Phrasing slurs::              
1099 * Breath marks::                
1100 * Tempo::                       
1101 * Text spanners::               
1102 @end menu
1103
1104 @node Slurs 
1105 @subsection Slurs
1106 @cindex slurs
1107
1108 A slur indicates that notes are to be played bound or @emph{legato}.
1109 They are entered using parentheses:
1110
1111 @lilypond[fragment,verbatim,center]
1112   f'()g'()a' [a'8 b'(] a'4 g'2 )f'4
1113 @end lilypond
1114
1115
1116 Slurs avoid crossing stems, and are generally attached to note heads.
1117 However, in some situations with beams, slurs may be attached to stem
1118 ends.  If you want to override this layout you can do this through the
1119 grob-property @code{attachment} of @internalsref{Slur} in
1120 @internalsref{Voice} context It's value is a pair of symbols, specifying
1121 the attachment type of the left and right end points.
1122
1123 @lilypond[fragment,relative,verbatim]
1124   \property Voice.Slur \set #'direction = #1
1125   \property Voice.Stem \set #'length = #5.5
1126   g'8(g)g4
1127   \property Voice.Slur \set #'attachment = #'(stem . stem)
1128   g8(g)g4
1129 @end lilypond
1130
1131 If a slur would strike through a stem or beam, the slur will be moved
1132 away upward or downward. If this happens, attaching the slur to the
1133 stems might look better:
1134
1135 @lilypond[fragment,relative,verbatim]
1136   \property Voice.Stem \set #'direction = #1
1137   \property Voice.Slur \set #'direction = #1
1138   d32( d'4 )d8..
1139   \property Voice.Slur \set #'attachment = #'(stem . stem)
1140   d,32( d'4 )d8..
1141 @end lilypond
1142
1143
1144 Similarly, the curvature of a slur is adjusted to stay clear of note
1145 heads and stems.  When that would increase the curvature too much, the
1146 slur is reverted to its default shape.  The threshold for this decision
1147 is in @internalsref{Slur}'s grob-property @code{beautiful}.  It is loosely
1148 related to the enclosed area between the slur and the notes.  Usually,
1149 the default setting works well, but in some cases you may prefer a
1150 curved slur when LilyPond decides for a vertically moved one.  You can
1151 indicate this preference by increasing the @code{beautiful} value:
1152
1153 @lilypond[verbatim,singleline,relative]
1154   \property Voice.Beam \override #'direction = #-1
1155   \property Voice.Slur \override #'direction = #1
1156   c16( a' f' a a f a, )c,
1157   c( a' f' a a f d, )c
1158   \property Voice.Slur \override #'beautiful = #5.0
1159   c( a' f' a a f d, )c
1160 @end lilypond
1161
1162 @refbugs
1163
1164 @code{beautiful} is an arbitrary parameter in the slur formatter.
1165 Useful values can only be determined by trial and error.
1166
1167 @cindex Adjusting slurs
1168
1169 @node Phrasing slurs
1170 @subsection Phrasing slurs
1171
1172 @cindex phrasing slurs
1173 @cindex phrasing marks
1174
1175 A phrasing slur (or phrasing mark) connects chords and is used to
1176 indicate a musical sentence. It is started using @code{\(} and @code{\)}
1177 respectively.
1178
1179 @lilypond[fragment,verbatim,center,relative]
1180   \time 6/4 c' \( ( d ) e f ( e ) \) d
1181 @end lilypond
1182
1183 Typographically, the phrasing slur behaves almost exactly like a normal
1184 slur. The grob associated with it is @internalsref{PhrasingSlur}, in
1185 @internalsref{Voice} context.
1186
1187 @node Breath marks
1188 @subsection Breath marks
1189
1190 Breath marks are entered using @code{\breathe}.  The result is a
1191 @internalsref{BreathingSign} grob in @internalsref{Voice} context.
1192
1193 @lilypond[fragment,relative]
1194 c'4 \breathe d4
1195 @end lilypond
1196
1197
1198
1199
1200 @refbugs
1201
1202   Currently, only tick marks are supported, not comma style breath marks.
1203
1204
1205 @c .  {Tempo}
1206 @node Tempo
1207 @subsection Tempo
1208 @cindex Tempo
1209 @cindex beats per minute
1210 @cindex metronome marking
1211
1212 Metronome settings can be entered as follows:
1213
1214 @cindex @code{\tempo}
1215 @example
1216   \tempo @var{duration} = @var{perminute} 
1217 @end example
1218
1219 For example, @code{\tempo 4 = 76} requests output with 76 quarter notes
1220 per minute.
1221   
1222 @refbugs
1223   
1224 The tempo setting is not printed, but is only used in the MIDI
1225 output. You can trick lily into producing a metronome mark,
1226 though. Details are in @ref{Text markup}.
1227   
1228
1229
1230 @node Text spanners
1231 @subsection Text spanners
1232 @cindex Text spanners
1233
1234 Some textual indications, e.g. rallentando or accelerando, often extend
1235 over many measures. This is indicated by following the text with a
1236 dotted line.  You can create such texts using text spanners. The syntax
1237 is as follows:
1238 @example
1239 \spanrequest \start "text"
1240 \spanrequest \stop "text"
1241 @end example
1242 LilyPond will respond by creating a @internalsref{TextSpanner} grob (typically
1243 in @internalsref{Voice} context).  The string to be printed, as well as the
1244 style is set through grob properties.
1245
1246 An application---or rather, a hack---is to fake octavation indications.
1247 @lilypond[fragment,relative,verbatim]
1248  \relative c' {  a''' b c a
1249   \property Voice.TextSpanner \set #'type = #'dotted-line
1250   \property Voice.TextSpanner \set #'edge-height = #'(0 . 1.5)
1251   \property Voice.TextSpanner \set #'edge-text = #'("8va " . "")
1252   \property Staff.centralCPosition = #-13
1253   a\spanrequest \start "text" b c a \spanrequest \stop "text" }
1254 @end lilypond
1255
1256
1257 @c .  {Ornaments}
1258 @node Ornaments
1259 @section Ornaments
1260 @cindex Ornaments
1261 @menu
1262 * Articulations::               
1263 * Text scripts::                
1264 * Grace notes::                 
1265 * Glissando ::                  
1266 * Dynamics::                    
1267 @end menu
1268
1269 @c .   {Articulation}
1270 @node Articulations
1271 @subsection Articulations
1272 @cindex Articulations
1273
1274 @cindex articulations
1275 @cindex scripts
1276 @cindex ornaments
1277
1278 A variety of symbols can appear above and below notes to indicate
1279 different characteristics of the performance.  These symbols can be
1280 added to a note with `@var{note}@code{-\}@var{name}'.  Numerous symbols
1281 are defined in @file{script.ly}.  Symbols can be forced to appear above
1282 or below the note by writing `@var{note}@code{^\}@var{name}' and
1283 `@var{note}@code{_\}@var{name}' respectively.  Here is a chart showing
1284 symbols on notes, with the name of the corresponding symbol appearing
1285 underneath.
1286
1287 @lilypond[]
1288   \score {
1289     <
1290       \property Score.LyricSyllable \override #'font-family =#'typewriter
1291       \property Score.LyricSyllable \override #'font-shape = #'upright
1292       \context Staff \notes {
1293         c''-\accent      c''-\marcato      c''-\staccatissimo c''^\fermata 
1294         c''-\stopped     c''-\staccato     c''-\tenuto        c''-\upbow
1295         c''-\downbow     c''^\lheel        c''-\rheel         c''^\ltoe
1296         c''-\rtoe        c''-\turn         c''-\open          c''-\flageolet
1297         c''-\reverseturn c''-\trill        c''-\prall         c''-\mordent
1298         c''-\prallprall  c''-\prallmordent c''-\upprall       c''-\downprall
1299         c''-\upmordent   c''-\downmordent  c''-\pralldown     c''-\prallup
1300         c''-\lineprall   c''-\thumb        c''-\segno         c''-\coda
1301       }
1302       \context Lyrics \lyrics {
1303         accent__      marcato__      staccatissimo__ fermata
1304         stopped__     staccato__     tenuto__        upbow
1305         downbow__     lheel__        rheel__         ltoe
1306         rtoe__        turn__         open__          flageolet
1307         reverseturn__ trill__        prall__         mordent
1308         prallprall__  prallmordent__ uprall__        downprall
1309         upmordent__   downmordent__  pralldown__  prallup__
1310         lineprall__   thumb__       segno__        coda
1311       }
1312     >
1313     \paper {
1314       linewidth = 5.875\in
1315       indent    = 0.0
1316     }
1317   }
1318 @end lilypond
1319
1320 To save typing work, some shorthands are available:
1321 @lilypond[singleline]
1322   \score {
1323     \notes \context Voice {
1324       \property Voice.TextScript \set #'font-family = #'typewriter
1325       \property Voice.TextScript \set #'font-shape = #'upright
1326       c''4-._"c-."      s4
1327       c''4--_"c-{}-"    s4
1328       c''4-+_"c-+"      s4
1329       c''4-|_"c-|"      s4
1330       c''4->_"c->"      s4
1331       c''4-^_"c-\\^{ }" s4
1332     }
1333   }
1334 @end lilypond
1335
1336 @cindex fingering
1337
1338 Fingering instructions can also be entered in  this shorthand.
1339 @lilypond[verbatim, singleline, fragment]
1340       c'4-1 c'4-2 c'4-3 c'4-4
1341 @end lilypond
1342
1343
1344 @cindex @code{\script}
1345 @cindex scripts
1346 @cindex superscript
1347 @cindex subscript
1348
1349 You can add scripts by editing @file{scm/script.scm}. This file contains
1350 a table, listing script definitions and aliases. The following syntax
1351 accesses a script definition from the table:
1352
1353 @example
1354   \script @var{alias}
1355 @end example
1356
1357 Usually the @code{\script} keyword is not used directly.  Various
1358 helpful identifier definitions appear in @file{script.ly}.
1359
1360 Grobs for these objects are @internalsref{Script} and @internalsref{Fingering}.
1361
1362 @refbugs
1363
1364 All of these note ornaments appear in the printed output but have no
1365 effect on the MIDI rendering of the music.
1366
1367 Unfortunately, there is no support for adding fingering instructions or 
1368 ornaments to individual note heads. Some hacks exist, though. See
1369 @file{input/test/script-horizontal.ly}.
1370
1371
1372 @c .  {Text scripts}
1373 @node Text scripts
1374 @subsection Text scripts
1375 @cindex Text scripts
1376
1377 In addition, it is possible to place arbitrary strings of text or markup
1378 text (see @ref{Text markup}) above or below notes by using a string:
1379 @code{c^"text"}. 
1380
1381 By default, these indications do not influence the note spacing, but
1382 if @code{Voice.textNonEmpty} is set to true the widths will be taken
1383 into account.  The identifier @code{\fatText} is defined in the standard
1384 includes.
1385 @lilypond[fragment,singleline,verbatim]
1386 \relative c' { c4^"longtext" \fatText c4_"longlongtext" c4 }
1387 @end lilypond
1388
1389 Text scripts are created in form of @internalsref{TextScript} grobs, in
1390 @internalsref{Voice} context.
1391
1392 @ref{Text markup} describes how to change the font or access
1393 special symbols in text scripts.
1394
1395 @c .   {Grace notes}
1396 @node Grace notes
1397 @subsection Grace notes
1398
1399
1400
1401
1402
1403
1404
1405 @cindex Grace music
1406 @cindex @code{\grace}
1407 @cindex ornaments
1408 @cindex grace notes
1409 @cindex @code{graceAlignPosition}
1410
1411 Grace notes are ornaments that are written out, but do not take up  any
1412 logical time in a measure. LilyPond has limited support for grace notes.
1413 The syntax is as follows. 
1414 @example
1415   \grace @var{musicexpr}
1416 @end example
1417
1418 Unbeamed eighth notes and shorter by default have a slash through the
1419 stem.
1420
1421 @lilypond[fragment,verbatim]
1422 \relative c'' {
1423   \grace c8 c4 \grace { [c16 c16] } c4
1424   \grace { 
1425     \property Voice.Stem \override #'flag-style = #'() 
1426     c16 
1427     \property Voice.Stem \revert #'flag-style
1428   } c4
1429 }
1430 @end lilypond
1431
1432 A grace note expression has duration 0; the next real note is assumed to
1433 be the main note. If you want the note to appear after the main note,
1434 set @code{Voice.graceAlignPosition} to @code{1}.
1435
1436 @refbugs
1437
1438 Nesting @code{\grace} notes is not supported. The following may cause
1439 run-time errors: @example
1440   @code{\grace @{ \grace c32 c16 @} c4}
1441 @end example
1442 Since the meaning of such a construct is unclear, we don't consider this
1443 a loss.  Similarly, juxtaposing two @code{\grace} sections is
1444 syntactically valid, but makes no sense and may cause runtime errors.
1445 Ending a staff or score with grace notes may also generate a run-time
1446 error, since there will be no main note to attach the grace notes to.
1447
1448 @menu
1449 * Glissando ::                  
1450 * Dynamics::                    
1451 @end menu
1452
1453
1454
1455 @c .   {Glissando}
1456 @node Glissando 
1457 @subsection Glissando
1458 @cindex Glissando 
1459
1460 @cindex @code{\glissando}
1461
1462 A glissando line (grob @internalsref{Glissando}) can be requested by
1463 attaching a @code{\glissando} to a notte:
1464
1465 @lilypond[fragment,relative,verbatim]
1466   c'-\glissando c'
1467 @end lilypond
1468
1469 @refbugs
1470
1471 Printing of an additional text (such as @emph{gliss.}) must be done
1472 manually.
1473
1474
1475
1476 @c .   {Dynamics}
1477 @node Dynamics
1478 @subsection Dynamics
1479 @cindex Dynamics
1480
1481
1482
1483 @cindex @code{\ppp}
1484 @cindex @code{\pp}
1485 @cindex @code{\p}
1486 @cindex @code{\mp}
1487 @cindex @code{\mf}
1488 @cindex @code{\f}
1489 @cindex @code{\ff}
1490 @cindex @code{\fff}
1491 @cindex @code{\ffff}
1492 @cindex @code{\fp}
1493 @cindex @code{\sf}
1494 @cindex @code{\sff}
1495 @cindex @code{\sp}
1496 @cindex @code{\spp}
1497 @cindex @code{\sfz}
1498 @cindex @code{\rfz}
1499
1500
1501 Absolute dynamic marks are specified using an identifier after a
1502 note: @code{c4-\ff}.  The available dynamic marks are: @code{\ppp},
1503 @code{\pp}, @code{\p}, @code{\mp}, @code{\mf}, @code{\f}, @code{\ff},
1504 @code{\fff}, @code{\fff}, @code{\fp}, @code{\sf}, @code{\sff},
1505 @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}.
1506
1507 @lilypond[verbatim,singleline,fragment,relative]
1508   c'\ppp c\pp c \p c\mp c\mf c\f c\ff c\fff
1509   c2\sf c\rfz
1510 @end lilypond
1511
1512 @cindex @code{\cr}
1513 @cindex @code{\rc}
1514 @cindex @code{\decr}
1515 @cindex @code{\rced}
1516 @cindex @code{\<}
1517 @cindex @code{\>}
1518 @cindex @code{\"!}
1519
1520
1521 A crescendo mark is started with @code{\cr} and terminated with
1522 @code{\rc} (the textual reverse of @code{cr}).  A decrescendo mark is
1523 started with @code{\decr} and terminated with @code{\rced}.  There are
1524 also shorthands for these marks.  A crescendo can be started with
1525 @code{\<} and a decrescendo can be started with @code{\>}.  Either one
1526 can be terminated with @code{\!}.  Note that @code{\!}  must go before
1527 the last note of the dynamic mark whereas @code{\rc} and @code{\rced} go
1528 after the last note.  Because these marks are bound to notes, if you
1529 want several marks during one note, you have to use spacer notes.
1530
1531 @lilypond[fragment,verbatim,center]
1532   c'' \< \! c''   d'' \decr e'' \rced 
1533   < f''1 { s4 s4 \< \! s4 \> \! s4 } >
1534 @end lilypond
1535
1536 You can also use a text saying @emph{cresc.} instead of hairpins. Here
1537 is an example how to do it:
1538
1539 @cindex crescendo
1540 @cindex decrescendo
1541
1542 @lilypond[fragment,relative,verbatim]
1543   \context Voice {
1544     \property Voice.crescendoText = "cresc."
1545     \property Voice.crescendoSpanner = #'dashed-line
1546     a'2\mf\< a a \!a 
1547   }
1548 @end lilypond
1549
1550 For everyday use, we recommend the identifiers @code{\cresc},
1551 @code{endcresc}, @code{\dim} and @code{\enddim}.
1552
1553 @cindex diminuendo
1554
1555 Dynamics are grobs of @internalsref{DynamicText} and
1556 @internalsref{Hairpin}. They are put together on
1557 @internalsref{DynamicLineSpanner} to align them vertically.
1558
1559
1560 @c .  {Repeats}
1561 @node Repeats
1562 @section Repeats
1563
1564
1565 @cindex repeats
1566 @cindex @code{\repeat}
1567
1568 To specify repeats, use the @code{\repeat} keyword.  Since repeats
1569 should work differently when played or printed, there are a few
1570 different variants of repeats.
1571
1572 @table @asis
1573 @item unfold
1574 Repeated music is fully written (played) out.  Useful for MIDI
1575 output, and entering repetitive music.
1576
1577 @item volta  
1578 This is the normal notation: Repeats are not written out, but
1579 alternative endings (voltas) are printed, left to right.
1580
1581 @item fold
1582 Alternative endings are written stacked. This has limited use but may be
1583 used to typeset two lines of lyrics in songs with repeats, see
1584 @file{input/star-spangled-banner.ly}.
1585
1586 @item tremolo
1587 Make tremolo beams.
1588
1589 @item percent
1590 Make beat or measure repeats. These look like percent signs.
1591
1592 @end table  
1593
1594 @menu
1595 * Repeat syntax::               
1596 * Manual repeat commands::      
1597 * Tremolo repeats::             
1598 * Tremolo subdivisions::        
1599 * Measure repeats::             
1600 @end menu
1601
1602 @node Repeat syntax
1603 @subsection Repeat syntax
1604
1605 The syntax for repeats is
1606
1607 @example
1608   \repeat @var{variant} @var{repeatcount} @var{repeatbody}
1609 @end example
1610
1611 If you have alternative endings, you may add
1612 @cindex @code{\alternative}
1613 @example
1614  \alternative @code{@{} @var{alternative1}
1615             @var{alternative2}
1616             @var{alternative3} @dots{} @code{@}}
1617 @end example
1618 where each @var{alternative} is a music expression.
1619
1620 Normal notation repeats are used like this:
1621 @lilypond[fragment,verbatim]
1622   c'1
1623   \repeat volta 2 { c'4 d' e' f' }
1624   \repeat volta 2 { f' e' d' c' }
1625 @end lilypond
1626
1627 With alternative endings:
1628 @lilypond[fragment,verbatim]
1629   c'1
1630   \repeat volta 2 {c'4 d' e' f'} 
1631   \alternative { {d'2 d'} {f' f} }
1632 @end lilypond
1633
1634 Folded repeats look like this:
1635
1636
1637 @lilypond[fragment,verbatim]
1638   c'1
1639   \repeat fold 2 {c'4 d' e' f'} 
1640   \alternative { {d'2 d'} {f' f} }
1641
1642 @end lilypond
1643
1644 If you don't give enough alternatives for all of the repeats, then
1645 the first alternative is assumed to be repeated often enough to equal
1646 the specified number of repeats.
1647
1648 @lilypond[fragment,verbatim]
1649 \context Staff {
1650   \relative c' {
1651     \partial 4
1652     \repeat volta 4 { e | c2 d2 | e2 f2 | }
1653     \alternative { { g4 g g } { a | a a a a | b2. } }
1654   }
1655 }
1656 @end lilypond
1657
1658 @subsection Unfolding repeats for MIDI output.
1659
1660 @cindex expanding repeats
1661
1662 See @file{input/test/unfold-all-repeats.ly}. 
1663
1664
1665 @refbugs
1666
1667 Notice that timing information is not remembered at the start of an
1668 alternative, so you have to reset timing information after a repeat,
1669 e.g. using a bar-check (See @ref{Bar check}), setting
1670 @code{Score.measurePosition} or entering @code{\partial}.  Slurs or ties
1671 are also not repeated.
1672
1673 It is possible to nest @code{\repeat}s, although this probably is only
1674 meaningful for unfolded repeats.
1675
1676 Folded repeats offer little more over simultaneous music.  However, it
1677 is to be expected that more functionality -- especially for the MIDI
1678 backend -- will be implemented at some point in the future.
1679
1680 Volta repeats are printed over all staves in a score. You must turn them
1681 off explicitly, for example by doing
1682 @example
1683   \property Staff.VoltaBracket = \turnOff
1684 @end example
1685 in all but the top staff.
1686
1687 @node Manual repeat commands
1688 @subsection Manual repeat commands
1689
1690 @cindex @code{repeatCommands}
1691
1692 The property @code{repeatCommands} can be used to control the layout of
1693 repeats. Its value is a Scheme list of repeat commands, where each repeat
1694 command can be
1695
1696 @table @code
1697 @item 'start-repeat
1698  Print a |: bar line
1699 @item 'stop-repeat
1700  Print a :| bar line
1701 @item (volta . @var{text})
1702   Print a volta bracket saying @var{text}.
1703 @item (volta . #f)
1704   Stop a running volta bracket
1705 @end table
1706
1707 @lilypond[verbatim, fragment]
1708  c''4
1709     \property Score.repeatCommands = #'((volta "93") end-repeat)
1710  c''4 c''4
1711     \property Score.repeatCommands = #'((volta #f))
1712  c''4 c''4
1713 @end lilypond
1714
1715
1716 Repeats brackets are @internalsref{VoltaBracket} grobs.
1717
1718 @node Tremolo repeats
1719 @subsection Tremolo repeats
1720 @cindex tremolo beams
1721
1722 To place tremolo marks between notes, use @code{\repeat} with tremolo
1723 style.  
1724 @lilypond[verbatim,center,singleline]
1725 \score { 
1726   \context Voice \notes\relative c' {
1727     \repeat "tremolo" 8 { c16 d16 }
1728     \repeat "tremolo" 4 { c16 d16 }    
1729     \repeat "tremolo" 2 { c16 d16 }
1730     \repeat "tremolo" 4 c16
1731   }
1732 }
1733 @end lilypond
1734
1735 Tremolo beams are @internalsref{Beam} grobs. Single stem tremolos are
1736 @internalsref{StemTremolo}.
1737
1738 @refbugs
1739
1740
1741 At present, the spacing between tremolo beams is not regular, since the
1742 spacing engine does not notice that not all notes are printed.
1743
1744 @node Tremolo subdivisions
1745 @subsection Tremolo subdivisions
1746 @cindex tremolo marks
1747 @cindex @code{tremoloFlags}
1748
1749 Tremolo marks can be printed on a single note by adding
1750 `@code{:}[@var{length}]' after the note.  The length must be at least 8.
1751 A @var{length} value of 8 gives one line across the note stem.  If the
1752 length is omitted, then then the last value (stored in
1753 @code{Voice.tremoloFlags}) is used.
1754
1755 @lilypond[verbatim,fragment,center]
1756   c'2:8 c':32 | c': c': |
1757 @end lilypond
1758
1759 @refbugs
1760
1761
1762 Tremolos in this style do not carry over into the MIDI output.
1763
1764
1765 @node Measure repeats
1766 @subsection Measure repeats
1767
1768 @cindex percent repeats
1769 @cindex measure repeats
1770
1771 In the @code{percent} style, a note pattern can be repeated. It is
1772 printed once, and then the pattern is replaced with a special sign.
1773 Patterns of a one and two measures are replaced by percent-like signs,
1774 patterns that divide the measure length are replaced by slashes.
1775
1776 @lilypond[verbatim,singleline]
1777  \context Voice { \repeat  "percent" 4  { c'4 }
1778     \repeat "percent" 2 { c'2 es'2 f'4 fis'4 g'4 c''4 }
1779 }
1780 @end lilypond
1781
1782 The signs are represented by these grobs: @internalsref{RepeatSlash} and
1783 @internalsref{PercentRepeat} and @internalsref{DoublePercentRepeat}.
1784
1785 @refbugs
1786
1787 You can not nest percent repeats, e.g. by filling in the first measure
1788 with slashes, and repeating that measure with percents.
1789
1790 @node Rhythmic music
1791 @section Rhythmic music
1792
1793
1794 @menu
1795 * Rhythmic staves::             
1796 @end menu
1797
1798 @node Rhythmic staves
1799 @subsection Rhythmic staves
1800
1801 Sometimes you might want to show only the rhythm of a melody.  This can
1802 be done with the rhythmic staff. All pitches of notes on such a staff
1803 are squashed, and the  staff itself  looks has  a single staff line:
1804
1805 @lilypond[fragment,relative,verbatim]
1806   \context RhythmicStaff {
1807       \time 4/4
1808       c4 e8 f  g2 | r4 g r2 | g1:32 | r1 |
1809   }
1810 @end lilypond
1811
1812
1813 @c . {Piano music}
1814 @node Piano music
1815 @section Piano music
1816
1817 Piano music is an odd type of notation. Piano staves are two normal
1818 staves coupled with a brace.  The staves are largely independent, but
1819 sometimes voices can cross between the two staves.  The
1820 @internalsref{PianoStaff} is especially built to handle this cross-staffing
1821 behavior.  In this section we discuss the @internalsref{PianoStaff} and some
1822 other pianistic peculiarities.
1823
1824 @menu
1825 * Automatic staff changes::     
1826 * Manual staff switches::       
1827 * Pedals::                      
1828 * Arpeggio::                    
1829 * Voice follower lines::        
1830 @end menu 
1831
1832
1833 @c .   {Automatic staff changes}
1834 @node Automatic staff changes
1835 @subsection Automatic staff changes
1836 @cindex Automatic staff changes
1837
1838 Voices can switch automatically between the top and the bottom
1839 staff. The syntax for this is
1840 @example
1841         \autochange @var{contexttype} @var{musicexp}
1842 @end example
1843 This will switch the interpretation context of @var{musicexp} between a
1844 @var{contexttype} named @code{up} and @code{down}. Typically, you use
1845 @internalsref{Staff} for @var{contexttype}.  The autochanger switches on basis
1846 of pitch (central C is the turning point), and it looks ahead skipping
1847 over rests to switch rests in advance.
1848         
1849 @lilypond[verbatim,singleline]
1850 \score { \notes \context PianoStaff <
1851   \context Staff = "up" {
1852     \autochange Staff \context Voice = VA < \relative c' {
1853        g4 a  b c d r4 a g } > }
1854   \context Staff = "down" {
1855        \clef bass
1856        s1*2
1857 } > }
1858 @end lilypond
1859
1860 Note how spacer rests are used to prevent the bottom staff from
1861 terminating too soon.
1862
1863
1864 @node Manual staff switches
1865 @subsection Manual staff switches
1866
1867 @cindex manual staff switches
1868 @cindex staff switch, manual
1869
1870 Voices can be switched between staves manually, using the following command:
1871 @example
1872   \translator Staff = @var{staffname} @var{music}
1873 @end example
1874 The string @var{staffname} is the name of the staff. It switches the
1875 current voice from its current staff to the Staff called
1876 @var{staffname}. Typically @var{staffname} is @code{"up"} or
1877 @code{"down"}.
1878
1879 The formal definition of this construct is obtuse, but for the sake of
1880 completeness we give it here.
1881 @cindex @code{\translator}
1882 @example
1883   \translator @var{contexttype} = @var{name}
1884 @end example
1885 Formally, this construct is a music expression indicating
1886 that the context which is a direct child of the context of type
1887 @var{contexttype} should be shifted to a context of type
1888 @var{contexttype} and the specified name.
1889
1890
1891 @c .   {Pedals}
1892 @node Pedals
1893 @subsection Pedals
1894 @cindex Pedals
1895
1896 Piano pedal instruction can be expressed using 
1897 @code{\sustainDown}, @code{\sustainUp}, @code{\unaCorda},
1898 @code{\treCorde}, @code{\sostenutoDown} and @code{\sostenutoUp}.
1899
1900 These identifiers are shorthands for spanner commands of the types
1901 @internalsref{Sustain}, @internalsref{UnaCorda} and @internalsref{Sostenuto}:
1902
1903 @lilypond[fragment,verbatim]
1904 c''4 \spanrequest \start "Sustain" c''4
1905 c''4 \spanrequest \stop "Sustain"
1906 @end lilypond
1907
1908 The symbols that are printed can be modified by setting
1909 @code{pedal@var{X}Strings}, where @var{X} is one of the pedal
1910 types. Refer to the generated documentation of @rgrob{PianoPedal} for
1911 more information.
1912
1913 @refbugs
1914
1915
1916 Currently, brackets are not supported, only text markings (i.e. `*Ped'
1917 style).
1918
1919
1920 @c .   {Arpeggio}
1921 @node Arpeggio
1922 @subsection Arpeggio
1923 @cindex Arpeggio
1924
1925 @cindex broken arpeggio
1926 @cindex @code{\arpeggio}
1927
1928 You can specify an arpeggio sign on a chord by attaching an
1929 @code{\arpeggio} to a note of the chord.
1930
1931
1932 @lilypond[fragment,relative,verbatim]
1933   \context Voice <c\arpeggio e g c>
1934 @end lilypond
1935
1936 When an arpeggio crosses staves in piano music, you attach an arpeggio
1937 to the chords in both staves, and set
1938 @code{PianoStaff.connectArpeggios}.
1939
1940 @lilypond[fragment,relative,verbatim]
1941   \context PianoStaff <
1942     \property PianoStaff.connectArpeggios = ##t
1943     \context Voice = one  { <c'\arpeggio e g c> }
1944     \context Voice = other { \clef bass  <c,,\arpeggio e g>}
1945   >  
1946 @end lilypond
1947
1948 This command creates @internalsref{Arpeggio} grobs.  Cross staff arpeggios
1949 are @code{PianoStaff.Arpeggio}. @internalsref{Arpeggio}
1950
1951 To add an arrow head to explicitly specify the direction of the
1952 arpeggio, you should set the arpeggio grob property
1953 @code{arpeggio-type}.
1954
1955 @lilypond[fragment,relative,verbatim]
1956   \context Voice {
1957      \property Voice.Arpeggio \override #'arpeggio-direction = #1
1958      <c\arpeggio e g c>
1959      \property Voice.Arpeggio \override #'arpeggio-direction = #-1
1960      <c\arpeggio e g c>
1961   }
1962 @end lilypond
1963
1964 @ignore
1965 A square bracket on the left indicates that the player should not
1966 arpeggiate the chord.
1967
1968 @lil ypond[fragment,relative,verbatim]
1969   \context PianoStaff <
1970     \property PianoStaff.connectArpeggios = ##t
1971     \property PianoStaff.Arpeggio \override #'arpeggio-direction = #'bracket
1972     \context Voice = one  { <c'\arpeggio e g c> }
1973     \context Voice = other { \clef bass  <c,,\arpeggio e g>}
1974   >  
1975 @ e nd lilypond
1976 @end ignore
1977
1978
1979 @refbugs
1980
1981 It is not possible to mix connected arpeggios and unconnected arpeggios
1982 at the same time.
1983
1984
1985
1986 @node  Voice follower lines
1987 @subsection Voice follower lines
1988
1989 @cindex follow voice
1990 @cindex staff switching
1991 @cindex cross staff
1992
1993 @cindex @code{followVoice}
1994
1995 Whenever a voice switches to another staff a line connecting the notes
1996 can be printed automatically. This is enabled if the property
1997 @code{PianoStaff.followVoice} is set to true:
1998
1999 @lilypond[fragment,relative,verbatim]
2000   \context PianoStaff <
2001     \property PianoStaff.followVoice = ##t
2002     \context Staff \context Voice {
2003       c1
2004       \translator Staff=two
2005       b2 a
2006     }
2007     \context Staff=two {\clef bass \skip 1*2 }
2008   >  
2009 @end lilypond
2010
2011 The associated grob is @internalsref{VoiceFollower}.
2012
2013
2014 @node Lyrics
2015 @section Lyrics
2016
2017
2018 @menu
2019 * Lyrics mode::                 
2020 * Printing lyrics::             
2021 * Automatic syllable durations::  
2022 * More stanzas::                
2023 @end menu
2024
2025 @c .  {Lyrics mode}
2026 @node Lyrics mode
2027 @subsection Lyrics mode
2028 @cindex Lyrics mode
2029
2030 To print lyrics, you must first make a music expression from the lyric
2031 text.  That music expression can be printed by selecting an appropriate
2032 context.
2033
2034 @cindex lyric mode
2035 @cindex @code{\lyrics}
2036
2037 You can enter lyrics in a special input mode of LilyPond. This mode is
2038 called Lyrics mode, and it is introduced by the keyword @code{\lyrics}.
2039 The purpose of this mode is that you can enter lyrics as plain text,
2040 punctuation and accents without any hassle.
2041
2042 Syllables are entered like notes, with pitches replaced by text.  For
2043 example, @code{Twin- kle twin- kle} enters four syllables.  Note that
2044 the hyphen has no special meaning for lyrics, and does not introduce
2045 special symbols.
2046
2047 Spaces can be introduced into a lyric either by using quotes:
2048 @code{"He could"4 not4} or by using an underscore without quotes:
2049 @code{He_could4 not4}.  All unquoted underscores are converted to
2050 spaces.
2051
2052 The precise definition of this mode can be found in @ref{Lyrics mode
2053 definition}. 
2054
2055 @c .  {Printing lyrics}
2056 @node Printing lyrics
2057 @subsection Printing lyrics
2058 @cindex lyrics
2059
2060 Lyrics are printed by interpreting them in the @internalsref{Lyrics}  context.
2061
2062 @c Maybe more pedagogical to avoid \addlyrics in this first example? /MB
2063 @c Add tied and beamed melismata too.
2064 @lilypond[verbatim,singleline]
2065 \addlyrics
2066   \notes \relative c' {
2067     \time 7/4
2068     \property Staff.automaticMelismata = ##t
2069     d'2 c4 b16 ( a g a b a b ) c a2
2070     b2 c4 b8 ( a16 g ) a4 g2 }
2071   \context Lyrics \lyrics { 
2072     Join us now __ and
2073     share the soft -- ware; }
2074 @end lilypond
2075
2076
2077 Notes and syllable durations are matched automatically. This is
2078 accomplished using @code{\addlyrics}, which is documented in
2079 @ref{Automatic syllable durations}. Setting @code{automaticMelismata} in
2080 the melody staff will cause tied, slurred or beamed notes to be
2081 interpreted as melismata.
2082
2083 The Lyric syllables are @code{LyricsVoice.LyricSyllable} grobs.
2084
2085 @cindex extender
2086 @cindex lyric extender
2087 @cindex melisma
2088
2089 As you can see, extender lines are entered as @code{__}.  This will
2090 create an extender, a line that extends over the entire duration of the
2091 lyric.  This line will run all the way to the start of the next lyric,
2092 so you may want to shorten it by using a blank lyric (using @code{_}).
2093 The grob for this symbol is @code{LyricsVoice.LyricExtender}.
2094
2095
2096 @cindex hyphen
2097
2098 If you want to have hyphens centered between syllables (rather than
2099 attached to the end of the first syllable) you can use the special
2100 `@code{-}@code{-}' lyric as a separate word between syllables.  This
2101 will result in a hyphen whose length varies depending on the space
2102 between syllables. It will be centered between the syllables.  The grob
2103 for this symbol is @code{LyricsVoice.LyricHyphen}.
2104
2105 @cindex Lyric hyphen
2106
2107 @node Automatic syllable durations
2108 @subsection Automatic syllable durations
2109 @cindex Automatic syllable durations
2110
2111 @cindex automatic lyric durations
2112 @cindex @code{\addlyrics}
2113
2114 If you have lyrics that are set to a melody, you can copy the rhythm
2115 of that melody into the lyrics using @code{\addlyrics}.  The syntax for
2116 this is
2117 @example
2118   \addlyrics @var{musicexpr1 musicexpr2}
2119 @end example
2120
2121 Both @var{musicexpr1} and @var{musicexpr2} are interpreted, but every
2122 music event (``every syllable'') in @var{musicexpr2} is interpreted only
2123 when there are events in @var{musicexpr1}.
2124
2125 @cindex @code{automaticMelismata}
2126
2127 If the property @code{automaticMelismata} is set in the
2128 context of @var{musicexpr1}, no lyrics will be put on slurred or tied
2129 notes.
2130
2131 @lilypond[verbatim,fragment]
2132 \addlyrics
2133 \transpose c'' {
2134   \property Voice.automaticMelismata = ##t
2135   c8 () cis d8. e16 f2
2136 }
2137 \context Lyrics \lyrics {
2138  do4 re mi fa }
2139 @end lilypond
2140
2141 If you want the lyric lines to be above the melody staff, or in some
2142 other, more complex configuration, then build that configuration first
2143 using simultaneous music, and use @code{\addlyrics} after that.
2144
2145 @lilypond[verbatim, singleline]
2146 \notes <
2147   \context Lyrics = LA { s1 }
2148   \context Staff = SA { s1 }
2149   \addlyrics
2150         \context Staff = SA \relative c' { c4 e g g }
2151         \context Lyrics  = LA \lyrics { geen ge -- don -- der } >
2152 @end lilypond
2153
2154 For @code{\addlyrics} you should use a single rhythm melody, and single
2155 rhythm lyrics (a constant duration is the obvious choice).  If you do
2156 not, you can get undesired effects when using multiple stanzas:
2157
2158 @lilypond[verbatim,fragment]
2159 \addlyrics
2160 \transpose c'' {
2161   c8 () cis d8. e16 f2
2162 }
2163 \context Lyrics \lyrics
2164 < { do4 re fa sol }
2165   { do8 re fa sol } >
2166 @end lilypond
2167
2168 It is valid (but probably not very useful) to use notes instead of
2169 lyrics for @var{musicexpr2}.
2170
2171 @node More stanzas
2172 @subsection More stanzas
2173
2174 @cindex phrasing
2175
2176 If you have multiple stanzas printed underneath each other, the vertical
2177 groups of syllables should be aligned around punctuation. LilyPond can
2178 do this if you tell it which lyric lines belong to which melody.
2179
2180 To this end, give the Voice context an identity, and set the LyricsVoice
2181 to a name starting with that identity followed by a dash.
2182 In the following example, the Voice
2183 identity is @code{duet}, and the identities of the LyricsVoices are
2184 @code{duet-1} and @code{duet-2}.
2185
2186
2187 @lilypond[singleline,verbatim]
2188 \score {
2189 \addlyrics
2190   \notes \relative c'' \context Voice = duet { \time 3/4
2191      g2 e4 a2 f4 g2.  }
2192   \lyrics \context Lyrics <
2193   \context LyricsVoice = "duet-1" {
2194     \property LyricsVoice . stanza = "Bert"
2195     Hi, my name is bert.    }
2196   \context LyricsVoice = "duet-2" {
2197     \property LyricsVoice . stanza = "Ernie" 
2198     Ooooo, ch\'e -- ri, je t'aime. }
2199   >
2200 }
2201 @end lilypond
2202
2203 You can add stanza numbers by setting @code{LyricsVoice.Stanza} (for the
2204 first system) and @code{LyricsVoice.stz} for the following
2205 systems. Notice how you must surround dots with spaces in @code{\lyrics}
2206 mode.
2207
2208
2209
2210
2211 @cindex stanza numbering
2212
2213
2214 @c . {Chords}
2215 @node Chords
2216 @section Chords
2217 @cindex Chords
2218
2219 LilyPond has support for both entering and printing chords.  Chords are
2220 characterized by a set of pitches. They are
2221 internally stored as simultaneous music expressions. This means you can
2222 enter chords by name and print them as note head, enter them as notes
2223 and print them as chord names, or (the most common case) enter them by
2224 name, and print them as name.
2225
2226
2227 @lilypond[verbatim,singleline]
2228 twoWays = \notes \transpose c'' {
2229   \chords {
2230     c1 f:sus4 bes/f
2231   }
2232   <c e g>
2233   <f bes c'>
2234   <f bes d'>
2235   }
2236
2237 \score {
2238    < \context ChordNames \twoWays
2239      \context Voice \twoWays > }
2240 @end lilypond
2241
2242 Note that this example also shows that the chord printing routines do
2243 not attempt to be intelligent. If you enter @code{f bes d}, it does not
2244 interpret this as an inversion.
2245
2246 @menu
2247 * Chords mode::                 
2248 * Printing named chords::       
2249 @end menu
2250
2251 @c .  {Chords mode}
2252 @node Chords mode
2253 @subsection Chords mode
2254 @cindex Chords mode
2255
2256 Chord mode is a mode where you can input sets of pitches using common
2257 names.  It is introduced by the keyword @code{\chords}.  It is similar
2258 to note mode, but words are also looked up in a chord modifier table
2259 (containing @code{maj}, @code{dim}, etc).
2260
2261 Dashes and carets are used to indicate chord additions and subtractions,
2262 so articulation scripts can not be entered in Chord mode.
2263
2264 The syntax for named chords is as follows:
2265 @example
2266   @var{tonic}[@var{duration}][@code{-}@var{modifiers}][@code{^}@var{subtractions}][@code{/}@var{inversion}][@code{/+}@var{bass}].
2267 @end example
2268
2269 @var{tonic} should be the tonic note of the chord, and @var{duration} is
2270 the chord duration in the usual notation.  There are two kinds of
2271 modifiers.  One type is formed by @emph{chord additions}. Additions are
2272 obtained by listing intervals separated by dots.  An interval is written
2273 by its number with an optional @code{+} or @code{-} to indicate raising
2274 or lowering by half a step.  Chord additions have two effects: they adds
2275 the specified interval and all lower odd numbered intervals to the
2276 chord, and they may lower or raise the specified interval.
2277
2278 Throughout these examples, chords have been shifted around the staff
2279 using @code{\transpose}.
2280
2281 @lilypond[fragment,verbatim]
2282 \transpose c'' {
2283   \chords {
2284     c1  c:3-       c:7     c:8
2285     c:9 c:9-.5+.7+ c:3-.5- 
2286   }
2287 }
2288 @end lilypond
2289
2290 @cindex @code{aug}
2291 @cindex @code{dim}
2292 @cindex @code{maj}
2293 @cindex @code{sus}
2294
2295 The second type of modifier that may appear after the @code{:} is a
2296 named modifier.  Named modifiers are listed in the file
2297 @file{chord-modifiers.ly}.  The available modifiers are @code{m} and
2298 @code{min} which lower the 3rd half a step, `@code{aug}' which
2299 raises the 5th, `@code{dim}' which lowers the 5th,
2300 `@code{maj}' which adds a raised 7th, and `@code{sus}'
2301 which replaces the 5th with a 4th.
2302
2303 @lilypond[fragment,verbatim]
2304 \transpose c'' {
2305   \chords {
2306     c1:m c:min7 c:maj c:aug c:dim c:sus
2307   }
2308 }
2309 @end lilypond
2310  
2311
2312 Chord subtractions are used to eliminate notes from a chord.  The
2313 notes to be subtracted are listed after a @code{^} character,
2314 separated by dots.
2315
2316 @lilypond[fragment,verbatim,center]
2317   \transpose c'' {
2318     \chords {
2319       c1^3 c:7^5.3 c:8^7
2320     }
2321   }
2322 @end lilypond 
2323 @cindex @code{/}
2324
2325 Chord inversions can be specified by appending `@code{/}' and the name
2326 of a single note to a chord.  In a chord inversion, the inverted note is
2327 transposed down until it is the lowest note in the chord.  If the note
2328 is not in the chord, a warning will be printed.
2329
2330 @lilypond[fragment,verbatim,center]
2331   \transpose c''' {
2332     \chords {
2333       c1 c/e c/g c:7/e
2334     }
2335   }
2336
2337 @end lilypond 
2338 @cindex @code{/+}
2339
2340 Bass notes can be added by `@code{/+}' and
2341 the name of a single note to a chord.  This has the effect of
2342 adding the specified note to the chord, lowered by an octave,
2343 so it becomes the lowest note in the chord.
2344
2345 @lilypond[fragment,verbatim,center]
2346   \transpose c''' {
2347     \chords {
2348       c1 c/+c c/+g c:7/+b
2349     }
2350   }
2351
2352 @end lilypond 
2353
2354 @refbugs
2355
2356 Implementation details are quite gory. For example @code{c:4} not only
2357 adds a fourth, but also removes the third.
2358
2359
2360 @c .  {Printing named chords}
2361 @node Printing named chords
2362 @subsection Printing named chords
2363
2364 @cindex printing chord names
2365 @cindex chord names
2366 @cindex chords
2367
2368 For displaying printed chord names, use the @internalsref{ChordNames} context.
2369 The chords may be entered either using the notation described above, or
2370 directly using simultaneous music.
2371
2372 @lilypond[verbatim,singleline]
2373 scheme = \notes {
2374   \chords {a1 b c} <d f g>  <e g b>
2375 }
2376 \score {
2377   \notes<
2378     \context ChordNames \scheme
2379     \context Staff \transpose c'' \scheme
2380   >
2381 }
2382 @end lilypond
2383
2384 You can make the chord changes stand out by setting
2385 @code{ChordNames.chordChanges} to true.  This will only display chord
2386 names when there's a change in the chords scheme and at the start of a
2387 new line.
2388
2389 @lilypond[verbatim]
2390 scheme = \chords {
2391   c1:m c:m \break c:m c:m d
2392 }
2393 \score {
2394   \notes <
2395     \context ChordNames {
2396         \property ChordNames.chordChanges = ##t
2397         \scheme }
2398     \context Staff \transpose c'' \scheme
2399   > }
2400 @end lilypond
2401
2402 LilyPond examines chords specified as lists of notes to determine a name
2403 to give the chord. LilyPond will not try to identify chord inversions or
2404 an added bass note, which may result in strange chord names when chords
2405 are entered as a list of pitches:
2406
2407 @lilypond[verbatim,center,singleline]
2408 scheme = \notes {
2409   <c'1 e' g'>
2410   <e' g' c''>
2411   <e e' g' c''>
2412 }
2413
2414 \score {
2415   <
2416     \context ChordNames \scheme
2417     \context Staff \scheme
2418   >
2419 }
2420 @end lilypond
2421
2422
2423 By default, a chord name system proposed by Harald Banter (See
2424 @ref{Literature}) is used. The system is very regular and predictable.
2425 Typical American style chord names may be selected by setting the
2426 @code{style} property of the @code{ChordNames.ChordName} grob to
2427 @code{'american}. Similarly @code{'jazz} selects Jazz chordnames.
2428
2429 Routines that determine the names to be printed are written in Scheme,
2430 and may be customized by the user.  The code can be found in
2431 @file{scm/chord-name.scm}.  Here's an example showing the differences in
2432 chord name styles:
2433
2434 @c too long?
2435 @c maybe just junk verbatim option?
2436 @lilypond[verbatim,singleline]
2437 scheme = \chords {
2438   c1 c:5^3 c:4^3 c:5+
2439   c:m7+ c:m5-.7
2440   c:5-.7 c:5+.7
2441   c:9^7
2442 }
2443
2444 \score {
2445   \notes <
2446     \context ChordNames = banter \scheme
2447     \context ChordNames = american {
2448       \property ChordNames.ChordName \override
2449         #'style = #'american \scheme }
2450     \context ChordNames = jazz {
2451       \property ChordNames.ChordName \override
2452         #'style = #'jazz \scheme }
2453     \context Staff \transpose c'' \scheme
2454   >
2455 }
2456 @end lilypond
2457
2458
2459 @node Writing parts
2460 @section Writing parts
2461
2462 Orchestral music involves some special notation, both in the full score,
2463 as in the individual parts. This section explains how to tackle common
2464 problems in orchestral music.
2465
2466
2467 @c .  {Transpose}
2468 @menu
2469 * Rehearsal marks::             
2470 * Bar numbers::                 
2471 * Instrument names::            
2472 * Transpose::                   
2473 * Sound output for transposing instruments::  
2474 * Multi measure rests::         
2475 * Automatic part combining::    
2476 * Hara kiri staves::            
2477 @end menu
2478
2479 @c .   {Rehearsal marks}
2480 @node Rehearsal marks
2481 @subsection Rehearsal marks
2482 @cindex Rehearsal marks
2483 @cindex mark
2484 @cindex @code{\mark}
2485
2486
2487 @example
2488   \mark @var{unsigned}
2489   \mark @var{string}
2490   \mark \default
2491 @end example
2492
2493 This command prints a rehearsal mark above the system. You can provide
2494 a number, a string or a markup text as argument. If you use
2495 @code{\default}, the value of property @code{rehearsalMark} is used and
2496 automatically incremented.
2497
2498 @lilypond[fragment,verbatim]
2499 \relative c'' {
2500   c1 \mark "A2"
2501   c1 \mark \default
2502   c1 \mark \default 
2503   c1 \mark "12"
2504   c1 \mark #'(music "scripts-segno") 
2505   c1
2506 }
2507 @end lilypond
2508
2509 The grob is @internalsref{RehearsalMark} in @internalsref{Score} context. See
2510 @code{input/test/boxed-molecule.ly} if you need boxes around the marks.
2511
2512 @node Bar numbers
2513 @subsection Bar numbers
2514
2515 Bar numbers (grob: @internalsref{BarNumber}) are printed at the start of the
2516 line. See @code{input/test/boxed-molecule.ly} for boxed bar numbers.
2517
2518 @refbugs
2519
2520 It is not possible to have bar numbers printed at regular intervals
2521 only.
2522
2523 @node Instrument names
2524 @subsection Instrument names
2525
2526 You can specify an instrument name for a staff by setting
2527 @code{Staff.instrument} and @code{Staff.instr}. This will print a string
2528 before the start of the staff. For the first start, @code{instrument} is
2529 used, for the next ones @code{instr} is used.
2530
2531 @lilypond[verbatim,singleline]
2532   \property Staff.instrument = "ploink " { c''4 }  
2533 @end lilypond
2534
2535 You can also use markup texts to construct more complicated instrument
2536 names:
2537
2538
2539 @lilypond[verbatim,singleline]
2540 #(define text-flat
2541   '((font-relative-size . -2 ) (music "accidentals--1")))
2542
2543 \score { \notes {
2544   \property Staff.instrument = #`((kern . 0.5) (lines
2545     "2 Clarinetti" (columns "     (B" ,text-flat ")")))
2546     c'' 4 }
2547 }
2548 @end lilypond
2549
2550
2551 @refbugs
2552
2553 When you put a name on a grand staff or piano staff the width of the
2554 brace is not taken into account. You must add extra spaces to the end of
2555 the name to avoid a collision.
2556
2557 @node Transpose
2558 @subsection Transpose
2559 @cindex Transpose
2560 @cindex transposition of pitches
2561 @cindex @code{\transpose}
2562
2563 A music expression can be transposed with @code{\transpose}.  The syntax
2564 is
2565 @example
2566   \transpose @var{pitch} @var{musicexpr}
2567 @end example
2568
2569 This means that middle C in @var{musicexpr} is transposed to
2570 @var{pitch}.
2571
2572 @code{\transpose} distinguishes between enharmonic pitches: both
2573 @code{\transpose cis'} or @code{\transpose des'} will transpose up half
2574 a tone.  The first version will print sharps and the second version
2575 will print flats.
2576
2577 @lilypond[fragment,verbatim]
2578 \context Staff {
2579   \clef "F"
2580   { \key e \major c d e f }
2581   \clef "G"
2582   \transpose des'' { \key e \major c d e f }
2583   \transpose cis'' { \key e \major c d e f }
2584 }
2585 @end lilypond
2586
2587 If you want to use both @code{\transpose} and @code{\relative}, then
2588 you must use @code{\transpose} first.  @code{\relative} will have no
2589 effect music that appears inside a @code{\transpose}.
2590
2591 @node Sound output for transposing instruments
2592 @subsection Sound output transposing instruments
2593
2594 When you want to make a MIDI file from a score containing transposed and
2595 untransposed 
2596 instruments, you have to instruct LilyPond the pitch offset (in
2597 semitones) for the transposed instruments. This is done using the
2598 @code{transposing} property. It does not affect printed output.
2599
2600 @cindex @code{transposing}
2601
2602 @example
2603         \property Staff.instrument = #"Cl. in B-flat"
2604         \property Staff.transposing = #-2
2605 @end example
2606
2607 @c .  {Multi measure rests}
2608 @node  Multi measure rests
2609 @subsection Multi measure rests
2610 @cindex Multi measure rests
2611
2612 @cindex @code{R}
2613
2614 Multi measure rests are entered using `@code{R}'. It is specifically
2615 meant for full bar rests and for entering parts: the rest can expand to
2616 fill a score with 
2617 rests, or it can be printed as a single multimeasure rest This expansion
2618 is controlled by the property @code{Score.skipBars}. If this is set to true,
2619 Lily will not expand empty measures, and the appropriate number is added
2620 automatically.
2621
2622 @lilypond[fragment,verbatim]
2623  \time 3/4 r2. | R2. | R2.*2 \property Score.skipBars = ##t R2.*17  R2.*4
2624 @end lilypond
2625
2626 Notice that the @code{R2.} is printed as a whole rest, centered in the
2627 measure. 
2628
2629 @cindex whole rests for a full measure 
2630
2631 The grob for this object is @internalsref{MultiMeasureRest}.
2632
2633 @refbugs
2634
2635 Currently, there is no way to automatically condense multiple rests into
2636 a single multimeasure rest.
2637
2638 @cindex condensing rests
2639
2640 @node Automatic part combining
2641 @subsection Automatic part combining
2642 @cindex automatic part combining
2643 @cindex part combiner
2644
2645
2646 Automatic part combining is used to merge two parts of music onto a
2647 staff in an intelligent way.  It is aimed primarily at typesetting
2648 orchestral scores.  When the two parts are identical for a period of
2649 time, only one is shown.  In places where the two parts differ, they are
2650 typeset as separate voices, and stem directions are set automatically.
2651 Also, solo and @emph{a due} parts can be identified and marked.
2652
2653 The syntax for part combining is
2654
2655 @example
2656   \partcombine @var{context} @var{musicexpr1} @var{musicexpr2}
2657 @end example
2658 where the pieces of music @var{musicexpr1} and @var{musicexpr2} will be
2659 combined into one context of type @var{context}.  The music expressions
2660 must be interpreted by contexts whose names should start with @code{one}
2661 and @code{two}.
2662
2663 The most useful function of the part combiner is to combine parts into
2664 one voice, as common for wind parts in orchestral scores:
2665
2666 @lilypond[verbatim,singleline,fragment]
2667   \context Staff <
2668     \context Voice=one \partcombine Voice
2669       \context Thread=one \relative c'' {
2670         g a () b r
2671       }
2672       \context Thread=two \relative c'' {
2673         g r4 r f
2674       }
2675   >
2676 @end lilypond
2677
2678 Notice that the first @code{g} appears only once, although it was
2679 specified twice (once in each part).  Stem, slur and tie directions are
2680 set automatically, depending whether there is a solo or unisono. The
2681 first part (with context called @code{one}) always gets up stems, and
2682 `solo', while the second (called @code{two}) always gets down stems and
2683 `Solo II'.
2684
2685 If you just want the merging parts, and not the textual markings, you
2686 may set the property @var{soloADue} to false.
2687
2688 @lilypond[verbatim,singleline,fragment]
2689   \context Staff <
2690     \property Staff.soloADue = ##f
2691     \context Voice=one \partcombine Voice
2692       \context Thread=one \relative c'' {
2693         b4 a c g
2694       }
2695       \context Thread=two \relative c'' {
2696         d,2 a4 g'
2697       }
2698   >
2699 @end lilypond
2700
2701 There are a number of other properties that you can use to tweak the
2702 behavior of part combining, refer to the automatically generated
2703 documentation of @reng{Thread_devnull_engraver} and
2704 @reng{Voice_devnull_engraver}. Look at the documentation of the
2705 responsible engravers, @code{Thread_devnull_engraver},
2706 @code{Voice_devnull_engraver} and @code{A2_engraver}.
2707
2708 @refbugs
2709
2710 In @code{soloADue} mode, when the two voices play the same notes on and
2711 off, the part combiner may typeset @code{a2} more than once in a
2712 measure.
2713
2714 @lilypond[fragment,singleline]
2715   \context Staff <
2716     \context Voice=one \partcombine Voice
2717       \context Thread=one \relative c'' {
2718         c b c b c a c a
2719       }
2720       \context Thread=two \relative c'' {
2721         b b b b f a f a
2722       }
2723   >
2724 @end lilypond
2725
2726 @cindex @code{Thread_devnull_engraver}
2727 @cindex @code{Voice_engraver}
2728 @cindex @code{A2_engraver}
2729
2730 @node Hara kiri staves
2731 @subsection Hara kiri staves
2732
2733 In orchestral scores, staff lines that only have rests are usually removed.
2734 This saves some space.  LilyPond also supports this through the hara
2735 kiri@footnote{Hara kiri, also called Seppuku, is the ritual suicide of
2736 the Japanese Samourai warriors.} staff. This staff commits suicide when
2737 it finds itself to be empty after the line-breaking process.  It will
2738 not disappear when it contains normal rests, you must use multi measure
2739 rests.
2740
2741 The hara kiri staff is specialized version of the @internalsref{Staff}
2742 context. It is available as the context identifier
2743 @code{\HaraKiriStaffContext}.  Observe how the second staff in this
2744 example disappears in the second line.
2745
2746 @lilypond[verbatim]
2747 \score  {
2748   \notes \relative c' <
2749     \context Staff = SA { e4 f g a \break c1 }
2750     \context Staff = SB { c4 d e f \break R1 }
2751   >
2752   \paper {
2753     linewidth = 6.\cm 
2754     \translator { \HaraKiriStaffContext }
2755   }
2756 }
2757 @end lilypond
2758
2759
2760
2761 @c . {Custodes}
2762 @node Custodes
2763 @section Custodes
2764 @cindex Custos
2765 @cindex Custodes
2766
2767 A @emph{custos} (plural: @emph{custodes}; latin word for `guard') is a
2768 staff context symbol that appears at the end of a staff line.  It
2769 anticipates the pitch of the first note(s) of the following line and
2770 thus helps the player or singer to manage line breaks during
2771 performance, thus enhancing readability of a score.
2772
2773 @lilypond[verbatim]
2774 \score {
2775   \notes { c'1 \break
2776         \property Staff.Custos \set #'style = #'mensural
2777         d' }
2778   \paper {
2779     \translator {
2780       \StaffContext
2781       \consists Custos_engraver
2782     }
2783   }
2784 }
2785 @end lilypond
2786
2787 Custodes were frequently used in music notation until the 17th century.
2788 There were different appearances for different notation styles.
2789 Nowadays, they have survived only in special forms of musical notation
2790 such as via the @emph{editio vaticana} dating back to the beginning of
2791 the 20th century.
2792
2793 For typesetting custodes, just put a @code{Custos_engraver} into the
2794 @internalsref{Staff} context when declaring the @code{\paper} block.  In this
2795 block, you can also globally control the appearance of the custos symbol
2796 by setting the custos @code{style} property.  Currently supported styles
2797 are @code{vaticana}, @code{medicaea}, @code{hufnagel} and
2798 @code{mensural}.
2799
2800 @example
2801 \paper @{
2802   \translator @{
2803       \StaffContext
2804       \consists Custos_engraver
2805       Custos \override #'style = #'mensural
2806   @}
2807 @}
2808 @end example
2809
2810 The property can also be set locally, for example in a @code{\notes}
2811 block:
2812
2813 @example
2814 \notes @{
2815   \property Staff.Custos \override #'style = #'vaticana
2816   c'1 d' e' d' \break c' d' e' d'
2817 @}
2818 @end example
2819
2820 @c . {Tuning output}
2821 @node Tuning output
2822 @section Tuning output
2823
2824 LilyPond tries to take as much formatting as possible out of your
2825 hands. Nevertheless, there are situations where it needs some help, or
2826 where you want to override its decisions. In this section we discuss
2827 ways to do just that.
2828
2829 Formatting is internally done by manipulating so called grobs (graphic
2830 objects). Each grob carries with it a set of properties (grob
2831 properties) specific to that object.  For example, a stem grob has
2832 properties that specify its direction, length and thickness.
2833
2834 The most direct way of tuning the output is by altering the values of
2835 these properties. There are two ways of doing that: first, you can
2836 temporarily change the definition of a certain type of grob, thus
2837 affecting a whole set of objects.  Second, you can select one specific
2838 object, and set a grob property in that object.
2839
2840 @menu
2841 * Tuning groups of grobs ::     
2842 * Tuning per grob ::            
2843 * What to tune?::               
2844 * Font selection::              
2845 * Text markup::                 
2846 * Invisible grobs::             
2847 * Dirty tricks::                
2848 @end menu
2849
2850 @node Tuning groups of grobs 
2851 @subsection Tuning groups of grobs 
2852
2853 @cindex grob description
2854
2855
2856
2857 A grob definition is a Scheme association list, that is stored in a
2858 context property.  By assigning to that property (using plain
2859 @code{\property}), you can change the resulting grobs.
2860
2861 @lilypond[verbatim, fragment]
2862 c'4 \property Voice.Stem  = #'((meta . ((interfaces . ())))) c'4
2863 @end lilypond
2864
2865 The @code{\property} assignment effectively empties the definition of
2866 the Stem object. One of the effects is that the recipe of how it should be
2867 printed is erased, with the effect of rendering it invisible.  The above
2868 assignment is available as a standard identifier, for the case that you
2869 find this useful:
2870
2871 @example
2872   \property Voice.Stem = \turnOff
2873 @end example
2874
2875 @cindex \override
2876 @cindex \revert
2877 @cindex \set
2878
2879 This mechanism is fairly crude, since you can only set, but not modify,
2880 the definition of a grob. For this reason, there is a more advanced
2881 mechanism.
2882
2883 The definition of a grob is actually a list of default grob
2884 properties. For example, the definition of the Stem grob (available in
2885 @file{scm/grob-description.scm}), defines the following values for
2886 @internalsref{Stem}
2887
2888 @example
2889         (thickness . 0.8)
2890         (beamed-lengths . (0.0 2.5 2.0 1.5))
2891         (Y-extent-callback . ,Stem::height)
2892         @var{...}
2893 @end example
2894
2895 You can add a property on top of the existing definition, or remove a
2896 property, thus overriding the system defaults:
2897 @lilypond[verbatim]
2898 c'4 \property Voice.Stem \override #'thickness = #4.0
2899 c'4 \property Voice.Stem \revert #'thickness
2900 c'4
2901 @end lilypond
2902 You should balance @code{\override} and @code{\revert}. If that's too
2903 much work, you can use the @code{\set} shorthand. It performs a revert
2904 followed by an override. The following example gives exactly the same
2905 result as the previous one. 
2906 @lilypond[verbatim]
2907 c'4 \property Voice.Stem \set #'thickness = #4.0
2908 c'4 \property Voice.Stem \set #'thickness = #0.8
2909 c'4
2910 @end lilypond
2911 If you use @code{\set}, you must explicitly restore the default.
2912
2913
2914 Formally the syntax for these constructions is
2915 @example
2916 \property @var{context}.@var{grobname} \override @var{symbol} = @var{value}
2917 \property @var{context}.@var{grobname} \set @var{symbol} = @var{value}
2918 \property @var{context}.@var{grobname} \revert @var{symbol}
2919 @end example
2920 Here @var{symbol} is a Scheme expression of symbol type, @var{context}
2921 and @var{grobname} are strings and @var{value} is a Scheme expression.
2922
2923
2924 If you revert a setting which was not set in the first place, then it
2925 has no effect. However, if the setting was set as a system default, it
2926 may remove the default value, and this may give surprising results,
2927 including crashes.  In other words, @code{\override} and @code{\revert},
2928 must be carefully balanced.
2929
2930 These are examples of correct nesting of @code{\override}, @code{\set},
2931 @code{\revert}. 
2932
2933 A clumsy but correct form:
2934 @example
2935   \override \revert \override \revert \override \revert
2936 @end example
2937
2938 Shorter version of the same:
2939 @example 
2940   \override \set \set  \revert
2941 @end example
2942
2943 A short form, using only @code{\set}. This requires you to know the
2944 default value:
2945 @example
2946   \set \set \set \set @var{to default value}
2947 @end example
2948
2949 If there is no default (i.e. by default, the grob property is unset),
2950 then you can use
2951 @example
2952   \set \set \set \revert
2953 @end example
2954
2955 For the digirati, the grob description is an Scheme association
2956 list. Since a Scheme list is a singly linked list, we can treat it as a
2957 stack, and @code{\override} and @code{\revert} are just push and pop
2958 operations. This pushing and popping is also used for overriding
2959 automatic beaming settings.
2960
2961 @refbugs
2962
2963 LilyPond will hang or crash if @var{value} contains cyclic references.
2964 The backend is not very strict in type-checking grob properties. If you
2965 @code{\revert} properties that are expected to be set by default,
2966 LilyPond may crash.
2967
2968 Some grobs are created at the moment that their context is created. An
2969 example of such a grob is the staff itself (i.e. the horizontal lines).
2970 You can not change the appearance of the staff symbol by manipulating
2971 @code{\property Staff.StaffSymbol}.  At the moment that @code{\property
2972 Staff} is interpreted, a Staff context is made, and the StaffSymbol is
2973 created before any @code{\override} is effective. You can deal with this
2974 either overriding properties in a @code{\translator} definition, or by
2975 using @code{\outputproperty}.
2976
2977
2978
2979
2980 @node Tuning per grob 
2981 @subsection Tuning per grob 
2982
2983 @cindex \outputproperty
2984
2985 A second way of tuning grobs is the more arcane @code{\outputproperty}
2986 feature.  The syntax is as follows:
2987 @example
2988 \outputproperty @var{predicate} @var{symbol} = @var{value}
2989 @end example
2990 Here @code{predicate} is a Scheme function taking a grob argument, and
2991 returning a boolean.  This statement is processed by the
2992 @code{Output_property_engraver}.  It instructs the engraver to feed all
2993 grobs that it sees to @var{predicate}. Whenever the predicate returns
2994 true, the grob property @var{symbol} will be set to @var{value}.
2995
2996 You will need to combine this statement with @code{\context} to select
2997 the appropriate context to apply this to.
2998
2999 Here are some random examples. 
3000
3001
3002 In the following example, all note heads occurring at current staff
3003 level, are shifted up and right by setting their @code{extra-offset}
3004 property.
3005
3006 @lilypond[fragment,verbatim,singleline]
3007 \relative c'' { c4
3008   \context Staff \outputproperty
3009   #(make-type-checker 'note-head-interface)
3010   #'extra-offset = #'(0.5 . 0.75)
3011   <c8 e g> }
3012 @end lilypond
3013
3014 @cindex @code{extra-offset}
3015
3016 In this example, the predicate checks the @code{text} grob property, to
3017 shift only the `m.d.' text,  but not the fingering instruction "2".
3018 @lilypond[verbatim,singleline]
3019 #(define (make-text-checker text)
3020    (lambda (grob) (equal? text (ly-get-grob-property grob 'text))))
3021
3022 \score {    
3023   \notes\relative c''' {
3024     \property Voice.Stem \set #'direction = #1
3025     \outputproperty #(make-text-checker "m.d.")
3026       #'extra-offset = #'(-3.5 . -4.5)
3027     a^2^"m.d."    
3028   }
3029 }
3030 @end lilypond
3031
3032 @refbugs
3033
3034 If possible, avoid this feature: the semantics are not very clean, and
3035 the syntax and semantics are up for rewrite.
3036
3037
3038
3039
3040 @node What to tune?
3041 @subsection What to tune?
3042
3043 This all tells you how to tune grobs, but you don't know what variables
3044 to set? The question is not answered in this part of the manual
3045 (although you may encounter some examples.).
3046
3047 Grob properties are tied directly to the implementation of LilyPond, and
3048 they are thus a moving target. Documentation of such variables is in the
3049 automatically generated documentation.  Description of properties are
3050 generated from the source code for each version. This documentation is
3051 therefore more up to date.  It should be available from the same place
3052 where you got this manual.
3053
3054 To decide how to tune a grob, you need to find the following information
3055 @itemize @bullet
3056 @item
3057 which grob to modify
3058 @item
3059 which property to modify
3060 @item
3061 which context the grob comes from.
3062 @end itemize
3063
3064 Included with the automatically generated documentation is a master list
3065 of grobs. Selecting a grob will take you to an overview of the
3066 properties available for that grob.
3067
3068 There is also a master list of contexts. Selecting one takes you to an
3069 overview of that context which lists which grob types are created there.
3070
3071
3072 @node Font selection
3073 @subsection Font selection
3074
3075 Most graphics in LilyPond are composed of characters of fonts.  You can
3076 alter the characteristics of the font by setting certain grob
3077 properties. The mechanism that is used for this resembles La@TeX{}'s New
3078 Font Selection Scheme. Within this scheme, a font is entirely
3079 characterized by its font name.
3080
3081 For each grob that uses fonts (in other words, each grob that supports
3082 @code{font-interface}) a font-name must be selected before it can be
3083 printed.  The font name is selected by looking at a number of grob
3084 properties:
3085
3086 @table @code
3087 @item font-family
3088  A symbol indicating the general class of the typeface.  Supported are
3089 @code{roman} (Computer Modern), @code{braces} (for piano staff braces),
3090 @code{music} (the standard music font), @code{dynamic} (font for dynamic
3091 signs) and @code{typewriter}
3092
3093 @item font-shape
3094   A symbol indicating the shape of the font, there are typically several
3095   font shapes available for each font family. Choices are @code{italic},
3096   @code{caps} and @code{upright} 
3097
3098 @item font-series
3099 A  symbol indicating the series of the font. There are typically several
3100 font series for each font family and shape. Choices are @code{medium}
3101 and @code{bold}. 
3102
3103 @item font-relative-size
3104   A number indicating the size relative the standard size.  For example,
3105   with 20pt staff height, relative size -1  corresponds to 16pt staff
3106   height, and relative size +1 corresponds to 23 pt staff height.
3107
3108 @item font-design-size
3109 A number indicating  the design size of the font. 
3110
3111 This is a feature of the Computer Modern Font: each point size has a
3112 slightly different design. Smaller design sizes are relatively wider,
3113 which enhances readability. Scalable type faces such TrueType and Adobe
3114 Type1 usually come as ``one design fits all sizes''.
3115
3116 @item font-name
3117   The name of the font, without the design size, e.g. @code{cmr},
3118 @code{cmti}, etc. Setting this overrides font-family, font-shape and
3119 font-series.
3120
3121 @end table
3122
3123 The font is selected by taking the first font that satisfies all
3124 qualifiers specified. You can override any of these fields through
3125 @code{\override} and @code{\revert}. The special value @code{*} matches
3126 any value for that qualifier.
3127
3128 @example
3129   \property Lyrics.LyricText \override #'font-series = #'bold
3130   \property Lyrics.LyricText \override #'font-shape = #'*
3131 @end example
3132
3133 @cindex @code{font-style}
3134
3135 There are also pre-cooked font selection qualifiers. These are selected
3136 through the grob property @code{font-style}.  For example, the style
3137 @code{finger} selects family @code{number} and relative size @code{-3}.
3138 Styles available include @code{volta}, @code{finger}, @code{tuplet},
3139 @code{timesig}, @code{mmrest}, @code{script}, @code{large}, @code{Large}
3140 and @code{dynamic}.
3141
3142 The style sheets and tables for selecting fonts are located in
3143 @file{scm/font.scm}. Refer to this file for more information.
3144
3145 @refbugs
3146
3147 Relative size is not linked to any real size.
3148
3149 There is no mechanism to select magnification of particular fonts,
3150 meaning that you don't have access to continuously scaled fonts.  You
3151 can scale the entire output, of course, see @ref{Output scaling}.
3152
3153 There is no style sheet provided for other fonts besides the @TeX{}
3154 family.
3155
3156 @cindex font selection
3157 @cindex font magnification
3158 @cindex @code{font-interface}
3159
3160
3161 @node Text markup
3162 @subsection Text markup
3163 @cindex text markup
3164 @cindex markup text
3165
3166 LilyPond has an internal mechanism to typeset texts. You can
3167 form text markup expressions by composing scheme expressions
3168 in the following way.
3169
3170 @lilypond[verbatim, singleline]
3171  \relative c' {
3172     \fatText
3173     a^#"upright"
3174     b_#'(bold "bold")
3175     c^#'(italic "italic")
3176     d_#'((bold italic) "ff")
3177     e^#'(dynamic "ff")
3178     f_#'(lines "one" (bold "two"))
3179     g^#'(music "noteheads-2" ((raise . 2.4) "flags-u3"))
3180   }
3181 @end lilypond
3182
3183 Normally, the Scheme markup text is stored in the @code{text} property
3184 of a grob.  Formally, it is defined as follows:
3185
3186 @example
3187 text: string | (head? text+)
3188 head: markup | (markup+)
3189 markup-item: property | abbrev
3190 property: (@var{key} . @var{value})
3191 abbrev: @code{columns lines roman music bold italic named super sub}
3192         @code{overstrike text finger volta timesig mmrest mark script}
3193         @code{large Large dynamic}
3194 @end example
3195
3196 The markup is broken down and converted into a list of grob properties,
3197 which are prepended to the property list.  The @var{key}-@var{value}
3198 pair is a grob property. A list of properties available is included in
3199 the generated documentation for @rint{Text_interface}.
3200
3201 The following abbreviations are currently defined:
3202 @table @code
3203 @item columns
3204  horizontal mode: set all text on one line (default)
3205 @item lines
3206  vertical mode: set every text on a new line
3207 @item roman
3208  select roman font
3209 @item music
3210  selects the Feta font (the standard font for music notation glyphs),
3211 and uses named lookup
3212
3213 @item bold
3214  select bold series
3215 @item italic
3216  select italic shape
3217 @item named
3218  lookup by character name
3219 @item text
3220  plain text lookup (by character value)
3221 @item super
3222  superscript
3223 @item sub
3224  subscript
3225 @item overstrike
3226  the next text or character overstrikes this one
3227 @item finger
3228  select fingering number fontstyle
3229 @item volta
3230  select volta number fontstyle
3231 @item timesig
3232  select time signature number fontstyle
3233 @item mmrest
3234  select multi measure rest number fontstyle
3235 @item mark
3236  select mark number fontstyle
3237 @item script
3238  select scriptsize roman fontstyle
3239 @item large
3240  select large roman fontstyle
3241 @item Large
3242  select Large roman fontstyle
3243 @item dynamic
3244  select dynamics fontstyle
3245 @end table
3246
3247
3248 @cindex metronome mark
3249
3250 One practical application of complicated markup is to fake a metronome
3251 marking:
3252
3253 @lilypond[verbatim]
3254 #(define note '(columns
3255   (music "noteheads-2" ((kern . -0.1) "flags-stem"))))
3256 #(define eight-note `(columns ,note ((kern . -0.1)
3257   (music ((raise . 3.5) "flags-u3")))))
3258 #(define dotted-eight-note
3259   `(columns ,eight-note (music "dots-dot")))
3260
3261 \score {
3262   \notes\relative c'' {
3263     a1^#`((columns (font-relative-size . -1)) ,dotted-eight-note " = 64")
3264   }
3265   \paper {
3266     linewidth = -1.
3267     \translator{
3268       \ScoreContext
3269       TextScript \override #'font-shape = #'upright
3270     }
3271   }
3272 }
3273 @end lilypond
3274
3275 @node Invisible grobs
3276 @subsection Invisible grobs
3277 @cindex invisible grobs
3278
3279 @ignore
3280
3281 ben nog steeds niet kapot van de informatiedichtheid hier.
3282
3283 --hwn
3284
3285 @end ignore
3286
3287 You can imagine a number of situations where you would want to make
3288 certain grobs not show up in the output.  There may be aesthetic
3289 reasons, to make the output resemble an (old) manuscript as close as
3290 possible, or to make lessons or exercises for students.
3291
3292 Grobs can be made invisible in a number of ways:
3293
3294 Here's an example with blanked-out notes and stems:
3295 @lilypond[singleline,verbatim]
3296 blanknotes = {
3297   \property Voice.NoteHead \override
3298     #'transparent = ##t
3299   \property Voice.Stem \override
3300     #'transparent = ##t }
3301   
3302 unblanknotes = {
3303   \property Voice.NoteHead \revert #'transparent
3304   \property Voice.Stem \revert #'transparent }
3305
3306 \score {
3307   \notes\relative c'' {
3308     \time 6/4
3309     a b c b \blanknotes c \unblanknotes d
3310   }
3311 }
3312 @end lilypond
3313 This method makes the grobs invisible but they still take the normal space. 
3314 To remove all traces of the grob, you can redefine the function
3315 typesetting them:
3316 @lilypond[verbatim]
3317 \score {
3318   \notes\relative c'' {
3319     \key c \minor
3320     \time 6/4
3321     as bes c bes c d \break
3322     \property Staff.KeySignature \override #'molecule-callback = #'()
3323     as bes c bes c d 
3324   }
3325   \paper{linewidth=5.0\cm indent=0}
3326 }
3327 @end lilypond
3328
3329 A very rigorous way of removing grobs from the whole score is to remove
3330 the engraver that creates them. For example,
3331
3332 @lilypond[singleline,verbatim]
3333 \score {\notes { c'4 d'8 e'8 g2 }
3334   \paper { \translator {
3335      \VoiceContext
3336      \remove Stem_engraver
3337   } }
3338 }
3339 @end lilypond
3340
3341 @node Dirty tricks
3342 @subsection Dirty tricks
3343 @cindex embedded tex
3344
3345 It is possible to use @TeX{} commands in the strings, but this should be
3346 avoided because it makes it impossible for LilyPond to compute the
3347 exact length of the string, which may lead to collisions.  Also, @TeX{}
3348 commands won't work with direct PostScript output (see @ref{PostScript
3349 output}).
3350
3351 @lilypond[fragment,relative,verbatim]
3352   a'^"3 $\\times$ \\`a deux"
3353 @end lilypond
3354
3355 You can also use raw PostScript commands embedded in text scripts.  This
3356 offers ultimate flexibility, but requires you to learn PostScript.
3357 Currently, embedded PostScript will @strong{not} work with direct
3358 PostScript output.  Note that all dimensions that you use are in staff
3359 space.
3360
3361 @lilypond[verbatim]
3362 \score {
3363   \notes \relative c'' {
3364     a-#"\\embeddedps{3 4 moveto 5 3 rlineto stroke}"
3365     -#"\\embeddedps{ [ 0 1 ] 0 setdash 3 5 moveto 5 -3 rlineto stroke}"
3366     b-#"\\embeddedps{3 4 moveto 0 0 1 2 8 4 20 3.5 rcurveto stroke}"
3367     s2
3368     a'1
3369   }
3370   \paper { linewidth = 70*\staffspace }
3371 }
3372 @end lilypond
3373
3374
3375 @c . {Page layout}
3376 @node Page layout
3377 @section Page layout
3378 @cindex Page layout
3379
3380 The page layout is the combined product of LilyPond formatting notation,
3381 and (La)@TeX{} putting the notation on a page, including page breaks.
3382 The part of LilyPond is documented here.
3383
3384 @menu
3385 * Paper block::                 
3386 * Paper variables::             
3387 * Font Size::                   
3388 * Paper size::                  
3389 * Line break::                  
3390 * Page break::                  
3391 * Output scaling::              
3392 @end menu
3393
3394 @c .  {Paper block}
3395 @node Paper block
3396 @subsection Paper block
3397 @cindex Paper block
3398
3399 The most important output definition is the @code{\paper} block, for
3400 music notation.  The syntax is
3401
3402 @example
3403   @code{\paper @{} [@var{paperidentifier}] @var{items} @code{@}}
3404 @end example
3405
3406 where each of the items is one of
3407
3408 @itemize @bullet
3409   @item  An assignment.
3410
3411   @item  A context definition.  See @ref{Interpretation context} for
3412        more information on context definitions.
3413
3414   @item  \stylesheet  declaration.  Its syntax is
3415        @example
3416                 \stylesheet @var{alist}
3417        @end example
3418
3419         See @file{scm/font.scm} for details of @var{alist}.
3420   @item an @code{\elementdescriptions} declaration.
3421         @example
3422                 \elementdescriptions @var{alist}
3423         @end example
3424         See @file{scm/grob-description.scm} for details of
3425 @var{alist}. This command is not user-serviceable.
3426
3427 @end itemize
3428
3429 @c .  {Paper variables}
3430 @node Paper variables
3431 @subsection Paper variables 
3432 @cindex Paper variables
3433
3434 The paper block has some variables you may want to use or change:
3435
3436 @table @code
3437 @cindex @code{indent}
3438   @item @code{indent}  
3439     The indentation of the first line of music.
3440 @cindex @code{staffspace}
3441
3442   @item @code{staffspace}
3443     The distance between two staff lines, calculated from the center
3444     of the lines.
3445
3446 @cindex @code{linewidth}
3447   @item @code{linewidth}  
3448     Sets the width of the lines.
3449
3450 If set to a negative value, a single unjustified line is produced.
3451 @c rename to singleLinePaper ?
3452 The shorthand @code{\singleLine} defines a default paper block that
3453 produces a single line.
3454
3455 @cindex @code{textheight}
3456
3457   @item @code{textheight}  
3458     Sets the total height of the music on each page. Only used by
3459 @code{ly2dvi}.
3460
3461 @cindex @code{interscoreline}
3462
3463   @item @code{interscoreline}  
3464     Sets the spacing between systems. The default is 16pt.
3465     
3466 @cindex @code{interscorelinefill}
3467
3468   @item @code{interscorelinefill}  
3469     If set to a positive number, the distance between the score 
3470     lines will stretch in order to fill the full page. In that
3471     case @code{interscoreline} specifies the minimum spacing.
3472
3473         Not set by default.
3474
3475
3476 @cindex @code{stafflinethickness}
3477
3478   @item @code{stafflinethickness}  
3479     Determines the thickness of staff lines, and also acts as a scaling
3480     parameter for other line thicknesses.
3481 @end table
3482
3483 You may enter these dimension using units (@code{cm}, @code{in},
3484 @code{mm}, @code{pt}), or relative to another dimension
3485 @example
3486         linewidth = 20.0 * \staffspace
3487         indent  = 0.5 \cm
3488 @end example
3489
3490
3491 @c .  {Font size}
3492 @node Font Size
3493 @subsection Font size
3494 @cindex font size
3495
3496 The Feta font provides musical symbols at six different sizes.  These
3497 fonts are 11 point, 13 point, 16 point, 20 point,
3498 23 point, and 26 point.  The point size of a font is the
3499 height of the five lines in a staff when displayed in the font.
3500
3501 Definitions for these sizes are the files @file{paperSZ.ly}, where
3502 @code{SZ} is one of 11, 13, 16, 20, 23 and 26.  If you include any of
3503 these files, the identifiers @code{paperEleven}, @code{paperThirteen},
3504 @code{paperSixteen}, @code{paperTwenty}, @code{paperTwentythree}, and
3505 @code{paperTwentysix} are defined respectively.  The default
3506 @code{\paper} block is also set.
3507
3508 The font definitions are generated using a Scheme function. For more
3509 details, see the file @file{scm/font.scm}.
3510
3511
3512
3513 @c .  {Paper size}
3514 @node Paper size
3515 @subsection Paper size
3516 @cindex Paper size
3517
3518 @cindex paper size
3519 @cindex page size
3520 @cindex @code{papersize}
3521
3522 To change the paper size, you must first set the
3523 @code{papersize} variable at top level.  Set it to
3524 the strings @code{a4}, @code{letter}, or @code{legal}.  After this
3525 specification, you must set the font as described above.  If you want
3526 the default font, then use the 20 point font.
3527
3528 @example
3529         papersize = "a4"
3530         \include "paper16.ly"
3531 @end example
3532
3533 The file @code{paper16.ly}  will now include a file named @file{a4.ly}, which
3534 will set the paper variables @code{hsize} and @code{vsize} (used by
3535 @code{ly2dvi})
3536
3537 @c .  {Line break}
3538 @node Line break
3539 @subsection Line break
3540
3541 @cindex line breaks
3542 @cindex breaking lines
3543
3544 Line breaks are normally computed automatically. They are chosen such
3545 that the resulting spacing has low variation, and looks neither cramped
3546 nor loose.
3547
3548 Occasionally you might want to override the automatic breaks; you can do
3549 this by specifying @code{\break}. This will force a line break at this
3550 point. Do remember that line breaks can only occur at places where there
3551 are bar lines.  If you want to have a line break where there is no
3552 bar line, you can force an invisible bar line by entering @code{\bar
3553 ""}. Similarly, @code{\noBreak} forbids a line break at a certain point.
3554
3555 @cindex @code{\penalty}
3556
3557 The @code{\break} and @code{\noBreak} commands are defined in terms of
3558 the penalty command:
3559 @example
3560   \penalty @var{int} 
3561 @end example
3562
3563 This encourages or discourages LilyPond to make a line break at this
3564 point.
3565
3566 @refbugs
3567
3568 The scaling of the @code{\penalty} argument is not well-defined.  The
3569 command is rather kludgey, and slated for rewriting.
3570
3571 @c .  {Page break}
3572 @node Page break
3573 @subsection Page break
3574
3575 @cindex page breaks
3576 @cindex breaking pages
3577
3578 Page breaks are normally computed by @TeX{}, so they are not under
3579 direct control of LilyPond.  However, you can insert a commands into the
3580 @file{.tex} output to instruct @TeX{} where to break pages, by inserting
3581 the command @code{\newpage}
3582 @cindex @code{\newpage}
3583
3584 @example
3585   \newpage
3586 @end example
3587
3588 @c why do so difficult?
3589 @c maybe should explain contents of between-system.ly,
3590 @c but not now, we're talking about page breaks here.
3591 @c For more
3592 @c details, see the example file @file{input/test/between-systems.ly}
3593
3594
3595 @c .  {Output scaling}
3596 @node Output scaling
3597 @subsection Output scaling
3598
3599 [TODO]
3600
3601 @example
3602 dvips ...
3603 @end example
3604
3605 @example
3606 pstops ...
3607 @end example
3608
3609
3610 @refbugs
3611
3612 There is no mechanism to select magnification of particular fonts,
3613 meaning that you don't have access to continuously scaled fonts.
3614
3615
3616
3617 @c . {Output formats}
3618 @node Output formats
3619 @section Output formats
3620
3621 LilyPond can output processed music in different output formats.  
3622
3623 @menu
3624 * TeX output::                  
3625 * PostScript output::           
3626 * Scheme output::               
3627 * ASCIIScript output::          
3628 @end menu
3629
3630 @node TeX output
3631 @subsection TeX output
3632 @cindex TeX output
3633
3634 LilyPond will use @TeX{} by default.  Even if you want to produce
3635 PostScript output for viewing or printing, you should normally have
3636 LilyPond produce @TeX{} first.  The .tex output must be processed by
3637 @TeX{} (@strong{not} La@TeX{}) to generate a .dvi.  Then, @file{Dvips}
3638 is used to generate PostScript.  Alternatively, @file{ly2dvi} can be
3639 used to generate the .dvi for you.
3640
3641 @refbugs
3642
3643 Titling is not generated unless you use @file{ly2dvi}. 
3644
3645
3646 @node PostScript output
3647 @subsection PostScript output
3648 @cindex PostScript output
3649 @cindex direct PostScript output
3650
3651 LilyPond can produce PostScript directly, without going through @TeX{}.
3652 Currently, this is mainly useful if you cannot use TeX, because direct
3653 PostScript output has some problems; see Bugs below.
3654
3655 @example
3656 $ lilypond -fps foo.ly
3657 GNU LilyPond 1.3.144
3658 Now processing: `foo.ly'
3659 Parsing...
3660 Interpreting music...[3]
3661 Preprocessing elements... 
3662 Calculating column positions... 
3663 paper output to foo.ps...
3664
3665 $ cat /usr/share/lilypond/pfa/feta20.pfa foo.ps | lpr
3666 @end example
3667
3668
3669 @refbugs
3670
3671 Text font selection is broken.
3672
3673 The .ps file does not contain the .pfa font files.  To print a .ps
3674 created through direct postscript output, you should prepend the
3675 necessary .pfa files to LilyPond's .ps output, or upload them to the
3676 printer before printing.
3677
3678 The line height calculation is broken, you must set @var{lineheight} in
3679 the paperblock if you have more than one staff in your score, e.g.
3680
3681 @example
3682   ...
3683   \paper @{
3684     % Set line height to 40 staff spaces
3685     lineheight = 40    
3686   @}
3687 @end example
3688
3689 @node Scheme output
3690 @subsection Scheme output
3691 @cindex Scheme output
3692
3693 In the typesetting stage, LilyPond builds a page description, which is
3694 then written to disk in postscript, @TeX{} or ASCII art. Before it is
3695 written, the page description is represented as Scheme expressions.  You
3696 can also dump these  Scheme expressions to a file, which may be
3697 convenient for debugging output routines.  This is done with the Scheme
3698 output format
3699
3700 @example
3701 $ lilypond -fscm foo.ly
3702 GNU LilyPond 1.3.144
3703 Now processing: `foo.ly'
3704 Parsing...
3705 Interpreting music...[3]
3706 Preprocessing elements... 
3707 Calculating column positions... 
3708 paper output to foo.scm...
3709
3710 $ head -4 foo.scm 
3711 ;;; Usage: guile -s x.scm > x.tex
3712  (primitive-load-path 'standalone.scm)
3713 ; (scm-tex-output)
3714  (scm-ps-output)
3715
3716 $ guile -s foo.scm > foo.tex
3717 @end example
3718
3719
3720 @node ASCIIScript output
3721 @subsection ASCIIScript output
3722 @cindex ASCIIScript output
3723 @cindex ascii script
3724 @cindex ascii art
3725
3726 LilyPond can output ASCII Art.  This is a two step process, LilyPond
3727 produces an ASCII description file, dubbed ASCIIScript (extension
3728 @file{.as}).  ASCIIScript has a small and simple command set that
3729 includes font selection, character and string printing and line drawing
3730 commands.  The program @file{as2text} is used to translate an .as file
3731 to text.
3732
3733 To produce ASCII Art, you must include an ASCII Art paper definition
3734 file in your .ly, one of:
3735 @example
3736 \include "paper-as5.ly"
3737 \include "paper-as9.ly"
3738 @end example
3739
3740 Here's an example use for ASCII Art output (the example file
3741 @file{as-email.ly} is included in the LilyPond distribution), the staff
3742 symbol has been made invisible:
3743
3744 @example
3745 $ lilypond -fas as-email.ly
3746 GNU LilyPond 1.3.144
3747 Now processing: `as-email.ly'
3748 Parsing...
3749 Interpreting music...[3]
3750 Preprocessing elements... 
3751 Calculating column positions... [2]
3752 paper output to as-email.as...
3753
3754 $ as2text as-email.as 2>/dev/null
3755           |\
3756           |/     |##|##|      |  |  |  |  |
3757          /|      |  |  | |    |\ |\ |\ |\ |\ |
3758         / |_  3  |  |  | | 5  | )| )| )| )| )|
3759        | /| \ 8 *  *  *  | 8 *  *  *  *  *   |
3760         \_|_/            |                   |
3761         *_|
3762
3763                                                lily
3764 @end example
3765
3766
3767 @refbugs
3768
3769 The ASCII Art fonts are far from complete and not very well designed.
3770 It's easy to change the glyphs, though; if you think you can do better,
3771 have a look at @file{mf/*.af}.
3772
3773 Lots of resizable symbols such as slurs, ties and tuplets are missing.
3774
3775 The poor looks of most ASCII Art output and its limited general
3776 usefulness gives ASCII Art output a low priority; it may be
3777 dropped in future versions.
3778
3779 @c . {Sound}
3780 @node Sound
3781 @section Sound
3782 @cindex Sound
3783
3784 LilyPond can produce MIDI output.  The performance lacks lots of
3785 interesting effects, such as swing, articulation, slurring, etc., but it
3786 is good enough for proof-hearing the music you have entered.  Ties,
3787 dynamics and tempo changes are interpreted.
3788
3789 Dynamic marks, crescendi and decrescendi translate into MIDI volume
3790 levels.  Dynamic marks translate to a fixed fraction of the available
3791 MIDI volume range, crescendi and decrescendi make the the volume vary
3792 linearly between their two extremities.  The fractions be adjusted by
3793 overriding the @code{absolute-volume-alist} defined in
3794 @file{scm/midi.scm}.
3795
3796 For each type of musical instrument (that MIDI supports), a volume range
3797 can be defined.  This gives you basic equalizer control, which can
3798 enhance the quality of the MIDI output remarkably.  You can add
3799 instruments and ranges or change the default settings by overriding the
3800 @code{instrument-equalizer-alist} defined in @file{scm/midi.scm}.
3801
3802 Both loudness controls are combined to produce the final  MIDI volume. 
3803
3804
3805 @refbugs
3806
3807 It is currently not possible to use the percussion channel (generally
3808 channel 10 of a MIDI file).
3809
3810 @menu
3811 * MIDI block::                  
3812 * MIDI instrument names::       
3813 @end menu
3814
3815 @c .  {MIDI block}
3816 @node MIDI block
3817 @subsection MIDI block
3818 @cindex MIDI block
3819
3820
3821 The MIDI block is analogous to the paper block, but it is somewhat
3822 simpler.  The @code{\midi} block can contain:
3823 @cindex MIDI block
3824
3825 @itemize @bullet
3826   @item  a @code{\tempo} definition
3827   @item  context definitions
3828 @end itemize
3829
3830 Assignments in the @code{\midi} block are not allowed.
3831
3832
3833
3834 @cindex context definition
3835
3836 Context definitions follow precisely the same syntax as within the
3837 \paper block.  Translation modules for sound are called performers.
3838 The contexts for MIDI output are defined in @file{ly/performer.ly}.
3839
3840
3841 @node MIDI instrument names
3842 @subsection MIDI instrument names
3843
3844 @cindex instrument names
3845 @cindex @code{Staff.midiInstrument}
3846 @cindex @code{Staff.instrument}
3847
3848 The MIDI instrument name is set by the @code{Staff.midiInstrument}
3849 property or, if that property is not set, the @code{Staff.instrument}
3850 property.  The instrument name should be chosen from the list in
3851 @ref{MIDI instruments}.
3852
3853 @refbugs
3854
3855 If the selected string does not exactly match, then LilyPond uses the
3856 default (Grand Piano). It is not possible to select an instrument by
3857 number.
3858
3859
3860
3861
3862
3863
3864
3865
3866 @c FIXME: Note entry vs Music entry at top level menu is confusing.
3867 @c . {Music entry}
3868 @node Music entry
3869 @section Music entry
3870 @cindex Music entry
3871 @menu
3872 * Relative::                    
3873 * Bar check::                   
3874 * Point and click::             
3875 @end menu
3876
3877 When entering music with LilyPond, it is easy to introduce errors. This
3878 section deals with tricks and features that help you enter music, and
3879 find and correct mistakes.
3880
3881 @c .  {Relative}
3882 @node Relative
3883 @subsection Relative
3884 @cindex Relative
3885 @cindex relative octave specification
3886
3887 Octaves are specified by adding @code{'} and @code{,} to pitch names.
3888 When you copy existing music, it is easy to accidentally put a pitch in
3889 the wrong octave and hard to find such an error.  To prevent these
3890 errors, LilyPond features octave entry.
3891
3892 @cindex @code{\relative}
3893 @example
3894   \relative @var{startpitch} @var{musicexpr}
3895 @end example
3896
3897 The octave of notes that appear in @var{musicexpr} are calculated as
3898 follows: If no octave changing marks are used, the basic interval
3899 between this and the last note is always taken to be a fourth or less
3900 (This distance is determined without regarding alterations; a
3901 @code{fisis} following a @code{ceses} will be put above the
3902 @code{ceses})
3903
3904 The octave changing marks @code{'} and @code{,} can be added to raise or
3905 lower the pitch by an extra octave.  Upon entering relative mode, an
3906 absolute starting pitch must be specified that will act as the
3907 predecessor of the first note of @var{musicexpr}.
3908
3909 Entering music that changes octave frequently  is easy in relative mode.
3910 @lilypond[fragment,singleline,verbatim,center]
3911   \relative c'' {
3912     b c d c b c bes a 
3913   }
3914 @end lilypond
3915
3916 And octave changing marks are used for intervals greater than a fourth.
3917 @lilypond[fragment,verbatim,center]
3918   \relative c'' {
3919     c g c f, c' a, e'' }
3920 @end lilypond
3921
3922 If the preceding item is a chord, the first note of the chord is used
3923 to determine the first note of the next chord. However, other notes
3924 within the second chord are determined by looking at the immediately
3925 preceding note.
3926
3927 @lilypond[fragment,verbatim,center]
3928   \relative c' {
3929     c <c e g> 
3930     <c' e g>
3931     <c, e' g>
3932   }
3933 @end lilypond 
3934 @cindex @code{\notes}
3935
3936 The pitch after the @code{\relative} contains a note name.  To parse
3937 the pitch as a note name, you have to be in note mode, so there must
3938 be a surrounding @code{\notes} keyword (which is not
3939 shown here).
3940
3941 The relative conversion will not affect @code{\transpose},
3942 @code{\chords} or @code{\relative} sections in its argument.  If you
3943 want to use relative within transposed music, you must place an
3944 additional @code{\relative} inside the @code{\transpose}.
3945
3946
3947 @c .  {Bar check}
3948 @node Bar check
3949 @subsection Bar check
3950 @cindex Bar check
3951
3952 @cindex bar check
3953 @cindex @code{barCheckNoSynchronize}
3954 @cindex @code{|}
3955
3956
3957 Whenever a bar check is encountered during interpretation, a warning
3958 message is issued if it doesn't fall at a measure boundary.  This can
3959 help you find errors in the input.  Depending on the value of
3960 @code{barCheckNoSynchronize}, the beginning of the measure will be
3961 relocated, so this can also be used to shorten measures.
3962
3963 A bar check is entered using the bar symbol, @code{|}:
3964 @example
3965   \time 3/4 c2 e4 | g2.
3966 @end example
3967
3968 @c .  {Point and click}
3969 @node Point and click
3970 @subsection Point and click
3971
3972 Point and click lets you find notes in the input by clicking on them in
3973 the Xdvi window. This makes it very easy to find input that causes some
3974 error in the sheet music.
3975
3976 To use it, you need the following software
3977
3978 @unnumberedsubsec Installation
3979
3980 @itemize @bullet
3981 @item 
3982 @uref{ftp://ftp.math.berkeley.edu/pub/Software/TeX/xdvi.tar.gz,plain
3983 Xdvi} version 22.36 or newer.
3984
3985   Note that most @TeX{} distributions ship with xdvik, which is a
3986   different and less well maintained program. To find out which xdvi you
3987   are running, try @code{xdvi --version} or @code{xdvi.bin --version}.
3988 @item emacs
3989 @end itemize
3990
3991 Xdvi must be configured to find the TeX fonts and music
3992 fonts. Refer to the Xdvi documentation for more information.
3993
3994
3995 @unnumberedsubsec Using it
3996
3997 Add one of these lines to the top of your .ly file. The first one is for
3998 line location only. The second one is more convenient, but requires
3999 patching @code{emacsclient} and @code{server.el}.
4000
4001 @example
4002 #(set! point-and-click line-location)
4003 @end example
4004
4005 In the emacs startup file (usually @file{~/.emacs}), add the following
4006 @example
4007 (server-start)
4008 @end example
4009
4010 Make sure that  the environment  variable @code{XEDITOR} is set
4011 to
4012 @example
4013 emacsclient --no-wait +%l %f
4014 @end example
4015 The second one, that also specifies the column, only works if you have
4016 patched your emacsclient and server, and have compiled your @code{.ly}
4017 file using the @code{line-column-location} setting.
4018
4019 When viewing, control-mousebutton 1 will take you to the originating
4020 spot in the @file{.ly} file. Control-mousebutton 2 will show all
4021 clickable boxes.
4022
4023
4024 @unnumberedsubsec Column location
4025
4026 If you want emacs to jump to the exact spot (and not just the line) on a
4027 click, you must enable column positioning. To do so, you need to patch
4028 emacsclient. Apply @file{emacsclient.patch} (included with the source
4029 package) to @file{emacsclient.c} and @file{server.el} from the emacs
4030 source code. Recompile and stick the recompiled emacsclient into a bin
4031 directory, and put @file{server.el} into a elisp directory
4032 (e.g. @file{~/usr/share/emacs/}). Add the following to your @file{.emacs}
4033 init file, before invoking server-start.
4034
4035 @example
4036  (setq load-path (cons "~/usr/share/emacs" load-path))
4037 @end example
4038
4039 Set @code{XEDITOR} to @code{emacsclient --no-wait +%l:%c %f}
4040
4041 At the top of the @code{ly} file, replace the @code{set!} line with the
4042 following line
4043 @example
4044 #(set! point-and-click line-column-location)
4045 @end example
4046
4047 One final hint: if you correct large files with point-and-click, then
4048 start correcting at the end of the file. When you start at the top, and
4049 insert one line, all subsequent locations will be off by a line.
4050
4051
4052 @refbugs
4053
4054 When you convert the @TeX{} file to PostScript using @code{dvips}, it
4055 will complain about not finding @code{src:X:Y} files. Those complaints
4056 are harmless, and can be ignored.
4057
4058 @node Skipping corrected music
4059 @section Skipping corrected music
4060
4061 The property @code{Score.skipTypesetting} can be used to switch on and
4062 off typesetting completely during the interpretation phase. When
4063 typesetting is switched off, the music is processed much more quickly.
4064 You can use this to skip over the parts of a score that you have already
4065 checked for errors. 
4066
4067 @lilypond[fragment,singleline,verbatim]
4068 \relative c'' { c8 d
4069 \property Score.skipTypesetting = ##t
4070   e f g a g c, f e d
4071 \property Score.skipTypesetting = ##f
4072 c d b bes a g c2 } 
4073 @end lilypond
4074
4075
4076 @node Interpretation context
4077 @section Interpretation context
4078
4079 @menu
4080 * Creating contexts::           
4081 * Default contexts::            
4082 * Context properties::          
4083 * Engravers and performers::    
4084 * Changing context definitions::  
4085 * Defining new contexts::       
4086 @end menu
4087
4088
4089 Interpretation contexts are objects that only exist during a run of
4090 LilyPond.  During the interpretation phase of LilyPond (when it prints
4091 "interpreting music"), the music expression in a @code{\score} block is
4092 interpreted in time order. This is the same order that humans hear and
4093 play the music.
4094
4095 During this interpretation, the interpretation context holds the
4096 state for the current point within the music. It contains information
4097 like
4098
4099 @itemize @bullet
4100   @item What notes are playing at this point?
4101   @item What symbols will be printed at this point?
4102   @item What is the current key signature, time signature, point within
4103        the measure, etc.?
4104 @end itemize
4105
4106 Contexts are grouped hierarchically: A @internalsref{Voice} context is
4107 contained in a @internalsref{Staff} context (because a staff can contain
4108 multiple voices at any point), a @internalsref{Staff} context is contained in
4109 @internalsref{Score}, @internalsref{StaffGroup}, or @internalsref{ChoirStaff} context.
4110
4111 Contexts associated with sheet music output are called @emph{notation
4112 contexts}, those for sound output are called @emph{performance
4113 contexts}. The default definitions of the standard notation and
4114 performance contexts can be found in @file{ly/engraver.ly} and
4115 @file{ly/performer.ly}, respectively.
4116
4117
4118 @node Creating contexts
4119 @subsection Creating contexts
4120
4121 @cindex @code{\context}
4122 @cindex context selection
4123
4124 Contexts for a music expression can be selected manually, using the
4125 following music expression.
4126
4127 @example
4128   \context @var{contexttype} [= @var{contextname}] @var{musicexpr}
4129 @end example
4130
4131 This instructs lilypond to interpret @var{musicexpr} within the context
4132  of type @var{contexttype} and with name @var{contextname}.  If this
4133 context does not exist, it will be created.  
4134
4135 @lilypond[verbatim,singleline]
4136 \score {
4137   \notes \relative c'' {
4138     c4 <d4 \context Staff = "another" e4> f
4139   }
4140 }
4141
4142 @end lilypond
4143
4144 In this example, the @code{c} and @code{d} are printed on the
4145 default staff.  For the @code{e}, a context Staff called
4146 @code{another} is specified; since that does not exist, a new
4147 context is created.  Within @code{another}, a (default) Voice context
4148 is created for the @code{e4}.  When all music referring to a
4149 context is finished, the context is ended as well.  So after the
4150 third quarter, @code{another} is removed.
4151
4152
4153
4154 @node Default contexts
4155 @subsection Default contexts
4156
4157 Most music expressions don't need an explicit @code{\context}
4158 declaration: they inherit the 
4159 notation context from their parent. Each note is a music expression, and
4160 as you can see in the following example, only the sequential music
4161 enclosing the three notes has an explicit context. 
4162
4163 @lilypond[verbatim,singleline]
4164 \score { \notes \context Voice = goUp { c'4 d' e' } } 
4165 @end lilypond
4166
4167 There are some quirks that you must keep in mind when dealing with
4168 defaults:
4169
4170 First, every top level music is interpreted by the Score context, in other
4171 words, you may think of @code{\score} working like
4172 @example
4173         \score @{
4174                 \context Score @var{music}
4175         @}
4176 @end example
4177
4178 Second, contexts are created automatically to be able to interpret the
4179 music expressions. Consider the following example.
4180
4181 @lilypond[verbatim, singleline]
4182 \score { \context Score \notes { c'4 (  d' )e' } }
4183 @end lilypond
4184
4185 The sequential music is interpreted by the Score context initially
4186 (notice that the @code{\context} specification is redundant), but when a
4187 note is encountered, contexts are setup to accept that note. In this
4188 case, a Thread, Voice and Staff are created. The rest of the sequential
4189 music is also interpreted with the same Thread, Voice and Staff context,
4190 putting the notes on the same staff, in the same voice.
4191
4192 This is a convenient mechanism, but do not expect opening chords to work
4193 without @code{\context}. For every note, a separate staff is
4194 instantiated.
4195
4196 @cindex explicit context
4197 @cindex starting with chords
4198 @cindex chords, starting with
4199
4200 @lilypond[verbatim, singleline]
4201 \score { \notes <c'4 es'> } 
4202 @end lilypond
4203
4204 Of course, if the chord is preceded by a normal note in sequential
4205 music, the chord will be interpreted by the Thread of the preceding
4206 note:
4207 @lilypond[verbatim,singleline]
4208 \score { \notes { c'4 <c'4 es'> }  }
4209 @end lilypond
4210
4211
4212
4213 @node Context properties
4214 @subsection Context properties
4215
4216 Notation contexts have properties. These properties are from
4217 the @file{.ly} file using the following  expression:
4218 @cindex @code{\property}
4219 @example
4220   \property @var{contextname}.@var{propname} =  @var{value}
4221 @end example
4222
4223 Sets the @var{propname} property of the context @var{contextname} to the
4224 specified Scheme expression @var{value}.  All @var{propname} and
4225 @var{contextname} are strings, which are typically unquoted.
4226
4227 Properties that are set in one context are inherited by all of the
4228 contained contexts.  This means that a property valid for the
4229 @internalsref{Voice} context can be set in the @internalsref{Score} context (for
4230 example) and thus take effect in all @internalsref{Voice} contexts.
4231
4232 Properties can be unset using the following expression:
4233 @example
4234   \property @var{contextname}.@var{propname} \unset
4235 @end example
4236
4237 @cindex properties, unsetting
4238 @cindex @code{\unset} 
4239
4240 This removes the definition of @var{propname} in @var{contextname}. If
4241 @var{propname} was not defined in @var{contextname} (but was inherited
4242 from a higher context), then this has no effect.
4243
4244
4245 @refbugs
4246
4247 The syntax of @code{\unset} is asymmetric: @code{\property \unset} is not
4248 the inverse of @code{\property \set}.
4249
4250 @node Engravers and performers
4251 @subsection Engravers and performers
4252
4253 [TODO]
4254
4255 Basic building blocks of translation are called engravers; they are
4256 special C++ classes.
4257
4258
4259
4260 @c .  {Context definitions}
4261 @node Changing context definitions
4262 @subsection Changing context definitions
4263
4264 @cindex context definition
4265 @cindex translator definition
4266
4267 The most common way to define a context is by extending an existing
4268 context.  You can change an existing context from the paper block, by
4269 first initializing a translator with an existing context identifier:
4270 @example
4271 \paper @{
4272   \translator @{
4273     @var{context-identifier}
4274   @} @}
4275 @end example
4276 Then you can add and remove engravers using the following syntax:
4277 @example
4278  \remove @var{engravername}
4279  \consists @var{engravername}
4280 @end example
4281
4282
4283 Here @var{engravername} is a string, the name of an engraver in the
4284 system.
4285
4286
4287 @lilypond[verbatim,singleline]
4288 \score {  \notes {
4289         c'4 c'4 }
4290   \paper {
4291     \translator  { \StaffContext
4292         \remove Clef_engraver
4293        } } }
4294 @end lilypond
4295
4296 @cindex engraver
4297
4298 You can also set properties in a translator definition. The syntax is as
4299 follows:
4300 @example
4301  @var{propname} = @var{value}
4302  @var{propname} \set  @var{grob-propname} = @var{pvalue}
4303  @var{propname} \override @var{grob-propname} =  @var{pvalue}
4304  @var{propname} \revert @var{grob-propname} 
4305 @end example
4306 @var{propname} is a string, @var{grob-propname} a symbol, @var{value}
4307 and @code{pvalue} are Scheme expressions. These type of property
4308 assignments happen before interpretation starts, so a @code{\property}
4309 command will override any predefined settings.
4310
4311
4312  To simplify editing translators, all standard contexts have standard
4313 identifiers called @var{name}@code{Context}, e.g. @code{StaffContext},
4314 @code{VoiceContext}, see @file{ly/engraver.ly}.
4315
4316 @node Defining new contexts
4317 @subsection Defining new contexts
4318
4319 If you want to build a context from scratch, you must also supply the
4320 following extra information:
4321 @itemize @bullet
4322   @item  A name, specified by @code{\name @var{contextname}}.
4323
4324   @item A cooperation module. This is specified by   @code{\type
4325 @var{typename}}.
4326 @end itemize
4327
4328 This is an example:
4329 @example
4330 \translator @code{
4331   \type "Engraver_group_engraver"
4332   \name "SimpleStaff"
4333   \alias "Staff"
4334   \consists "Staff_symbol_engraver"
4335   \consists "Note_head_engraver"
4336   \consistsend "Axis_group_engraver"
4337 }@
4338 @end example
4339
4340 The argument of @code{\type} is the name for a special engraver that
4341 handles cooperation between simple engravers such as
4342 @code{Note_head_engraver} and @code{Staff_symbol_engraver}. Alternatives
4343 for this engraver are the following:
4344 @table @code
4345 @cindex @code{Engraver_group_engraver}
4346   @item @code{Engraver_group_engraver}  
4347     The standard cooperation engraver.
4348
4349 @cindex @code{Score_engraver}
4350
4351   @item @code{Score_engraver}  
4352     This is cooperation module that should be in the top level context,
4353 and only the top level context.
4354
4355 @cindex @code{Grace_engraver_group}
4356
4357   @item @code{Grace_engraver_group}  
4358     This is a special cooperation module (resembling
4359     @code{Score_engraver}) that is used to create an embedded
4360     `miniscore'.
4361 @end table 
4362
4363 Other modifiers   are
4364
4365 @itemize @bullet
4366   @item @code{\alias} @var{alternate-name}
4367     This specifies a different name. In the above example,
4368 @code{\property Staff.X = Y} will also work on @code{SimpleStaff}s
4369
4370   @item  @code{\consistsend} @var{engravername} 
4371     Analogous to @code{\consists}, but makes sure that
4372     @var{engravername} is always added to the end of the list of
4373     engravers.
4374
4375     Some engraver types need to be at the end of the list; this
4376     insures they stay there even if a user adds or removes engravers.
4377 End-users generally don't need this command.
4378     
4379   @item  @code{\accepts} @var{contextname}
4380     Add @var{contextname} to the list of contexts this context can
4381     contain in the context hierarchy. The first listed context is the
4382     context to create by default.
4383
4384   @item @code{\denies}. The opposite of @code{\accepts}. Added for
4385 completeness, but is never used in practice.
4386  
4387   
4388   @item  @code{\name} @var{contextname} 
4389     This sets the type name of the context, e.g. @internalsref{Staff},
4390     @internalsref{Voice}.  If the name is not specified, the translator won't do
4391     anything. 
4392 @end itemize
4393
4394 In the @code{\paper} block, it is also possible to define translator
4395 identifiers.  Like other block identifiers, the identifier can only
4396 be used as the very first item of a translator.  In order to define
4397 such an identifier outside of @code{\score}, you must do
4398
4399 @quotation
4400 @example 
4401 \paper @{
4402   foo = \translator @{ @dots{} @}
4403 @}
4404 \score @{
4405   \notes @{
4406     @dots{}
4407   @}
4408   \paper @{
4409     \translator @{ \foo @dots{} @}
4410   @}
4411 @} 
4412 @end example 
4413
4414 @end quotation
4415
4416
4417 @cindex paper types, engravers, and pre-defined translators
4418
4419       
4420
4421
4422
4423
4424 @c . {Syntactic details}
4425 @node Syntactic details
4426 @section Syntactic details
4427 @cindex Syntactic details
4428
4429 This section describes details that were too boring to be put elsewhere.
4430
4431 @menu
4432 * Top level::                   
4433 * Identifiers::                 
4434 * Music expressions::           
4435 * Manipulating music expressions::  
4436 * Assignments::                 
4437 * Lexical modes::               
4438 * Ambiguities::                 
4439 @end menu
4440
4441 @c .  {Top level}
4442 @node Top level
4443 @subsection Top level
4444 @cindex Top level
4445
4446 This section describes what you may enter at top level.
4447
4448
4449 @c .   {Score}
4450 @subsubsection Score
4451 @cindex Score
4452
4453 @cindex score definition
4454
4455 The output is generated combining a music expression with an output
4456 definition.  A score block has the following syntax:
4457
4458 @example
4459   \score @{ @var{musicexpr} @var{outputdefs} @}
4460 @end example
4461
4462 @var{outputdefs} are zero or more output definitions.  If none is
4463 supplied, the default @code{\paper} block will be added.
4464
4465
4466
4467 @c .   {Default output}
4468 @subsubsection Default output
4469
4470 Default values for the @code{\paper} and @code{\midi} block are set by
4471 entering such a block at the top level.
4472
4473 @c .   {Header}
4474 @subsubsection Header
4475 @cindex Header
4476 @cindex @code{\header}
4477
4478
4479 A header describes bibliographic information of the file's contents.  It
4480 can also appear in a @code{\score} block.  Tools like @code{ly2dvi} can
4481 use this information for generating titles.  Key values that are used by
4482 @code{ly2dvi} are: title, subtitle, composer, opus, poet, instrument,
4483 meter, arranger, piece and tagline.
4484
4485 @cindex @code{ly2dvi}
4486
4487 The syntax is
4488 @example
4489   \header @{ @var{key1} = @var{val1}
4490              @var{key2} = @var{val2} @dots{} @}
4491 @end example
4492
4493 It is customary to put the @code{\header} at the top of the file.
4494
4495 @subsubsection Default output
4496
4497 A @code{\midi} or @code{\paper} block at top level sets the default
4498 paper block for all scores that lack an explicit paper block.
4499
4500 @c .  {Identifiers}
4501 @node Identifiers
4502 @subsection Identifiers
4503 @cindex  Identifiers
4504
4505 @ignore
4506  What has this section got to do with identifiers?
4507  It seems more appropriate in the introduction to Chapter 4,
4508  "Internals".
4509
4510    /MB
4511 @end ignore
4512
4513 All of the information in a LilyPond input file, is internally
4514 represented as a Scheme value. In addition to normal Scheme data types
4515 (such as pair, number, boolean, etc.), LilyPond has a number of
4516 specialized data types,
4517
4518 @itemize @bullet
4519 @item Input
4520 @item c++-function
4521 @item Music
4522 @item Identifier
4523 @item Translator_def
4524 @item Duration
4525 @item Pitch
4526 @item Score
4527 @item Music_output_def
4528 @item Moment (rational number)
4529 @end itemize
4530
4531 LilyPond also includes some transient object types. Objects of these
4532 types are built during a LilyPond run, and do not `exist' per se within
4533 your input file. These objects are created as a result of your input
4534 file, so you can include commands in the input to manipulate them,
4535 during a lilypond run.
4536
4537 @itemize @bullet
4538 @item Grob: short for Graphical object. See @ref{Grobs}. 
4539 @item Molecule: device-independent page output object,
4540 including dimensions.  Produced by some Grob functions
4541 See @ref{Molecules}
4542 @item Translator: object that produces audio objects or Grobs. This is
4543 not yet user accessible.
4544 @item Font_metric: object representing a font. (See @ref{Font metrics})
4545
4546 @end itemize
4547
4548
4549 @node Music expressions
4550 @subsection Music expressions
4551
4552 @cindex music expressions
4553
4554 Music in LilyPond is entered as a music expression.  Notes, rests, lyric
4555 syllables are music expressions, and you can combine music expressions
4556 to form new ones, for example by enclosing a list of expressions in
4557 @code{\sequential @{ @}} or @code{< >}.  In the following example, a
4558 compound expression is formed out of the quarter note @code{c} and a
4559 quarter note @code{d}:
4560
4561 @example 
4562 \sequential @{ c4 d4 @} 
4563 @end example 
4564
4565 @cindex Sequential music
4566 @cindex @code{\sequential}
4567 @cindex sequential music
4568 @cindex @code{<}
4569 @cindex @code{>}
4570 @cindex Simultaneous music
4571 @cindex @code{\simultaneous}
4572
4573 The two basic compound  music expressions are simultaneous  and
4574 sequential music.
4575
4576 @example
4577   \sequential @code{@{} @var{musicexprlist} @code{@}}
4578   \simultaneous @code{@{} @var{musicexprlist} @code{@}}
4579 @end example
4580 For both, there is a shorthand:
4581 @example
4582   @code{@{} @var{musicexprlist} @code{@}}
4583 @end example
4584 for sequential and
4585 @example
4586   @code{<} @var{musicexprlist} @code{>}
4587 @end example
4588 for simultaneous music.
4589 In principle, the way in which you nest sequential and simultaneous to
4590 produce music is not relevant.  In the following example, three chords
4591 are expressed in two different ways:
4592
4593 @lilypond[fragment,verbatim,center]
4594   \notes \context Voice {
4595     <a c'> <b  d' > <c' e'>
4596     < { a b  c' } { c' d' e' } >
4597   }
4598 @end lilypond
4599
4600
4601 Other compound music expressions include
4602 @example
4603  \repeat @var{expr}
4604  \transpose @var{pitch} @var{expr}
4605  \apply @var{func} @var{expr}
4606  \context @var{type} = @var{id} @var{expr}
4607  \times @var{fraction} @var{expr}
4608 @end example
4609
4610
4611 @c . {Manipulating music expressions}
4612 @node Manipulating music expressions
4613 @subsection  Manipulating music expressions
4614
4615 The @code{\apply} mechanism gives you access to the internal
4616 representation of music. You can write Scheme-functions that operate
4617 directly on it. The syntax is 
4618 @example
4619         \apply #@var{func} @var{music}
4620 @end example
4621 This means that @var{func} is applied to @var{music}.  The function
4622 @var{func} should return a music expression.
4623
4624 This example replaces the text string of a script. It also shows a dump
4625 of the music it processes, which is useful if you want to know more
4626 about how music is stored.
4627
4628 @lilypond[verbatim,singleline]
4629 #(define (testfunc x)
4630         (if (equal? (ly-get-mus-property x 'text) "foo")
4631                 (ly-set-mus-property x 'text "bar"))
4632         ;; recurse
4633         (ly-set-mus-property x 'elements
4634           (map testfunc (ly-get-mus-property x 'elements)))
4635         (display x)
4636         x        
4637 )
4638 \score { \notes
4639   \apply #testfunc { c'4_"foo" }
4640
4641 @end lilypond
4642
4643 For more information on what is possible, see the automatically
4644 generated documentation.
4645
4646
4647 Directly accessing internal representations is dangerous: the
4648 implementation is subject to changes, so you should avoid this feature
4649 if possible.
4650
4651 A final example is a function that reverses a piece of music in time:
4652
4653 @lilypond[verbatim,singleline]
4654 #(define (reverse-music music)
4655   (let* ((elements (ly-get-mus-property music 'elements))
4656          (reversed (reverse elements))
4657          (span-dir (ly-get-mus-property music 'span-direction)))
4658     (ly-set-mus-property music 'elements reversed)
4659     (if (dir? span-dir)
4660         (ly-set-mus-property music 'span-direction (- span-dir)))
4661     (map reverse-music reversed)
4662     music))
4663
4664 music = \notes { c'4 d'4( e'4 f'4 }
4665
4666 \score { \context Voice {
4667     \music
4668     \apply #reverse-music \music
4669   }
4670 }
4671 @end lilypond
4672
4673 More examples are given in the distributed example files in
4674 @code{input/test/}.
4675
4676 @c .   {Span requests}
4677 @menu
4678 * Span requests::               
4679 @end menu
4680
4681 @node Span requests
4682 @subsubsection Span requests
4683 @cindex Span requests
4684
4685 Notational constructs that start and end on different notes can be
4686 entered using span requests. The syntax is as follows:
4687
4688
4689 @example
4690   \spanrequest @var{startstop} @var{type}
4691 @end example
4692
4693
4694 @cindex @code{\start}
4695 @cindex @code{\stop}
4696
4697 This defines a spanning request. The @var{startstop} parameter is either
4698 -1 (@code{\start}) or 1 (@code{\stop}) and @var{type} is a string that
4699 describes what should be started.  Much of the syntactic sugar is a
4700 shorthand for @code{\spanrequest}, for example,
4701
4702 @lilypond[fragment,verbatim,center]
4703   c'4-\spanrequest \start "slur"
4704   c'4-\spanrequest \stop "slur"
4705 @end lilypond
4706
4707 Among the supported types are @code{crescendo}, @code{decrescendo},
4708 @code{beam}, @code{slur}. This is an internal command.  Users are
4709 encouraged to use the shorthands which are defined in the initialization
4710 file @file{spanners.ly}.
4711
4712
4713 @c .   {Assignments}
4714 @node Assignments
4715 @subsection Assignments
4716 @cindex Assignments
4717
4718 Identifiers allow objects to be assigned to names during the parse
4719 stage.  To assign an identifier, you use @var{name}@code{=}@var{value}
4720 and to refer to an identifier, you precede its name with a backslash:
4721 `@code{\}@var{name}'.  @var{value} is any valid Scheme value or any of
4722 the input-types listed above.  Identifier assignments can appear at top
4723 level in the LilyPond file, but also in @code{\paper} blocks.
4724
4725 An identifier can be created with any string for its name, but you will
4726 only be able to refer to identifiers whose names begin with a letter,
4727 being entirely alphabetical.  It is impossible to refer to an identifier
4728 whose name is the same as the name of a keyword.
4729
4730 The right hand side of an identifier assignment is parsed completely
4731 before the assignment is done, so it is allowed to redefine an
4732 identifier in terms of its old value, e.g.
4733
4734 @example
4735 foo = \foo * 2.0
4736 @end example
4737
4738 When an identifier is referenced, the information it points to is
4739 copied.  For this reason, an identifier reference must always be the
4740 first item in a block.
4741 @example
4742 \paper  @{
4743   foo = 1.0
4744   \paperIdent % wrong and invalid
4745 @}
4746
4747 \paper @{
4748   \paperIdent % correct
4749   foo = 1.0 @}
4750 @end example
4751
4752
4753 @c .  {Lexical modes}
4754 @node Lexical modes
4755 @subsection Lexical modes
4756 @cindex Lexical modes
4757 @cindex input mode
4758 @cindex mode, input 
4759 @cindex @code{\notes}
4760 @cindex @code{\chords}
4761 @cindex @code{\lyrics}
4762
4763 To simplify entering notes, lyrics, and chords, LilyPond has three
4764 special input modes in addition to the default mode: note, lyrics and
4765 chords mode.  These input modes change the way that normal, unquoted
4766 words are interpreted: for example, the word @code{cis} may be
4767 interpreted as a C-sharp, as a lyric syllable `cis' or as a C-sharp
4768 major triad respectively.
4769
4770 A mode switch is entered as a compound music expression
4771 @example
4772 @code{\notes} @var{musicexpr}
4773 @code{\chords} @var{musicexpr}
4774 @code{\lyrics} @var{musicexpr}.
4775 @end example
4776
4777 In each of these cases, these expressions do not add anything to the
4778 meaning of their arguments.  They just instruct the parser in what mode
4779 to parse their arguments.  The modes are treated in more detail in
4780 @ref{Lyrics} and @ref{Chords}.
4781
4782 Different input modes may be nested.
4783
4784 @c .  {Ambiguities}
4785 @node Ambiguities
4786 @subsection Ambiguities
4787 @cindex ambiguities
4788 @cindex grammar
4789
4790
4791 The grammar contains a number of ambiguities. We hope to resolve them at
4792 some time.
4793
4794 @itemize @bullet
4795   @item  The assignment
4796
4797 @example 
4798 foo = bar 
4799 @end example 
4800          is interpreted as the string identifier assignment. However,
4801 it can also  be interpreted as making a string identifier @code{\foo}
4802        containing @code{"bar"}, or a music identifier @code{\foo}
4803        containing the syllable `bar'.  
4804
4805   @item  If you do a nested repeat like
4806
4807        @quotation
4808
4809 @example 
4810 \repeat @dots{}
4811 \repeat @dots{}
4812 \alternative 
4813 @end example 
4814
4815        @end quotation
4816
4817        then it is ambiguous to which @code{\repeat} the
4818        @code{\alternative} belongs.  This is the classic if-then-else
4819        dilemma.  It may be solved by using braces.
4820
4821   @item The parser is not sophisticated enough to distinguish at the
4822 right time between
4823         @code{c4*2 / 3 } and @code{c4*2 / g} (in chord mode).
4824
4825 [checkme]
4826
4827 @end itemize
4828
4829
4830 @c .  {Lexical details}
4831 @node Lexical details
4832 @section Lexical details
4833
4834 Even more boring details, now on lexical side of the input parser.
4835
4836 @menu
4837 * Comments::                    
4838 * Direct Scheme::               
4839 * Keywords::                    
4840 * Integers::                    
4841 * Reals::                       
4842 * Strings::                     
4843 * Main input::                  
4844 * File inclusion::              
4845 * Version information::         
4846 @end menu
4847
4848
4849 @node Comments
4850 @subsection Comments
4851
4852 @cindex comments
4853 @cindex block comment
4854 @cindex line comment
4855
4856 @cindex @code{%}
4857
4858 A one line comment is introduced by a @code{%} character. 
4859 Block comments are started by @code{%@{} and ended by @code{%@}}. 
4860 They cannot be nested.
4861
4862 @node Direct Scheme
4863 @subsection Direct Scheme
4864
4865 @cindex Scheme
4866 @cindex GUILE
4867 @cindex Scheme, in-line code
4868
4869
4870 LilyPond contains a Scheme interpreter (the GUILE library) for
4871 internal use. In some places, Scheme expressions also form valid syntax:
4872 wherever it is allowed,
4873 @example
4874   #@var{scheme}
4875 @end example
4876 evaluates the specified Scheme code.  Example:
4877 @example
4878   \property Staff.TestObject \override #'foobar =  #(+ 1 2)
4879 @end example
4880 @code{\override} expects two Scheme expressions, so there are two Scheme
4881 expressions. The first one is a symbol (@code{foobar}), the second one
4882 an integer (namely, 3).
4883
4884 In-line scheme may be used at the top level. In this case the result is
4885 discarded.
4886
4887 Scheme is a full-blown programming language, and a full discussion is
4888 outside the scope of this document. Interested readers are referred to
4889 the website @uref{http://www.schemers.org/} for more information on
4890 Scheme.
4891
4892
4893 @node Keywords
4894 @subsection Keywords
4895 @cindex Keywords
4896
4897
4898 Keywords start with a backslash, followed by a number of lower case
4899 alphabetic characters.  These are all the keywords.
4900
4901 @example
4902 apply arpeggio autochange spanrequest commandspanrequest
4903 simultaneous sequential accepts alternative bar breathe
4904 char chordmodifiers chords clef cm consists consistsend
4905 context denies duration dynamicscript elementdescriptions
4906 font grace header in lyrics key mark pitch
4907 time times midi mm name pitchnames notes outputproperty
4908 override set revert partial paper penalty property pt
4909 relative remove repeat addlyrics partcombine score
4910 script stylesheet skip textscript tempo translator
4911 transpose type
4912 @end example
4913
4914 @node Integers
4915 @subsection Integers
4916
4917 @cindex integers
4918 @cindex @code{+}
4919 @cindex @code{-}
4920 @cindex @code{*}
4921 @cindex @code{/}
4922
4923 Formed from an optional minus sign followed by digits.  Arithmetic
4924 operations cannot be done with integers, and integers cannot be mixed
4925 with reals.
4926
4927 @node Reals
4928 @subsection Reals
4929 @cindex real numbers
4930
4931
4932
4933
4934
4935 Formed from an optional minus sign and a sequence of digits followed
4936 by a @emph{required} decimal point and an optional exponent such as
4937 @code{-1.2e3}.  Reals can be built up using the usual operations:
4938 `@code{+}', `@code{-}', `@code{*}', and
4939 `@code{/}', with parentheses for grouping.
4940
4941 @cindex @code{\mm},
4942 @cindex @code{\in}
4943 @cindex @code{\cm}
4944 @cindex @code{\pt}
4945 @cindex dimensions
4946
4947 A real constant can be followed by one of the dimension keywords:
4948 @code{\mm} @code{\pt}, @code{\in}, or @code{\cm}, for millimeters,
4949 points, inches and centimeters, respectively.  This converts the number
4950 a number that is the internal representation of that dimension.
4951
4952
4953 @node Strings
4954 @subsection Strings
4955 @cindex string
4956 @cindex concatenate
4957
4958 Begins and ends with the @code{"} character.  To include a @code{"}
4959 character in a string write @code{\"}.  Various other backslash
4960 sequences have special interpretations as in the C language.  A string
4961 that contains no spaces can be written without the quotes.  Strings can
4962 be concatenated with the @code{+} operator.
4963
4964
4965 @node Main input
4966 @subsection Main input
4967 @cindex Main input
4968
4969 @cindex @code{\maininput}
4970
4971 The @code{\maininput} command is used in init files to signal that the
4972 user file must be read. This command cannot be used in a user file.
4973
4974 @node File inclusion
4975 @subsection File inclusion
4976 @cindex @code{\include}
4977 @example
4978   \include @var{filename}
4979 @end example
4980
4981 Include @var{filename}.  The argument @var{filename} may be a quoted string (an
4982 unquoted string will not work here!) or a string identifier.  The full
4983 filename including the @file{.ly} extension must be given,
4984
4985
4986 @node Version information
4987 @subsection Version information 
4988 @cindex @code{\version}
4989 @example
4990   \version @var{string} 
4991 @end example
4992
4993 Specify the version of LilyPond that a file was written for.  The
4994 argument is a version string in quotes, for example @code{"1.2.0"}. 
4995 This is used to detect invalid input, and to aid
4996 @code{convert-ly}  a tool that automatically upgrades input files. See
4997 See @ref{convert-ly} for more information on @code{convert-ly}.
4998
4999 @cindex convert-ly
5000
5001
5002
5003
5004
5005
5006 @c .{Local emacs vars}
5007 @c Local variables:
5008 @c mode: texinfo
5009 @c minor-mode: font-lock
5010 @c minor-mode: outline
5011 @c outline-layout: (-1 : 0)
5012 @c outline-use-mode-specific-leader: "@c \."
5013 @c outline-primary-bullet: "{"
5014 @c outline-stylish-prefixes: nil
5015 @c outline-override-protect: t
5016 @c End:
5017