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