]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/refman.itely
patch::: 1.3.134.jcn1
[lilypond.git] / Documentation / user / refman.itely
1
2 @c Note:
3 @c
4 @c A menu is needed before every deeper *section nesting of @nodes
5 @c Run M-x texinfo-all-menus-update
6 @c to automagically fill in these menus
7 @c before saving changes
8
9
10 @ignore
11  TODO:
12
13    fix all FIXMEs
14
15    Rhythm staff (clef, x-notehead)
16
17 @end ignore
18
19
20 @c .{Reference Manual}
21
22 @node Reference Manual
23 @chapter Reference Manual
24
25 This document describes GNU LilyPond and its input format. This document
26 has been revised for LilyPond 1.3.131
27
28
29
30 @menu
31 * Overview::                    
32 * Note entry::                  
33 * Music notation::              
34 * Polyphony::                   
35 * Spanners::                    
36 * Ornaments::                   
37 * Repeats::                     
38 * Piano music::                 
39 * Lyrics::                      
40 * Chords::                      
41 * Writing parts::               
42 * Custodes::                    
43 * Tuning output::               
44 * Page layout::                 
45 * Sound::                       
46 * Music entry::                 
47 * Engravers::                   
48 * Syntactic details::           
49 @end menu
50
51 @c . {Overview}
52 @node Overview
53 @section Overview
54
55
56 The purpose of LilyPond is explained informally by the term `music
57 typesetter'.  This is not a fully correct name: not only does the
58 program print musical symbols, it also makes esthetic decisions.  All
59 symbols and their placement is @emph{generated} from a high-level
60 musical description.  In other words, LilyPond would be best described
61 by `music compiler' or `music to notation compiler'.
62
63 Internally, LilyPond is written in a mixture of Scheme and C++. Most of
64 the algorithms and low-level routines are written in C++, but these low
65 level components are glued together using Scheme data
66 structures. LilyPond is linked to GUILE, GNU's Scheme library for
67 extension.
68
69 When lilypond is run to typeset sheet music, the following happens:
70
71 @itemize @bullet
72 @item GUILE Initialization: various scheme files are read
73 @item parsing: first standard .ly initialization  files are read, and
74 then the user @file{.ly} file is read.
75 @item interpretation: the music in the file is processed "in playing
76 order", i.e. in the same order as your eyes scan sheet music, and in the
77 same order that you hear the notes play.
78
79 @item typesetting:
80 in this step, the results of the interpretation, a typesetting
81 specification, is solved.
82
83 @item the visible results ("virtual ink") is written to the output file.
84 @end itemize
85
86 These stages, involve data of a specific type: during parsing,
87 @strong{Music} objects are created.  During the interpretation,
88 @strong{context} is constructed, and with this context af network of
89 @strong{graphical objects} (``grobs'') is created. The grobs contain
90 unknown variables, and the network forms a set of equations. After
91 solving the equations and filling in these variables, the printed output
92 (in the form of @strong{molecules}) is written to an output file.
93
94 These threemanship of tasks (parsing, translating, typesetting) and
95 data-structures (music, context, graphical objects) permeates the entire
96 design of the program.  This manual is ordered in terms of user
97 tasks. With each concept will be explained to which of the three parts
98 it belongs.
99
100 LilyPond input can be classified into three types:
101 @itemize @bullet
102   @item musical expressions: a musical expression is some combination of
103 rest, notes, lyrics
104   @item output definitions: recipes for translating those musical
105 expressions into performances (MIDI) or graphics (eg. PostScript).
106
107   @item declarations: by declaring and naming musical expressions, you
108 can enter and edit them in manageable chunks.
109 @end itemize
110
111
112
113
114 @c . {Note entry}
115 @node Note entry
116 @section Note entry
117 @cindex Note entry
118
119 @menu
120 * Notes mode::                  
121 * Pitches::                     
122 * Defining pitch names::        
123 * Durations::                   
124 * Notes::                       
125 * Note head tweaks::            
126 * Rests::                       
127 * Skip::                        
128 @end menu
129
130 @c .  {Notes mode}
131 @node Notes mode
132 @subsection Notes mode
133
134 @cindex note mode
135
136 @cindex @code{\notes}
137 Note mode is introduced by the keyword
138 @code{\notes}.  In Note mode, words can only
139 contain alphabetic characters.  If @code{word} is encountered,
140 LilyPond first checks for a notename of @code{word}.  If no
141 notename is found, then @code{word} is treated as a string.
142
143 Since combinations of numbers and dots are used for indicating
144 durations, it is not possible to enter real numbers in this mode.
145
146 @cindex Notes mode
147
148 @c .  {Pitches}
149 @node Pitches
150 @subsection Pitches
151
152 @cindex Pitch names
153 @cindex Note specification
154 @cindex pitches
155 @cindex entering notes
156
157 The verbose syntax for pitch specification is
158
159 @cindex @code{\pitch}
160 @example
161   \pitch @var{scmpitch}
162 @end example
163
164 @var{scmpitch} is a pitch scheme object, see @ref{Pitch data type}.
165
166 In Note and Chord mode, pitches may be designated by names.  The default
167 names are the Dutch note names.  The notes are specified by the letters
168 @code{c} through @code{b}, where @code{c} is an octave below middle C
169 and the letters span the octave above that C.  In Dutch,
170 @cindex note names, Dutch
171 a sharp is formed by adding @code{-is} to the end of a pitch name.  A
172 flat is formed by adding @code{-es}. Double sharps and double flats are
173 obtained by adding @code{-isis} or @code{-eses}.  @code{aes} and
174 @code{ees} are contracted to @code{as} and @code{es} in Dutch, but both
175 forms will be accepted.
176
177 LilyPond has predefined sets of notenames for various other languages.
178 To use them, simply include the language specific init file.  For
179 example: @code{\include "english.ly"}.  The available language files and
180 the names they define are:
181
182 @example 
183                         Note Names               sharp       flat
184 nederlands.ly  c   d   e   f   g   a   bes b   -is         -es
185 english.ly     c   d   e   f   g   a   bf  b   -s/-sharp   -f/-flat
186 deutsch.ly     c   d   e   f   g   a   b   h   -is         -es
187 norsk.ly       c   d   e   f   g   a   b   h   -iss/-is    -ess/-es
188 svenska.ly     c   d   e   f   g   a   b   h   -iss        -ess
189 italiano.ly    do  re  mi  fa  sol la  sib si  -d          -b
190 catalan.ly     do  re  mi  fa  sol la  sib si  -d/-s       -b 
191 @end example 
192
193 @cindex @code{'}
194 @cindex @code{,}
195
196
197
198
199 The optional octave specification takes the form of a series of
200 single quote (`@code{'}') characters or a series of comma
201 (`@code{,}') characters.  Each @code{'} raises the pitch by one
202 octave; each @code{,} lowers the pitch by an octave.
203
204 @lilypond[fragment,verbatim,center]
205   c' d' e' f' g' a' b' c''
206 @end lilypond
207
208 @lilypond[fragment,verbatim,center]
209   cis' dis' eis' fis' gis' ais' bis'
210 @end lilypond
211
212 @lilypond[fragment,verbatim,center]
213   ces' des' es' fes' ges' as' bes'
214 @end lilypond
215
216 @lilypond[fragment,verbatim,center]
217   cisis' eisis' gisis' aisis' beses'
218 @end lilypond
219
220 @lilypond[fragment,verbatim,center]
221   ceses' eses' geses' ases' beses'
222 @end lilypond
223
224
225 @c .  {Defining pitch names}
226 @node Defining pitch names
227 @subsection Defining pitch names
228
229 @cindex defining pitch names
230 @cindex pitch names, defining 
231
232 Note names and chord modifiers can be customised for nationalities.  The
233 syntax is as follows.
234
235 @cindex @code{\pitchnames}
236 @cindex @code{\chordmodifiers}
237 @example
238    \pitchnames @var{scheme-alist}
239    \chordmodifiers @var{scheme-alist}
240 @end example
241
242 See @file{ly/nederlands.ly} and @file{ly/chord-modifiers.ly} for
243 specific examples how to do this.  Some national note names have been
244 provided, among others: Norwegian, Swedish, German, Italian, Catalan,
245 French, Dutch and English.
246
247
248 @c .  {Durations}
249 @node Durations
250 @subsection Durations
251
252
253 @cindex duration
254 @cindex @code{\duration}
255
256 The syntax for an verbose duration specification is
257 @example
258  \duration @var{scmduration}
259 @end example
260
261 In Note, Chord, and Lyrics mode, durations may be designated by numbers
262 and dots: durations are entered as their reciprocal values.  For notes
263 longer than a whole note, use identifiers.
264
265 @quotation
266
267 @example 
268 c'\longa c'\breve  
269 c'1 c'2 c'4 c'8 c'16 c'32 c'64 c'64 
270 r\longa r\breve  
271 r1 r2 r4 r8 r16 r32 r64 r64 
272 @end example 
273
274
275 @lilypond[]
276 \score {
277   \notes \relative c'' {
278     a\longa a\breve  \autoBeamOff
279     a1 a2 a4 a8 a16 a32 a64 a64 
280     r\longa r\breve  
281     r1 r2 r4 r8 r16 r32 r64 r64 
282   }
283   \paper {
284     \translator {
285       \StaffContext
286         \remove "Clef_engraver";
287         \remove "Staff_symbol_engraver";
288         \remove "Time_signature_engraver";
289         \consists "Pitch_squash_engraver";
290     }
291   }
292 }
293 @end lilypond
294 @end quotation
295
296 As you can see, the longa is not printed. To get a longa note head, you
297 have to use a mensural note heads. This is done accomplished by setting
298 the @code{style} property of the NoteHead grob to @code{mensural}.
299
300 If the duration is omitted then it is set equal to the previous duration
301 entered.  At the start of parsing there is no previous duration, so then
302 a quarter note is assumed.  The duration can be followed by a dot
303 (`@code{.}')  to obtain dotted note lengths.
304 @cindex @code{.}
305
306 @lilypond[fragment,verbatim,center]
307   a'4. b'4. c'2..
308 @end lilypond
309 @cindex @code{r}
310 @cindex @code{s}
311
312 You can alter the length of duration by writing `@code{*}@var{fraction}'
313 after it.  This will not affect the appearance of note heads or rests.
314
315 @c . {Notes}
316 @node Notes
317 @subsection Notes
318
319 A note specification has the form
320
321 @example
322   @var{pitch}[@var{octavespec}][!][?][@var{duration}]
323 @end example
324
325
326 LilyPond will determine what accidentals to typeset depending on the key
327 and context, so alteration refer to what note is heard, not to whether
328 accidentals are printed.  A reminder accidental
329 @cindex reminder accidental
330 @cindex @code{?}
331 can be forced by adding an exclamation mark @code{!} after the pitch.
332 A cautionary accidental,
333 @cindex cautionary accidental
334
335 i.e., an accidental within parentheses can be obtained by adding the
336 question mark `@code{?}' after the pitch.
337
338 @lilypond[fragment,verbatim,center]
339   cis' d' e' cis'  c'? d' e' c'!
340 @end lilypond
341
342
343 @node Note head tweaks
344 @subsection Note head tweaks
345
346 [TODO]
347
348 The note head style can be adjusted with  the @code{style} property of
349 @code{NoteHead}.
350
351 @lilypond[fragment,singleline,relative,verbatim]
352 c'4
353 \property Voice.NoteHead \set #'style = #'cross
354 c'4
355 @end lilypond
356
357 [discuss more options]
358
359 @cindex easy notation
360 @cindex Hal Leonard
361
362 A entirely different type of note head is the "easyplay" note head: a
363 note head that includes a note name.  It is used in some publications by
364 the Hal-Leonard Corporation (a music publishing company).
365
366 @lilypond[singleline,verbatim]
367 \score {
368         \notes { c'2 e'4 f' | g'1 }
369         \paper { \translator { \EasyNotation } } 
370 }
371 @end lilypond
372
373 Note that @code{EasyNotation} overrides a @code{Score} context.  You
374 probably will want to print it with magnification to make it better
375 readable.
376
377 Limitations: The staff-lines show through the letters.
378
379
380 @c .  {Rests}
381 @node  Rests
382 @subsection Rests
383 @cindex Rests
384
385 Rests are entered like notes, with note name `@code{r}'.
386 There is also a note name
387 `@code{s}', which produces a space of the specified
388 duration.
389
390
391 @c .  {Skip}
392 @node Skip
393 @subsection Skip
394 @cindex Skip
395
396
397 @example
398   \skip @var{duration} @code{;}
399 @end example
400 @cindex @code{\skip}
401
402 Skips the amount of time specified by @var{duration}.  If no other
403 music is played, a gap will be left for the skipped time with no
404 notes printed.  It works in Note Mode or Lyrics Mode.  In Note mode,
405 this has the same effect as the spacer rest.
406
407
408
409 @c . {Music notation}
410 @node Music notation
411 @section Music notation
412 @cindex Music notation
413 @menu
414 * Key::                         
415 * Breath marks::                
416 * Time signature::              
417 @end menu
418
419 @c .  {Key}
420 @node Key
421 @subsection Key
422 @cindex Key
423
424 @cindex @code{\key}
425
426 @example
427   @code{\key} @var{pitch} @var{type} @code{;}
428 @end example
429 @cindex @code{\minor}
430 @cindex @code{\major}
431 @cindex @code{\minor}
432 @cindex @code{\ionian}
433 @cindex @code{\locrian}
434 @cindex @code{\aeolian}
435 @cindex @code{\mixolydian}
436 @cindex @code{\lydian}
437 @cindex @code{\phrygian}
438 @cindex @code{\dorian}
439
440 Change the key signature.  @var{type} should be @code{\major} or
441 @code{\minor} to get @var{pitch}-major or @var{pitch}-minor,
442 respectively.  The second argument is optional; the default is major
443 keys.  The @var{\context} argument can also be given as an integer,
444 which tells the number of semitones that should be added to the pitch
445 given in the subsequent @code{\key} commands to get the corresponding
446 major key, e.g., @code{\minor} is defined as 3.  The standard mode names
447 @code{\ionian}, @code{\locrian}, @code{\aeolian}, @code{\mixolydian},
448 @code{\lydian}, @code{\phrygian}, and @code{\dorian} are also defined.
449
450 This command sets @code{Staff.keySignature}.
451
452
453
454 @cindex @code{keySignature}
455
456 @c .  {Clef}
457 @subsection Clef changes
458 @cindex @code{\clef}
459 @example
460   \clef @var{clefname} @code{;}
461 @end example
462
463 Short-cut for
464
465 @example
466   \property Staff.clefGlyph = @var{symbol associated with clefname} 
467   \property Staff.clefPosition = @var{clef Y-position for clefname}
468   \property Staff.clefOctavation = @var{extra pitch of clefname}
469 @end example
470
471 Supported clef-names include 
472
473 @itemize @bullet
474 @item treble, violin, G, G2: G clef on 2nd line
475 @item french: G clef on 1st line
476 @item soprano: C clef on 1st line
477 @item mezzosoprano: C clef on 2nd line
478 @item alto: C clef on 3rd line
479 @item tenor: C clef on 4th line
480 @item baritone: C clef on 5th line
481 @item varbaritone: F clef on 3rd line
482 @item bass, F: F clef on 4th line
483 @item subbass: F clef on 5th line
484 @item percussion: percussion clef
485 @end itemize
486
487 Supported associated symbols (for Staff.clefGlyph) are:
488
489 @itemize @bullet
490 @item clefs-C: modern style C clef
491 @item clefs-F: modern style F clef
492 @item clefs-G: modern style G clef
493 @item clefs-vaticana_do: Editio Vaticana style do clef
494 @item clefs-vaticana_fa: Editio Vaticana style fa clef
495 @item clefs-medicaea_do: Editio Medicaea style do clef
496 @item clefs-medicaea_fa: Editio Medicaea style fa clef
497 @item clefs-mensural1_c: modern style mensural C clef
498 @item clefs-mensural2_c: historic style small mensural C clef
499 @item clefs-mensural3_c: historic style big mensural C clef
500 @item clefs-mensural1_f: historic style traditional mensural F clef
501 @item clefs-mensural2_f: historic style new mensural F clef
502 @item clefs-mensural_g: historic style mensural G clef
503 @item clefs-hufnagel_do: historic style hufnagel do clef
504 @item clefs-hufnagel_fa: historic style hufnagel fa clef
505 @item clefs-hufnagel_do_fa: historic style hufnagel combined do/fa clef
506 @item clefs-percussion: modern style percussion clef
507 @end itemize
508
509 @emph{Modern style} means "as is typeset in current editions".
510 @emph{Historic style} means "as was typeset or written in contemporary
511 historic editions".  @emph{Editio XXX style} means "as is/was printed in
512 Editio XXX".
513
514 @node Breath marks
515 @subsection Breath marks
516
517 Breath marks are entered using @code{\breathe}:
518
519 @lilypond[fragment,relative]
520 c'4 \breathe d4
521 @end lilypond
522
523
524
525 @c .  {Time signature}
526 @node Time signature
527 @subsection Time signature
528 @cindex Time signature
529 @cindex meter
530 @cindex @code{\time}
531
532 @example
533   \time @var{numerator}@code{/}@var{denominator} @code{;}
534 @end example
535
536 A short-cut for doing
537 @example
538      \property Score.timeSignatureFraction = #'(@var{numerator} . @var{denominator})
539 @end example
540
541 See the documentation of @code{timeSignatureFraction}
542
543
544 @c .   {Partial}
545 @subsubsection Partial
546 @cindex Partial
547 @cindex anacrusis
548 @cindex upstep
549 @cindex partial measure
550 @cindex measure, partial
551 @cindex shorten measures
552 @cindex @code{\partial}
553 @example
554   \partial @var{duration} @code{;}
555 @end example
556
557 Short cut for 
558
559 @example
560   \property Score.measurePosition = @var{length of duration}
561 @end example
562 @cindex @code{|}
563
564 See the documentation of @code{measurePosition}.
565
566
567
568
569
570 @c .   {Polyphony}
571 @node Polyphony
572 @section Polyphony
573 @cindex Polyphony
574
575 [todo : collisiosn, rest-collisinos, voiceX identifiers, how to
576 which  contexts to instantiate.]
577
578
579 @table @code
580 @cindex @code{\shiftOff}  
581   @item @code{\shiftOff}
582     Disable horizontal shifting of note heads that collide. 
583
584 @cindex @code{\shiftOn}  
585   @item @code{\shiftOn}
586     Enable note heads that collide with other note heads to be
587     shifted horiztonally. Also @code{\shiftOnn} and @code{\shiftOnnn}
588 set different shift values.
589
590 @cindex @code{\stemBoth}  
591   @item @code{\stemBoth}
592     Allow stems, beams, and slurs to point either upwards or
593     downwards, decided automatically by LilyPond.
594
595 @cindex @code{\stemDown}  
596   @item @code{\stemDown}
597     Force stems, beams, and slurs to point down.
598
599 @cindex @code{\stemUp}  
600   @item @code{\stemUp}
601     Force stems, beams and slurs to point up.
602 @end table
603
604 @c .  {Spanners}
605 @node Spanners
606 @section Spanners
607 @cindex Spanners
608
609 @menu
610 * Beam::                        
611 * Slur ::                       
612 * Phrasing slur::               
613 @end menu
614
615
616
617 @c .   {Beam}
618 @node Beam
619 @subsection Beams
620
621 @cindex beams
622
623 @c .    {Automatic beams}
624 @subsubsection Automatic beams
625
626
627 @cindex automatic beam generation
628 @cindex autobeam
629 @cindex @code{Voice.noAutoBeaming}
630
631 LilyPond will group flagged notes and generate beams autmatically, where
632 appropriate.
633
634 This feature can be disabled by setting the @code{Voice.noAutoBeaming}
635 property to true, which you may find necessary for the melody that goes
636 with lyrics, eg.  Automatic beaming can easily be overridden for
637 specific cases by specifying explicit beams. This is discussed in the
638 next subsubsection.
639
640
641
642 @cindex @code{Voice.autoBeamSettings}
643 @cindex @code{(end * * * *)}
644 @cindex @code{(begin * * * *)}
645
646 A large number of Voice properties are used to decide how to generate
647 beams.  Their default values appear in @file{scm/auto-beam.scm}.  In
648 general, beams can begin anywhere, but their ending location is
649 significant.  Beams can end on a beat, or at durations specified by the
650 properties in @code{Voice.autoBeamSettings}.  To end beams every quarter
651 note, for example, you could set the property @code{(end * * * *)} to
652 @code{(make-moment 1 4)}.  To end beams at every three eighth notes you
653 would set it to @code{(make-moment 1 8)}.  The same syntax can be used
654 to specify beam starting points using @code{(begin * * * *)}, eg:
655 @quotation
656 @example
657 \property Voice.autoBeamSettings \override
658     #'(end * * * *) = #(make-moment 1 4)
659 \property Voice.autoBeamSettings \override
660     #'(begin * * * *) = #(make-moment 1 8)
661 @end example
662 @end quotation
663
664 To allow different settings for different time signatures, instead of
665 the first two asterisks @code{* *} you can specify a time signature; use
666 @code{(end N M * *)} to restrict the definition to
667 `@var{N}@code{/}@var{M}' time.  For example, to specify beams ending
668 only for 6/8 time you would use the property @code{(end 6 8 * *)}.
669
670 To allow different endings for notes of different durations, instead of
671 th last two asterisks you can specify a duration; use @code{(end * * N
672 M)} to restrict the definition to beams that contain notes of
673 `@var{N}@code{/}@var{M}' duration.
674
675 For example, to specify beam endings for beams that contain 32nd notes,
676 you would use @code{(end * * 1 32)}.
677
678
679
680 @c .    {Manual beams}
681 @cindex Automatic beams
682 @subsubsection Manual beams
683 @cindex beams, manual
684 @cindex @code{]}
685 @cindex @code{[}
686
687 In some cases it may be necessary to override LilyPond's automatic
688 beaming algorithm.  For example, the auto beamer will not beam over
689 rests or bar lines, so if you want that, specify the begin and end point
690 manually using @code{[} and @code{]}:
691
692 @quotation
693 @lilypond[fragment,relative,verbatim]
694   \context Staff {
695     r4 [r8 g'' a r8] r8 [g | a] r8
696   }
697 @end lilypond
698
699
700 @cindex @code{stemLeftBeamCount}
701
702 If you have specific wishes for the number of beams, you can fully
703 control the number of beams through the properties
704 y@code{Voice.stemLeftBeamCount} and @code{Voice.stemRightBeamCount}.
705
706 @lilypond[fragment,relative,verbatim]
707   \context Staff {
708     [f'8 r16 f g a]
709     [f8 r16 \property Voice.stemLeftBeamCount = #1 f g a]
710   }
711 @end lilypond
712 @end quotation
713 @cindex @code{stemRightBeamCount}
714
715
716 @c .    {Adjusting beams}
717 @unnumberedsubsubsec Adjusting beams
718 @cindex Adjusting beams
719
720 FIXME
721
722
723         
724
725 @c .   {Slur}
726 @node Slur 
727 @subsection Slur
728 @cindex slur
729
730 @menu
731 * Slur attachments::            
732 @end menu
733
734 A slur connects chords and is used to indicate legato.  Slurs avoid
735 crossing stems.  A slur is started with @code{(} and stopped with
736 @code{)}.  The starting @code{(} appears to the right of the first note
737 in the slur.  The terminal @code{)} appears to the left of the last note
738 in the slur.  This makes it possible to put a note in slurs from both
739 sides:
740
741 @lilypond[fragment,verbatim,center]
742   f'()g'()a' [a'8 b'(] a'4 g'2 )f'4
743 @end lilypond
744
745 @c .    {Adjusting slurs}
746 @unnumberedsubsubsec Adjusting slurs
747
748
749 @node Slur attachments
750 @subsubsection Slur attachments
751
752 The ending of a slur should whenever possible be attached to a note
753 head.  Only in some instances where beams are involved, LilyPond may
754 attach a slur to a stem end.  In some cases, you may want to override
755 LilyPond's decision, e.g., to attach the slur to the stem end.  This can
756 be done through @code{Voice.Slur}'s grob-property @code{attachment}:
757
758
759 @quotation
760 @lilypond[fragment,relative,verbatim]
761   \property Voice.Slur \set #'direction = #1
762   \property Voice.Stem \set #'length = #5.5
763   g''8(g)g4
764   \property Voice.Slur \set #'attachment = #'(stem . stem)
765   g8(g)g4
766 @end lilypond
767 @end quotation
768
769 Similarly, slurs can be attached to note heads even when beams are
770 involved:
771
772 @quotation
773 @lilypond[fragment,relative,verbatim]
774   \property Voice.Slur \set #'direction = #1
775   \property Voice.Slur \set #'attachment = #'(head . head)
776   g''16()g()g()g()d'()d()d()d
777 @end lilypond
778 @end quotation
779
780 If a slur would strike through a stem or beam, LilyPond will move the
781 slur away vertically (upward or downward).  In some cases, this may
782 cause ugly slurs that you may want to correct:
783
784 @quotation
785 @lilypond[fragment,relative,verbatim]
786   \property Voice.Stem \set #'direction = #1
787   \property Voice.Slur \set #'direction = #1
788   d'32( d'4 )d8..
789   \property Voice.Slur \set #'attachment = #'(stem . stem)
790   d,32( d'4 )d8..
791 @end lilypond
792 @end quotation
793
794 LilyPond will increase the curvature of a slur trying to stay free of
795 note heads and stems.  However, if the curvature would increase too much,
796 the slur will be reverted to its default shape.  This decision is based
797 on @code{Voice.Slur}'s grob-property @code{beautiful} value.  In some
798 cases, you may find ugly slurs beautiful, and tell LilyPond so by
799 increasing the @code{beautiful} value:
800
801 [hoe  gedefd?? wat betekent beautiful = X?]
802
803 @quotation
804 @lilypond[verbatim]
805 \score {
806   \notes \context PianoStaff <
807     \time 6/4;
808     \context Staff=up { s1 * 6/4 }
809     \context Staff=down <
810       \clef bass;
811       \autochange Staff \context Voice
812         \notes \relative c {
813           d,8( a' d f a d f d a f d )a
814         }
815     >
816   >
817   \paper {
818     linewidth = -1.;
819     \translator {
820       \VoiceContext
821       Slur \override #'beautiful = #5.0
822       Slur \override #'direction = #1
823       Stem \override #'direction = #-1
824       autoBeamSettings \override #'(end * * * *)
825         = #(make-moment 1 2)
826     }
827     \translator {
828       \PianoStaffContext
829       VerticalAlignment \override #'threshold = #'(5 . 5)
830     }
831   }
832 }
833 @end lilypond
834 @end quotation
835
836 @cindex Adusting slurs
837
838
839
840 @c .   {Phrasing slur}
841 @node Phrasing slur
842 @subsection Phrasing slur
843 @cindex phrasing slur
844 @cindex phrasing mark
845
846 A phrasing slur (or phrasing mark) connects chords and is used to
847 indicate a musical sentence.  Phrasing slurs avoid crossing stems.  A
848 phrasing slur is started with @code{\(} and stopped with @code{\)}.  The
849 starting @code{\(} appears to the right of the first note in the
850 phrasing slur.  The terminal @code{\)} appears to the left of the last
851 note in the phrasing slur.
852
853 @lilypond[fragment,verbatim,center,relative]
854   \time 6/4; c''\((d)e f(e)\)d
855 @end lilypond
856
857 [TODO: put together with breath mark.]
858
859
860 @c .   {Tie}
861 @menu
862 * Tie::                         
863 * Tuplets::                     
864 * Text spanner::                
865 * Ottava::                      
866 * Span requests::               
867 @end menu
868
869 @node Tie
870 @subsubsection Tie
871
872 @cindex Tie
873 @cindex ties
874 @cindex @code{~}
875
876 A tie connects two adjacent note heads of the same pitch.  When used
877 with chords, it connects all of the note heads whose pitches match.
878 Ties are indicated using the tilde symbol `@code{~}'.
879 If you try to tie together chords which have no common pitches, a
880 warning message will appear and no ties will be created.
881
882 @lilypond[fragment,verbatim,center]
883   e' ~ e' <c' e' g'> ~ <c' e' g'>
884 @end lilypond
885
886 [sparseTies]
887
888
889 @c .   {Tuplets}
890 @node Tuplets
891 @subsubsection Tuplets
892 @cindex Tuplets
893 @cindex Times 
894
895 Tuplets are made out of a music expression by multiplying their duration
896 with a fraction.
897
898 @cindex @code{\times}
899 @example
900   \times @var{fraction} @var{musicexpr}
901 @end example
902
903 The duration of @var{musicexpr} will be multiplied by the fraction. 
904 In print, the fraction's denominator will be printed over the notes,
905 optionally with a bracket.  The most common tuplet is the triplet in
906 which 3 notes have the length of 2, so the notes are 2/3 of
907 their written length:
908
909 @lilypond[fragment,verbatim,center]
910   g'4 \times 2/3 {c'4 c' c'} d'4 d'4
911 @end lilypond
912
913 [todo: document tupletSpannerDuration]
914
915
916
917 @c .   {Text spanner}
918 @node Text spanner
919 @subsubsection Text spanner
920 @cindex Text spanner
921
922 @c .   {Ottava}
923 @node Ottava
924 @subsubsection Ottava
925 @cindex Ottava
926 @unnumberedsubsubsec Ottava
927
928 [move to trick. Not a supported feature.]
929
930 @lilypond[fragment,relative,verbatim]
931   a'''' b c a
932   \property Voice.TextSpanner \set #'type = #'dotted-line
933   \property Voice.TextSpanner \set #'edge-height = #'(0 . 1.5)
934   \property Voice.TextSpanner \set #'edge-text = #'("8va " . "")
935   \property Staff.centralCPosition = #-13
936   a\spanrequest \start "text" b c a \spanrequest \stop "text"
937 @end lilypond
938
939
940
941 @c .   {Span requests}
942 @node Span requests
943 @subsubsection Span requests
944 @cindex Span requests
945
946 @cindex @code{\spanrequest}
947
948 @example
949   \spanrequest @var{startstop} @var{type}
950 @end example
951 @cindex @code{\start}
952 @cindex @code{\stop}
953
954 Define a spanning request. The @var{startstop} parameter is either -1
955 (@code{\start}) or 1 (@code{\stop}) and @var{type} is a string that
956 describes what should be started.  Among the supported types are
957 @code{crescendo}, @code{decrescendo}, @code{beam}, @code{slur}.This is
958 an internal command.  Users should use the shorthands which are defined
959 in the initialization file @file{spanners.ly}.
960
961 You can attach a (general) span request to a note using the following
962 syntax.
963
964 @lilypond[fragment,verbatim,center]
965   c'4-\spanrequest \start "slur"
966   c'4-\spanrequest \stop "slur"
967 @end lilypond
968
969 The slur syntax with parentheses is a shorthand for this.
970
971 @c .  {Ornaments}
972 @node Ornaments
973 @section Ornaments
974 @cindex Ornaments
975 @menu
976 * Articulation::                
977 * Text scripts::                
978 * Grace notes::                 
979 * Bar check::                   
980 @end menu
981
982 @c .   {Articulation}
983 @node Articulation
984 @subsection Articulation
985 @cindex Articulation
986
987 @cindex articulations
988 @cindex scripts
989 @cindex ornaments
990
991 A variety of symbols can appear above and below notes to indicate
992 different characteristics of the performance.  These symbols can be
993 added to a note with `@var{note}@code{-\}@var{name}'.  Numerous symbols
994 are defined in @file{script.ly} and @file{script.scm}.  Symbols can be
995 forced to appear above or below the note by writing
996 `@var{note}@code{^\}@var{name}' and `@var{note}@code{_\}@var{name}'
997 respectively.  Here is a chart showing symbols above notes, with the
998 name of the corresponding symbol appearing underneath.
999
1000 @lilypond[]
1001
1002   \score {
1003     < \notes {
1004         \property Score.LyricSyllable \override #'font-family =
1005 #'typewriter
1006         \property Score.LyricSyllable \override #'font-shape = #'upright
1007         c''-\accent      c''-\marcato      c''-\staccatissimo c''-\fermata 
1008         c''-\stopped     c''-\staccato     c''-\tenuto        c''-\upbow
1009         c''-\downbow     c''^\lheel        c''-\rheel         c''^\ltoe
1010         c''-\rtoe        c''-\turn         c''-\open          c''-\flageolet
1011         c''-\reverseturn c''-\trill        c''-\prall         c''-\mordent
1012         c''-\prallprall  c''-\prallmordent c''-\upprall       c''-\downprall
1013         c''-\thumb       c''-\segno        c''-\coda
1014       }
1015       \context Lyrics \lyrics {
1016         accent__      marcato__      staccatissimo__ fermata
1017         stopped__     staccato__     tenuto__        upbow
1018         downbow__     lheel__        rheel__         ltoe
1019         rtoe__        turn__         open__          flageolet
1020         reverseturn__ trill__        prall__         mordent
1021         prallprall__  prallmordent__ uprall__        downprall
1022         thumb__       segno__        coda
1023       }
1024     >
1025     \paper {
1026       linewidth = 5.875\in;          
1027       indent    = 0.0;
1028     }
1029   }
1030
1031 @end lilypond
1032
1033 @c .  {Text scripts}
1034 @node Text scripts
1035 @subsection Text scripts
1036 @cindex Text scripts
1037
1038 In addition, it is possible to place arbitrary strings of text or markup
1039 text (see @ref{Text markup}) above or below notes by using a string
1040 instead of an identifier: @code{c^"text"}.  It is possible to use @TeX{}
1041 commands, but this should be avoided because this makes it impossible
1042 for LilyPond to compute the exact length of the string, which may lead
1043 to collisions.  Also, @TeX{} commands won't work with direct postscript
1044 output.  Fingerings can be placed by simply using digits.  All of these
1045 note ornaments appear in the printed output but have no effect on the
1046 MIDI rendering of the music.
1047
1048 @c .    {Fingerings}
1049 @subsubsection Fingerings
1050 @cindex Fingerings
1051
1052 To save typing, fingering instructions (digits 0 to 9 are
1053 supported) and single characters shorthands exist for a few
1054 common symbols
1055
1056 @lilypond[]
1057   \score {
1058     \notes \context Voice {
1059       \property Voice.TextScript \set #'font-family = #'typewriter
1060       \property Voice.TextScript \set #'font-shape = #'upright
1061       c''4-._"c-."      s4
1062       c''4--_"c-{}-"    s4
1063       c''4-+_"c-+"      s4
1064       c''4-|_"c-|"      s4
1065       c''4->_"c->"      s4
1066       c''4-^_"c-\\^{ }" s4
1067       c''4-1_"c-1"      s4
1068       c''4-2_"c-2"      s4
1069       c''4-3_"c-3"      s4
1070       c''4-4_"c-4"      s4
1071     }
1072     \paper {
1073       linewidth = 5.875 \in;
1074       indent    = 0.0;
1075     }
1076   }
1077
1078 @end lilypond
1079
1080
1081 @cindex @code{\textscript}
1082
1083 @example
1084
1085   \textscript @var{text} @var{style}
1086 @end example
1087
1088 Defines a text to be printed over or under a note.  @var{style} is a
1089 string that may be one of @code{roman}, @code{italic}, @code{typewriter}, 
1090 @code{bold}, @code{Large}, @code{large}, @code{dynamic} or @code{finger}.
1091
1092 You can attach a general textscript request using this syntax:
1093
1094 @quotation
1095
1096 @example 
1097 c4-\textscript "6" "finger"
1098 c4-\textscript "foo" "normal" 
1099 @end example 
1100
1101 @end quotation
1102
1103 This is equivalent to @code{c4-6 c4-"foo"}.  
1104
1105 @cindex @code{\script}
1106 @cindex scripts
1107 @cindex superscript
1108 @cindex subscript
1109
1110 @example
1111   \script @var{alias}
1112 @end example
1113
1114 Prints a symbol above or below a note.  The argument is a string which
1115 points into the script-alias table defined in @file{scm/script.scm}.
1116 Usually the @code{\script} keyword is not used directly.  Various
1117 helpful identifier definitions appear in @file{script.ly}.
1118
1119 For information on how to add scripts, consult @file{scm/script.scm}.
1120
1121
1122
1123
1124 @c .   {Grace notes}
1125 @node Grace notes
1126 @subsection Grace notes
1127
1128
1129
1130
1131
1132
1133
1134 @cindex Grace music
1135 @cindex @code{\grace}
1136 @cindex ornaments
1137 @cindex grace notes
1138 @cindex @code{graceAlignPosition}
1139
1140 @example
1141   \grace @var{musicexpr}
1142 @end example
1143
1144 A grace note expression has duration 0; the next real note is
1145 assumed to be the main note.
1146
1147 You cannot have the grace note after the main note, in terms of
1148 duration, and main notes, but you can typeset the grace notes to the
1149 right of the main note using the property
1150 @code{graceAlignPosition}.
1151 @cindex @code{flag-style}
1152
1153 When grace music is interpreted, a score-within-a-score is set up:
1154 @var{musicexpr} has its own time bookkeeping, and you could (for
1155 example) have a separate time signature within grace notes.  While in
1156 this score-within-a-score, you can create notes, beams, slurs, etc.
1157 Unbeamed eighth notes and shorter by default have a slash through the
1158 stem.  This behavior can be controlled with the
1159 @code{Stem}.@code{flag-style} property.
1160
1161 @quotation
1162 @lilypond[fragment,verbatim]
1163 \relative c'' {
1164   \grace c8 c4 \grace { [c16 c16] } c4
1165   \grace { \property Grace.Stem \override #'flag-style = ##f c16 } c4
1166 }
1167
1168 @end lilypond
1169 @end quotation
1170
1171
1172 At present, nesting @code{\grace} notes is not supported. The following
1173 may cause run-time errors:
1174 @example
1175   @code{\grace @{ \grace c32 c16 @} c4}
1176 @end example
1177 Since the meaning of such a construct is unclear, we don't consider
1178 this a loss.  Similarly, juxtaposing two @code{\grace} sections is
1179 syntactically valid, but makes no sense and may cause runtime errors.
1180
1181 Ending a staff or score with grace notes may also generate a run-time
1182 error, since there will be no main note to attach the grace notes to.
1183
1184 The present implementation is not robust and generally kludgy. We expect
1185 it to change after LilyPond 1.4. Syntax changes might also be
1186 implemented.
1187
1188
1189
1190
1191
1192
1193
1194
1195 @menu
1196 * Glissando ::                  
1197 * Dynamics::                    
1198 * Crescendo and Decrescendo::   
1199 * Bar lines::                   
1200 @end menu
1201
1202
1203
1204 @c .   {Glissando}
1205 @node Glissando 
1206 @subsubsection Glissando
1207 @cindex Glissando 
1208
1209 @cindex @code{\glissando}
1210
1211 A glissando line can be requested by attaching a @code{\glissando} to a
1212 note:
1213
1214 @quotation
1215 @lilypond[fragment,relative,verbatim]
1216   c'' \glissando c'
1217 @end lilypond
1218 @end quotation
1219
1220 Printing of an additional text (such as @emph{gliss.}) must be done
1221 manually.
1222
1223
1224
1225 @c .   {Dynamics}
1226 @node Dynamics
1227 @subsubsection Dynamics
1228 @cindex Dynamics
1229
1230
1231
1232 @cindex @code{\ppp}
1233 @cindex @code{\pp}
1234 @cindex @code{\p}
1235 @cindex @code{\mp}
1236 @cindex @code{\mf}
1237 @cindex @code{\f}
1238 @cindex @code{\ff}
1239 @cindex @code{\fff}
1240 @cindex @code{\ffff}
1241 @cindex @code{\fp}
1242 @cindex @code{\sf}
1243 @cindex @code{\sff}
1244 @cindex @code{\sp}
1245 @cindex @code{\spp}
1246 @cindex @code{\sfz}
1247 @cindex @code{\rfz}
1248
1249
1250
1251
1252
1253
1254 Dynamic marks are specified by using an identifier after a note:
1255 @code{c4-\ff}.  The available dynamic marks are:
1256 @code{\ppp}, @code{\pp}, @code{\p}, @code{\mp}, @code{\mf}, @code{\f},
1257 @code{\ff}, @code{\fff}, @code{\fff}, @code{\fp}, @code{\sf},
1258 @code{\sff}, @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}.
1259
1260 @c .   {Crescendo and Decrescendo}
1261 @node Crescendo and Decrescendo
1262 @subsubsection Crescendo and Decrescendo
1263
1264 @cindex Crescendo and Decrescendo
1265 @cindex crescendo
1266 @cindex @code{\cr}
1267 @cindex @code{\rc}
1268 @cindex @code{\decr}
1269 @cindex @code{\rced}
1270 @cindex @code{\<}
1271 @cindex @code{\>}
1272 @cindex @code{\"!}
1273
1274
1275
1276 A crescendo mark is started with @code{\cr} and terminated with
1277 @code{\rc}, the textual reverse of @code{cr}.  A decrescendo mark is
1278 started with @code{\decr} and terminated with @code{\rced}.  There are
1279 also shorthands for these marks.  A crescendo can be started with
1280 @code{\<} and a decrescendo can be started with @code{\>}.  Either one
1281 can be terminated with @code{\!}.  Note that @code{\!}  must go before
1282 the last note of the dynamic mark whereas @code{\rc} and @code{\rced} go
1283 after the last note.  Because these marks are bound to notes, if you
1284 want to get several marks during one note, you must use spacer notes.
1285
1286 @lilypond[fragment,verbatim,center]
1287   c'' \< \! c''   d'' \decr e'' \rced 
1288   < f''1 { s4 \< \! s2 \> \! s4 } >
1289 @end lilypond
1290
1291 You can also use a text saying @emph{cresc.} instead of hairpins. Here
1292 is an example how to do it:
1293
1294 @lilypond[fragment,relative,verbatim]
1295   \context Voice {
1296     \property Voice.crescendoText = "cresc."
1297     \property Voice.crescendoSpanner = #'dashed-line
1298     a''2\mf\< a a \!a 
1299   }
1300 @end lilypond
1301
1302
1303
1304 @c .   {Bar lines}
1305 @node Bar lines
1306 @subsubsection Bar lines
1307 @cindex Bar lines
1308
1309 @cindex @code{\bar}
1310 @cindex measure lines
1311 @cindex repeat bars
1312
1313 @example
1314   \bar @var{bartype};
1315 @end example
1316
1317 This is a short-cut for doing
1318 @example
1319   \property Score.whichBar = @var{bartype} 
1320 @end example
1321
1322 You are encouraged to use @code{\repeat} for repetitions.  See
1323 @ref{Repeats}, and the documentation of @code{whichBar} in
1324 @ref{(lilypond-internals)LilyPond context properties}.
1325
1326
1327 [FIXME]
1328
1329
1330 @c .  {Bar check}
1331 @node Bar check
1332 @subsection Bar check
1333 @cindex Bar check
1334
1335 @cindex bar check
1336 @cindex @code{barCheckNoSynchronize}
1337 @cindex @code{|}
1338
1339
1340 Whenever a bar check is encountered during interpretation, a warning
1341 message is issued if it doesn't fall at a measure boundary.  This can
1342 help you find errors in the input.  Depending on the value of
1343 @code{barCheckNoSynchronize}, the beginning of the measure will be
1344 relocated, so this can also be used to shorten measures.
1345
1346 A bar check is entered using the bar symbol, @code{|}
1347
1348
1349
1350
1351
1352 @c .  {Repeats}
1353 @node Repeats
1354 @section Repeats
1355
1356
1357 @cindex repeats
1358 @cindex @code{\repeat}
1359
1360 In order to specify repeats, use the @code{\repeat}
1361 keyword.  Since repeats look and sound differently when played or
1362 printed, there are a few different variants of repeats.
1363
1364 @table @asis
1365 @item unfolded  
1366 Repeated music is fully written (played) out.  Useful for MIDI
1367 output.
1368
1369 @item volta  
1370 This is the normal notation: Repeats are not written out, but
1371 alternative endings (voltas) are printed, left to right.
1372
1373 @item folded  
1374 Alternative endings are written stacked.  Which is unfortunately not
1375 practical for anything right now.
1376
1377 @item tremolo
1378 Make tremolo beams.
1379 @end table  
1380
1381 @menu
1382 * Repeat syntax::               
1383 * Manual repeat commands::      
1384 * Tremolo repeats::             
1385 * Tremolo subdivision::         
1386 @end menu
1387
1388 @node Repeat syntax
1389 @subsection Repeat syntax
1390
1391 The syntax for repeats is
1392
1393 @example
1394   \repeat @var{variant} @var{repeatcount} @var{repeatbody}
1395 @end example
1396
1397 If you have alternative endings, you may add
1398
1399 @cindex @code{\alternative}
1400 @example
1401  \alternative @code{@{} @var{alternative1}
1402             @var{alternative2}
1403             @var{alternative3} @dots{} @code{@}}
1404 @end example
1405
1406 where each @var{alternative} is a Music expression.
1407
1408 Normal notation repeats are used like this:
1409
1410 @quotation
1411
1412 @lilypond[fragment,verbatim]
1413   c'1
1414   \repeat volta 2 { c'4 d' e' f' }
1415   \repeat volta 2 { f' e' d' c' }
1416 @end lilypond
1417 @end quotation
1418
1419 With alternative endings:
1420
1421 @quotation
1422
1423 @lilypond[fragment,verbatim]
1424   c'1
1425   \repeat volta 2 {c'4 d' e' f'} 
1426   \alternative { {d'2 d'} {f' f} }
1427 @end lilypond
1428 @end quotation
1429
1430 Folded repeats look like this:@footnote{Folded repeats offer little
1431 more over simultaneous music.  However, it is to be expected that
1432 more functionality -- especially for the MIDI backend -- will be
1433 implemented at some point in the future.}
1434
1435 @quotation
1436
1437 @lilypond[fragment,verbatim]
1438   c'1
1439   \repeat fold 2 {c'4 d' e' f'} 
1440   \alternative { {d'2 d'} {f' f} }
1441
1442 @end lilypond
1443 @end quotation
1444
1445
1446 If you don't give enough alternatives for all of the repeats, then
1447 the first alternative is assumed to be repeated often enough to equal
1448 the specified number of repeats.
1449
1450 @quotation
1451 @lilypond[fragment,verbatim]
1452 \context Staff {
1453   \relative c' {
1454     \partial 4;
1455     \repeat volta 3 { e | c2 d2 | e2 f2 | }
1456     \alternative { { g4 g g } { a | a a a a | b2. } }
1457   }
1458 }
1459
1460 @end lilypond
1461 @end quotation
1462
1463
1464 As you can see, LilyPond doesn't remember the timing information, nor
1465 are slurs or ties repeated, so you have to reset timing information
1466 after a repeat, eg using bar-checks, @code{Score.measurePosition} or
1467 @code{\partial}. We hope to fix this after 1.4.
1468
1469 It is possible to nest @code{\repeat}, although it probably is only
1470 meaningful for unfolded repeats.
1471
1472 @node Manual repeat commands
1473 @subsection Manual repeat commands
1474
1475 @cindex @code{repeatCommands}
1476
1477 The property @code{repeatCommands} can be used to control the layout of
1478 repeats. Its value is a Scheme list of repeat commands, where each repeat
1479 command can be
1480
1481 @table @code
1482 @item 'start-repeat
1483  Print a |: bar line
1484 @item 'stop-repeat
1485  Print a :| bar line
1486 @item (volta . @var{text})
1487   Print a volta bracket saying @var{text}.
1488 @item (volta . #f)
1489   Stop a running volta bracket
1490 @end table
1491
1492 @lilypond[verbatim, fragment]
1493  c''4
1494     \property Score.repeatCommands = #'((volta "93") end-repeat)
1495  c4 c4
1496     \property Score.repeatCommands = #'((volta #f))
1497  c4 c4
1498 @end lilypond
1499
1500
1501 @node Tremolo repeats
1502 @subsection Tremolo repeats
1503 @cindex tremolo beams
1504
1505 To place tremolo marks between notes, use @code{\repeat} with tremolo
1506 style.  
1507 @lilypond[verbatim,center]
1508 \score { 
1509   \context Voice \notes\relative c' {
1510     \repeat "tremolo" 8 { c16 d16 }
1511     \repeat "tremolo" 4 { c16 d16 }    
1512     \repeat "tremolo" 2 { c16 d16 }
1513     \repeat "tremolo" 4 c16
1514   }
1515   \paper {
1516     linewidth = 40*\staffspace;
1517   }  
1518 }
1519 @end lilypond
1520
1521 @node Tremolo subdivision
1522 @subsection Tremolo subdivision
1523 @cindex tremolo marks
1524 @cindex @code{tremoloFlags}
1525
1526 Tremolo marks can be printed on a single note by adding
1527 `@code{:}[@var{length}]' after the note.  The length must be at least 8.
1528 A @var{length} value of 8 gives one line across the note stem.  If the
1529 length is omitted, then the last value is used, or the value of the
1530 @code{tremoloFlags} property if there was no last value.
1531
1532 @lilypond[verbatim,fragment,center]
1533   c'2:8 c':32
1534 @end lilypond
1535
1536 Tremolos in this style do not carry over into the MIDI output.
1537
1538 Using this mechanism pays off when you entering many tremolos, since the
1539 default argument saves a lot of typing.
1540
1541
1542
1543
1544
1545 @c . {Piano music}
1546 @node Piano music
1547 @section Piano music
1548 @menu
1549 * Automatic staff changes::     
1550 * Manual staff switches::       
1551 * Pedals::                      
1552 * Arpeggio::                    
1553 * Follow Thread::               
1554 @end menu 
1555
1556
1557 @c .   {Automatic staff changes}
1558 @node Automatic staff changes
1559 @subsection Automatic staff changes
1560 @cindex Automatic staff changes
1561
1562 Voices can be switched from top to bottom staff automatically. The
1563 syntax for this is
1564 @example
1565         \autochange @var{contexttype} @var{musicexp}
1566 @end example
1567 This will switch notation context of @var{musicexp} between a
1568 @var{contexttype} named @code{up} and @code{down}. Typically, you use
1569 @code{Staff} for @var{contexttype}.  The autochanger switches on basis
1570 of pitch (central C is the turning point), and it looks ahead skipping
1571 over rests to switch rests in advance.
1572         
1573 @lilypond[verbatim,singleline]
1574 \score { \notes \context PianoStaff <
1575         \context Staff = "up" {
1576                 \autochange Staff \context Voice = VA < \relative c' { g4 a  b c d r4 a g } >
1577         }
1578         \context Staff = "down" {
1579                 \clef bass; 
1580                 s1*2
1581         } > }
1582 @end lilypond
1583
1584
1585
1586
1587 @node Manual staff switches
1588 @subsection Manual staff switches
1589
1590 @cindex manual staff switches
1591 @cindex staff switch, manual
1592
1593 @cindex @code{\translator}
1594 @example
1595   \translator @var{contexttype} = @var{name}
1596 @end example
1597
1598 A music expression indicating that the context which is a direct
1599 child of the a context of type @var{contexttype} should be shifted to
1600 a context of type @var{contexttype} and the specified name.
1601
1602 Usually this is used to switch staffs in Piano music, e.g.
1603
1604 @example
1605   \translator Staff = top @var{Music}
1606 @end example
1607
1608
1609 @c .   {Pedals}
1610 @node Pedals
1611 @subsection Pedals
1612 @cindex Pedals
1613
1614 Piano pedals can be entered using the following span requests of the
1615 types @code{Sustain}, @code{UnaChorda} and @code{Sostenuto}:
1616 @lilypond[fragment,verbatim]
1617 c''4 \spanrequest \start "Sustain"  c4 c4  \spanrequest \stop "Sustain"
1618 @end lilypond
1619
1620 For these verbose expressions, standard shorthands have been defined:
1621 @table @code
1622 @item sustainDown
1623 @item sustainUp
1624 @item unaChorda
1625 @item treChorde
1626 @item sostenutoDown
1627 @item sostenutoUp
1628 @end table
1629
1630 The symbols that are printed can be modified by setting pedalXStrings,
1631 where one of the pedal types. Refer to the generaetd documentation for
1632 more information.
1633
1634 Currently, brackets are not supported, only text markings (ie. *Ped
1635 style).
1636
1637
1638 @c .   {Arpeggio}
1639 @node Arpeggio
1640 @subsection Arpeggio
1641 @cindex Arpeggio
1642
1643 @cindex broken arpeggio
1644 @cindex @code{\arpeggio}
1645
1646 You can specify an arpeggio sign on a chord by attaching an
1647 @code{\arpeggio} to a note of the chord.
1648
1649
1650 @quotation
1651 @lilypond[fragment,relative,verbatim]
1652   \context Voice <c'\arpeggio e g c>
1653 @end lilypond
1654 @end quotation
1655
1656 When an arpeggio crosses staffs in piano music, you attach an arpeggio
1657 to the chords in both staffs, and set
1658 @code{PianoStaff.connectArpeggios}. LilyPond will connect the arpeggios
1659 in both staffs.
1660
1661 @quotation
1662 @lilypond[fragment,relative,verbatim]
1663   \context PianoStaff <
1664     \property PianoStaff.connectArpeggios = ##t
1665     \context Voice = one  { <c''\arpeggio e g c> }
1666     \context Voice = other { \clef bass;  <c,,\arpeggio e g>}
1667   >  
1668 @end lilypond
1669 @end quotation
1670
1671
1672
1673 @c .    {Follow Thread}
1674 @node Follow Thread
1675 @subsection Follow Thread
1676 @cindex follow thread
1677 @cindex staff switching
1678 @cindex cross staff
1679
1680 [todo: different name, eg. voice line ? ]
1681
1682 @cindex @code{followThread}
1683
1684 Whenever a voice switches to another staff a line connecting the notes
1685 can be printed automatically. This is enabled if the property
1686 @code{PianoStaff.followThread} is set to true:
1687
1688 @quotation
1689 @lilypond[fragment,relative,verbatim]
1690   \context PianoStaff <
1691     \property PianoStaff.followThread = ##t
1692     \context Staff \context Voice {
1693       c'1
1694       \translator Staff=two
1695       b2 a
1696     }
1697     \context Staff=two {\clef bass; \skip 1*2;}
1698   >  
1699 @end lilypond
1700 @end quotation
1701
1702
1703 @c . {Lyrics}
1704 @node Lyrics
1705 @section Lyrics
1706
1707
1708 @menu
1709 * Lyrics mode::                 
1710 * Printing lyrics::             
1711 * Automatic syllable durations::  
1712 * More stanzas::                
1713 @end menu
1714
1715 @c .  {Lyrics mode}
1716 @node Lyrics mode
1717 @subsection Lyrics mode
1718 @cindex Lyrics mode
1719
1720 @cindex lyric mode
1721 @cindex @code{\lyrics}
1722
1723 Lyrics mode is introduced by the keyword @code{\lyrics}.  This mode has
1724 rules that make it easy to include punctuation and diacritical marks in
1725 words: The purpose of Lyrics mode is that you can enter lyrics in @TeX{}
1726 format or a standard encoding without needing quotes.  The precise
1727 definition of this mode is ludicrous, and this will remain so until the
1728 authors of LilyPond acquire a deeper understanding of character
1729 encoding, or someone else steps up to fix this.
1730
1731 A word in Lyrics mode begins with: an alphabetic character, @code{_},
1732 @code{?}, @code{!}, @code{:}, @code{'}, the control characters @code{^A}
1733 through @code{^F}, @code{^Q} through @code{^W}, @code{^Y}, @code{^^},
1734 any 8-bit character with ASCII code over 127, or a two-character
1735 combination of a backslash followed by one of @code{`}, @code{'},
1736 @code{"}, or @code{^}.
1737
1738 Subsequent characters of a word can be any character that is not a digit
1739 and not white space.  One important consequence of this is that a word
1740 can end with `@code{@}}', which may be confusing. However, LilyPond will
1741 issue a warning.  Any @code{_} character which appears in an unquoted
1742 word is converted to a space.  This provides a mechanism for introducing
1743 spaces into words without using quotes.  Quoted words can also be used
1744 in Lyrics mode to specify words that cannot be written with the above
1745 rules.  Here are some examples.  Not all of these words are printable by
1746 @TeX{}.
1747
1748 @example 
1749 Ah!             % a word
1750 2B_||_!2B       % not a word because it starts with a digit
1751 ``Hello''       % not a word because it starts with `
1752 _ _ _ _         % 4 words, each one a space 
1753 @end example 
1754
1755 Since combinations of numbers and dots are used for indicating
1756 durations, you can not enter real numbers in this mode.
1757
1758 @cindex lyrics expressions
1759
1760 Syllables are entered like notes, with pitches replaced by text.  For
1761 example, @code{Twin-4 kle4 twin-4 kle4} enters four syllables, each
1762 with quarter note duration.  Note that the hyphen has no special
1763 meaning for lyrics, and does not introduce special symbols.  See
1764 section @ref{Lexical modes} for a description of what is interpreted as
1765 lyrics.
1766
1767 Spaces can be introduced into a lyric either by using quotes
1768 (@code{"}) or by using an underscore without quotes: @code{He_could4
1769 not4}.  All unquoted underscores are converted to spaces.  Printing
1770 lyrics is discussed in the next section.
1771
1772
1773 @c .  {Printing lyrics}
1774 @node Printing lyrics
1775 @subsection Printing lyrics
1776 @cindex lyrics
1777
1778
1779 Lyric syllables must be interpreted within a @code{Lyrics} context for
1780 printing them. Here is a full example:
1781
1782 @quotation
1783 @lilypond[verbatim]
1784 \score {
1785   <
1786     \notes \transpose c'' {
1787       c d e c | c d e c |
1788       e f g2 | e4 f g2 \bar "|.";
1789     }
1790     \context Lyrics \lyrics { 
1791       Va-4 der Ja- cob Va- der Ja- cob
1792       Slaapt gij nog?2 Slaapt4 gij nog?2
1793     }
1794   >
1795 }
1796
1797 @end lilypond
1798 @end quotation
1799
1800
1801
1802
1803 @cindex extender
1804 @cindex lyric extender
1805
1806 You may want a continuous line after the syllables to show melismata. 
1807 To achieve this effect, add a @code{__} lyric as a separate word
1808 after the lyric to be extended.  This will create an extender, a line
1809 that extends over the entire duration of the lyric.  This line will
1810 run all the way to the start of the next lyric, so you may want to
1811 shorten it by using a blank lyric (using @code{_}).
1812
1813 @quotation
1814
1815 @lilypond[verbatim]
1816 \score {
1817   <
1818     \notes \relative c'' {
1819       a4 () b () c () d | c () d () b () a | c () d () b () a
1820     }
1821     \context Lyrics \lyrics {
1822       foo1 __ | bar2. __ _4 | baz1 __
1823     }
1824   >
1825 }
1826
1827 @end lilypond
1828 @end quotation
1829
1830 @cindex Lyric hyphen
1831
1832 If you want to have hyphens centered between syllables (rather than
1833 attached to the end of the first syllable) you can use the special
1834 `@code{-}@code{-}' lyric as a separate word between syllables.  This
1835 will result in a hyphen which length varies depending on the space
1836 between syllables, and which will be centered between the syllables. 
1837 For example:
1838
1839 @quotation
1840
1841 @lilypond[verbatim]
1842 \score {
1843   <
1844     \notes \transpose c'' {
1845       c d e c | c d e c |
1846       e f g2 | e4 f g2 \bar "|.";
1847     }
1848     \context Lyrics \lyrics {
1849       Va4 -- der Ja -- cob | Va -- der Ja -- cob |
1850       Slaapt gij nog?2 | Slaapt4 gij nog?2
1851     }
1852   >
1853 }
1854
1855 @end lilypond
1856 @end quotation
1857
1858
1859 @c .  {Automatic syllable durations}
1860 @node Automatic syllable durations
1861 @subsection Automatic syllable durations
1862 @cindex Automatic syllable durations
1863
1864
1865 @cindex automatic lyric durations
1866 @cindex @code{\addlyrics}
1867
1868 If you have lyrics that are set to a melody, you can import the rhythm
1869 of that melody into the lyrics using @code{\addlyrics}.  The syntax for
1870 this is
1871 @example
1872   \addlyrics @var{musicexpr1 musicexpr2}
1873 @end example
1874
1875 This means that both @var{musicexpr1} and @var{musicexpr2} are
1876 interpreted, but that every non-command atomic music expression
1877 (``every syllable'') in @var{musicexpr2} is interpreted using timing
1878 of @var{musicexpr1}.
1879 @cindex @code{automaticMelismata}
1880
1881 If the property @code{automaticMelismata} is set in the
1882 context of @var{musicexpr1}, no lyrics will be put on slurred or tied
1883 notes.
1884
1885 @quotation
1886 @lilypond[verbatim,fragment]
1887 \addlyrics
1888 \transpose c'' {
1889   \property Voice.automaticMelismata = ##t
1890   c8 () cis d8. e16 f2
1891 }
1892 \context Lyrics \lyrics {
1893  do4 re mi fa }
1894 @end lilypond
1895 @end quotation
1896
1897 You should use a single rhythm melody, and single rhythm lyrics (a
1898 constant duration is the obvious choice).  If you do not, you will get
1899 undesired effects when using multiple stanzas:
1900
1901 @quotation
1902 @lilypond[verbatim,fragment]
1903 \addlyrics
1904 \transpose c'' {
1905   c8 () cis d8. e16 f2
1906 }
1907 \context Lyrics \lyrics
1908 < { do4 re mi fa }
1909   { do8 re mi fa } >
1910
1911 @end lilypond
1912 @end quotation
1913
1914 It is valid (but probably not very useful) to use notes instead of
1915 lyrics for @var{musicexpr2}.
1916
1917 @node More stanzas
1918 @subsection More stanzas
1919
1920 @cindex phrasing
1921
1922 If you have multiple stanzas printed underneath each other, the separate
1923 syllables should be aligned around punctuation. LilyPond can do this if
1924 you explain it which lyric lines belong to which melody.
1925
1926 To this end, give the Voice context an identity, and set the LyricsVoice
1927 to name starting with that identity. In the following example, the Voice
1928 identity is @code{duet}, and the identities of the LyricsVoices are
1929 @code{duet-1} and @code{duet-2}.
1930
1931
1932 @lilypond[singleline,verbatim]
1933 \score {
1934 \addlyrics
1935   \notes \relative c'' \context Voice = duet { \time 3/4; g2 e4 a2 f4 g2.  }
1936   \lyrics \context Lyrics <
1937   \context LyricsVoice = "duet-1" {
1938     \property LyricsVoice . stanza = "Bert"
1939     Hi, my name is bert.    }
1940   \context LyricsVoice = "duet-2" {
1941     \property LyricsVoice . stanza = "Ernie" 
1942     Ooooo, ch\'e -- ri, je t'aime. }
1943   >
1944 }
1945 @end lilypond
1946
1947 You can add stanza numbers by setting @code{LyricsVoice.Stanza} (for the
1948 first system) and @code{LyricsVoice.stz} for the following systems.
1949
1950 @cindex stanza numbering
1951
1952
1953 @c . {Chords}
1954 @node Chords
1955 @section Chords
1956 @cindex Chords
1957
1958 [chords vs. simultaneous music]
1959
1960 @menu
1961 * Chords mode::                 
1962 * Entering named chords::       
1963 * Printing named chords::       
1964 @end menu
1965
1966 @c .  {Chords mode}
1967 @node Chords mode
1968 @subsection Chords mode
1969 @cindex Chords mode
1970
1971 Chord mode is introduced by the keyword
1972 @code{\chords}.  It is similar to Note mode, but
1973 words are also looked up in a chord modifier table (containing
1974 @code{maj}, @code{dim}, etc).
1975
1976 Since combinations of numbers and dots are used for indicating
1977 durations, you can not enter real numbers in this mode.  Dashes
1978 and carets are used to indicate chord additions and subtractions,
1979 so scripts can not be entered in Chord mode.
1980
1981 @c .  {Entering named chords}
1982 @node Entering named chords
1983 @subsection Entering named chords
1984 @cindex Chords names
1985
1986 Chord names are a way to generate simultaneous music expressions that
1987 correspond with traditional chord names.  It can only be used in
1988 Chord mode (see section @ref{Lexical modes}).
1989
1990 @example
1991
1992   @var{tonic}[@var{duration}][@code{-}@var{modifiers}][@code{^}@var{subtractions}][@code{/}@var{inversion}][@code{/+}@var{bass}].
1993 @end example
1994
1995 @var{tonic} should be the tonic note of the chord, and @var{duration}
1996 is the chord duration in the usual notation.  There are two kinds of
1997 modifiers.  One type is @emph{chord additions}, which are obtained by
1998 listing intervals separated by dots.  An interval is written by its
1999 number with an optional @code{+} or @code{-} to indicate raising or
2000 lowering by half a step.  Chord additions has two effects: It adds
2001 the specified interval and all lower odd numbered intervals to the
2002 chord, and it may lower or raise the specified interval.  Intervals
2003 must be separated by a dot (@code{.}).
2004
2005
2006 Throughout these examples, chords have been shifted around the staff
2007 using @code{\transpose}.
2008
2009
2010 @quotation
2011
2012 @lilypond[fragment,verbatim]
2013 \transpose c'' {
2014   \chords {
2015     c1  c:3-       c:7     c:8
2016     c:9 c:9-.5+.7+ c:3-.5- c:4.6.8
2017   }
2018 }
2019
2020 @end lilypond
2021 @end quotation
2022
2023 @cindex @code{aug}
2024 @cindex @code{dim}
2025 @cindex @code{maj}
2026 @cindex @code{sus}
2027
2028 The second type of modifier that may appear after the @code{:} is a
2029 named modifier.  Named modifiers are listed in the file
2030 @file{chord-modifiers.ly}.  The available modifiers are @code{m} and
2031 @code{min} which lower the 3rd half a step, `@code{aug}' which
2032 raises the 5th, `@code{dim}' which lowers the 5th,
2033 `@code{maj}' which adds a raised 7th, and `@code{sus}'
2034 which replaces the 5th with a 4th.
2035
2036 @quotation
2037
2038 @lilypond[fragment,verbatim]
2039 \transpose c'' {
2040   \chords {
2041     c1:m c:min7 c:maj c:aug c:dim c:sus
2042   }
2043 }
2044
2045 @end lilypond
2046 @end quotation
2047  
2048
2049 Chord subtractions are used to eliminate notes from a chord.  The
2050 notes to be subtracted are listed after a @code{^} character,
2051 separated by dots.
2052
2053 @lilypond[fragment,verbatim,center]
2054   \transpose c'' {
2055     \chords {
2056       c1^3 c:7^5.3 c:8^7
2057     }
2058   }
2059 @end lilypond 
2060 @cindex @code{/}
2061
2062 Chord inversions can be specified by appending `@code{/}' and
2063 the name of a single note to a chord.  This has the effect of
2064 lowering the specified note by an octave so it becomes the lowest
2065 note in the chord.  If the specified note is not in the chord, a
2066 warning will be printed.
2067
2068 @lilypond[fragment,verbatim,center]
2069   \transpose c''' {
2070     \chords {
2071       c1 c/e c/g c:7/e
2072     }
2073   }
2074
2075 @end lilypond 
2076 @cindex @code{/+}
2077
2078 Bass notes can be added by `@code{/+}' and
2079 the name of a single note to a chord.  This has the effect of
2080 adding the specified note to the chord, lowered by an octave,
2081 so it becomes the lowest note in the chord.
2082
2083 @lilypond[fragment,verbatim,center]
2084   \transpose c''' {
2085     \chords {
2086       c1 c/+c c/+g c:7/+b
2087     }
2088   }
2089
2090 @end lilypond 
2091
2092 The most interesting application is printing  chord names, which is
2093 explained in the next subsection.
2094
2095 You should not combine @code{\relative} with named chords. [FIXME]
2096
2097 @c .  {Printing named chords}
2098 @node Printing named chords
2099 @subsection Printing named chords
2100
2101
2102
2103
2104
2105 @cindex printing chord names
2106 @cindex chord names
2107 @cindex chords
2108 @cindex @code{ChordNames}
2109 @cindex @code{ChordNameVoice}
2110
2111 For displaying printed chord names, use the @code{ChordNames} and
2112 @code{ChordNameVoice} contexts.  The chords may be entered either using
2113 the notation described above, or directly using simultaneous music.
2114
2115 @quotation
2116 @lilypond[verbatim,singleline]
2117 scheme = \notes {
2118   \chords {a1 b c} <d f g>  <e g b>
2119 }
2120 \score {
2121   \notes<
2122     \context ChordNamesVoice \scheme
2123     \context Staff \transpose c'' \scheme
2124   >
2125 }
2126 @end lilypond
2127 @end quotation
2128
2129 You can make the chord changes stand out more by setting property
2130 @code{ChordNames.chordChanges} to true.  This will only display chord
2131 names when there's a change in the chords scheme, but always display the
2132 chord name after a line break:
2133
2134 @c bug
2135 @quotation
2136 @lilypond[verbatim]
2137 scheme = \chords {
2138   c1:m \break c:m c:m c:m d
2139 }
2140
2141 \score {
2142   \notes <
2143     \context ChordNames \scheme
2144     \context Staff \transpose c'' \scheme
2145   >
2146   \paper{
2147     linewidth = 40 * \staffspace;
2148     \translator {
2149       \ChordNamesContext
2150       chordChanges = ##t
2151     }
2152   }
2153 }
2154 @end lilypond
2155 @end quotation
2156
2157
2158
2159 LilyPond examines chords specified as lists of notes to determine a
2160 name to give the chord. LilyPond will not try to
2161 identify chord inversions or added base, which may result in strange
2162 chord names when chords are entered as a list of pitches:
2163
2164 @quotation
2165 @lilypond[verbatim,center,singleline]
2166 scheme = \notes {
2167   <c'1 e' g'>
2168   <e' g' c''>
2169   <e e' g' c''>
2170 }
2171
2172 \score {
2173   <
2174     \context ChordNamesVoice \scheme
2175     \context Staff \scheme
2176   >
2177 }
2178 @end lilypond
2179 @end quotation
2180
2181 To specify chord inversions, append @code{/<notename>}.  To specify an
2182 added bass note, append @code{/+<notename}:
2183
2184 @quotation
2185 @lilypond[verbatim,center,singleline]
2186 scheme = \chords {
2187   d1 d/a d/+gis
2188 }
2189
2190 \score {
2191   \notes <
2192     \context ChordNames \scheme
2193     \context Staff \transpose c'' \scheme
2194   >
2195 }
2196 @end lilypond
2197 @end quotation
2198
2199 The chord names that LilyPond should print are fully customizable.  The
2200 code to print chord names is written in Scheme. It can be found in
2201 @file{scm/chord-name.scm}.  Chord names are based on Banter style
2202 naming, which is unambiguous and has a logical structure.  Typical
2203 American style chord names are implemented as a variation on Banter
2204 names, they can be selected by setting property @code{ChordName.style}
2205 to @code{american}:
2206
2207 @quotation
2208 @lilypond[verbatim]
2209 \include "english.ly"
2210
2211 scheme = \chords {
2212   c         % Major triad
2213   cs:m      % Minor triad
2214   df:m5-    % Diminished triad
2215   c:5^3     % Root-fifth chord
2216   c:4^3     % Suspended fourth triad
2217   c:5+      % Augmented triad
2218   c:2^3     % "2" chord
2219   c:m5-.7-  % Diminished seventh
2220   c:7+      % Major seventh
2221   c:7.4^3   % Dominant seventh suspended fourth
2222   c:5+.7    % Augmented dominant seventh
2223   c:m5-.7   % "Half" diminished seventh
2224   c:5-.7    % Dominant seventh flat fifth
2225   c:5-.7+   % Major seventh flat fifth
2226   c:m7+     % Minor-major seventh
2227   c:m7      % Minor seventh
2228   c:7       % Dominant seventh
2229   c:6       % Major sixth
2230   c:m6      % Minor sixth
2231   c:9^7     % Major triad w/added ninth
2232   c:6.9^7   % Six/Nine chord
2233   c:9       % Dominant ninth 
2234   c:7+.9    % Major ninth
2235   c:m7.9    % Minor ninth
2236 }
2237
2238 \score {
2239   \notes <
2240     \context ChordNames \scheme
2241     \context Staff \transpose c'' \scheme
2242   >
2243   \paper {
2244     \translator { 
2245       \ChordNamesContext
2246       ChordName \override #'word-space = #1 
2247       ChordName \override #'style = #'american
2248     }
2249   }
2250 }
2251 @end lilypond
2252 @end quotation
2253
2254 Similarly, Jazz style chord names are implemented as a variation on
2255 American style names:
2256 @quotation
2257 @lilypond[verbatim]
2258 scheme = \chords {
2259   % major chords
2260   c
2261   c:6           % 6 = major triad with added sixth
2262   c:maj         % triangle = maj
2263   c:6.9^7       % 6/9 
2264   c:9^7         % add9
2265
2266   % minor chords
2267   c:m           % m = minor triad
2268   c:m.6         % m6 = minor triad with added sixth
2269   c:m.7+        % m triangle = minor major seventh chord
2270   c:3-.6.9^7    % m6/9 
2271   c:m.7         % m7
2272   c:3-.9        % m9
2273   c:3-.9^7      % madd9
2274
2275   % dominant chords
2276   c:7           % 7 = dominant
2277   c:7.5+        % +7 = augmented dominant
2278   c:7.5-        % 7b5 = hard diminished dominant
2279   c:9           % 7(9)
2280   c:9-          % 7(b9)
2281   c:9+          % 7(#9)
2282   c:13^9.11     % 7(13)
2283   c:13-^9.11    % 7(b13)
2284   c:13^11       % 7(9,13)
2285   c:13.9-^11    % 7(b9,13)
2286   c:13.9+^11    % 7(#9,13)
2287   c:13-^11      % 7(9,b13)
2288   c:13-.9-^11   % 7(b9,b13)
2289   c:13-.9+^11   % 7(#9,b13)
2290
2291   % half diminished chords
2292   c:m5-.7               % slashed o = m7b5
2293   c:9.3-.5-     % o/7(pure 9)
2294
2295   % diminished chords
2296   c:m5-.7-      % o = diminished seventh chord
2297 }
2298
2299 \score {
2300   \notes <
2301     \context ChordNames \scheme
2302     \context Staff \transpose c'' \scheme
2303   >
2304   \paper {
2305     \translator { 
2306       \ChordNamesContext
2307       ChordName \override #'word-space = #1 
2308       ChordName \override #'style = #'jazz
2309     }
2310   }
2311 }
2312 @end lilypond
2313 @end quotation
2314
2315 @node Writing parts
2316 @section Writing parts
2317
2318 @c .  {Transpose}
2319 @menu
2320 * Rehearsal marks::             
2321 * Instrument names::            
2322 * Transpose::                   
2323 * Sound output for transposing instruments::  
2324 * Multi measure rests::         
2325 * Automatic part combining::    
2326 @end menu
2327
2328 @c .   {Rehearsal marks}
2329 @node Rehearsal marks
2330 @subsection Rehearsal marks
2331 @cindex Rehearsal marks
2332 @cindex mark
2333 @cindex @code{\mark}
2334 @cindex @code{Mark_engraver}
2335
2336 @example
2337   \mark @var{unsigned};
2338   \mark @var{string};
2339   \mark ; 
2340 @end example
2341
2342 With this command, you can print a rehearsal mark above the system. You
2343 can provide a number, a string or a markup text as argument. If there is
2344 no argument, the property @code{rehearsalMark} is used and automatically
2345 incremented.
2346
2347 @lilypond[fragment,verbatim]
2348 \relative c'' {
2349   c1 \mark "A2";
2350   c1 \mark ; 
2351   c1 \mark ; 
2352   c1 \mark "12";
2353   c1 \mark #'(music "scripts-segno") ;
2354   c1
2355 }
2356 @end lilypond
2357
2358 @node Instrument names
2359 @subsection Instrument names
2360
2361 You can specify an instrument name for a staff by setting
2362 @code{Staff.instrument} and @code{Staff.instr}. This will print a string
2363 before the start of the staff. For the first start, @code{instrument} is
2364 used, for the next ones @code{instr} is used.
2365
2366 @lilypond[verbatim,singleline]
2367 \score { \notes {
2368   \property Staff.instrument = "instr " { c''4 } }
2369   \paper { 
2370     \translator { \StaffContext
2371     \consists "Instrument_name_engraver"; } } }
2372 @end lilypond
2373
2374 This requires  that you add the @code{Instrument_name_engraver} to the
2375 staff context.
2376
2377
2378 @node Transpose
2379 @subsection Transpose
2380 @cindex Transpose
2381 @cindex transposition of pitches
2382 @cindex @code{\transpose}
2383
2384 A music expression can be transposed with @code{\transpose}.  The syntax
2385 is
2386 @example
2387   \transpose @var{pitch} @var{musicexpr}
2388 @end example
2389
2390 This means that middle C in @var{musicexpr} is transposed to
2391 @var{pitch}.
2392
2393 @code{\transpose} distinguishes between enharmonic pitches: both
2394 @code{\transpose cis'} or @code{\transpose des'} will transpose up half
2395 a tone.  The first version will print sharps and the second version
2396 will print flats.
2397
2398 @quotation
2399 @lilypond[fragment,verbatim]
2400 \context Staff {
2401   \clef "F";
2402   { \key e \major; c d e f }
2403   \clef "G";
2404   \transpose des'' { \key e \major; c d e f }
2405   \transpose cis'' { \key e \major; c d e f }
2406 }
2407
2408 @end lilypond
2409 @end quotation
2410
2411 If you want to use both @code{\transpose} and @code{\relative}, then
2412 you must use @code{\transpose} first.  @code{\relative} will have no
2413 effect music that appears inside a @code{\transpose}.
2414
2415 @node Sound output for transposing instruments
2416 @subsection Sound output transposing instruments
2417
2418 When you want to play a score containing transposed and untransposed
2419 instruments, you have to instruct LilyPond the pitch offset (in
2420 semitones) for the transposed instruments. This is done using
2421 @code{transposing}.
2422
2423 @cindex @code{transposing}
2424
2425 @example
2426         \property Staff.instrument = #"Cl. in B-flat"
2427         \property Staff.transposing = #-2
2428 @end example
2429
2430
2431 @c .  {Multi measure rests}
2432 @node  Multi measure rests
2433 @subsection Multi measure rests
2434 @cindex Multi measure rests
2435
2436 @cindex @code{R}
2437
2438 Multi measure rests are entered using `@code{R}'. It is specifically
2439 meant for entering parts: the rest can expand to fill a score with
2440 rests, or it can be printed as a single multimeasure rest This expansion
2441 is controlled by the property @code{Score.skipBars}. If this is set to true,
2442 Lily will not expand empty measures, and the appropriate number is added
2443 automatically.
2444
2445 @lilypond[fragment,verbatim]
2446  \time 3/4; R2.*2 \property Score.skipBars = ##t R2.*17  R2.*4
2447 @end lilypond
2448
2449 Currently, there is  no way to condense multiple rests into a single
2450 multimeasure rest.
2451
2452 @cindex condensing rests
2453
2454 @node Automatic part combining
2455 @subsection Automatic part combining
2456 @cindex automatic part combining
2457 @cindex part combiner
2458
2459 Automatic part combining is used to merge two parts of music onto on
2460 staff in an intelligent way.  It is aimed primarily at typesetting Hymns
2461 and orchestral scores.  When the two parts are identical for a period of
2462 time, only will be shown.  In places where the two parts differ, stem
2463 directions are set automatically.  Also, soli and @`{a} due parts can be
2464 identified and marke.
2465
2466
2467 @subsubsection Part combine syntax
2468
2469 The syntax for part combining is
2470
2471 @example
2472   \partcombine @var{context} @var{musicexpr1} @var{musicexpr2}
2473 @end example
2474
2475 where the pieces of music @var{musicexpr1} and @var{musicexpr2} will be
2476 combined into one context @var{context}.  The names of the music
2477 expressions must start with the prefixes @code{one} and @code{two}.
2478
2479 @subsubsection Part combine usage
2480
2481 @cindex @code{Thread_devnull_engraver}
2482 @cindex @code{Voice_engraver}
2483 @cindex @code{A2_engraver}
2484
2485 The most useful function of the part combiner to combining threads into
2486 one voice, as common for wind parts in orchestral scores:
2487
2488 @lilypond[verbatim,singleline,fragment]
2489   \context Staff <
2490     \context Voice=one \partcombine Voice
2491       \context Thread=one \notes\relative c'' {
2492         g a b r
2493       }
2494       \context Thread=two \notes\relative c'' {
2495         g r2 f4
2496       }
2497   >
2498 @end lilypond
2499
2500 If you have developed a bit of a feel for LilyPond's functioning, you
2501 will notice that what you see above is quite unusual.  The first
2502 @code{g} appears only once, although it was specified twice (once in
2503 each Thread).  That is the work of the
2504 @code{Thread_devnull_engraver}@footnote{On unix systems, the file
2505 @file{/dev/null} is special device: anything written to it is
2506 discarded.}, that works closely together with the part combiner.  When
2507 the part combiner notices that two threads are identical, it tells the
2508 @code{Thread_devnull_engraver} to discard everything in the second
2509 thread.
2510
2511 Similarly, the markings @emph{@`{a}2}, @emph{Solo} and @emph{Solo II},
2512 are created by the @code{A2_engraver}.  The @code{A2_engraver} also acts
2513 upon instructions of the part combiner.  Another thing that the
2514 @code{A2_engraver} does, is forcing of stem, slur and tie directions,
2515 always when both threads are not identical; up for the musicexpr called
2516 @code{one}, down for the musicexpr called @code{two}.
2517
2518 There is actually a third engraver involved in part combining; the
2519 @code{Voice_devnull_engraver}.  This one takes care of removing
2520 redundant spanners such as beams, slurs, ties, crescendi, etc.
2521
2522 If you just want the splitting of Threads and setting of directions, and
2523 not the textual markings, you may set the property @var{soloADue} to false:
2524
2525 @lilypond[verbatim,singleline]
2526   \score {
2527     \notes \context Staff <
2528     \context Voice=one \partcombine Voice
2529       \context Thread=one\relative c'' {
2530         b4 a c g
2531       }
2532       \context Thread=two\relative c'' {
2533         d,2 a4 g'
2534       }
2535   >
2536   \paper{
2537     \translator {
2538       \VoiceContext
2539       soloADue = ##f
2540     }
2541   }
2542 }
2543 @end lilypond
2544
2545 There are a number of other properties that you can use to tweak the
2546 behavior of part combining, refer to the automatically generated
2547 documentation of the involved engravers and the examples in the tutorial.
2548
2549
2550 @c . {Custodes}
2551 @node Custodes
2552 @section Custodes
2553 @cindex Custos
2554 @cindex Custodes
2555
2556 A @emph{custos} (plural: @emph{custodes}; latin word for "guard") is a
2557 staff context symbol that appears at the end of a staff line.  It
2558 anticipates the pitch of the first note(s) of the following line and
2559 thus helps the player or singer to manage line breaks during
2560 performance, thus enhancing readability of a score.
2561
2562 @quotation
2563 @lilypond[verbatim]
2564 \score {
2565   \notes { c'1 d' e' d' \break c' d' e' d' }
2566   \paper {
2567     \translator {
2568       \StaffContext
2569       \consists Custos_engraver;
2570       Custos \override #'style = #'mensural;
2571     }
2572   }
2573 }
2574 @end lilypond
2575 @end quotation
2576
2577 Custodes were frequently used in music notation until the 16th century.
2578 There were different appearences for different notation styles.
2579 Nowadays, they have survived only in special forms of musical notation
2580 such as via the editio vaticana dating back to the beginning of the 20th
2581 century.
2582
2583 For typesetting custodes, just put a @code{Custos_engraver} into the
2584 @code{StaffContext} when declaring the @code{\paper} block.  In this
2585 block, you can also globally control the appearance of the custos symbol
2586 by setting the custos @code{style} property.  Currently supported styles
2587 are @code{vaticana}, @code{medicaea}, @code{hufnagel} and
2588 @code{mensural}.
2589
2590 @quotation
2591 \paper @{
2592   \translator @{
2593       \StaffContext
2594       \consists Custos_engraver;
2595       Custos \override #'style = #'mensural;
2596   @}
2597 @}
2598 @end quotation
2599
2600 The property can also be set locally, for example in a @code{\notes}
2601 block:
2602
2603 @quotation
2604 \notes @{
2605   \property Staff.Custos \override #'style = #'vaticana
2606   c'1 d' e' d' \break c' d' e' d'
2607 @}
2608 @end quotation
2609
2610 @c . {Tuning output}
2611 @node Tuning output
2612 @section Tuning output
2613
2614 LilyPond tries to take as much formatting as possible out of your
2615 hands. Nevertheless, there are situations where it needs some help, or
2616 where you want to override its decisions.
2617
2618 Here we discuss how you can do that.
2619
2620 Notational output is specified in so called grobs (graphic
2621 objects). Each grob carries with it a set of properties (grob
2622 properties) specific to that grob.  For example, a stem grob has grob
2623 properties that specify its direction, length and thickness.
2624
2625 The most common way of tuning the output is to alter the values of these
2626 properties. There are two ways of doing that: first, you can
2627 specifically select a set of grobs at one point, and set properties as
2628 you wish, or secondly, you can (temporarily) modify the definition of a
2629 grob, thereby affecting an entire group of grobs.
2630
2631 @menu
2632 * Tuning groups of grobs ::     
2633 * Tuning per grob ::            
2634 * What to tune?::               
2635 * Text markup::                 
2636 @end menu
2637
2638 @node Tuning groups of grobs 
2639 @subsection Tuning groups of grobs 
2640
2641 @cindex grob description
2642
2643 A grob definition is an association list, that is stored in a context
2644 property.  By assigning to that property (using plain @code{\property}),
2645 you can change the resulting grobs.  
2646 @lilypond[verbatim, fragment]
2647 c'4 \property Voice.Stem \override #'meta = #'((interfaces . ())) c'4
2648 @end lilypond
2649 The @code{\property} statement effectively empties the definition of the
2650 Stem object. One of the effects is that property specifying how it
2651 should be printed is erased, with the effect of rendering it invisible.
2652
2653 @cindex \override
2654 @cindex \revert
2655 @cindex \set
2656
2657
2658 This mechanism is fairly crude, since you can only set, but not modify,
2659 the definition of a grob. For this reason, there is a more advanced
2660 mechanism: you can add a property on top of an existing definition, or
2661 remove a property: @code{\override} adds a settings, @code{\revert}
2662 removes that setting.
2663 @lilypond[verbatim]
2664 c'4 \property Voice.Stem \override #'thickness = #4.0
2665 c'4 \property Voice.Stem \revert #'thickness
2666 c'4
2667 @end lilypond
2668
2669 For the digirati, the grob description is an Scheme association
2670 list. Since it is singly linked, we can treat it as a stack, and
2671 @code{\override} and @code{\revert} are just push and pop
2672 operations. This pushing and popping is also used in the
2673 @code{autoBeamSettings} property.
2674
2675 If you revert a setting which was not set in the first place, then it
2676 has no effect. However, if the setting was set as a system default, it
2677 may remove the default value, and this may give surprising results,
2678 including crashes.  In other words, if you use @code{\override} and
2679 @code{\revert}, be sure to balance the overrides and reverts.
2680
2681 If balancing them is too much work, use the following shorthand:
2682 @code{\set} performs a revert followed by an override:
2683 @example
2684 \property Voice.Stem \set #'thickness = #2.0
2685 @end example
2686
2687 Formally the syntax for these constructions is
2688 @example
2689 \property @var{context}.@var{grobname} \override @var{symbol} = @var{value}
2690 \property @var{context}.@var{grobname} \set @var{symbol} = @var{value}
2691 \property @var{context}.@var{grobname} \revert @var{symbol}
2692 @end example
2693 Here @var{symbol} is a Scheme expression of symbol type, @var{context}
2694 and @var{grobname} are strings and @var{value} is a Scheme expression.
2695
2696 LilyPond will hang or crash if @var{value} contains cyclic references.
2697
2698
2699
2700 @node Tuning per grob 
2701 @subsection Tuning per grob 
2702
2703 @cindex \outputproperty
2704
2705 A second way of tuning grobs is the more arcane @code{\outputproperty}
2706 feature.
2707 Syntax is as follows
2708 @example
2709 \outputproperty @var{predicate} @var{symbol} = @var{value}
2710 @end example
2711 Here @code{predicate} is a Scheme functoin taking a grob a argument
2712 argument, and returning a boolean.  This statement is processed by the
2713 @code{Output_property_engraver}.  It instructs the engraver to feed all
2714 grobs that it sees to @var{predicate}. Whenever the predicate returns
2715 true, the grob property @var{symbol} will be set to @var{value}.
2716
2717 You will need to combine this statement with @code{\context} to select
2718 the appropriate context to apply this to.
2719
2720 If possible, avoid this feature: the semantics are not very clean, and
2721 the syntax and semantics are up for rewrite.
2722
2723 Here are some random examples:
2724
2725 @lilypond[fragment,verbatim,singleline]
2726 \relative c'' { c4
2727   \context Staff \outputproperty
2728   #(make-type-checker 'note-head-interface)
2729   #'extra-offset = #'(0.5 . 0.75)
2730   <c8 e g> }
2731 @end lilypond
2732
2733 @cindex @code{extra-offset}
2734
2735 This selects all note heads occurring at current staff level, and sets
2736 the @code{extra-offset} of those heads to @code{(0.5,0.75)}, shifting
2737 them up and right.
2738
2739 Move the text "m.d.", but not the fingering instruction "2".
2740 @lilypond[verbatim,singleline]
2741 #(define (make-text-checker text)
2742    (lambda (grob) (equal? text (ly-get-elt-property grob 'text))))
2743
2744 \score {    
2745   \notes\relative c''' {
2746     \property Voice.Stem \set #'direction = #1
2747     \outputproperty #(make-text-checker "m.d.")
2748       #'extra-offset = #'(-3.5 . -4.5)
2749     a^2^"m.d."    
2750   }
2751 }
2752 @end lilypond
2753
2754
2755
2756
2757 @node What to tune?
2758 @subsection What to tune?
2759
2760 This all tells you how to tune grobs, but what variables are there? The
2761 question is not  answered in this manual (although you may encounter
2762 some examples.).
2763
2764 Grob properties are tied directly to the implementation of LilyPond, and
2765 they are thus a moving target. Refer to the automatically generated
2766 documentation of the internals (available from the website).
2767
2768 You need the following information
2769
2770 @itemize @bullet
2771 @item
2772 which grob to modify
2773 @item
2774 which property to modify
2775 @item
2776 which context the grob comes from.
2777 @end itemize
2778
2779 Included with the automatically generated documentation is a master list
2780 of grobs. Each one can be clicked, taking you to a overview of the
2781 available properties.
2782
2783 There is also a master list of contexts. Clicking each takes you to an
2784 overview of the context, listing which grob types are created there.
2785
2786
2787
2788 @node Text markup
2789 @subsection Text markup
2790 @cindex text markup
2791 @cindex markup text
2792
2793 LilyPond has an internal mechanism to typeset texts. You can
2794 form text markup expressions by composing scheme expressions
2795 in the following way.
2796
2797 @lilypond[verbatim]
2798 \score {
2799   \notes \relative c' {
2800     b-#"italic"
2801     c-#'(upright "upright")
2802     c-#'((bold upright) "bold")
2803     d-#'(lines "one" ((bold upright) "two"))
2804     e-#'(music (named "noteheads-2" "flags-u3"))
2805   }
2806   \paper { linewidth = 10.\cm; }
2807 }
2808 @end lilypond
2809
2810 Normally, the Scheme markup text is stored in the @code{text} property
2811 of a grob.  Formally, it is defined as follows:
2812
2813 @example
2814 text: string | (head? text+)
2815 head: markup | (markup+)
2816 markup-item: property | abbrev | @var{fontstyle}
2817 property: (@var{key} . @var{value})
2818 abbrev: @code{rows lines roman music bold italic named super sub text}
2819 @end example
2820
2821 The markup is broken down and converted into a list of grob properties,
2822 which are prepended to the grop's property list.  The
2823 @var{key}-@var{value} pair is a grob property.
2824
2825 The following abbreviations are currently
2826 defined:
2827
2828 @table @code
2829 @item rows
2830 horizontal mode: set all text on one line (default)
2831 @item lines
2832  vertical mode: set every text on new line
2833 @item roman
2834  select roman font
2835 @item music
2836  select feta font
2837 @item bold
2838  select bold series
2839 @item italic
2840  select italic shape
2841 @item named
2842  lookup by character name
2843 @item text
2844  plain text lookup (by character value)
2845 @item super
2846  superscript
2847 @item sub
2848  subscript
2849 @end table
2850
2851 @var{fontstyle} may be any of @code{finger volta timesig mmrest mark
2852 script large Large dynamic}
2853
2854
2855 @c . {Page layout}
2856 @node Page layout
2857 @section Page layout
2858 @cindex Page layout
2859
2860 @menu
2861 * Paper block::                 
2862 * Paper variables::             
2863 * Font Size::                   
2864 * Paper size::                  
2865 * Line break::                  
2866 * Page break::                  
2867 @end menu
2868
2869 @c .  {Paper block}
2870 @node Paper block
2871 @subsection Paper block
2872 @cindex Paper block
2873
2874 The most important output definition is the @code{\paper} block, for
2875 music notation.  The syntax is
2876
2877 @example
2878   @code{\paper @{} [@var{paperidentifier}] @var{items} @code{@}}
2879 @end example
2880
2881 where each of the items is one of
2882
2883 @itemize @bullet
2884   @item  An assignment.  The assignment must be terminated by a
2885        semicolon.  
2886
2887   @item  A context definition.  See Section @ref{Notation Contexts} for
2888        more information on context definitions.
2889
2890   @item  \stylesheet  declaration.  Its syntax is
2891        @example
2892                 \stylesheet @var{alist}
2893        @end example
2894
2895         See @file{font.scm} for details of @var{alist}.
2896 @end itemize
2897
2898 @c .  {Paper variables}
2899 @node Paper variables
2900 @subsection Paper variables 
2901 @cindex Paper variables
2902
2903 The paper block has some variables you may want to use or change:
2904
2905 @table @code
2906 @cindex @code{indent}
2907   @item @code{indent}  
2908     The indentation of the first line of music.
2909 @cindex @code{staffspace}
2910
2911   @item @code{staffspace}
2912     The distance between two staff lines, calculated from the center
2913     of the lines.  You should use either this or @code{stafflinethickness}
2914     as a unit for distances you modify.
2915   
2916 @cindex @code{linewidth}
2917   @item @code{linewidth}  
2918     Sets the width of the lines.
2919
2920 If set to a negative value, a single
2921     unjustified line is produced.
2922
2923 @cindex @code{textheight}
2924
2925   @item @code{textheight}  
2926     Sets the total height of the music on each page. Only used by
2927     ly2dvi.
2928 @cindex @code{interscoreline}
2929
2930   @item @code{interscoreline}  
2931     Sets the spacing between the score lines. Defaults to 16 pt.
2932 @cindex @code{interscorelinefill}
2933
2934   @item @code{interscorelinefill}  
2935     If set to a positive number, the distance between the score 
2936     lines will stretch in order to fill the full page. In that
2937     case @code{interscoreline} specifies the minimum spacing.
2938     Defaults to 0.
2939 @cindex @code{stafflinethickness}
2940
2941   @item @code{stafflinethickness}  
2942     Determines the thickness of staff lines, and also acts as a scaling
2943     parameter for other line thicknesses.
2944 @end table
2945
2946
2947
2948 @c .  {Font size}
2949 @node Font Size
2950 @subsection Font size
2951 @cindex font size
2952
2953 The Feta font provides musical symbols at six different sizes.  These
2954 fonts are 11 point, 13 point, 16 point, 20 point,
2955 23 point, and 26 point.  The point size of a font is the
2956 height of the five lines in a staff when displayed in the font.
2957
2958 Definitions for these sizes are the files @file{paperSZ.ly}, where
2959 @code{SZ} is one of 11, 13, 16, 20, 23 and 26.  If you include any of
2960 these files, the identifiers @code{paperEleven}, @code{paperThirteen},
2961 @code{paperSixteen}, @code{paperTwenty}, @code{paperTwentythree}, and
2962 @code{paperTwentysix} are defined respectively.  The default
2963 @code{\paper} block is also set.
2964
2965 The font definitions are generated using a Scheme function. For more
2966 details, see the file @file{font.scm}.
2967
2968
2969
2970 @c .  {Paper size}
2971 @node Paper size
2972 @subsection Paper size
2973 @cindex Paper size
2974
2975 @cindex paper size
2976 @cindex page size
2977 @cindex @code{papersize}
2978
2979 To change the paper size, you must first set the
2980 @code{papersize} variable at top level.  Set it to
2981 the strings @code{a4}, @code{letter}, or @code{legal}.  After this
2982 specification, you must set the font as described above.  If you want
2983 the default font, then use the 20 point font.  The new paper size will
2984 not take effect if the font is not loaded and selected afterwards.
2985
2986 @example
2987         papersize = "a4"
2988         \include "paper16.ly"
2989
2990         \score @{
2991                 ...
2992                 \paper @{ \paperSixteen @}
2993         @}
2994 @end example
2995
2996 The file "paper16.ly" will now include a file named @file{a4.ly}, which
2997 will set the paper variables @code{hsize} and @code{vsize} (used by
2998 @code{ly2dvi})
2999
3000
3001
3002
3003
3004
3005
3006 @c .  {Line break}
3007 @node Line break
3008 @subsection Line break
3009
3010 @cindex line breaks
3011 @cindex breaking lines
3012
3013 Line breaks are normally computed automatically. They are chosen such
3014 that the resulting spacing has low variation, and looks neither cramped
3015 nor loose.
3016
3017 Occasionally you might want to override the automatic breaks; you can do
3018 this by specifying @code{\break}. This will force a line break at this
3019 point. Do remember that line breaks can only occur at places where there
3020 are barlines.  If you want to have a line break where there is no
3021 barline, you can force a barline by entering @code{\bar "";}.
3022
3023 Similarly, @code{\noBreak} forbids a  line break at a certain point.
3024
3025 @cindex @code{\penalty}
3026
3027 The @code{\break} and @code{\noBreak} commands are defined in terms of
3028 the penalty command:
3029 @example
3030   \penalty @var{int} @code{;}
3031 @end example
3032
3033 This imposes   encourages or discourages LilyPond to make a line break
3034 at this point.
3035
3036 @strong{Warning} do not use @code{\penalty} directly. It is rather
3037 kludgy, and slated for rewriting.
3038
3039 @c .  {Page break}
3040 @node Page break
3041 @subsection Page break
3042
3043 @cindex page breaks
3044 @cindex breaking pages
3045
3046
3047 Page breaks are normally computed by @TeX{}, so they are not under direct
3048 control.  However, you can insert a commands into the @file{.tex} output to
3049 instruct @TeX{} where to break pages. For more details, see  the
3050 example file @file{input/test/between-systems.ly}
3051
3052 [or -> Tricks? ]
3053
3054
3055
3056
3057
3058
3059 @c . {Sound}
3060 @node Sound
3061 @section Sound
3062 @cindex Sound
3063
3064 LilyPond allows MIDI output, with the purpose of proof-hearing the music
3065 you enter. The performance lacks lots of interesting effects, such as
3066 swing, articulation, slurring, tieing, etc.
3067
3068 Also note that it is not possible to use the percussion channel
3069 (generally channel 10 of a MIDI file).
3070
3071 @menu
3072 * MIDI block::                  
3073 * MIDI instrument names::       
3074 * Tempo::                       
3075 @end menu
3076
3077 @c .  {MIDI block}
3078 @node MIDI block
3079 @subsection MIDI block
3080 @cindex MIDI block
3081
3082
3083 The MIDI block is analogous to the paper block, but it is somewhat
3084 simpler.  The @code{\midi} block can contain:
3085 @cindex MIDI block
3086
3087 @itemize @bullet
3088   @item  a @code{\tempo} definition
3089   @item  context definitions
3090 @end itemize
3091
3092 Assignments in the @code{\midi} block are not allowed.
3093
3094
3095
3096 @cindex context definition
3097
3098 Context definitions follow precisely the same syntax as within the
3099 \paper block.  Translation modules for sound are called performers.
3100 The contexts for MIDI output are defined in @file{ly/performer.ly}.
3101
3102 [Volume control]
3103 [Instrument Equaliser]
3104
3105 FIXME: would it be useful to refer to files like scm/midi.scm,
3106 or to give examples of how to tweak MIDI output volume?
3107
3108
3109 @c .  {MIDI instrument names}
3110 @node MIDI instrument names
3111 @subsection MIDI instrument names
3112 @cindex instrument names
3113 @cindex @code{Staff.midiInstrument}
3114 @cindex @code{Staff.instrument}
3115
3116 The MIDI instrument name is set by the @code{Staff.midiInstrument}
3117 property or, if that property is not set, the @code{Staff.instrument}
3118 property.  The instrument name should be chosen from the following list.
3119 If the selected string does not exactly match, then LilyPond uses the
3120 default piano.
3121
3122 [FIXME: to appendix ]
3123
3124
3125 @example 
3126 "acoustic grand"            "contrabass"           "lead 7 (fifths)"
3127 "bright acoustic"           "tremolo strings"      "lead 8 (bass+lead)"
3128 "electric grand"            "pizzicato strings"    "pad 1 (new age)"
3129 "honky-tonk"                "orchestral strings"   "pad 2 (warm)"
3130 "electric piano 1"          "timpani"              "pad 3 (polysynth)"
3131 "electric piano 2"          "string ensemble 1"    "pad 4 (choir)"
3132 "harpsichord"               "string ensemble 2"    "pad 5 (bowed)"
3133 "clav"                      "synthstrings 1"       "pad 6 (metallic)"
3134 "celesta"                   "synthstrings 2"       "pad 7 (halo)"
3135 "glockenspiel"              "choir aahs"           "pad 8 (sweep)"
3136 "music box"                 "voice oohs"           "fx 1 (rain)"
3137 "vibraphone"                "synth voice"          "fx 2 (soundtrack)"
3138 "marimba"                   "orchestra hit"        "fx 3 (crystal)"
3139 "xylophone"                 "trumpet"              "fx 4 (atmosphere)"
3140 "tubular bells"             "trombone"             "fx 5 (brightness)"
3141 "dulcimer"                  "tuba"                 "fx 6 (goblins)"
3142 "drawbar organ"             "muted trumpet"        "fx 7 (echoes)"
3143 "percussive organ"          "french horn"          "fx 8 (sci-fi)"
3144 "rock organ"                "brass section"        "sitar"
3145 "church organ"              "synthbrass 1"         "banjo"
3146 "reed organ"                "synthbrass 2"         "shamisen"
3147 "accordion"                 "soprano sax"          "koto"
3148 "harmonica"                 "alto sax"             "kalimba"
3149 "concertina"                "tenor sax"            "bagpipe"
3150 "acoustic guitar (nylon)"   "baritone sax"         "fiddle"
3151 "acoustic guitar (steel)"   "oboe"                 "shanai"
3152 "electric guitar (jazz)"    "english horn"         "tinkle bell"
3153 "electric guitar (clean)"   "bassoon"              "agogo"
3154 "electric guitar (muted)"   "clarinet"             "steel drums"
3155 "overdriven guitar"         "piccolo"              "woodblock"
3156 "distorted guitar"          "flute"                "taiko drum"
3157 "guitar harmonics"          "recorder"             "melodic tom"
3158 "acoustic bass"             "pan flute"            "synth drum"
3159 "electric bass (finger)"    "blown bottle"         "reverse cymbal"
3160 "electric bass (pick)"      "skakuhachi"           "guitar fret noise"
3161 "fretless bass"             "whistle"              "breath noise"
3162 "slap bass 1"               "ocarina"              "seashore"
3163 "slap bass 2"               "lead 1 (square)"      "bird tweet"
3164 "synth bass 1"              "lead 2 (sawtooth)"    "telephone ring"
3165 "synth bass 2"              "lead 3 (calliope)"    "helicopter"
3166 "violin"                    "lead 4 (chiff)"       "applause"
3167 "viola"                     "lead 5 (charang)"     "gunshot"
3168 "cello"                     "lead 6 (voice)" 
3169 @end example 
3170
3171
3172
3173
3174
3175 @c .  {Tempo}
3176 @node Tempo
3177 @subsection Tempo
3178 @cindex Tempo
3179 @cindex beats per minute
3180 @cindex metronome marking
3181
3182 @cindex @code{\tempo}
3183 @example
3184   \tempo @var{duration} = @var{perminute} @code{;}
3185 @end example
3186
3187 Used to specify the tempo.  For example, @code{\tempo 4 = 76;} requests
3188 output with 76 quarter notes per minute.
3189
3190
3191
3192
3193
3194 @c . {Music entry}
3195 @node Music entry
3196 @section Music entry
3197 @cindex Music entry
3198 @menu
3199 * Relative::                    
3200 * Point and click::             
3201 @end menu
3202
3203
3204
3205 @c .  {Relative}
3206 @node Relative
3207 @subsection Relative
3208 @cindex Relative
3209 @cindex relative octave specification
3210
3211 Octaves are specified by adding @code{'} and @code{,} to pitch names.
3212 When you copy existing music, it is easy to accidentally put a pitch in
3213 the wrong octave and hard to find such an error.  To prevent these
3214 errors, LilyPond features octave entry.
3215
3216 @cindex @code{\relative}
3217 @example
3218   \relative @var{startpitch} @var{musicexpr}
3219 @end example
3220
3221 The octave of notes that appear in @var{musicexpr} are calculated as
3222 follows: If no octave changing marks are used, the basic interval
3223 between this and the last note is always taken to be a fourth or less.
3224   The octave changing marks @code{'} and @code{,} can then
3225 be added to raise or lower the pitch by an extra octave.  Upon entering
3226 relative mode, an absolute starting pitch must be specified that will
3227 act as the predecessor of the first note of @var{musicexpr}.
3228
3229 This distance is determined without regarding accidentals: a
3230 @code{fisis} following a @code{ceses} will be put above the
3231 @code{ceses}.
3232
3233 Entering scales is straightforward in relative mode.
3234
3235 @lilypond[fragment,verbatim,center]
3236   \relative c'' {
3237     g a b c d e f g g, g
3238   }
3239 @end lilypond
3240
3241 And octave changing marks are used for intervals greater than a fourth.
3242
3243 @lilypond[fragment,verbatim,center]
3244   \relative c'' {
3245     c g c f, c' a, e'' }
3246 @end lilypond
3247
3248 If the preceding item is a chord, the first note of the chord is used
3249 to determine the first note of the next chord.  But other notes
3250 within the second chord are determined by looking at the immediately
3251 preceding note.
3252
3253 @lilypond[fragment,verbatim,center]
3254   \relative c' {
3255     c <c e g> 
3256     <c' e g>
3257     <c, e' g>
3258   }
3259 @end lilypond 
3260 @cindex @code{\notes}
3261
3262 The pitch after the @code{\relative} contains a notename.  To parse
3263 the pitch as a notename, you have to be in note mode, so there must
3264 be a surrounding @code{\notes} keyword (which is not
3265 shown here).
3266
3267 The relative conversion will not affect @code{\transpose} or
3268 @code{\relative} sections in its argument.  If you want to use
3269 relative within transposed music, you must place an additional
3270 @code{\relative} inside the @code{\transpose}.
3271
3272
3273 @c .  {Point and click}
3274 @node Point and click
3275 @subsection Point and click
3276
3277 [todo]
3278
3279 @c . {Engravers}
3280 @node Engravers
3281 @section Engravers
3282 @cindex engravers
3283 @menu
3284 * Notation Contexts::           
3285 * Creating contexts::           
3286 * Default contexts::            
3287 * Context properties::          
3288 * Changing context definitions::  
3289 * Defining new contexts::       
3290 @end menu
3291
3292 @c .  {Music expressions}
3293
3294
3295
3296 @c .  {Notation Contexts}
3297 @node Notation Contexts
3298 @subsection Notation Contexts
3299
3300 @cindex notation contexts
3301
3302 Notation contexts are objects that only exist during a run of LilyPond.
3303 During the interpretation phase of LilyPond (when lily prints
3304 "interpreting music"), music a @code{\score} block is interpreted in
3305 time order, i.e. in much the same order that humans read, play, and
3306 write music.
3307
3308 During this reading, the notation context is holds the state
3309 for the current point within the music. It contains information like
3310
3311 @itemize @bullet
3312   @item What notes are playing at this point?
3313   @item What symbols will be printed at this point?
3314   @item What is the current key signature, time signature, point within
3315        the measure, etc.?
3316 @end itemize
3317
3318 Contexts are grouped hierarchically: A @code{Voice} context is
3319 contained in a @code{Staff} context (because a staff can contain
3320 multiple voices at any point), a @code{Staff} context is contained in
3321 a @code{Score}, @code{StaffGroup}, or @code{ChoirStaff} context (because
3322 these can all contain multiple staffs).
3323
3324
3325 Contexts associated with sheet music output are called @emph{notation
3326 contexts}, those for sound output are called performance contexts.
3327
3328
3329 @node Creating contexts
3330 @subsection Creating contexts
3331
3332 @cindex @code{\context}
3333 @cindex context selection
3334
3335 Contexts for a music expression can be selected manually, using the
3336 following music expression.
3337
3338 @example
3339   \context @var{contexttype} [= @var{contextname}] @var{musicexpr}
3340 @end example
3341
3342 This instructs lilypond to interpret @var{musicexpr} within the context
3343  of type @var{contexttype} and with name @var{contextname}.  If this
3344 context does not exist, it will be created.  
3345
3346 @quotation
3347
3348 @lilypond[verbatim,singleline]
3349 \score {
3350   \notes \relative c'' {
3351     c4 <d4 \context Staff = "another" e4> f
3352   }
3353 }
3354
3355 @end lilypond
3356 @end quotation
3357
3358 In this example, the @code{c} and @code{d} are printed on the
3359 default staff.  For the @code{e}, a context Staff called
3360 @code{another} is specified; since that does not exist, a new
3361 context is created.  Within @code{another}, a (default) Voice context
3362 is created for the @code{e4}.  When all music referring to a
3363 context is finished, the context is ended as well.  So after the
3364 third quarter, @code{another} is removed.
3365
3366
3367
3368 @node Default contexts
3369 @subsection Default contexts
3370
3371 Most music expressions don't need @code{\context}: they inherit the
3372 notation context from their parent. Each note is a music expression, and
3373 as you can see in the following example, only the sequential music
3374 enclosing the three notes has an explicit context. 
3375
3376 @lilypond[verbatim,singleline]
3377 \score { \notes \context Voice = goUp { c'4 d' e' } } 
3378 @end lilypond
3379
3380 There are some quirks that you must keep in mind when dealing with
3381 defaults:
3382
3383 Every top-level music is interpreted by the Score context, in other
3384 words, you may think of @code{\score} working like
3385 @example
3386         \score @{
3387                 \context Score @var{music}
3388         @}
3389 @end example
3390
3391 Sequential music follows the contexts of its "children".  Take this example
3392 @lilypond[verbatim, singleline]
3393 \score { \context Score \notes { c'4 (  d' )e' } }
3394 @end lilypond
3395
3396 The sequential music is interpreted by the Score context initially
3397 (notice that the @code{\context} specification is redundant), but when a
3398 note is encountered, contexts are setup to accept that note. In this
3399 case, a Thread, Voice and Staff are created. The rest of the sequential
3400 music is also interpreted with the same Thread, Voice and Staff context,
3401 putting the notes on the same staff, in the same voice.
3402
3403 This is a convenient mechanism, but do not expect opening chords to work
3404 without @code{\context}. For every note, a separate staff is
3405 instantiated.
3406
3407 @lilypond[verbatim, singleline]
3408 \score { \notes <c'4 es'> } 
3409 @end lilypond
3410
3411 Of course, if the chord is preceded by a normal note in sequential
3412 music, the chord will be interpreted by the Thread of the preceding
3413 note:
3414 @lilypond[verbatim,singleline]
3415 \score { \notes { c'4 <c'4 es'> }  }
3416 @end lilypond
3417
3418
3419
3420 @node Context properties
3421 @subsection Context properties
3422
3423 Notation contexts can be modified from within the @file{.ly} file. The
3424 following music expression does that job:
3425
3426 @cindex @code{\property}
3427 @example
3428   \property @var{contextname}.@var{propname} =  @var{value}
3429 @end example
3430
3431 Sets the @var{propname} property of the context @var{contextname} to the
3432 specified Scheme expression @var{value}.  All @var{propname} and
3433 @var{contextname} are strings, which are typically unquoted.
3434
3435 Properties that are set in one context are inherited by all of the
3436 contained contexts.  This means that a property valid for the
3437 @code{Voice} context can be set in the @code{Score} context (for
3438 example) and thus take effect in all @code{Voice} contexts.
3439
3440
3441
3442
3443 @c .  {Context definitions}
3444 @node Changing context definitions
3445 @subsection Changing context definitions
3446
3447 @cindex context definition
3448 @cindex translator definition
3449
3450 The most common way to define a context is by extending an existing
3451 context.  You can change an existing context from the paper block, by
3452 first initializing a translator with an existing context identifier:
3453 @example
3454 \paper @{
3455   \translator @{
3456     @var{context-identifier}
3457   @} @}
3458 @end example
3459 Then you can add engravers, remove engravers and set context
3460 properties. The syntax for these operations are respectively
3461 @example
3462  \remove @var{engravername}
3463  \consists @var{engravername}
3464  @var{propname} = @var{value} 
3465 @end example
3466
3467 Here @var{engravername} is a string, the name of an engraver in the
3468 system. @var{propname} is a string and @var{value} is a Scheme
3469 expression.
3470
3471 @lilypond[verbatim,singleline]
3472 \score {  \notes {
3473         c'4 c'4 }
3474   \paper {
3475     \translator  { \StaffContext
3476         \consists Instrument_name_engraver;
3477         instrument = #"foo"
3478         \remove Clef_engraver;
3479        } } }
3480 @end lilypond
3481
3482 @cindex engraver
3483
3484 These type of property assignments happen before interpretation starts,
3485 so a @code{\property} expression will override any predefined settings.
3486
3487 Engravers are the actual C++ modules that do the work in the
3488 interpretation phase.
3489
3490
3491 There are some pre-defined identifiers to simplify editing translators,
3492 they are defined in @file{ly/engraver.ly}.  These pre-defined
3493 identifiers are:
3494
3495 @table @code
3496 @cindex @code{StaffContext}
3497   @item @code{StaffContext}  
3498     Default Staff context. 
3499 @cindex @code{RhythmicStaffContext}
3500
3501   @item @code{RhythmicStaffContext}  
3502     Default RhythmicStaff context. 
3503 @cindex @code{VoiceContext}
3504
3505   @item @code{VoiceContext}  
3506     Default Voice context.  
3507 @cindex @code{ScoreContext}
3508
3509   @item @code{ScoreContext}  
3510     Default Score context. 
3511
3512 @cindex @code{HaraKiriStaffContext}
3513
3514   @item @code{HaraKiriStaffContext}  
3515     Staff context that does not print if it only contains rests. 
3516     Useful for orchestral scores.@footnote{Harakiri, also called
3517     Seppuku, is the ritual suicide of the Japanese Samourai warriors.}
3518 @end table
3519
3520 @node Defining new contexts
3521 @subsection Defining new contexts
3522
3523 If you want to build a context from scratch, you must also supply the
3524 following extra information:
3525 @itemize @bullet
3526   @item  A name, specified by @code{\name @var{contextname};}.
3527
3528   @item A cooperation engraver. This is specified by   @code{\type
3529 @var{typename};}.
3530 @end itemize
3531
3532
3533 A context definition has this syntax:
3534
3535 @example
3536
3537   \translator @code{@{}
3538                       @var{translatorinit} @var{translatormodifierlist}
3539                     @code{@}}
3540 @end example
3541
3542 @var{translatorinit} can be an identifier or 
3543 @example
3544
3545 @end example
3546 where @var{typename} is one of
3547
3548 The cooperation engraver groups other engravers, and specifies how they
3549 should cooperate. Choices are:
3550
3551 @table @code
3552 @cindex @code{Engraver_group_engraver}
3553   @item @code{Engraver_group_engraver}  
3554     The standard cooperation engraver.
3555
3556 @cindex @code{Score_engraver}
3557
3558   @item @code{Score_engraver}  
3559     This is cooperation module that should be in the top level context,
3560 and only the toplevel context.
3561
3562 @cindex @code{Grace_engraver_group}
3563
3564   @item @code{Grace_engraver_group}  
3565     This is a special cooperation module (resembling
3566     @code{Score_engraver}) that is used to created an embedded
3567     `miniscore'.
3568 @end table 
3569
3570 @var{translatormodifierlist} is a list of items where each item is
3571 one of
3572
3573 @itemize @bullet
3574   @item  @code{\consists} @var{engravername} @code{;}  
3575     Add @var{engravername} to the list of modules in this context. 
3576   The order of engravers added with @code{\consists} is
3577     significant.
3578   
3579   @item  @code{\consistsend} @var{engravername} @code{;}  
3580     Analogous to @code{\consists}, but makes sure that
3581     @var{engravername} is always added to the end of the list of
3582     engravers.
3583
3584     Some engraver types need to be at the end of the list; this
3585     insures they are put there, and stay there, if a user adds or
3586     removes engravers.  This command is usually not needed for
3587     end-users.
3588     
3589   @item  @code{\accepts} @var{contextname} @code{;}  
3590     Add @var{contextname} to the list of  context this context can
3591     contain.  The first listed context is the context to create by
3592     default.
3593
3594   @item @code{\denies}. The opposite of @code{\accepts}. Added for
3595 completeness, but is never used in practice.
3596  
3597   
3598   @item  @code{\remove} @var{engravername} @code{;}  
3599     Remove a previously added (with @code{\consists}) engraver.
3600   
3601   @item  @code{\name} @var{contextname} @code{;}  
3602     This sets name of the context, e.g. @code{Staff}, @code{Voice}.  If
3603     the name is not specified, the translator won't do anything.
3604
3605   @item  @var{propname} @code{=} @var{value} @code{;}  
3606     A property assignment.
3607 @end itemize
3608
3609 In the @code{\paper} block, it is also possible to define translator
3610 identifiers.  Like other block identifiers, the identifier can only
3611 be used as the very first item of a translator.  In order to define
3612 such an identifier outside of @code{\score}, you must do
3613
3614 @quotation
3615
3616 @example 
3617 \paper @{
3618   foo = \translator @{ @dots{} @}
3619 @}
3620 \score @{
3621   \notes @{
3622     @dots{}
3623   @}
3624   \paper @{
3625     \translator @{ \foo @dots{} @}
3626   @}
3627 @} 
3628 @end example 
3629
3630 @end quotation
3631
3632
3633 @cindex paper types, engravers, and pre-defined translators
3634
3635       
3636
3637
3638         Properties can be preset within the @code{\translator} block
3639 corresponding to the appropriate context.  In this case, the syntax
3640 is
3641
3642 @example
3643   @var{propname} @code{=} @var{value}
3644 @end example
3645
3646 The property settings are used during the interpretation phase.  They
3647 are read by the LilyPond modules where interpretation contexts are
3648 built of.  These modules are called @emph{translators}.  Translators for
3649 notation are called @emph{engravers}, and translators for sound are
3650 called @emph{performers}.
3651
3652
3653
3654
3655 @c . {Syntactic details}
3656 @node Syntactic details
3657 @section Syntactic details
3658 @cindex Syntactic details
3659 @menu
3660 * Top level::                   
3661 * Identifiers::                 
3662 * Music expressions::           
3663 * Manipulating music expressions::  
3664 * Assignments::                 
3665 * Lexical details::             
3666 * Lexical modes::               
3667 * Ambiguities::                 
3668 @end menu
3669
3670 @c .  {Top level}
3671 @node Top level
3672 @subsection Top level
3673 @cindex Top level
3674
3675 This section describes what you may enter at top level.
3676
3677
3678 @c .   {Score}
3679 @subsubsection Score
3680 @cindex Score
3681
3682 @cindex score definition
3683
3684 The output is generated combining a music expression with an output
3685 definition.  A score block has the following syntax:
3686
3687 @example
3688   \score @{ @var{musicexpr} @var{outputdefs} @}
3689 @end example
3690
3691 @var{outputdefs} are zero or more output definitions.  If no output
3692 definition is supplied, the default @code{\paper} block will be added.
3693
3694
3695
3696 @c .   {Default output}
3697 @subsubsection Default output
3698
3699 Default values for the @code{\paper} and @code{\midi} block are set by
3700 entering such a block at top-level.
3701
3702 @c .   {Header}
3703 @subsubsection Header
3704 @cindex Header
3705 @cindex @code{\header}
3706
3707 The syntax is
3708
3709 @example
3710   \header @{ @var{key1} = @var{val1};
3711 @cindex @code{ly2dvi}
3712              @var{key2} = @var{val2}; @dots{} @}
3713 @end example
3714
3715
3716 A header describes the file's contents.  It can also appear in a
3717 @code{\score} block.  Tools like @code{ly2dvi} can use this
3718 information for generating titles.  Key values that are used by
3719 @code{ly2dvi} are: title, subtitle, composer, opus, poet, instrument,
3720 metre, arranger, piece and tagline.
3721
3722 It is customary to put the @code{\header} at the top of the file.
3723
3724 @subsubsection Default output
3725
3726 A @code{\midi} or @code{\paper} block at top-level sets the default
3727
3728 paper block for all scores that lack an explicit paper block.
3729
3730 @c .  {Identifiers}
3731 @node Identifiers
3732 @subsection Identifiers
3733 @cindex  Identifiers
3734
3735 All of the information in a LilyPond input file, is represented as a
3736 Scheme value. In addition to normal Scheme data types (such as pair,
3737 number, boolean, etc.), LilyPond has a number of specialized data types,
3738
3739 @itemize @bullet
3740 @item Input
3741 @item c++-function
3742 @item Music
3743 @item Identifier
3744 @item Translator_def
3745 @item Duration
3746 @item Pitch
3747 @item Score
3748 @item Music_output_def
3749 @item Moment (rational number)
3750 @end itemize
3751
3752 LilyPond also includes some transient object types. Objects of these
3753 types are built during a LilyPond run, and do not `exist' per se within
3754 your input file. These objects are created as a result of your input
3755 file, so you can include commands in the input to manipulate them,
3756 during a lilypond run.
3757
3758 @itemize @bullet
3759 @item Grob: short for Graphical object. See @ref{Grobs}. 
3760 @item Molecule: device-independent page output object,
3761 including dimensions.  Produced by some Grob functions
3762 See @ref{Molecules}
3763 @item Translator: object that produces audio objects or Grobs. This is
3764 not yet user accessible.
3765 @item Font_metric: object representing a font. (See @ref{Font metrics})
3766
3767 @end itemize
3768
3769
3770 @node Music expressions
3771 @subsection Music expressions
3772
3773 @cindex music expressions
3774
3775 Music in LilyPond is entered as a music expression.  Notes, rests, lyric
3776 syllables are music expressions, and you can combine music expressions
3777 to form new ones, for example by enclosing a list of expressions in
3778 @code{\sequential @{ @}} or @code{< >}.  In this example, a compound
3779 expression is formed out of the quarter note @code{c} and a quarter note
3780 @code{d}:
3781
3782 @example 
3783 \sequential @{ c4 d4 @} 
3784 @end example 
3785
3786 @cindex Sequential music
3787 @cindex @code{\sequential}
3788 @cindex sequential music
3789 @cindex @code{<}
3790 @cindex @code{>}
3791 @cindex Simultaneous music
3792 @cindex @code{\simultaneous}
3793
3794 The two basic compound  music expressions are simultaneous  and
3795 sequential music.
3796
3797 @example
3798   \sequential @code{@{} @var{musicexprlist} @code{@}}
3799   \simultaneous @code{@{} @var{musicexprlist} @code{@}}
3800 @end example
3801 For both, there is a shorthand:
3802 @example
3803   @code{@{} @var{musicexprlist} @code{@}}
3804 @end example
3805 for sequential and
3806 @example
3807   @code{<} @var{musicexprlist} @code{>}
3808 @end example
3809 for simultaneous music.
3810 Other compound music expressions include
3811 @example
3812  \repeat @var{expr}
3813  \transpose @var{pitch} @var{expr}
3814  \apply @var{func} @var{expr}
3815  \context @var{type} = @var{id} @var{expr}
3816  \times @var{fraction} @var{expr}
3817 @end example
3818
3819 In principle, the way in which you nest sequential and simultaneous to
3820 produce music is not relevant.  In the following example, three chords
3821 are expressed in two different ways:
3822
3823 @lilypond[fragment,verbatim,center]
3824   \notes \context Voice {
3825     <a c'> <b  d' > <c' e'>
3826     < { a b  c' } { c' d' e' } >
3827   }
3828 @end lilypond
3829
3830 However, in some cases, LilyPond will also try to choose contexts, and
3831 use the structure of the music expression  to do so. This can have
3832 undesired effects: for example, LilyPond will create a separate staff
3833 for each note if you start a @code{\score} with a  chord:
3834 @lilypond[verbatim,center,singleline]
3835   \score {
3836     \notes <c''4 e''>
3837   }
3838 @end lilypond
3839   The solution is to explicitly instantiate the context you desire.
3840 In this case this is typically a Voice context
3841 @lilypond[verbatim,center,singleline]
3842   \score {
3843     \notes\context Voice <c''4 e''>
3844   }
3845 @end lilypond
3846 If you use @code{\context Staff} you will get separate stems for each
3847 note head, leading to collisions, so don't use that.
3848
3849
3850
3851 @c . {Manipulating music expressions}
3852 @node Manipulating music expressions
3853 @subsection  Manipulating music expressions
3854
3855 The @code{\apply} mechanism gives you access to the internal
3856 representation of music. You can write Scheme-functions that operate
3857 directly on it. The syntax is 
3858 @example
3859         \apply #@var{func} @var{music}
3860 @end example
3861 This means that @var{func} is applied to @var{music}.  The function
3862 @var{func} should return a music expression.
3863
3864 This example replaces the text string of a script. It also shows a dump
3865 of the music it processes, which is useful if you want to know more
3866 about how music is stored.
3867 @lilypond[verbatim]
3868 #(define (testfunc x)
3869         (if (equal? (ly-get-mus-property x 'text) "foo")
3870                 (ly-set-mus-property x 'text "bar"))
3871         ;; recurse
3872         (ly-set-mus-property x 'elements
3873           (map testfunc (ly-get-mus-property x 'elements)))
3874         (display x)
3875         x        
3876 )
3877 \score { \notes
3878   \apply #testfunc { c4_"foo" }
3879
3880 @end lilypond
3881
3882 For more information on what is possible, see the @ref{Tricks} and the
3883 automatically generated documentation.
3884
3885 As always: directly accessing internal representations is dangerous: the
3886 implementation is subject to changes, so you should not use this if
3887 possible.
3888
3889
3890 @c .   {Assignments}
3891 @node Assignments
3892 @subsection Assignments
3893 @cindex Assignments
3894
3895 Identifiers allow objects to be assigned to names during the parse
3896 stage.  To assign an identifier, you use @var{name}@code{=}@var{value}
3897 and to refer to an identifier, you preceed its name with a backslash:
3898 `@code{\}@var{name}'.  @var{value} is any valid Scheme value or any of
3899 the input-types listed above.  Identifier assignments can appear at top
3900 level in the LilyPond file, but also in @code{\paper} blocks.
3901
3902 Semicolons are forbidden after top level assignments, but mandatory in
3903 other places. The rules about semicolons and assignments are very
3904 confusing, but when LilyPond input evolves more towards Scheme, we hope
3905 that this problem will grow smaller.
3906
3907 An identifier can be created with any string for its name, but you will
3908 only be able to refer to identifiers whose names begin with a letter,
3909 being entirely alphabetical.  It is impossible to refer to an identifier
3910 whose name is the same as the name of a keyword.
3911
3912 The right hand side of an identifier assignment is parsed completely
3913 before the assignment is done, so it is allowed to redefine an
3914 identifier in terms of its old value, e.g.
3915
3916 @example
3917 foo = \foo * 2.0
3918 @end example
3919
3920 When an identifier is referenced, the information it points to is
3921 copied.  For this reason, an identifier reference must always be the
3922 first item in a block.
3923 @example
3924 \paper  @{
3925         foo = 1.0
3926         \paperIdent % wrong and invalid
3927 @}
3928
3929 \paper @{
3930         \paperIdent % correct
3931         foo = 1.0 @}
3932 @end example
3933
3934 @c .  {Lexical details}
3935 @node Lexical details
3936 @subsection Lexical details
3937 @cindex Lexical details
3938 @menu
3939 @end menu
3940
3941 @c .   {Comments}
3942 @subsubsection Comments
3943 @cindex Comments
3944
3945 @cindex @code{%}
3946
3947
3948 A one line comment is introduced by a @code{%} character. 
3949 Block comments are started by @code{%@{} and ended by @code{%@}}. 
3950 They cannot be nested.
3951
3952 @c .  {Direct Scheme}
3953 @subsubsection Direct Scheme
3954 @cindex Scheme
3955 @cindex GUILE
3956 @cindex Scheme, in-line code
3957
3958
3959 LilyPond contains a Scheme interpreter (the GUILE library) for
3960 internal use. In some places Scheme expressions also form valid syntax:
3961 whereever it is allowed,
3962 @example
3963   #@var{scheme}
3964 @end example
3965 evaluates the specified Scheme code. If this is used at toplevel, then
3966 the result is discarded. Example:
3967 @example
3968   \property Staff.TestObject \override #'foobar =  #(+ 1 2)
3969 @end example
3970
3971 @code{\override} expects two Scheme expressions, so there are two Scheme
3972 expressions. The first one is a symbol (@code{foobar}), the second one
3973 an integer (namely, 3).
3974
3975 Scheme is a full-blown programming language, and a full discussion is
3976 outside the scope of this document. Interested readers are referred to
3977 the website @uref{http://www.schemers.org/} for more information on
3978 Scheme.
3979
3980
3981 @c .   {Keywords}
3982 @subsubsection Keywords
3983 @cindex Keywords
3984
3985
3986 Keywords start with a backslash, followed by a number of lower case
3987 alphabetic characters.  These are all the keywords.
3988
3989 @example
3990 apply arpeggio autochange spanrequest commandspanrequest
3991 simultaneous sequential accepts alternative bar breathe
3992 char chordmodifiers chords clef cm consists consistsend
3993 context denies duration dynamicscript elementdescriptions
3994 font grace header in lyrics key mark pitch
3995 time times midi mm name pitchnames notes outputproperty
3996 override set revert partial paper penalty property pt
3997 relative remove repeat addlyrics partcombine score
3998 script stylesheet skip textscript tempo translator
3999 transpose type
4000 @end example
4001
4002 @c .   {Integers}
4003 @subsubsection Integers
4004
4005 @cindex integers
4006 @cindex @code{+}
4007 @cindex @code{-}
4008 @cindex @code{*}
4009 @cindex @code{/}
4010
4011 Formed from an optional minus sign followed by digits.  Arithmetic
4012 operations cannot be done with integers, and integers cannot be mixed
4013 with reals.
4014
4015 @c .   {Reals}
4016 @subsubsection Reals
4017 @cindex real numbers
4018
4019
4020
4021
4022
4023 Formed from an optional minus sign and a sequence of digits followed
4024 by a @emph{required} decimal point and an optional exponent such as
4025 @code{-1.2e3}.  Reals can be built up using the usual operations:
4026 `@code{+}', `@code{-}', `@code{*}', and
4027 `@code{/}', with parentheses for grouping.
4028
4029 @cindex @code{\mm},
4030 @cindex @code{\in}
4031 @cindex @code{\cm}
4032 @cindex @code{\pt}
4033 @cindex dimensions
4034
4035 A real constant can be followed by one of the dimension keywords:
4036 @code{\mm} @code{\pt}, @code{\in}, or @code{\cm}, for millimeters,
4037 points, inches and centimeters, respectively.  This converts the number
4038 to a real that is the internal representation of dimensions.
4039
4040
4041 @c .   {Strings}
4042 @subsubsection Strings
4043 @cindex string
4044 @cindex concatenate
4045
4046 Begins and ends with the @code{"} character.  To include a @code{"}
4047 character in a string write @code{\"}.  Various other backslash
4048 sequences have special interpretations as in the C language.  A string
4049 that contains no spaces can be written without the quotes.  See
4050 @ref{Lexical modes} for details on unquoted strings; their
4051 interpretation varies depending on the situation.  Strings can be
4052 concatenated with the @code{+} operator.
4053
4054 The tokenizer accepts the following commands. They have no grammatical
4055 function, hence they can appear anywhere in the input.
4056
4057
4058 @c .   {Main input}
4059 @subsubsection Main input
4060 @cindex Main input
4061
4062 @cindex @code{\maininput}
4063
4064 The @code{\maininput} command is used in init files to signal that the
4065 user file must be read. This command cannot be used in a user file.
4066
4067 @c .   {File inclusion}
4068 @subsubsection Main input
4069 @cindex Main input
4070
4071 @subsubsection File inclusion
4072 @cindex @code{\include}
4073 @example
4074   \include @var{filename}
4075 @end example
4076
4077 Include @var{filename}.  The argument @var{filename} may be a quoted string (an
4078 unquoted string will not work here!) or a string identifier.  The full
4079 filename including the @file{.ly} extension must be given,
4080
4081 @subsubsection Version information 
4082 @cindex @code{\version}
4083 @example
4084   \version @var{string} ;
4085 @end example
4086
4087 Specify the version of LilyPond that a file was written for.  The
4088 argument is a version string in quotes, for example @code{"1.2.0"}. 
4089 This is used to detect invalid input, and to aid
4090 @code{convert-ly}  a tool that automatically upgrades input files. See
4091 See @ref{convert-ly} for more information on @code{convert-ly}.
4092
4093 @cindex convert-ly
4094
4095
4096 @c .   {Pitch names}
4097 @subsubsection Defining pitch names
4098 @cindex Lexical modes
4099 @cindex definining pitch names
4100 @cindex pitch names, definining
4101 @cindex note names
4102 @cindex chord modifier names
4103
4104 A @code{\paper} block at top level sets the default paper block.  A
4105 @code{\midi} block at top level works similarly.
4106
4107 @c .   {Assignments}
4108 @subsubsection Assignments
4109 @cindex assignments
4110 @cindex @code{#}
4111
4112 Identifier assignments may appear at top level.  @ref{Assignments}
4113
4114
4115
4116 @c .    {Direct scheme}
4117 @subsubsection Direct scheme
4118 @cindex Direct scheme
4119
4120 Scheme statements maybe issued to produce interesting side-effects. 
4121
4122
4123 @c .  {Lexical modes}
4124 @node Lexical modes
4125 @subsection Lexical modes
4126 @cindex Lexical modes
4127 @cindex input mode
4128 @cindex mode, input 
4129 @cindex @code{\notes}
4130 @cindex @code{\chords}
4131 @cindex @code{\lyrics}
4132
4133 To simplify entering notes, lyrics, and chords, LilyPond has three
4134 special input modes on top of the default mode: note, lyrics and chords
4135 mode.  These input modes change the way that normal, unquoted words are
4136 interpreted: for example, the word @code{cis} may be interpreted as a
4137 C-sharp, as a lyric syllable `cis' or as a C-sharp major triad
4138 respectively.
4139
4140 A mode switch is entered as a compound music expressions
4141 @example
4142 @code{\notes} @var{musicexpr}
4143 @code{\chords} @var{musicexpr}
4144 @code{\lyrics}  @var{musicexpr}.
4145 @end example
4146
4147 In each of these cases, these expressions do not add anything to the
4148 meaning of their arguments.  They are just a way to indicate that the
4149 arguments should be parsed in indicated mode.  The modes are treated in
4150 more detail in the sections @ref{Note entry}, @ref{Lyrics} and
4151 @ref{Chords}.
4152
4153 You may nest different input modes.
4154
4155 @c .  {Ambiguities}
4156 @node Ambiguities
4157 @subsection Ambiguities
4158 @cindex ambiguities
4159 @cindex grammar
4160
4161
4162 The grammar contains a number of ambiguities. We hope to resolve them at
4163 some time.
4164
4165 @itemize @bullet
4166   @item  The assignment
4167
4168          @example 
4169 foo = bar 
4170 @end example 
4171
4172        can be interpreted as making a string identifier @code{\foo}
4173        containing @code{"bar"}, or a music identifier @code{\foo}
4174        containing the syllable `bar'.
4175
4176   @item  The assignment
4177
4178          @example 
4179 foo = -6 
4180 @end example 
4181
4182        can be interpreted as making an integer identifier
4183        containing -6, or a Request identifier containing the
4184        fingering `6' (with neutral direction).
4185
4186   @item  If you do a nested repeat like
4187
4188        @quotation
4189
4190 @example 
4191 \repeat @dots{}
4192 \repeat @dots{}
4193 \alternative 
4194 @end example 
4195
4196        @end quotation
4197
4198        then it is ambiguous to which @code{\repeat} the
4199        @code{\alternative} belongs.  This is the classic if-then-else
4200        dilemma.  It may be solved by using braces.
4201
4202   @item  (an as yet unidentified ambiguity :-)
4203 @end itemize
4204
4205
4206
4207
4208
4209 @c .{Local emacs vars}
4210 @c Local variables:
4211 @c mode: texinfo
4212 @c minor-mode: font-lock
4213 @c minor-mode: outline
4214 @c outline-layout: (-1 : 0)
4215 @c outline-use-mode-specific-leader: "@c \."
4216 @c outline-primary-bullet: "{"
4217 @c outline-stylish-prefixes: nil
4218 @c outline-override-protect: t
4219 @c End:
4220