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