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