]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/refman.itely
release: 1.5.29
[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
2516 @cindex bar numbers
2517 @cindex measure numbers
2518 @cindex currentBarNumber
2519
2520 Bar numbers are @internalsref{BarNumber} grobs.  They are printed at the
2521 start of the line.  The number itself is a property that can be set by
2522 modifying the @code{currentBarNumber} property, i.e.
2523 @example
2524   \property Score.currentBarNumber = #217
2525 @end example
2526
2527 If you want boxed bar numbers, see the example file
2528 @code{input/test/boxed-molecule.ly}.
2529
2530 @refbugs
2531
2532 It is not possible to have bar numbers printed at regular intervals
2533 only.
2534
2535 @node Instrument names
2536 @subsection Instrument names
2537
2538 You can specify an instrument name for a staff by setting
2539 @code{Staff.instrument} and @code{Staff.instr}. This will print a string
2540 before the start of the staff. For the first start, @code{instrument} is
2541 used, for the next ones @code{instr} is used.
2542
2543 @lilypond[verbatim,singleline]
2544   \property Staff.instrument = "ploink " { c''4 }  
2545 @end lilypond
2546
2547 You can also use markup texts to construct more complicated instrument
2548 names:
2549
2550
2551 @lilypond[verbatim,singleline]
2552 #(define text-flat
2553   '((font-relative-size . -2 ) (music "accidentals--1")))
2554
2555 \score { \notes {
2556   \property Staff.instrument = #`((kern . 0.5) (lines
2557     "2 Clarinetti" (columns "     (B" ,text-flat ")")))
2558     c'' 4 }
2559 }
2560 @end lilypond
2561
2562
2563 @refbugs
2564
2565 When you put a name on a grand staff or piano staff the width of the
2566 brace is not taken into account. You must add extra spaces to the end of
2567 the name to avoid a collision.
2568
2569 @node Transpose
2570 @subsection Transpose
2571 @cindex Transpose
2572 @cindex transposition of pitches
2573 @cindex @code{\transpose}
2574
2575 A music expression can be transposed with @code{\transpose}.  The syntax
2576 is
2577 @example
2578   \transpose @var{pitch} @var{musicexpr}
2579 @end example
2580
2581 This means that middle C in @var{musicexpr} is transposed to
2582 @var{pitch}.
2583
2584 @code{\transpose} distinguishes between enharmonic pitches: both
2585 @code{\transpose cis'} or @code{\transpose des'} will transpose up half
2586 a tone.  The first version will print sharps and the second version
2587 will print flats.
2588
2589 @lilypond[fragment,verbatim]
2590 \context Staff {
2591   \clef "F"
2592   { \key e \major c d e f }
2593   \clef "G"
2594   \transpose des'' { \key e \major c d e f }
2595   \transpose cis'' { \key e \major c d e f }
2596 }
2597 @end lilypond
2598
2599 If you want to use both @code{\transpose} and @code{\relative}, then
2600 you must use @code{\transpose} first.  @code{\relative} will have no
2601 effect music that appears inside a @code{\transpose}.
2602
2603 @node Sound output for transposing instruments
2604 @subsection Sound output transposing instruments
2605
2606 When you want to make a MIDI file from a score containing transposed and
2607 untransposed 
2608 instruments, you have to instruct LilyPond the pitch offset (in
2609 semitones) for the transposed instruments. This is done using the
2610 @code{transposing} property. It does not affect printed output.
2611
2612 @cindex @code{transposing}
2613
2614 @example
2615         \property Staff.instrument = #"Cl. in B-flat"
2616         \property Staff.transposing = #-2
2617 @end example
2618
2619 @c .  {Multi measure rests}
2620 @node  Multi measure rests
2621 @subsection Multi measure rests
2622 @cindex Multi measure rests
2623
2624 @cindex @code{R}
2625
2626 Multi measure rests are entered using `@code{R}'. It is specifically
2627 meant for full bar rests and for entering parts: the rest can expand to
2628 fill a score with 
2629 rests, or it can be printed as a single multimeasure rest This expansion
2630 is controlled by the property @code{Score.skipBars}. If this is set to true,
2631 Lily will not expand empty measures, and the appropriate number is added
2632 automatically.
2633
2634 @lilypond[fragment,verbatim]
2635  \time 3/4 r2. | R2. | R2.*2 \property Score.skipBars = ##t R2.*17  R2.*4
2636 @end lilypond
2637
2638 Notice that the @code{R2.} is printed as a whole rest, centered in the
2639 measure. 
2640
2641 @cindex whole rests for a full measure 
2642
2643 The grob for this object is @internalsref{MultiMeasureRest}.
2644
2645 @refbugs
2646
2647 Currently, there is no way to automatically condense multiple rests into
2648 a single multimeasure rest.
2649
2650 @cindex condensing rests
2651
2652 @node Automatic part combining
2653 @subsection Automatic part combining
2654 @cindex automatic part combining
2655 @cindex part combiner
2656
2657
2658 Automatic part combining is used to merge two parts of music onto a
2659 staff in an intelligent way.  It is aimed primarily at typesetting
2660 orchestral scores.  When the two parts are identical for a period of
2661 time, only one is shown.  In places where the two parts differ, they are
2662 typeset as separate voices, and stem directions are set automatically.
2663 Also, solo and @emph{a due} parts can be identified and marked.
2664
2665 The syntax for part combining is
2666
2667 @example
2668   \partcombine @var{context} @var{musicexpr1} @var{musicexpr2}
2669 @end example
2670 where the pieces of music @var{musicexpr1} and @var{musicexpr2} will be
2671 combined into one context of type @var{context}.  The music expressions
2672 must be interpreted by contexts whose names should start with @code{one}
2673 and @code{two}.
2674
2675 The most useful function of the part combiner is to combine parts into
2676 one voice, as common for wind parts in orchestral scores:
2677
2678 @lilypond[verbatim,singleline,fragment]
2679   \context Staff <
2680     \context Voice=one \partcombine Voice
2681       \context Thread=one \relative c'' {
2682         g a () b r
2683       }
2684       \context Thread=two \relative c'' {
2685         g r4 r f
2686       }
2687   >
2688 @end lilypond
2689
2690 Notice that the first @code{g} appears only once, although it was
2691 specified twice (once in each part).  Stem, slur and tie directions are
2692 set automatically, depending whether there is a solo or unisono. The
2693 first part (with context called @code{one}) always gets up stems, and
2694 `solo', while the second (called @code{two}) always gets down stems and
2695 `Solo II'.
2696
2697 If you just want the merging parts, and not the textual markings, you
2698 may set the property @var{soloADue} to false.
2699
2700 @lilypond[verbatim,singleline,fragment]
2701   \context Staff <
2702     \property Staff.soloADue = ##f
2703     \context Voice=one \partcombine Voice
2704       \context Thread=one \relative c'' {
2705         b4 a c g
2706       }
2707       \context Thread=two \relative c'' {
2708         d,2 a4 g'
2709       }
2710   >
2711 @end lilypond
2712
2713 There are a number of other properties that you can use to tweak the
2714 behavior of part combining, refer to the automatically generated
2715 documentation of @reng{Thread_devnull_engraver} and
2716 @reng{Voice_devnull_engraver}. Look at the documentation of the
2717 responsible engravers, @code{Thread_devnull_engraver},
2718 @code{Voice_devnull_engraver} and @code{A2_engraver}.
2719
2720 @refbugs
2721
2722 In @code{soloADue} mode, when the two voices play the same notes on and
2723 off, the part combiner may typeset @code{a2} more than once in a
2724 measure.
2725
2726 @lilypond[fragment,singleline]
2727   \context Staff <
2728     \context Voice=one \partcombine Voice
2729       \context Thread=one \relative c'' {
2730         c b c b c a c a
2731       }
2732       \context Thread=two \relative c'' {
2733         b b b b f a f a
2734       }
2735   >
2736 @end lilypond
2737
2738 @cindex @code{Thread_devnull_engraver}
2739 @cindex @code{Voice_engraver}
2740 @cindex @code{A2_engraver}
2741
2742 @node Hara kiri staves
2743 @subsection Hara kiri staves
2744
2745 In orchestral scores, staff lines that only have rests are usually removed.
2746 This saves some space.  LilyPond also supports this through the hara
2747 kiri@footnote{Hara kiri, also called Seppuku, is the ritual suicide of
2748 the Japanese Samourai warriors.} staff. This staff commits suicide when
2749 it finds itself to be empty after the line-breaking process.  It will
2750 not disappear when it contains normal rests, you must use multi measure
2751 rests.
2752
2753 The hara kiri staff is specialized version of the @internalsref{Staff}
2754 context. It is available as the context identifier
2755 @code{\HaraKiriStaffContext}.  Observe how the second staff in this
2756 example disappears in the second line.
2757
2758 @lilypond[verbatim]
2759 \score  {
2760   \notes \relative c' <
2761     \context Staff = SA { e4 f g a \break c1 }
2762     \context Staff = SB { c4 d e f \break R1 }
2763   >
2764   \paper {
2765     linewidth = 6.\cm 
2766     \translator { \HaraKiriStaffContext }
2767   }
2768 }
2769 @end lilypond
2770
2771
2772
2773 @c . {Custodes}
2774 @node Custodes
2775 @section Custodes
2776 @cindex Custos
2777 @cindex Custodes
2778
2779 A @emph{custos} (plural: @emph{custodes}; latin word for `guard') is a
2780 staff context symbol that appears at the end of a staff line.  It
2781 anticipates the pitch of the first note(s) of the following line and
2782 thus helps the player or singer to manage line breaks during
2783 performance, thus enhancing readability of a score.
2784
2785 @lilypond[verbatim]
2786 \score {
2787   \notes { c'1 \break
2788         \property Staff.Custos \set #'style = #'mensural
2789         d' }
2790   \paper {
2791     \translator {
2792       \StaffContext
2793       \consists Custos_engraver
2794     }
2795   }
2796 }
2797 @end lilypond
2798
2799 Custodes were frequently used in music notation until the 17th century.
2800 There were different appearances for different notation styles.
2801 Nowadays, they have survived only in special forms of musical notation
2802 such as via the @emph{editio vaticana} dating back to the beginning of
2803 the 20th century.
2804
2805 For typesetting custodes, just put a @code{Custos_engraver} into the
2806 @internalsref{Staff} context when declaring the @code{\paper} block.  In this
2807 block, you can also globally control the appearance of the custos symbol
2808 by setting the custos @code{style} property.  Currently supported styles
2809 are @code{vaticana}, @code{medicaea}, @code{hufnagel} and
2810 @code{mensural}.
2811
2812 @example
2813 \paper @{
2814   \translator @{
2815       \StaffContext
2816       \consists Custos_engraver
2817       Custos \override #'style = #'mensural
2818   @}
2819 @}
2820 @end example
2821
2822 The property can also be set locally, for example in a @code{\notes}
2823 block:
2824
2825 @example
2826 \notes @{
2827   \property Staff.Custos \override #'style = #'vaticana
2828   c'1 d' e' d' \break c' d' e' d'
2829 @}
2830 @end example
2831
2832 @c . {Tuning output}
2833 @node Tuning output
2834 @section Tuning output
2835
2836 LilyPond tries to take as much formatting as possible out of your
2837 hands. Nevertheless, there are situations where it needs some help, or
2838 where you want to override its decisions. In this section we discuss
2839 ways to do just that.
2840
2841 Formatting is internally done by manipulating so called grobs (graphic
2842 objects). Each grob carries with it a set of properties (grob
2843 properties) specific to that object.  For example, a stem grob has
2844 properties that specify its direction, length and thickness.
2845
2846 The most direct way of tuning the output is by altering the values of
2847 these properties. There are two ways of doing that: first, you can
2848 temporarily change the definition of a certain type of grob, thus
2849 affecting a whole set of objects.  Second, you can select one specific
2850 object, and set a grob property in that object.
2851
2852 @menu
2853 * Tuning groups of grobs ::     
2854 * Tuning per grob ::            
2855 * What to tune?::               
2856 * Font selection::              
2857 * Text markup::                 
2858 * Invisible grobs::             
2859 * Dirty tricks::                
2860 @end menu
2861
2862 @node Tuning groups of grobs 
2863 @subsection Tuning groups of grobs 
2864
2865 @cindex grob description
2866
2867
2868
2869 A grob definition is a Scheme association list, that is stored in a
2870 context property.  By assigning to that property (using plain
2871 @code{\property}), you can change the resulting grobs.
2872
2873 @lilypond[verbatim, fragment]
2874 c'4 \property Voice.Stem  = #'((meta . ((interfaces . ())))) c'4
2875 @end lilypond
2876
2877 The @code{\property} assignment effectively empties the definition of
2878 the Stem object. One of the effects is that the recipe of how it should be
2879 printed is erased, with the effect of rendering it invisible.  The above
2880 assignment is available as a standard identifier, for the case that you
2881 find this useful:
2882
2883 @example
2884   \property Voice.Stem = \turnOff
2885 @end example
2886
2887 @cindex \override
2888 @cindex \revert
2889 @cindex \set
2890
2891 This mechanism is fairly crude, since you can only set, but not modify,
2892 the definition of a grob. For this reason, there is a more advanced
2893 mechanism.
2894
2895 The definition of a grob is actually a list of default grob
2896 properties. For example, the definition of the Stem grob (available in
2897 @file{scm/grob-description.scm}), defines the following values for
2898 @internalsref{Stem}
2899
2900 @example
2901         (thickness . 0.8)
2902         (beamed-lengths . (0.0 2.5 2.0 1.5))
2903         (Y-extent-callback . ,Stem::height)
2904         @var{...}
2905 @end example
2906
2907 You can add a property on top of the existing definition, or remove a
2908 property, thus overriding the system defaults:
2909 @lilypond[verbatim]
2910 c'4 \property Voice.Stem \override #'thickness = #4.0
2911 c'4 \property Voice.Stem \revert #'thickness
2912 c'4
2913 @end lilypond
2914 You should balance @code{\override} and @code{\revert}. If that's too
2915 much work, you can use the @code{\set} shorthand. It performs a revert
2916 followed by an override. The following example gives exactly the same
2917 result as the previous one. 
2918 @lilypond[verbatim]
2919 c'4 \property Voice.Stem \set #'thickness = #4.0
2920 c'4 \property Voice.Stem \set #'thickness = #0.8
2921 c'4
2922 @end lilypond
2923 If you use @code{\set}, you must explicitly restore the default.
2924
2925
2926 Formally the syntax for these constructions is
2927 @example
2928 \property @var{context}.@var{grobname} \override @var{symbol} = @var{value}
2929 \property @var{context}.@var{grobname} \set @var{symbol} = @var{value}
2930 \property @var{context}.@var{grobname} \revert @var{symbol}
2931 @end example
2932 Here @var{symbol} is a Scheme expression of symbol type, @var{context}
2933 and @var{grobname} are strings and @var{value} is a Scheme expression.
2934
2935
2936 If you revert a setting which was not set in the first place, then it
2937 has no effect. However, if the setting was set as a system default, it
2938 may remove the default value, and this may give surprising results,
2939 including crashes.  In other words, @code{\override} and @code{\revert},
2940 must be carefully balanced.
2941
2942 These are examples of correct nesting of @code{\override}, @code{\set},
2943 @code{\revert}. 
2944
2945 A clumsy but correct form:
2946 @example
2947   \override \revert \override \revert \override \revert
2948 @end example
2949
2950 Shorter version of the same:
2951 @example 
2952   \override \set \set  \revert
2953 @end example
2954
2955 A short form, using only @code{\set}. This requires you to know the
2956 default value:
2957 @example
2958   \set \set \set \set @var{to default value}
2959 @end example
2960
2961 If there is no default (i.e. by default, the grob property is unset),
2962 then you can use
2963 @example
2964   \set \set \set \revert
2965 @end example
2966
2967 For the digirati, the grob description is an Scheme association
2968 list. Since a Scheme list is a singly linked list, we can treat it as a
2969 stack, and @code{\override} and @code{\revert} are just push and pop
2970 operations. This pushing and popping is also used for overriding
2971 automatic beaming settings.
2972
2973 @refbugs
2974
2975 LilyPond will hang or crash if @var{value} contains cyclic references.
2976 The backend is not very strict in type-checking grob properties. If you
2977 @code{\revert} properties that are expected to be set by default,
2978 LilyPond may crash.
2979
2980 Some grobs are created at the moment that their context is created. An
2981 example of such a grob is the staff itself (i.e. the horizontal lines).
2982 You can not change the appearance of the staff symbol by manipulating
2983 @code{\property Staff.StaffSymbol}.  At the moment that @code{\property
2984 Staff} is interpreted, a Staff context is made, and the StaffSymbol is
2985 created before any @code{\override} is effective. You can deal with this
2986 either overriding properties in a @code{\translator} definition, or by
2987 using @code{\outputproperty}.
2988
2989
2990
2991
2992 @node Tuning per grob 
2993 @subsection Tuning per grob 
2994
2995 @cindex \outputproperty
2996
2997 A second way of tuning grobs is the more arcane @code{\outputproperty}
2998 feature.  The syntax is as follows:
2999 @example
3000 \outputproperty @var{predicate} @var{symbol} = @var{value}
3001 @end example
3002 Here @code{predicate} is a Scheme function taking a grob argument, and
3003 returning a boolean.  This statement is processed by the
3004 @code{Output_property_engraver}.  It instructs the engraver to feed all
3005 grobs that it sees to @var{predicate}. Whenever the predicate returns
3006 true, the grob property @var{symbol} will be set to @var{value}.
3007
3008 You will need to combine this statement with @code{\context} to select
3009 the appropriate context to apply this to.
3010
3011 Here are some random examples. 
3012
3013
3014 In the following example, all note heads occurring at current staff
3015 level, are shifted up and right by setting their @code{extra-offset}
3016 property.
3017
3018 @lilypond[fragment,verbatim,singleline]
3019 \relative c'' { c4
3020   \context Staff \outputproperty
3021   #(make-type-checker 'note-head-interface)
3022   #'extra-offset = #'(0.5 . 0.75)
3023   <c8 e g> }
3024 @end lilypond
3025
3026 @cindex @code{extra-offset}
3027
3028 In this example, the predicate checks the @code{text} grob property, to
3029 shift only the `m.d.' text,  but not the fingering instruction "2".
3030 @lilypond[verbatim,singleline]
3031 #(define (make-text-checker text)
3032    (lambda (grob) (equal? text (ly-get-grob-property grob 'text))))
3033
3034 \score {    
3035   \notes\relative c''' {
3036     \property Voice.Stem \set #'direction = #1
3037     \outputproperty #(make-text-checker "m.d.")
3038       #'extra-offset = #'(-3.5 . -4.5)
3039     a^2^"m.d."    
3040   }
3041 }
3042 @end lilypond
3043
3044 @refbugs
3045
3046 If possible, avoid this feature: the semantics are not very clean, and
3047 the syntax and semantics are up for rewrite.
3048
3049
3050
3051
3052 @node What to tune?
3053 @subsection What to tune?
3054
3055 This all tells you how to tune grobs, but you don't know what variables
3056 to set? The question is not answered in this part of the manual
3057 (although you may encounter some examples.).
3058
3059 Grob properties are tied directly to the implementation of LilyPond, and
3060 they are thus a moving target. Documentation of such variables is in the
3061 automatically generated documentation.  Description of properties are
3062 generated from the source code for each version. This documentation is
3063 therefore more up to date.  It should be available from the same place
3064 where you got this manual.
3065
3066 To decide how to tune a grob, you need to find the following information
3067 @itemize @bullet
3068 @item
3069 which grob to modify
3070 @item
3071 which property to modify
3072 @item
3073 which context the grob comes from.
3074 @end itemize
3075
3076 Included with the automatically generated documentation is a master list
3077 of grobs. Selecting a grob will take you to an overview of the
3078 properties available for that grob.
3079
3080 There is also a master list of contexts. Selecting one takes you to an
3081 overview of that context which lists which grob types are created there.
3082
3083
3084 @node Font selection
3085 @subsection Font selection
3086
3087 Most graphics in LilyPond are composed of characters of fonts.  You can
3088 alter the characteristics of the font by setting certain grob
3089 properties. The mechanism that is used for this resembles La@TeX{}'s New
3090 Font Selection Scheme. Within this scheme, a font is entirely
3091 characterized by its font name.
3092
3093 For each grob that uses fonts (in other words, each grob that supports
3094 @code{font-interface}) a font-name must be selected before it can be
3095 printed.  The font name is selected by looking at a number of grob
3096 properties:
3097
3098 @table @code
3099 @item font-family
3100  A symbol indicating the general class of the typeface.  Supported are
3101 @code{roman} (Computer Modern), @code{braces} (for piano staff braces),
3102 @code{music} (the standard music font), @code{dynamic} (font for dynamic
3103 signs) and @code{typewriter}
3104
3105 @item font-shape
3106   A symbol indicating the shape of the font, there are typically several
3107   font shapes available for each font family. Choices are @code{italic},
3108   @code{caps} and @code{upright} 
3109
3110 @item font-series
3111 A  symbol indicating the series of the font. There are typically several
3112 font series for each font family and shape. Choices are @code{medium}
3113 and @code{bold}. 
3114
3115 @item font-relative-size
3116   A number indicating the size relative the standard size.  For example,
3117   with 20pt staff height, relative size -1  corresponds to 16pt staff
3118   height, and relative size +1 corresponds to 23 pt staff height.
3119
3120 @item font-design-size
3121 A number indicating  the design size of the font. 
3122
3123 This is a feature of the Computer Modern Font: each point size has a
3124 slightly different design. Smaller design sizes are relatively wider,
3125 which enhances readability. Scalable type faces such TrueType and Adobe
3126 Type1 usually come as ``one design fits all sizes''.
3127
3128 @item font-name
3129   The name of the font, without the design size, e.g. @code{cmr},
3130 @code{cmti}, etc. Setting this overrides font-family, font-shape and
3131 font-series.
3132
3133 @end table
3134
3135 The font is selected by taking the first font that satisfies all
3136 qualifiers specified. You can override any of these fields through
3137 @code{\override} and @code{\revert}. The special value @code{*} matches
3138 any value for that qualifier.
3139
3140 @example
3141   \property Lyrics.LyricText \override #'font-series = #'bold
3142   \property Lyrics.LyricText \override #'font-shape = #'*
3143 @end example
3144
3145 @cindex @code{font-style}
3146
3147 There are also pre-cooked font selection qualifiers. These are selected
3148 through the grob property @code{font-style}.  For example, the style
3149 @code{finger} selects family @code{number} and relative size @code{-3}.
3150 Styles available include @code{volta}, @code{finger}, @code{tuplet},
3151 @code{timesig}, @code{mmrest}, @code{script}, @code{large}, @code{Large}
3152 and @code{dynamic}.
3153
3154 The style sheets and tables for selecting fonts are located in
3155 @file{scm/font.scm}. Refer to this file for more information.
3156
3157 @refbugs
3158
3159 Relative size is not linked to any real size.
3160
3161 There is no mechanism to select magnification of particular fonts,
3162 meaning that you don't have access to continuously scaled fonts.  You
3163 can scale the entire output, of course, see @ref{Output scaling}.
3164
3165 There is no style sheet provided for other fonts besides the @TeX{}
3166 family.
3167
3168 @cindex font selection
3169 @cindex font magnification
3170 @cindex @code{font-interface}
3171
3172
3173 @node Text markup
3174 @subsection Text markup
3175 @cindex text markup
3176 @cindex markup text
3177
3178 LilyPond has an internal mechanism to typeset texts. You can
3179 form text markup expressions by composing scheme expressions
3180 in the following way.
3181
3182 @lilypond[verbatim, singleline]
3183  \relative c' {
3184     \fatText
3185     a^#"upright"
3186     b_#'(bold "bold")
3187     c^#'(italic "italic")
3188     d_#'((bold italic) "ff")
3189     e^#'(dynamic "ff")
3190     f_#'(lines "one" (bold "two"))
3191     g^#'(music "noteheads-2" ((raise . 2.4) "flags-u3"))
3192   }
3193 @end lilypond
3194
3195 Normally, the Scheme markup text is stored in the @code{text} property
3196 of a grob.  Formally, it is defined as follows:
3197
3198 @example
3199 text: string | (head? text+)
3200 head: markup | (markup+)
3201 markup-item: property | abbrev
3202 property: (@var{key} . @var{value})
3203 abbrev: @code{columns lines roman music bold italic named super sub}
3204         @code{overstrike text finger volta timesig mmrest mark script}
3205         @code{large Large dynamic}
3206 @end example
3207
3208 The markup is broken down and converted into a list of grob properties,
3209 which are prepended to the property list.  The @var{key}-@var{value}
3210 pair is a grob property. A list of properties available is included in
3211 the generated documentation for @rint{Text_interface}.
3212
3213 The following abbreviations are currently defined:
3214 @table @code
3215 @item columns
3216  horizontal mode: set all text on one line (default)
3217 @item lines
3218  vertical mode: set every text on a new line
3219 @item roman
3220  select roman font
3221 @item music
3222  selects the Feta font (the standard font for music notation glyphs),
3223 and uses named lookup
3224
3225 @item bold
3226  select bold series
3227 @item italic
3228  select italic shape
3229 @item named
3230  lookup by character name
3231 @item text
3232  plain text lookup (by character value)
3233 @item super
3234  superscript
3235 @item sub
3236  subscript
3237 @item overstrike
3238  the next text or character overstrikes this one
3239 @item finger
3240  select fingering number fontstyle
3241 @item volta
3242  select volta number fontstyle
3243 @item timesig
3244  select time signature number fontstyle
3245 @item mmrest
3246  select multi measure rest number fontstyle
3247 @item mark
3248  select mark number fontstyle
3249 @item script
3250  select scriptsize roman fontstyle
3251 @item large
3252  select large roman fontstyle
3253 @item Large
3254  select Large roman fontstyle
3255 @item dynamic
3256  select dynamics fontstyle
3257 @end table
3258
3259
3260 @cindex metronome mark
3261
3262 One practical application of complicated markup is to fake a metronome
3263 marking:
3264
3265 @lilypond[verbatim]
3266 #(define note '(columns
3267   (music "noteheads-2" ((kern . -0.1) "flags-stem"))))
3268 #(define eight-note `(columns ,note ((kern . -0.1)
3269   (music ((raise . 3.5) "flags-u3")))))
3270 #(define dotted-eight-note
3271   `(columns ,eight-note (music "dots-dot")))
3272
3273 \score {
3274   \notes\relative c'' {
3275     a1^#`((columns (font-relative-size . -1)) ,dotted-eight-note " = 64")
3276   }
3277   \paper {
3278     linewidth = -1.
3279     \translator{
3280       \ScoreContext
3281       TextScript \override #'font-shape = #'upright
3282     }
3283   }
3284 }
3285 @end lilypond
3286
3287 @node Invisible grobs
3288 @subsection Invisible grobs
3289 @cindex invisible grobs
3290
3291 @ignore
3292
3293 ben nog steeds niet kapot van de informatiedichtheid hier.
3294
3295 --hwn
3296
3297 @end ignore
3298
3299 You can imagine a number of situations where you would want to make
3300 certain grobs not show up in the output.  There may be aesthetic
3301 reasons, to make the output resemble an (old) manuscript as close as
3302 possible, or to make lessons or exercises for students.
3303
3304 Grobs can be made invisible in a number of ways:
3305
3306 Here's an example with blanked-out notes and stems:
3307 @lilypond[singleline,verbatim]
3308 blanknotes = {
3309   \property Voice.NoteHead \override
3310     #'transparent = ##t
3311   \property Voice.Stem \override
3312     #'transparent = ##t }
3313   
3314 unblanknotes = {
3315   \property Voice.NoteHead \revert #'transparent
3316   \property Voice.Stem \revert #'transparent }
3317
3318 \score {
3319   \notes\relative c'' {
3320     \time 6/4
3321     a b c b \blanknotes c \unblanknotes d
3322   }
3323 }
3324 @end lilypond
3325 This method makes the grobs invisible but they still take the normal space. 
3326 To remove all traces of the grob, you can redefine the function
3327 typesetting them:
3328 @lilypond[verbatim]
3329 \score {
3330   \notes\relative c'' {
3331     \key c \minor
3332     \time 6/4
3333     as bes c bes c d \break
3334     \property Staff.KeySignature \override #'molecule-callback = #'()
3335     as bes c bes c d 
3336   }
3337   \paper{linewidth=5.0\cm indent=0}
3338 }
3339 @end lilypond
3340
3341 A very rigorous way of removing grobs from the whole score is to remove
3342 the engraver that creates them. For example,
3343
3344 @lilypond[singleline,verbatim]
3345 \score {\notes { c'4 d'8 e'8 g2 }
3346   \paper { \translator {
3347      \VoiceContext
3348      \remove Stem_engraver
3349   } }
3350 }
3351 @end lilypond
3352
3353 @node Dirty tricks
3354 @subsection Dirty tricks
3355 @cindex embedded tex
3356
3357 It is possible to use @TeX{} commands in the strings, but this should be
3358 avoided because it makes it impossible for LilyPond to compute the
3359 exact length of the string, which may lead to collisions.  Also, @TeX{}
3360 commands won't work with direct PostScript output (see @ref{PostScript
3361 output}).
3362
3363 @lilypond[fragment,relative,verbatim]
3364   a'^"3 $\\times$ \\`a deux"
3365 @end lilypond
3366
3367 You can also use raw PostScript commands embedded in text scripts.  This
3368 offers ultimate flexibility, but requires you to learn PostScript.
3369 Currently, embedded PostScript will @strong{not} work with direct
3370 PostScript output.  Note that all dimensions that you use are in staff
3371 space.
3372
3373 @lilypond[verbatim]
3374 \score {
3375   \notes \relative c'' {
3376     a-#"\\embeddedps{3 4 moveto 5 3 rlineto stroke}"
3377     -#"\\embeddedps{ [ 0 1 ] 0 setdash 3 5 moveto 5 -3 rlineto stroke}"
3378     b-#"\\embeddedps{3 4 moveto 0 0 1 2 8 4 20 3.5 rcurveto stroke}"
3379     s2
3380     a'1
3381   }
3382   \paper { linewidth = 70*\staffspace }
3383 }
3384 @end lilypond
3385
3386
3387 @c . {Page layout}
3388 @node Page layout
3389 @section Page layout
3390 @cindex Page layout
3391
3392 The page layout is the combined product of LilyPond formatting notation,
3393 and (La)@TeX{} putting the notation on a page, including page breaks.
3394 The part of LilyPond is documented here.
3395
3396 @menu
3397 * Paper block::                 
3398 * Paper variables::             
3399 * Font Size::                   
3400 * Paper size::                  
3401 * Line break::                  
3402 * Page break::                  
3403 * Output scaling::              
3404 @end menu
3405
3406 @c .  {Paper block}
3407 @node Paper block
3408 @subsection Paper block
3409 @cindex Paper block
3410
3411 The most important output definition is the @code{\paper} block, for
3412 music notation.  The syntax is
3413
3414 @example
3415   @code{\paper @{} [@var{paperidentifier}] @var{items} @code{@}}
3416 @end example
3417
3418 where each of the items is one of
3419
3420 @itemize @bullet
3421   @item  An assignment.
3422
3423   @item  A context definition.  See @ref{Interpretation context} for
3424        more information on context definitions.
3425
3426   @item  \stylesheet  declaration.  Its syntax is
3427        @example
3428                 \stylesheet @var{alist}
3429        @end example
3430
3431         See @file{scm/font.scm} for details of @var{alist}.
3432   @item an @code{\elementdescriptions} declaration.
3433         @example
3434                 \elementdescriptions @var{alist}
3435         @end example
3436         See @file{scm/grob-description.scm} for details of
3437 @var{alist}. This command is not user-serviceable.
3438
3439 @end itemize
3440
3441 @c .  {Paper variables}
3442 @node Paper variables
3443 @subsection Paper variables 
3444 @cindex Paper variables
3445
3446 The paper block has some variables you may want to use or change:
3447
3448 @table @code
3449 @cindex @code{indent}
3450   @item @code{indent}  
3451     The indentation of the first line of music.
3452 @cindex @code{staffspace}
3453
3454   @item @code{staffspace}
3455     The distance between two staff lines, calculated from the center
3456     of the lines.
3457
3458 @cindex @code{linewidth}
3459   @item @code{linewidth}  
3460     Sets the width of the lines.
3461
3462 If set to a negative value, a single unjustified line is produced.
3463 @c rename to singleLinePaper ?
3464 The shorthand @code{\singleLine} defines a default paper block that
3465 produces a single line.
3466
3467 @cindex @code{textheight}
3468
3469   @item @code{textheight}  
3470     Sets the total height of the music on each page. Only used by
3471 @code{ly2dvi}.
3472
3473 @cindex @code{interscoreline}
3474
3475   @item @code{interscoreline}  
3476     Sets the spacing between systems. The default is 16pt.
3477     
3478 @cindex @code{interscorelinefill}
3479
3480   @item @code{interscorelinefill}  
3481     If set to a positive number, the distance between the score 
3482     lines will stretch in order to fill the full page. In that
3483     case @code{interscoreline} specifies the minimum spacing.
3484
3485         Not set by default.
3486
3487
3488 @cindex @code{stafflinethickness}
3489
3490   @item @code{stafflinethickness}  
3491     Determines the thickness of staff lines, and also acts as a scaling
3492     parameter for other line thicknesses.
3493 @end table
3494
3495 You may enter these dimension using units (@code{cm}, @code{in},
3496 @code{mm}, @code{pt}), or relative to another dimension
3497 @example
3498         linewidth = 20.0 * \staffspace
3499         indent  = 0.5 \cm
3500 @end example
3501
3502
3503 @c .  {Font size}
3504 @node Font Size
3505 @subsection Font size
3506 @cindex font size
3507
3508 The Feta font provides musical symbols at six different sizes.  These
3509 fonts are 11 point, 13 point, 16 point, 20 point,
3510 23 point, and 26 point.  The point size of a font is the
3511 height of the five lines in a staff when displayed in the font.
3512
3513 Definitions for these sizes are the files @file{paperSZ.ly}, where
3514 @code{SZ} is one of 11, 13, 16, 20, 23 and 26.  If you include any of
3515 these files, the identifiers @code{paperEleven}, @code{paperThirteen},
3516 @code{paperSixteen}, @code{paperTwenty}, @code{paperTwentythree}, and
3517 @code{paperTwentysix} are defined respectively.  The default
3518 @code{\paper} block is also set.
3519
3520 The font definitions are generated using a Scheme function. For more
3521 details, see the file @file{scm/font.scm}.
3522
3523
3524
3525 @c .  {Paper size}
3526 @node Paper size
3527 @subsection Paper size
3528 @cindex Paper size
3529
3530 @cindex paper size
3531 @cindex page size
3532 @cindex @code{papersize}
3533
3534 To change the paper size, you must first set the
3535 @code{papersize} variable at top level.  Set it to
3536 the strings @code{a4}, @code{letter}, or @code{legal}.  After this
3537 specification, you must set the font as described above.  If you want
3538 the default font, then use the 20 point font.
3539
3540 @example
3541         papersize = "a4"
3542         \include "paper16.ly"
3543 @end example
3544
3545 The file @code{paper16.ly}  will now include a file named @file{a4.ly}, which
3546 will set the paper variables @code{hsize} and @code{vsize} (used by
3547 @code{ly2dvi})
3548
3549 @c .  {Line break}
3550 @node Line break
3551 @subsection Line break
3552
3553 @cindex line breaks
3554 @cindex breaking lines
3555
3556 Line breaks are normally computed automatically. They are chosen such
3557 that the resulting spacing has low variation, and looks neither cramped
3558 nor loose.
3559
3560 Occasionally you might want to override the automatic breaks; you can do
3561 this by specifying @code{\break}. This will force a line break at this
3562 point. Do remember that line breaks can only occur at places where there
3563 are bar lines.  If you want to have a line break where there is no
3564 bar line, you can force an invisible bar line by entering @code{\bar
3565 ""}. Similarly, @code{\noBreak} forbids a line break at a certain point.
3566
3567 @cindex @code{\penalty}
3568
3569 The @code{\break} and @code{\noBreak} commands are defined in terms of
3570 the penalty command:
3571 @example
3572   \penalty @var{int} 
3573 @end example
3574
3575 This encourages or discourages LilyPond to make a line break at this
3576 point.
3577
3578 @refbugs
3579
3580 The scaling of the @code{\penalty} argument is not well-defined.  The
3581 command is rather kludgey, and slated for rewriting.
3582
3583 @c .  {Page break}
3584 @node Page break
3585 @subsection Page break
3586
3587 @cindex page breaks
3588 @cindex breaking pages
3589
3590 Page breaks are normally computed by @TeX{}, so they are not under
3591 direct control of LilyPond.  However, you can insert a commands into the
3592 @file{.tex} output to instruct @TeX{} where to break pages, by inserting
3593 the command @code{\newpage}
3594 @cindex @code{\newpage}
3595
3596 @example
3597   \newpage
3598 @end example
3599
3600 @c why do so difficult?
3601 @c maybe should explain contents of between-system.ly,
3602 @c but not now, we're talking about page breaks here.
3603 @c For more
3604 @c details, see the example file @file{input/test/between-systems.ly}
3605
3606
3607 @c .  {Output scaling}
3608 @node Output scaling
3609 @subsection Output scaling
3610
3611 [TODO]
3612
3613 @example
3614 dvips ...
3615 @end example
3616
3617 @example
3618 pstops ...
3619 @end example
3620
3621
3622 @refbugs
3623
3624 There is no mechanism to select magnification of particular fonts,
3625 meaning that you don't have access to continuously scaled fonts.
3626
3627
3628
3629 @c . {Output formats}
3630 @node Output formats
3631 @section Output formats
3632
3633 LilyPond can output processed music in different output formats.  
3634
3635 @menu
3636 * TeX output::                  
3637 * PostScript output::           
3638 * Scheme output::               
3639 * ASCIIScript output::          
3640 @end menu
3641
3642 @node TeX output
3643 @subsection TeX output
3644 @cindex TeX output
3645
3646 LilyPond will use @TeX{} by default.  Even if you want to produce
3647 PostScript output for viewing or printing, you should normally have
3648 LilyPond produce @TeX{} first.  The .tex output must be processed by
3649 @TeX{} (@strong{not} La@TeX{}) to generate a .dvi.  Then, @file{Dvips}
3650 is used to generate PostScript.  Alternatively, @file{ly2dvi} can be
3651 used to generate the .dvi for you.
3652
3653 @refbugs
3654
3655 Titling is not generated unless you use @file{ly2dvi}. 
3656
3657
3658 @node PostScript output
3659 @subsection PostScript output
3660 @cindex PostScript output
3661 @cindex direct PostScript output
3662
3663 LilyPond can produce PostScript directly, without going through @TeX{}.
3664 Currently, this is mainly useful if you cannot use TeX, because direct
3665 PostScript output has some problems; see Bugs below.
3666
3667 @example
3668 $ lilypond -fps foo.ly
3669 GNU LilyPond 1.3.144
3670 Now processing: `foo.ly'
3671 Parsing...
3672 Interpreting music...[3]
3673 Preprocessing elements... 
3674 Calculating column positions... 
3675 paper output to foo.ps...
3676
3677 $ cat /usr/share/lilypond/pfa/feta20.pfa foo.ps | lpr
3678 @end example
3679
3680
3681 @refbugs
3682
3683 Text font selection is broken.
3684
3685 The .ps file does not contain the .pfa font files.  To print a .ps
3686 created through direct postscript output, you should prepend the
3687 necessary .pfa files to LilyPond's .ps output, or upload them to the
3688 printer before printing.
3689
3690 The line height calculation is broken, you must set @var{lineheight} in
3691 the paperblock if you have more than one staff in your score, e.g.
3692
3693 @example
3694   ...
3695   \paper @{
3696     % Set line height to 40 staff spaces
3697     lineheight = 40    
3698   @}
3699 @end example
3700
3701 @node Scheme output
3702 @subsection Scheme output
3703 @cindex Scheme output
3704
3705 In the typesetting stage, LilyPond builds a page description, which is
3706 then written to disk in postscript, @TeX{} or ASCII art. Before it is
3707 written, the page description is represented as Scheme expressions.  You
3708 can also dump these  Scheme expressions to a file, which may be
3709 convenient for debugging output routines.  This is done with the Scheme
3710 output format
3711
3712 @example
3713 $ lilypond -fscm foo.ly
3714 GNU LilyPond 1.3.144
3715 Now processing: `foo.ly'
3716 Parsing...
3717 Interpreting music...[3]
3718 Preprocessing elements... 
3719 Calculating column positions... 
3720 paper output to foo.scm...
3721
3722 $ head -4 foo.scm 
3723 ;;; Usage: guile -s x.scm > x.tex
3724  (primitive-load-path 'standalone.scm)
3725 ; (scm-tex-output)
3726  (scm-ps-output)
3727
3728 $ guile -s foo.scm > foo.tex
3729 @end example
3730
3731
3732 @node ASCIIScript output
3733 @subsection ASCIIScript output
3734 @cindex ASCIIScript output
3735 @cindex ascii script
3736 @cindex ascii art
3737
3738 LilyPond can output ASCII Art.  This is a two step process, LilyPond
3739 produces an ASCII description file, dubbed ASCIIScript (extension
3740 @file{.as}).  ASCIIScript has a small and simple command set that
3741 includes font selection, character and string printing and line drawing
3742 commands.  The program @file{as2text} is used to translate an .as file
3743 to text.
3744
3745 To produce ASCII Art, you must include an ASCII Art paper definition
3746 file in your .ly, one of:
3747 @example
3748 \include "paper-as5.ly"
3749 \include "paper-as9.ly"
3750 @end example
3751
3752 Here's an example use for ASCII Art output (the example file
3753 @file{as-email.ly} is included in the LilyPond distribution), the staff
3754 symbol has been made invisible:
3755
3756 @example
3757 $ lilypond -fas as-email.ly
3758 GNU LilyPond 1.3.144
3759 Now processing: `as-email.ly'
3760 Parsing...
3761 Interpreting music...[3]
3762 Preprocessing elements... 
3763 Calculating column positions... [2]
3764 paper output to as-email.as...
3765
3766 $ as2text as-email.as 2>/dev/null
3767           |\
3768           |/     |##|##|      |  |  |  |  |
3769          /|      |  |  | |    |\ |\ |\ |\ |\ |
3770         / |_  3  |  |  | | 5  | )| )| )| )| )|
3771        | /| \ 8 *  *  *  | 8 *  *  *  *  *   |
3772         \_|_/            |                   |
3773         *_|
3774
3775                                                lily
3776 @end example
3777
3778
3779 @refbugs
3780
3781 The ASCII Art fonts are far from complete and not very well designed.
3782 It's easy to change the glyphs, though; if you think you can do better,
3783 have a look at @file{mf/*.af}.
3784
3785 Lots of resizable symbols such as slurs, ties and tuplets are missing.
3786
3787 The poor looks of most ASCII Art output and its limited general
3788 usefulness gives ASCII Art output a low priority; it may be
3789 dropped in future versions.
3790
3791 @c . {Sound}
3792 @node Sound
3793 @section Sound
3794 @cindex Sound
3795
3796 LilyPond can produce MIDI output.  The performance lacks lots of
3797 interesting effects, such as swing, articulation, slurring, etc., but it
3798 is good enough for proof-hearing the music you have entered.  Ties,
3799 dynamics and tempo changes are interpreted.
3800
3801 Dynamic marks, crescendi and decrescendi translate into MIDI volume
3802 levels.  Dynamic marks translate to a fixed fraction of the available
3803 MIDI volume range, crescendi and decrescendi make the the volume vary
3804 linearly between their two extremities.  The fractions be adjusted by
3805 overriding the @code{absolute-volume-alist} defined in
3806 @file{scm/midi.scm}.
3807
3808 For each type of musical instrument (that MIDI supports), a volume range
3809 can be defined.  This gives you basic equalizer control, which can
3810 enhance the quality of the MIDI output remarkably.  You can add
3811 instruments and ranges or change the default settings by overriding the
3812 @code{instrument-equalizer-alist} defined in @file{scm/midi.scm}.
3813
3814 Both loudness controls are combined to produce the final  MIDI volume. 
3815
3816
3817 @refbugs
3818
3819 It is currently not possible to use the percussion channel (generally
3820 channel 10 of a MIDI file).
3821
3822 @menu
3823 * MIDI block::                  
3824 * MIDI instrument names::       
3825 @end menu
3826
3827 @c .  {MIDI block}
3828 @node MIDI block
3829 @subsection MIDI block
3830 @cindex MIDI block
3831
3832
3833 The MIDI block is analogous to the paper block, but it is somewhat
3834 simpler.  The @code{\midi} block can contain:
3835 @cindex MIDI block
3836
3837 @itemize @bullet
3838   @item  a @code{\tempo} definition
3839   @item  context definitions
3840 @end itemize
3841
3842 Assignments in the @code{\midi} block are not allowed.
3843
3844
3845
3846 @cindex context definition
3847
3848 Context definitions follow precisely the same syntax as within the
3849 \paper block.  Translation modules for sound are called performers.
3850 The contexts for MIDI output are defined in @file{ly/performer.ly}.
3851
3852
3853 @node MIDI instrument names
3854 @subsection MIDI instrument names
3855
3856 @cindex instrument names
3857 @cindex @code{Staff.midiInstrument}
3858 @cindex @code{Staff.instrument}
3859
3860 The MIDI instrument name is set by the @code{Staff.midiInstrument}
3861 property or, if that property is not set, the @code{Staff.instrument}
3862 property.  The instrument name should be chosen from the list in
3863 @ref{MIDI instruments}.
3864
3865 @refbugs
3866
3867 If the selected string does not exactly match, then LilyPond uses the
3868 default (Grand Piano). It is not possible to select an instrument by
3869 number.
3870
3871
3872
3873
3874
3875
3876
3877
3878 @c FIXME: Note entry vs Music entry at top level menu is confusing.
3879 @c . {Music entry}
3880 @node Music entry
3881 @section Music entry
3882 @cindex Music entry
3883 @menu
3884 * Relative::                    
3885 * Bar check::                   
3886 * Point and click::             
3887 @end menu
3888
3889 When entering music with LilyPond, it is easy to introduce errors. This
3890 section deals with tricks and features that help you enter music, and
3891 find and correct mistakes.
3892
3893 @c .  {Relative}
3894 @node Relative
3895 @subsection Relative
3896 @cindex Relative
3897 @cindex relative octave specification
3898
3899 Octaves are specified by adding @code{'} and @code{,} to pitch names.
3900 When you copy existing music, it is easy to accidentally put a pitch in
3901 the wrong octave and hard to find such an error.  To prevent these
3902 errors, LilyPond features octave entry.
3903
3904 @cindex @code{\relative}
3905 @example
3906   \relative @var{startpitch} @var{musicexpr}
3907 @end example
3908
3909 The octave of notes that appear in @var{musicexpr} are calculated as
3910 follows: If no octave changing marks are used, the basic interval
3911 between this and the last note is always taken to be a fourth or less
3912 (This distance is determined without regarding alterations; a
3913 @code{fisis} following a @code{ceses} will be put above the
3914 @code{ceses})
3915
3916 The octave changing marks @code{'} and @code{,} can be added to raise or
3917 lower the pitch by an extra octave.  Upon entering relative mode, an
3918 absolute starting pitch must be specified that will act as the
3919 predecessor of the first note of @var{musicexpr}.
3920
3921 Entering music that changes octave frequently  is easy in relative mode.
3922 @lilypond[fragment,singleline,verbatim,center]
3923   \relative c'' {
3924     b c d c b c bes a 
3925   }
3926 @end lilypond
3927
3928 And octave changing marks are used for intervals greater than a fourth.
3929 @lilypond[fragment,verbatim,center]
3930   \relative c'' {
3931     c g c f, c' a, e'' }
3932 @end lilypond
3933
3934 If the preceding item is a chord, the first note of the chord is used
3935 to determine the first note of the next chord. However, other notes
3936 within the second chord are determined by looking at the immediately
3937 preceding note.
3938
3939 @lilypond[fragment,verbatim,center]
3940   \relative c' {
3941     c <c e g> 
3942     <c' e g>
3943     <c, e' g>
3944   }
3945 @end lilypond 
3946 @cindex @code{\notes}
3947
3948 The pitch after the @code{\relative} contains a note name.  To parse
3949 the pitch as a note name, you have to be in note mode, so there must
3950 be a surrounding @code{\notes} keyword (which is not
3951 shown here).
3952
3953 The relative conversion will not affect @code{\transpose},
3954 @code{\chords} or @code{\relative} sections in its argument.  If you
3955 want to use relative within transposed music, you must place an
3956 additional @code{\relative} inside the @code{\transpose}.
3957
3958
3959 @c .  {Bar check}
3960 @node Bar check
3961 @subsection Bar check
3962 @cindex Bar check
3963
3964 @cindex bar check
3965 @cindex @code{barCheckNoSynchronize}
3966 @cindex @code{|}
3967
3968
3969 Whenever a bar check is encountered during interpretation, a warning
3970 message is issued if it doesn't fall at a measure boundary.  This can
3971 help you find errors in the input.  Depending on the value of
3972 @code{barCheckNoSynchronize}, the beginning of the measure will be
3973 relocated, so this can also be used to shorten measures.
3974
3975 A bar check is entered using the bar symbol, @code{|}:
3976 @example
3977   \time 3/4 c2 e4 | g2.
3978 @end example
3979
3980
3981
3982 @cindex skipTypesetting
3983
3984 Failed bar checks are most often caused by entering incorrect
3985 durations. Incorrect durations often completely garble up the score,
3986 especially if it is polyphonic, so you should start correcting the score
3987 by scanning for failed bar checks and incorrect durations.  To speed up
3988 this process, you can use @code{skipTypesetting} (See @ref{Skipping
3989 corrected music})). Bar
3990
3991
3992 @c .  {Point and click}
3993 @node Point and click
3994 @subsection Point and click
3995
3996 Point and click lets you find notes in the input by clicking on them in
3997 the Xdvi window. This makes it very easy to find input that causes some
3998 error in the sheet music.
3999
4000 To use it, you need the following software
4001
4002 @unnumberedsubsec Installation
4003
4004 @itemize @bullet
4005 @item 
4006 @uref{ftp://ftp.math.berkeley.edu/pub/Software/TeX/xdvi.tar.gz,plain
4007 Xdvi} version 22.36 or newer.
4008
4009   Note that most @TeX{} distributions ship with xdvik, which is a
4010   different and less well maintained program. To find out which xdvi you
4011   are running, try @code{xdvi --version} or @code{xdvi.bin --version}.
4012 @item emacs
4013 @end itemize
4014
4015 Xdvi must be configured to find the TeX fonts and music
4016 fonts. Refer to the Xdvi documentation for more information.
4017
4018
4019 @unnumberedsubsec Using it
4020
4021 Add one of these lines to the top of your .ly file. The first one is for
4022 line location only. The second one is more convenient, but requires
4023 patching @code{emacsclient} and @code{server.el}.
4024
4025 @example
4026 #(set! point-and-click line-location)
4027 @end example
4028
4029 In the emacs startup file (usually @file{~/.emacs}), add the following
4030 @example
4031 (server-start)
4032 @end example
4033
4034 Make sure that  the environment  variable @code{XEDITOR} is set
4035 to
4036 @example
4037 emacsclient --no-wait +%l %f
4038 @end example
4039 The second one, that also specifies the column, only works if you have
4040 patched your emacsclient and server, and have compiled your @code{.ly}
4041 file using the @code{line-column-location} setting.
4042
4043 When viewing, control-mousebutton 1 will take you to the originating
4044 spot in the @file{.ly} file. Control-mousebutton 2 will show all
4045 clickable boxes.
4046
4047
4048 @unnumberedsubsec Column location
4049
4050 If you want emacs to jump to the exact spot (and not just the line) on a
4051 click, you must enable column positioning. To do so, you need to patch
4052 emacsclient. Apply @file{emacsclient.patch} (included with the source
4053 package) to @file{emacsclient.c} and @file{server.el} from the emacs
4054 source code. Recompile and stick the recompiled emacsclient into a bin
4055 directory, and put @file{server.el} into a elisp directory
4056 (e.g. @file{~/usr/share/emacs/}). Add the following to your @file{.emacs}
4057 init file, before invoking server-start.
4058
4059 @example
4060  (setq load-path (cons "~/usr/share/emacs" load-path))
4061 @end example
4062
4063 Set @code{XEDITOR} to @code{emacsclient --no-wait +%l:%c %f}
4064
4065 At the top of the @code{ly} file, replace the @code{set!} line with the
4066 following line
4067 @example
4068 #(set! point-and-click line-column-location)
4069 @end example
4070
4071 One final hint: if you correct large files with point-and-click, then
4072 start correcting at the end of the file. When you start at the top, and
4073 insert one line, all subsequent locations will be off by a line.
4074
4075
4076 @refbugs
4077
4078 When you convert the @TeX{} file to PostScript using @code{dvips}, it
4079 will complain about not finding @code{src:X:Y} files. Those complaints
4080 are harmless, and can be ignored.
4081
4082 @node Skipping corrected music
4083 @section Skipping corrected music
4084
4085 The property @code{Score.skipTypesetting} can be used to switch on and
4086 off typesetting completely during the interpretation phase. When
4087 typesetting is switched off, the music is processed much more quickly.
4088 You can use this to skip over the parts of a score that you have already
4089 checked for errors. 
4090
4091 @lilypond[fragment,singleline,verbatim]
4092 \relative c'' { c8 d
4093 \property Score.skipTypesetting = ##t
4094   e f g a g c, f e d
4095 \property Score.skipTypesetting = ##f
4096 c d b bes a g c2 } 
4097 @end lilypond
4098
4099
4100 @node Interpretation context
4101 @section Interpretation context
4102
4103 @menu
4104 * Creating contexts::           
4105 * Default contexts::            
4106 * Context properties::          
4107 * Engravers and performers::    
4108 * Changing context definitions::  
4109 * Defining new contexts::       
4110 @end menu
4111
4112
4113 Interpretation contexts are objects that only exist during a run of
4114 LilyPond.  During the interpretation phase of LilyPond (when it prints
4115 "interpreting music"), the music expression in a @code{\score} block is
4116 interpreted in time order. This is the same order that humans hear and
4117 play the music.
4118
4119 During this interpretation, the interpretation context holds the
4120 state for the current point within the music. It contains information
4121 like
4122
4123 @itemize @bullet
4124   @item What notes are playing at this point?
4125   @item What symbols will be printed at this point?
4126   @item What is the current key signature, time signature, point within
4127        the measure, etc.?
4128 @end itemize
4129
4130 Contexts are grouped hierarchically: A @internalsref{Voice} context is
4131 contained in a @internalsref{Staff} context (because a staff can contain
4132 multiple voices at any point), a @internalsref{Staff} context is contained in
4133 @internalsref{Score}, @internalsref{StaffGroup}, or @internalsref{ChoirStaff} context.
4134
4135 Contexts associated with sheet music output are called @emph{notation
4136 contexts}, those for sound output are called @emph{performance
4137 contexts}. The default definitions of the standard notation and
4138 performance contexts can be found in @file{ly/engraver.ly} and
4139 @file{ly/performer.ly}, respectively.
4140
4141
4142 @node Creating contexts
4143 @subsection Creating contexts
4144
4145 @cindex @code{\context}
4146 @cindex context selection
4147
4148 Contexts for a music expression can be selected manually, using the
4149 following music expression.
4150
4151 @example
4152   \context @var{contexttype} [= @var{contextname}] @var{musicexpr}
4153 @end example
4154
4155 This instructs lilypond to interpret @var{musicexpr} within the context
4156  of type @var{contexttype} and with name @var{contextname}.  If this
4157 context does not exist, it will be created.  
4158
4159 @lilypond[verbatim,singleline]
4160 \score {
4161   \notes \relative c'' {
4162     c4 <d4 \context Staff = "another" e4> f
4163   }
4164 }
4165
4166 @end lilypond
4167
4168 In this example, the @code{c} and @code{d} are printed on the
4169 default staff.  For the @code{e}, a context Staff called
4170 @code{another} is specified; since that does not exist, a new
4171 context is created.  Within @code{another}, a (default) Voice context
4172 is created for the @code{e4}.  When all music referring to a
4173 context is finished, the context is ended as well.  So after the
4174 third quarter, @code{another} is removed.
4175
4176
4177
4178 @node Default contexts
4179 @subsection Default contexts
4180
4181 Most music expressions don't need an explicit @code{\context}
4182 declaration: they inherit the 
4183 notation context from their parent. Each note is a music expression, and
4184 as you can see in the following example, only the sequential music
4185 enclosing the three notes has an explicit context. 
4186
4187 @lilypond[verbatim,singleline]
4188 \score { \notes \context Voice = goUp { c'4 d' e' } } 
4189 @end lilypond
4190
4191 There are some quirks that you must keep in mind when dealing with
4192 defaults:
4193
4194 First, every top level music is interpreted by the Score context, in other
4195 words, you may think of @code{\score} working like
4196 @example
4197         \score @{
4198                 \context Score @var{music}
4199         @}
4200 @end example
4201
4202 Second, contexts are created automatically to be able to interpret the
4203 music expressions. Consider the following example.
4204
4205 @lilypond[verbatim, singleline]
4206 \score { \context Score \notes { c'4 (  d' )e' } }
4207 @end lilypond
4208
4209 The sequential music is interpreted by the Score context initially
4210 (notice that the @code{\context} specification is redundant), but when a
4211 note is encountered, contexts are setup to accept that note. In this
4212 case, a Thread, Voice and Staff are created. The rest of the sequential
4213 music is also interpreted with the same Thread, Voice and Staff context,
4214 putting the notes on the same staff, in the same voice.
4215
4216 This is a convenient mechanism, but do not expect opening chords to work
4217 without @code{\context}. For every note, a separate staff is
4218 instantiated.
4219
4220 @cindex explicit context
4221 @cindex starting with chords
4222 @cindex chords, starting with
4223
4224 @lilypond[verbatim, singleline]
4225 \score { \notes <c'4 es'> } 
4226 @end lilypond
4227
4228 Of course, if the chord is preceded by a normal note in sequential
4229 music, the chord will be interpreted by the Thread of the preceding
4230 note:
4231 @lilypond[verbatim,singleline]
4232 \score { \notes { c'4 <c'4 es'> }  }
4233 @end lilypond
4234
4235
4236
4237 @node Context properties
4238 @subsection Context properties
4239
4240 Notation contexts have properties. These properties are from
4241 the @file{.ly} file using the following  expression:
4242 @cindex @code{\property}
4243 @example
4244   \property @var{contextname}.@var{propname} =  @var{value}
4245 @end example
4246
4247 Sets the @var{propname} property of the context @var{contextname} to the
4248 specified Scheme expression @var{value}.  All @var{propname} and
4249 @var{contextname} are strings, which are typically unquoted.
4250
4251 Properties that are set in one context are inherited by all of the
4252 contained contexts.  This means that a property valid for the
4253 @internalsref{Voice} context can be set in the @internalsref{Score} context (for
4254 example) and thus take effect in all @internalsref{Voice} contexts.
4255
4256 Properties can be unset using the following expression:
4257 @example
4258   \property @var{contextname}.@var{propname} \unset
4259 @end example
4260
4261 @cindex properties, unsetting
4262 @cindex @code{\unset} 
4263
4264 This removes the definition of @var{propname} in @var{contextname}. If
4265 @var{propname} was not defined in @var{contextname} (but was inherited
4266 from a higher context), then this has no effect.
4267
4268
4269 @refbugs
4270
4271 The syntax of @code{\unset} is asymmetric: @code{\property \unset} is not
4272 the inverse of @code{\property \set}.
4273
4274 @node Engravers and performers
4275 @subsection Engravers and performers
4276
4277 [TODO]
4278
4279 Basic building blocks of translation are called engravers; they are
4280 special C++ classes.
4281
4282
4283
4284 @c .  {Context definitions}
4285 @node Changing context definitions
4286 @subsection Changing context definitions
4287
4288 @cindex context definition
4289 @cindex translator definition
4290
4291 The most common way to define a context is by extending an existing
4292 context.  You can change an existing context from the paper block, by
4293 first initializing a translator with an existing context identifier:
4294 @example
4295 \paper @{
4296   \translator @{
4297     @var{context-identifier}
4298   @} @}
4299 @end example
4300 Then you can add and remove engravers using the following syntax:
4301 @example
4302  \remove @var{engravername}
4303  \consists @var{engravername}
4304 @end example
4305
4306
4307 Here @var{engravername} is a string, the name of an engraver in the
4308 system.
4309
4310
4311 @lilypond[verbatim,singleline]
4312 \score {  \notes {
4313         c'4 c'4 }
4314   \paper {
4315     \translator  { \StaffContext
4316         \remove Clef_engraver
4317        } } }
4318 @end lilypond
4319
4320 @cindex engraver
4321
4322 You can also set properties in a translator definition. The syntax is as
4323 follows:
4324 @example
4325  @var{propname} = @var{value}
4326  @var{propname} \set  @var{grob-propname} = @var{pvalue}
4327  @var{propname} \override @var{grob-propname} =  @var{pvalue}
4328  @var{propname} \revert @var{grob-propname} 
4329 @end example
4330 @var{propname} is a string, @var{grob-propname} a symbol, @var{value}
4331 and @code{pvalue} are Scheme expressions. These type of property
4332 assignments happen before interpretation starts, so a @code{\property}
4333 command will override any predefined settings.
4334
4335
4336  To simplify editing translators, all standard contexts have standard
4337 identifiers called @var{name}@code{Context}, e.g. @code{StaffContext},
4338 @code{VoiceContext}, see @file{ly/engraver.ly}.
4339
4340 @node Defining new contexts
4341 @subsection Defining new contexts
4342
4343 If you want to build a context from scratch, you must also supply the
4344 following extra information:
4345 @itemize @bullet
4346   @item  A name, specified by @code{\name @var{contextname}}.
4347
4348   @item A cooperation module. This is specified by   @code{\type
4349 @var{typename}}.
4350 @end itemize
4351
4352 This is an example:
4353 @example
4354 \translator @code{
4355   \type "Engraver_group_engraver"
4356   \name "SimpleStaff"
4357   \alias "Staff"
4358   \consists "Staff_symbol_engraver"
4359   \consists "Note_head_engraver"
4360   \consistsend "Axis_group_engraver"
4361 }@
4362 @end example
4363
4364 The argument of @code{\type} is the name for a special engraver that
4365 handles cooperation between simple engravers such as
4366 @code{Note_head_engraver} and @code{Staff_symbol_engraver}. Alternatives
4367 for this engraver are the following:
4368 @table @code
4369 @cindex @code{Engraver_group_engraver}
4370   @item @code{Engraver_group_engraver}  
4371     The standard cooperation engraver.
4372
4373 @cindex @code{Score_engraver}
4374
4375   @item @code{Score_engraver}  
4376     This is cooperation module that should be in the top level context,
4377 and only the top level context.
4378
4379 @cindex @code{Grace_engraver_group}
4380
4381   @item @code{Grace_engraver_group}  
4382     This is a special cooperation module (resembling
4383     @code{Score_engraver}) that is used to create an embedded
4384     `miniscore'.
4385 @end table 
4386
4387 Other modifiers   are
4388
4389 @itemize @bullet
4390   @item @code{\alias} @var{alternate-name}
4391     This specifies a different name. In the above example,
4392 @code{\property Staff.X = Y} will also work on @code{SimpleStaff}s
4393
4394   @item  @code{\consistsend} @var{engravername} 
4395     Analogous to @code{\consists}, but makes sure that
4396     @var{engravername} is always added to the end of the list of
4397     engravers.
4398
4399     Some engraver types need to be at the end of the list; this
4400     insures they stay there even if a user adds or removes engravers.
4401 End-users generally don't need this command.
4402     
4403   @item  @code{\accepts} @var{contextname}
4404     Add @var{contextname} to the list of contexts this context can
4405     contain in the context hierarchy. The first listed context is the
4406     context to create by default.
4407
4408   @item @code{\denies}. The opposite of @code{\accepts}. Added for
4409 completeness, but is never used in practice.
4410  
4411   
4412   @item  @code{\name} @var{contextname} 
4413     This sets the type name of the context, e.g. @internalsref{Staff},
4414     @internalsref{Voice}.  If the name is not specified, the translator won't do
4415     anything. 
4416 @end itemize
4417
4418 In the @code{\paper} block, it is also possible to define translator
4419 identifiers.  Like other block identifiers, the identifier can only
4420 be used as the very first item of a translator.  In order to define
4421 such an identifier outside of @code{\score}, you must do
4422
4423 @quotation
4424 @example 
4425 \paper @{
4426   foo = \translator @{ @dots{} @}
4427 @}
4428 \score @{
4429   \notes @{
4430     @dots{}
4431   @}
4432   \paper @{
4433     \translator @{ \foo @dots{} @}
4434   @}
4435 @} 
4436 @end example 
4437
4438 @end quotation
4439
4440
4441 @cindex paper types, engravers, and pre-defined translators
4442
4443       
4444
4445
4446
4447
4448 @c . {Syntactic details}
4449 @node Syntactic details
4450 @section Syntactic details
4451 @cindex Syntactic details
4452
4453 This section describes details that were too boring to be put elsewhere.
4454
4455 @menu
4456 * Top level::                   
4457 * Identifiers::                 
4458 * Music expressions::           
4459 * Manipulating music expressions::  
4460 * Assignments::                 
4461 * Lexical modes::               
4462 * Ambiguities::                 
4463 @end menu
4464
4465 @c .  {Top level}
4466 @node Top level
4467 @subsection Top level
4468 @cindex Top level
4469
4470 This section describes what you may enter at top level.
4471
4472
4473 @c .   {Score}
4474 @subsubsection Score
4475 @cindex Score
4476
4477 @cindex score definition
4478
4479 The output is generated combining a music expression with an output
4480 definition.  A score block has the following syntax:
4481
4482 @example
4483   \score @{ @var{musicexpr} @var{outputdefs} @}
4484 @end example
4485
4486 @var{outputdefs} are zero or more output definitions.  If none is
4487 supplied, the default @code{\paper} block will be added.
4488
4489
4490
4491 @c .   {Default output}
4492 @subsubsection Default output
4493
4494 Default values for the @code{\paper} and @code{\midi} block are set by
4495 entering such a block at the top level.
4496
4497 @c .   {Header}
4498 @subsubsection Header
4499 @cindex Header
4500 @cindex @code{\header}
4501
4502
4503 A header describes bibliographic information of the file's contents.  It
4504 can also appear in a @code{\score} block.  Tools like @code{ly2dvi} can
4505 use this information for generating titles.  Key values that are used by
4506 @code{ly2dvi} are: title, subtitle, composer, opus, poet, instrument,
4507 meter, arranger, piece and tagline.
4508
4509 @cindex @code{ly2dvi}
4510
4511 The syntax is
4512 @example
4513   \header @{ @var{key1} = @var{val1}
4514              @var{key2} = @var{val2} @dots{} @}
4515 @end example
4516
4517 It is customary to put the @code{\header} at the top of the file.
4518
4519 @subsubsection Default output
4520
4521 A @code{\midi} or @code{\paper} block at top level sets the default
4522 paper block for all scores that lack an explicit paper block.
4523
4524 @c .  {Identifiers}
4525 @node Identifiers
4526 @subsection Identifiers
4527 @cindex  Identifiers
4528
4529 @ignore
4530  What has this section got to do with identifiers?
4531  It seems more appropriate in the introduction to Chapter 4,
4532  "Internals".
4533
4534    /MB
4535 @end ignore
4536
4537 All of the information in a LilyPond input file, is internally
4538 represented as a Scheme value. In addition to normal Scheme data types
4539 (such as pair, number, boolean, etc.), LilyPond has a number of
4540 specialized data types,
4541
4542 @itemize @bullet
4543 @item Input
4544 @item c++-function
4545 @item Music
4546 @item Identifier
4547 @item Translator_def
4548 @item Duration
4549 @item Pitch
4550 @item Score
4551 @item Music_output_def
4552 @item Moment (rational number)
4553 @end itemize
4554
4555 LilyPond also includes some transient object types. Objects of these
4556 types are built during a LilyPond run, and do not `exist' per se within
4557 your input file. These objects are created as a result of your input
4558 file, so you can include commands in the input to manipulate them,
4559 during a lilypond run.
4560
4561 @itemize @bullet
4562 @item Grob: short for Graphical object. See @ref{Grobs}. 
4563 @item Molecule: device-independent page output object,
4564 including dimensions.  Produced by some Grob functions
4565 See @ref{Molecules}
4566 @item Translator: object that produces audio objects or Grobs. This is
4567 not yet user accessible.
4568 @item Font_metric: object representing a font. (See @ref{Font metrics})
4569
4570 @end itemize
4571
4572
4573 @node Music expressions
4574 @subsection Music expressions
4575
4576 @cindex music expressions
4577
4578 Music in LilyPond is entered as a music expression.  Notes, rests, lyric
4579 syllables are music expressions, and you can combine music expressions
4580 to form new ones, for example by enclosing a list of expressions in
4581 @code{\sequential @{ @}} or @code{< >}.  In the following example, a
4582 compound expression is formed out of the quarter note @code{c} and a
4583 quarter note @code{d}:
4584
4585 @example 
4586 \sequential @{ c4 d4 @} 
4587 @end example 
4588
4589 @cindex Sequential music
4590 @cindex @code{\sequential}
4591 @cindex sequential music
4592 @cindex @code{<}
4593 @cindex @code{>}
4594 @cindex Simultaneous music
4595 @cindex @code{\simultaneous}
4596
4597 The two basic compound  music expressions are simultaneous  and
4598 sequential music.
4599
4600 @example
4601   \sequential @code{@{} @var{musicexprlist} @code{@}}
4602   \simultaneous @code{@{} @var{musicexprlist} @code{@}}
4603 @end example
4604 For both, there is a shorthand:
4605 @example
4606   @code{@{} @var{musicexprlist} @code{@}}
4607 @end example
4608 for sequential and
4609 @example
4610   @code{<} @var{musicexprlist} @code{>}
4611 @end example
4612 for simultaneous music.
4613 In principle, the way in which you nest sequential and simultaneous to
4614 produce music is not relevant.  In the following example, three chords
4615 are expressed in two different ways:
4616
4617 @lilypond[fragment,verbatim,center]
4618   \notes \context Voice {
4619     <a c'> <b  d' > <c' e'>
4620     < { a b  c' } { c' d' e' } >
4621   }
4622 @end lilypond
4623
4624
4625 Other compound music expressions include
4626 @example
4627  \repeat @var{expr}
4628  \transpose @var{pitch} @var{expr}
4629  \apply @var{func} @var{expr}
4630  \context @var{type} = @var{id} @var{expr}
4631  \times @var{fraction} @var{expr}
4632 @end example
4633
4634
4635 @c . {Manipulating music expressions}
4636 @node Manipulating music expressions
4637 @subsection  Manipulating music expressions
4638
4639 The @code{\apply} mechanism gives you access to the internal
4640 representation of music. You can write Scheme-functions that operate
4641 directly on it. The syntax is 
4642 @example
4643         \apply #@var{func} @var{music}
4644 @end example
4645 This means that @var{func} is applied to @var{music}.  The function
4646 @var{func} should return a music expression.
4647
4648 This example replaces the text string of a script. It also shows a dump
4649 of the music it processes, which is useful if you want to know more
4650 about how music is stored.
4651
4652 @lilypond[verbatim,singleline]
4653 #(define (testfunc x)
4654         (if (equal? (ly-get-mus-property x 'text) "foo")
4655                 (ly-set-mus-property x 'text "bar"))
4656         ;; recurse
4657         (ly-set-mus-property x 'elements
4658           (map testfunc (ly-get-mus-property x 'elements)))
4659         (display x)
4660         x        
4661 )
4662 \score { \notes
4663   \apply #testfunc { c'4_"foo" }
4664
4665 @end lilypond
4666
4667 For more information on what is possible, see the automatically
4668 generated documentation.
4669
4670
4671 Directly accessing internal representations is dangerous: the
4672 implementation is subject to changes, so you should avoid this feature
4673 if possible.
4674
4675 A final example is a function that reverses a piece of music in time:
4676
4677 @lilypond[verbatim,singleline]
4678 #(define (reverse-music music)
4679   (let* ((elements (ly-get-mus-property music 'elements))
4680          (reversed (reverse elements))
4681          (span-dir (ly-get-mus-property music 'span-direction)))
4682     (ly-set-mus-property music 'elements reversed)
4683     (if (dir? span-dir)
4684         (ly-set-mus-property music 'span-direction (- span-dir)))
4685     (map reverse-music reversed)
4686     music))
4687
4688 music = \notes { c'4 d'4( e'4 f'4 }
4689
4690 \score { \context Voice {
4691     \music
4692     \apply #reverse-music \music
4693   }
4694 }
4695 @end lilypond
4696
4697 More examples are given in the distributed example files in
4698 @code{input/test/}.
4699
4700 @c .   {Span requests}
4701 @menu
4702 * Span requests::               
4703 @end menu
4704
4705 @node Span requests
4706 @subsubsection Span requests
4707 @cindex Span requests
4708
4709 Notational constructs that start and end on different notes can be
4710 entered using span requests. The syntax is as follows:
4711
4712
4713 @example
4714   \spanrequest @var{startstop} @var{type}
4715 @end example
4716
4717
4718 @cindex @code{\start}
4719 @cindex @code{\stop}
4720
4721 This defines a spanning request. The @var{startstop} parameter is either
4722 -1 (@code{\start}) or 1 (@code{\stop}) and @var{type} is a string that
4723 describes what should be started.  Much of the syntactic sugar is a
4724 shorthand for @code{\spanrequest}, for example,
4725
4726 @lilypond[fragment,verbatim,center]
4727   c'4-\spanrequest \start "slur"
4728   c'4-\spanrequest \stop "slur"
4729 @end lilypond
4730
4731 Among the supported types are @code{crescendo}, @code{decrescendo},
4732 @code{beam}, @code{slur}. This is an internal command.  Users are
4733 encouraged to use the shorthands which are defined in the initialization
4734 file @file{spanners.ly}.
4735
4736
4737 @c .   {Assignments}
4738 @node Assignments
4739 @subsection Assignments
4740 @cindex Assignments
4741
4742 Identifiers allow objects to be assigned to names during the parse
4743 stage.  To assign an identifier, you use @var{name}@code{=}@var{value}
4744 and to refer to an identifier, you precede its name with a backslash:
4745 `@code{\}@var{name}'.  @var{value} is any valid Scheme value or any of
4746 the input-types listed above.  Identifier assignments can appear at top
4747 level in the LilyPond file, but also in @code{\paper} blocks.
4748
4749 An identifier can be created with any string for its name, but you will
4750 only be able to refer to identifiers whose names begin with a letter,
4751 being entirely alphabetical.  It is impossible to refer to an identifier
4752 whose name is the same as the name of a keyword.
4753
4754 The right hand side of an identifier assignment is parsed completely
4755 before the assignment is done, so it is allowed to redefine an
4756 identifier in terms of its old value, e.g.
4757
4758 @example
4759 foo = \foo * 2.0
4760 @end example
4761
4762 When an identifier is referenced, the information it points to is
4763 copied.  For this reason, an identifier reference must always be the
4764 first item in a block.
4765 @example
4766 \paper  @{
4767   foo = 1.0
4768   \paperIdent % wrong and invalid
4769 @}
4770
4771 \paper @{
4772   \paperIdent % correct
4773   foo = 1.0 @}
4774 @end example
4775
4776
4777 @c .  {Lexical modes}
4778 @node Lexical modes
4779 @subsection Lexical modes
4780 @cindex Lexical modes
4781 @cindex input mode
4782 @cindex mode, input 
4783 @cindex @code{\notes}
4784 @cindex @code{\chords}
4785 @cindex @code{\lyrics}
4786
4787 To simplify entering notes, lyrics, and chords, LilyPond has three
4788 special input modes in addition to the default mode: note, lyrics and
4789 chords mode.  These input modes change the way that normal, unquoted
4790 words are interpreted: for example, the word @code{cis} may be
4791 interpreted as a C-sharp, as a lyric syllable `cis' or as a C-sharp
4792 major triad respectively.
4793
4794 A mode switch is entered as a compound music expression
4795 @example
4796 @code{\notes} @var{musicexpr}
4797 @code{\chords} @var{musicexpr}
4798 @code{\lyrics} @var{musicexpr}.
4799 @end example
4800
4801 In each of these cases, these expressions do not add anything to the
4802 meaning of their arguments.  They just instruct the parser in what mode
4803 to parse their arguments.  The modes are treated in more detail in
4804 @ref{Lyrics} and @ref{Chords}.
4805
4806 Different input modes may be nested.
4807
4808 @c .  {Ambiguities}
4809 @node Ambiguities
4810 @subsection Ambiguities
4811 @cindex ambiguities
4812 @cindex grammar
4813
4814
4815 The grammar contains a number of ambiguities. We hope to resolve them at
4816 some time.
4817
4818 @itemize @bullet
4819   @item  The assignment
4820
4821 @example 
4822 foo = bar 
4823 @end example 
4824          is interpreted as the string identifier assignment. However,
4825 it can also  be interpreted as making a string identifier @code{\foo}
4826        containing @code{"bar"}, or a music identifier @code{\foo}
4827        containing the syllable `bar'.  
4828
4829   @item  If you do a nested repeat like
4830
4831        @quotation
4832
4833 @example 
4834 \repeat @dots{}
4835 \repeat @dots{}
4836 \alternative 
4837 @end example 
4838
4839        @end quotation
4840
4841        then it is ambiguous to which @code{\repeat} the
4842        @code{\alternative} belongs.  This is the classic if-then-else
4843        dilemma.  It may be solved by using braces.
4844
4845   @item The parser is not sophisticated enough to distinguish at the
4846 right time between
4847         @code{c4*2 / 3 } and @code{c4*2 / g} (in chord mode).
4848
4849 [checkme]
4850
4851 @end itemize
4852
4853
4854 @c .  {Lexical details}
4855 @node Lexical details
4856 @section Lexical details
4857
4858 Even more boring details, now on lexical side of the input parser.
4859
4860 @menu
4861 * Comments::                    
4862 * Direct Scheme::               
4863 * Keywords::                    
4864 * Integers::                    
4865 * Reals::                       
4866 * Strings::                     
4867 * Main input::                  
4868 * File inclusion::              
4869 * Version information::         
4870 @end menu
4871
4872
4873 @node Comments
4874 @subsection Comments
4875
4876 @cindex comments
4877 @cindex block comment
4878 @cindex line comment
4879
4880 @cindex @code{%}
4881
4882 A one line comment is introduced by a @code{%} character. 
4883 Block comments are started by @code{%@{} and ended by @code{%@}}. 
4884 They cannot be nested.
4885
4886 @node Direct Scheme
4887 @subsection Direct Scheme
4888
4889 @cindex Scheme
4890 @cindex GUILE
4891 @cindex Scheme, in-line code
4892
4893
4894 LilyPond contains a Scheme interpreter (the GUILE library) for
4895 internal use. In some places, Scheme expressions also form valid syntax:
4896 wherever it is allowed,
4897 @example
4898   #@var{scheme}
4899 @end example
4900 evaluates the specified Scheme code.  Example:
4901 @example
4902   \property Staff.TestObject \override #'foobar =  #(+ 1 2)
4903 @end example
4904 @code{\override} expects two Scheme expressions, so there are two Scheme
4905 expressions. The first one is a symbol (@code{foobar}), the second one
4906 an integer (namely, 3).
4907
4908 In-line scheme may be used at the top level. In this case the result is
4909 discarded.
4910
4911 Scheme is a full-blown programming language, and a full discussion is
4912 outside the scope of this document. Interested readers are referred to
4913 the website @uref{http://www.schemers.org/} for more information on
4914 Scheme.
4915
4916
4917 @node Keywords
4918 @subsection Keywords
4919 @cindex Keywords
4920
4921
4922 Keywords start with a backslash, followed by a number of lower case
4923 alphabetic characters.  These are all the keywords.
4924
4925 @example
4926 apply arpeggio autochange spanrequest commandspanrequest
4927 simultaneous sequential accepts alternative bar breathe
4928 char chordmodifiers chords clef cm consists consistsend
4929 context denies duration dynamicscript elementdescriptions
4930 font grace header in lyrics key mark pitch
4931 time times midi mm name pitchnames notes outputproperty
4932 override set revert partial paper penalty property pt
4933 relative remove repeat addlyrics partcombine score
4934 script stylesheet skip textscript tempo translator
4935 transpose type
4936 @end example
4937
4938 @node Integers
4939 @subsection Integers
4940
4941 @cindex integers
4942 @cindex @code{+}
4943 @cindex @code{-}
4944 @cindex @code{*}
4945 @cindex @code{/}
4946
4947 Formed from an optional minus sign followed by digits.  Arithmetic
4948 operations cannot be done with integers, and integers cannot be mixed
4949 with reals.
4950
4951 @node Reals
4952 @subsection Reals
4953 @cindex real numbers
4954
4955
4956
4957
4958
4959 Formed from an optional minus sign and a sequence of digits followed
4960 by a @emph{required} decimal point and an optional exponent such as
4961 @code{-1.2e3}.  Reals can be built up using the usual operations:
4962 `@code{+}', `@code{-}', `@code{*}', and
4963 `@code{/}', with parentheses for grouping.
4964
4965 @cindex @code{\mm},
4966 @cindex @code{\in}
4967 @cindex @code{\cm}
4968 @cindex @code{\pt}
4969 @cindex dimensions
4970
4971 A real constant can be followed by one of the dimension keywords:
4972 @code{\mm} @code{\pt}, @code{\in}, or @code{\cm}, for millimeters,
4973 points, inches and centimeters, respectively.  This converts the number
4974 a number that is the internal representation of that dimension.
4975
4976
4977 @node Strings
4978 @subsection Strings
4979 @cindex string
4980 @cindex concatenate
4981
4982 Begins and ends with the @code{"} character.  To include a @code{"}
4983 character in a string write @code{\"}.  Various other backslash
4984 sequences have special interpretations as in the C language.  A string
4985 that contains no spaces can be written without the quotes.  Strings can
4986 be concatenated with the @code{+} operator.
4987
4988
4989 @node Main input
4990 @subsection Main input
4991 @cindex Main input
4992
4993 @cindex @code{\maininput}
4994
4995 The @code{\maininput} command is used in init files to signal that the
4996 user file must be read. This command cannot be used in a user file.
4997
4998 @node File inclusion
4999 @subsection File inclusion
5000 @cindex @code{\include}
5001 @example
5002   \include @var{filename}
5003 @end example
5004
5005 Include @var{filename}.  The argument @var{filename} may be a quoted string (an
5006 unquoted string will not work here!) or a string identifier.  The full
5007 filename including the @file{.ly} extension must be given,
5008
5009
5010 @node Version information
5011 @subsection Version information 
5012 @cindex @code{\version}
5013 @example
5014   \version @var{string} 
5015 @end example
5016
5017 Specify the version of LilyPond that a file was written for.  The
5018 argument is a version string in quotes, for example @code{"1.2.0"}. 
5019 This is used to detect invalid input, and to aid
5020 @code{convert-ly}  a tool that automatically upgrades input files. See
5021 See @ref{convert-ly} for more information on @code{convert-ly}.
5022
5023 @cindex convert-ly
5024
5025
5026
5027
5028
5029
5030 @c .{Local emacs vars}
5031 @c Local variables:
5032 @c mode: texinfo
5033 @c minor-mode: font-lock
5034 @c minor-mode: outline
5035 @c outline-layout: (-1 : 0)
5036 @c outline-use-mode-specific-leader: "@c \."
5037 @c outline-primary-bullet: "{"
5038 @c outline-stylish-prefixes: nil
5039 @c outline-override-protect: t
5040 @c End:
5041