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