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