]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/refman.itely
patch::: 1.3.133.jcn2
[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{flagStyle}
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{flagStyle} property.
1160
1161 @quotation
1162 @lilypond[fragment,verbatim]
1163 \relative c'' {
1164   \grace c8 c4 \grace { [c16 c16] } c4
1165   \grace { \property Grace.flagStyle = "" 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 You will already have seen that LilyPond can combine several Threads
2460 into one Voice, and put several Voices onto one Staff.  The automatic
2461 part combiner takes this a step further.  Two parts of music can be
2462 combined together in an intelligent way, ie, when the two parts are
2463 identical for a period of time, only one can be showed.  In places where
2464 the two parts differ, stem directions can be set automatically.  That is
2465 why the part combiner is of great use for the typesetting of Hymns and
2466 orchestral scores.
2467
2468
2469 @subsubsection Part combine syntax
2470
2471 The syntax for part combining is
2472
2473 @example
2474   \partcombine @var{context} @var{musicexpr1} @var{musicexpr2}
2475 @end example
2476
2477 where the pieces of music @var{musicexpr1} and @var{musicexpr2} will be
2478 combined into one context @var{context}.  The names of the music
2479 expressions must start with the prefixes @code{one} and @code{two}.
2480
2481 @subsubsection Part combine usage
2482
2483 @cindex @code{Thread_devnull_engraver}
2484 @cindex @code{Voice_engraver}
2485 @cindex @code{A2_engraver}
2486
2487 The most useful function of the part combiner to combining threads into
2488 one voice, as common for wind parts in orchestral scores:
2489
2490 @lilypond[verbatim,singleline,fragment]
2491   \context Staff <
2492     \context Voice=one \partcombine Voice
2493       \context Thread=one \notes\relative c'' {
2494         g a b r
2495       }
2496       \context Thread=two \notes\relative c'' {
2497         g r2 f4
2498       }
2499   >
2500 @end lilypond
2501
2502 If you have developed a bit of a feel for LilyPond's functioning, you
2503 will notice that what you see above is quite unusual.  The first
2504 @code{g} appears only once, although it was specified twice (once in
2505 each Thread).  That is the work of the
2506 @code{Thread_devnull_engraver}@footnote{On unix systems, the file
2507 @file{/dev/null} is special device: anything written to it is
2508 discarded.}, that works closely together with the part combiner.  When
2509 the part combiner notices that two threads are identical, it tells the
2510 @code{Thread_devnull_engraver} to discard everything in the second
2511 thread.
2512
2513 Similarly, the markings @emph{@`{a}2}, @emph{Solo} and @emph{Solo II},
2514 are created by the @code{A2_engraver}.  The @code{A2_engraver} also acts
2515 upon instructions of the part combiner.  Another thing that the
2516 @code{A2_engraver} does, is forcing of stem, slur and tie directions,
2517 always when both threads are not identical; up for the musicexpr called
2518 @code{one}, down for the musicexpr called @code{two}.
2519
2520 There is actually a third engraver involved in part combining; the
2521 @code{Voice_devnull_engraver}.  This one takes care of removing
2522 redundant spanners such as beams, slurs, ties, crescendi, etc.
2523
2524 If you just want the splitting of Threads and setting of directions, and
2525 not the textual markings, you may set the property @var{soloADue} to false:
2526
2527 @lilypond[verbatim,singleline]
2528 \score {
2529   \context Staff <
2530     \context Voice=one \partcombine Voice
2531       \context Thread=one \notes\relative c'' {
2532         b4 a c g
2533       }
2534       \context Thread=two \notes\relative c'' {
2535         d,2 a4 g'
2536       }
2537   >
2538   \paper{
2539     \translator {
2540       \VoiceContext
2541       soloADue = ##f
2542     }
2543   }
2544 }
2545 @end lilypond
2546
2547 There are a number of other properties that you can use to tweak the
2548 behavior of part combining, refer to the automatically generated
2549 documentation of the involved engravers and the examples in the tutorial.
2550
2551
2552 @c . {Custodes}
2553 @node Custodes
2554 @section Custodes
2555 @cindex Custos
2556 @cindex Custodes
2557
2558 A @emph{custos} (plural: @emph{custodes}; latin word for "guard") is a
2559 staff context symbol that appears at the end of a staff line.  It
2560 anticipates the pitch of the first note(s) of the following line and
2561 thus helps the player or singer to manage line breaks during
2562 performance, thus enhancing readability of a score.
2563
2564 @quotation
2565 @lilypond[verbatim]
2566 \score {
2567   \notes { c'1 d' e' d' \break c' d' e' d' }
2568   \paper {
2569     \translator {
2570       \StaffContext
2571       \consists Custos_engraver;
2572       Custos \override #'style = #'mensural;
2573     }
2574   }
2575 }
2576 @end lilypond
2577 @end quotation
2578
2579 Custodes were frequently used in music notation until the 16th century.
2580 There were different appearences for different notation styles.
2581 Nowadays, they have survived only in special forms of musical notation
2582 such as via the editio vaticana dating back to the beginning of the 20th
2583 century.
2584
2585 For typesetting custodes, just put a @code{Custos_engraver} into the
2586 @code{StaffContext} when declaring the @code{\paper} block.  In this
2587 block, you can also globally control the appearance of the custos symbol
2588 by setting the custos @code{style} property.  Currently supported styles
2589 are @code{vaticana}, @code{medicaea}, @code{hufnagel} and
2590 @code{mensural}.
2591
2592 @quotation
2593 \paper @{
2594   \translator @{
2595       \StaffContext
2596       \consists Custos_engraver;
2597       Custos \override #'style = #'mensural;
2598   @}
2599 @}
2600 @end quotation
2601
2602 The property can also be set locally, for example in a @code{\notes}
2603 block:
2604
2605 @quotation
2606 \notes @{
2607   \property Staff.Custos \override #'style = #'vaticana
2608   c'1 d' e' d' \break c' d' e' d'
2609 @}
2610 @end quotation
2611
2612 @c . {Tuning output}
2613 @node Tuning output
2614 @section Tuning output
2615
2616 LilyPond tries to take as much formatting as possible out of your
2617 hands. Nevertheless, there are situations where it needs some help, or
2618 where you want to override its decisions.
2619
2620 Here we discuss how you can do that.
2621
2622 Notational output is specified in so called grobs (graphic
2623 objects). Each grob carries with it a set of properties (grob
2624 properties) specific to that grob.  For example, a stem grob has grob
2625 properties that specify its direction, length and thickness.
2626
2627 The most common way of tuning the output is to alter the values of these
2628 properties. There are two ways of doing that: first, you can
2629 specifically select a set of grobs at one point, and set properties as
2630 you wish, or secondly, you can (temporarily) modify the definition of a
2631 grob, thereby affecting an entire group of grobs.
2632
2633 @menu
2634 * Tuning groups of grobs ::     
2635 * Tuning per grob ::            
2636 * What to tune?::               
2637 * Text markup::                 
2638 @end menu
2639
2640 @node Tuning groups of grobs 
2641 @subsection Tuning groups of grobs 
2642
2643 @cindex grob description
2644
2645 A grob definition is an association list, that is stored in a context
2646 property.  By assigning to that property (using plain @code{\property}),
2647 you can change the resulting grobs.  
2648 @lilypond[verbatim, fragment]
2649 c'4 \property Voice.Stem = #'((meta .  ((interfaces . ())))) c'4
2650 @end lilypond
2651 The @code{\property} statement effectively empties the definition of the
2652 Stem object. One of the effects is that property specifying how it
2653 should be printed is erased, with the effect of rendering it invisible.
2654
2655 @cindex \override
2656 @cindex \revert
2657 @cindex \set
2658
2659
2660 This mechanism is fairly crude, since you can only set, but not modify,
2661 the definition of a grob. For this reason, there is a more advanced
2662 mechanism: you can add a property on top of an existing definition, or
2663 remove a property: @code{\override} adds a settings, @code{\revert}
2664 removes that setting.
2665 @lilypond[verbatim]
2666 c'4 \property Voice.Stem \override #'thickness = #4.0
2667 c'4 \property Voice.Stem \revert #'thickness
2668 c'4
2669 @end lilypond
2670
2671 For the digirati, the grob description is an Scheme association
2672 list. Since it is singly linked, we can treat it as a stack, and
2673 @code{\override} and @code{\revert} are just push and pop
2674 operations. This pushing and popping is also used in the
2675 @code{autoBeamSettings} property.
2676
2677 If you revert a setting which was not set in the first place, then it
2678 has no effect. However, if the setting was set as a system default, it
2679 may remove the default value, and this may give surprising results,
2680 including crashes.  In other words, if you use @code{\override} and
2681 @code{\revert}, be sure to balance the overrides and reverts.
2682
2683 If balancing them is too much work, use the following shorthand:
2684 @code{\set} performs a revert followed by an override:
2685 @example
2686 \property Voice.Stem \set #'thickness = #2.0
2687 @end example
2688
2689 Formally the syntax for these constructions is
2690 @example
2691 \property @var{context}.@var{grobname} \override @var{symbol} = @var{value}
2692 \property @var{context}.@var{grobname} \set @var{symbol} = @var{value}
2693 \property @var{context}.@var{grobname} \revert @var{symbol}
2694 @end example
2695 Here @var{symbol} is a Scheme expression of symbol type, @var{context}
2696 and @var{grobname} are strings and @var{value} is a Scheme expression.
2697
2698 LilyPond will hang or crash if @var{value} contains cyclic references.
2699
2700
2701
2702 @node Tuning per grob 
2703 @subsection Tuning per grob 
2704
2705 @cindex \outputproperty
2706
2707 A second way of tuning grobs is the more arcane @code{\outputproperty}
2708 feature.
2709 Syntax is as follows
2710 @example
2711 \outputproperty @var{predicate} @var{symbol} = @var{value}
2712 @end example
2713 Here @code{predicate} is a Scheme functoin taking a grob a argument
2714 argument, and returning a boolean.  This statement is processed by the
2715 @code{Output_property_engraver}.  It instructs the engraver to feed all
2716 grobs that it sees to @var{predicate}. Whenever the predicate returns
2717 true, the grob property @var{symbol} will be set to @var{value}.
2718
2719 You will need to combine this statement with @code{\context} to select
2720 the appropriate context to apply this to.
2721
2722 If possible, avoid this feature: the semantics are not very clean, and
2723 the syntax and semantics are up for rewrite.
2724
2725 Here are some random examples:
2726
2727 @lilypond[fragment,verbatim,singleline]
2728 \relative c'' { c4
2729   \context Staff \outputproperty
2730   #(make-type-checker 'note-head-interface)
2731   #'extra-offset = #'(0.5 . 0.75)
2732   <c8 e g> }
2733 @end lilypond
2734
2735 @cindex @code{extra-offset}
2736
2737 This selects all note heads occurring at current staff level, and sets
2738 the @code{extra-offset} of those heads to @code{(0.5,0.75)}, shifting
2739 them up and right.
2740
2741 Move the text "m.d.", but not the fingering instruction "2".
2742 @lilypond[verbatim,singleline]
2743 #(define (make-text-checker text)
2744    (lambda (grob) (equal? text (ly-get-elt-property grob 'text))))
2745
2746 \score {    
2747   \notes\relative c''' {
2748     \property Voice.Stem \set #'direction = #1
2749     \outputproperty #(make-text-checker "m.d.")
2750       #'extra-offset = #'(-3.5 . -4.5)
2751     a^2^"m.d."    
2752   }
2753 }
2754 @end lilypond
2755
2756
2757
2758
2759 @node What to tune?
2760 @subsection What to tune?
2761
2762 This all tells you how to tune grobs, but what variables are there? The
2763 question is not  answered in this manual (although you may encounter
2764 some examples.).
2765
2766 Grob properties are tied directly to the implementation of LilyPond, and
2767 they are thus a moving target. Refer to the automatically generated
2768 documentation of the internals (available from the website).
2769
2770 You need the following information
2771
2772 @itemize @bullet
2773 @item
2774 which grob to modify
2775 @item
2776 which property to modify
2777 @item
2778 which context the grob comes from.
2779 @end itemize
2780
2781 Included with the automatically generated documentation is a master list
2782 of grobs. Each one can be clicked, taking you to a overview of the
2783 available properties.
2784
2785 There is also a master list of contexts. Clicking each takes you to an
2786 overview of the context, listing which grob types are created there.
2787
2788
2789
2790 @node Text markup
2791 @subsection Text markup
2792 @cindex text markup
2793 @cindex markup text
2794
2795 LilyPond has an internal mechanism to typeset texts. You can
2796 form text markup expressions by composing scheme expressions
2797 in the following way.
2798
2799 @lilypond[verbatim]
2800 \score { \notes \relative c' {
2801   b-#"text"
2802   c-#'(bold "text")
2803   d-#'(lines "one" (bold "text"))
2804   e-#'(music (named "noteheads-2" "flags-u3"))
2805 }
2806 \paper { linewidth = 10.\cm; } }
2807 @end lilypond
2808
2809 Normally, the Scheme markup text is stored in the @code{text} property
2810 of a grob.  Formally, it is defined as follows:
2811
2812 @example
2813 text: string | (head? text+)
2814 head: markup | (markup+)
2815 markup-item: property | abbrev | @var{fontstyle}
2816 property: (@var{key} . @var{value})
2817 abbrev: @code{rows lines roman music bold italic named super sub text}
2818 @end example
2819
2820 The markup is broken down and converted into a list of grob properties,
2821 which are prepended to the grop's property list.  The
2822 @var{key}-@var{value} pair is a grob property.
2823
2824 The following abbreviations are currently
2825 defined:
2826
2827 @table @code
2828 @item rows
2829 horizontal mode: set all text on one line (default)
2830 @item lines
2831  vertical mode: set every text on new line
2832 @item roman
2833  select roman font
2834 @item music
2835  select feta font
2836 @item bold
2837  select bold series
2838 @item italic
2839  select italic shape
2840 @item named
2841  lookup by character name
2842 @item text
2843  plain text lookup (by character value)
2844 @item super
2845  superscript
2846 @item sub
2847  subscript
2848 @end table
2849
2850 @var{fontstyle} may be any of @code{finger volta timesig mmrest mark
2851 script large Large dynamic}
2852
2853
2854 @c . {Page layout}
2855 @node Page layout
2856 @section Page layout
2857 @cindex Page layout
2858
2859 @menu
2860 * Paper block::                 
2861 * Paper variables::             
2862 * Font Size::                   
2863 * Paper size::                  
2864 * Line break::                  
2865 * Page break::                  
2866 @end menu
2867
2868 @c .  {Paper block}
2869 @node Paper block
2870 @subsection Paper block
2871 @cindex Paper block
2872
2873 The most important output definition is the @code{\paper} block, for
2874 music notation.  The syntax is
2875
2876 @example
2877   @code{\paper @{} [@var{paperidentifier}] @var{items} @code{@}}
2878 @end example
2879
2880 where each of the items is one of
2881
2882 @itemize @bullet
2883   @item  An assignment.  The assignment must be terminated by a
2884        semicolon.  
2885
2886   @item  A context definition.  See Section @ref{Notation Contexts} for
2887        more information on context definitions.
2888
2889   @item  \stylesheet  declaration.  Its syntax is
2890        @example
2891                 \stylesheet @var{alist}
2892        @end example
2893
2894         See @file{font.scm} for details of @var{alist}.
2895 @end itemize
2896
2897 @c .  {Paper variables}
2898 @node Paper variables
2899 @subsection Paper variables 
2900 @cindex Paper variables
2901
2902 The paper block has some variables you may want to use or change:
2903
2904 @table @code
2905 @cindex @code{indent}
2906   @item @code{indent}  
2907     The indentation of the first line of music.
2908 @cindex @code{staffspace}
2909
2910   @item @code{staffspace}
2911     The distance between two staff lines, calculated from the center
2912     of the lines.  You should use either this or @code{stafflinethickness}
2913     as a unit for distances you modify.
2914   
2915 @cindex @code{linewidth}
2916   @item @code{linewidth}  
2917     Sets the width of the lines.
2918
2919 If set to a negative value, a single
2920     unjustified line is produced.
2921
2922 @cindex @code{textheight}
2923
2924   @item @code{textheight}  
2925     Sets the total height of the music on each page. Only used by
2926     ly2dvi.
2927 @cindex @code{interscoreline}
2928
2929   @item @code{interscoreline}  
2930     Sets the spacing between the score lines. Defaults to 16 pt.
2931 @cindex @code{interscorelinefill}
2932
2933   @item @code{interscorelinefill}  
2934     If set to a positive number, the distance between the score 
2935     lines will stretch in order to fill the full page. In that
2936     case @code{interscoreline} specifies the minimum spacing.
2937     Defaults to 0.
2938 @cindex @code{stafflinethickness}
2939
2940   @item @code{stafflinethickness}  
2941     Determines the thickness of staff lines, and also acts as a scaling
2942     parameter for other line thicknesses.
2943 @end table
2944
2945
2946
2947 @c .  {Font size}
2948 @node Font Size
2949 @subsection Font size
2950 @cindex font size
2951
2952 The Feta font provides musical symbols at six different sizes.  These
2953 fonts are 11 point, 13 point, 16 point, 20 point,
2954 23 point, and 26 point.  The point size of a font is the
2955 height of the five lines in a staff when displayed in the font.
2956
2957 Definitions for these sizes are the files @file{paperSZ.ly}, where
2958 @code{SZ} is one of 11, 13, 16, 20, 23 and 26.  If you include any of
2959 these files, the identifiers @code{paperEleven}, @code{paperThirteen},
2960 @code{paperSixteen}, @code{paperTwenty}, @code{paperTwentythree}, and
2961 @code{paperTwentysix} are defined respectively.  The default
2962 @code{\paper} block is also set.
2963
2964 The font definitions are generated using a Scheme function. For more
2965 details, see the file @file{font.scm}.
2966
2967
2968
2969 @c .  {Paper size}
2970 @node Paper size
2971 @subsection Paper size
2972 @cindex Paper size
2973
2974 @cindex paper size
2975 @cindex page size
2976 @cindex @code{papersize}
2977
2978 To change the paper size, you must first set the
2979 @code{papersize} variable at top level.  Set it to
2980 the strings @code{a4}, @code{letter}, or @code{legal}.  After this
2981 specification, you must set the font as described above.  If you want
2982 the default font, then use the 20 point font.  The new paper size will
2983 not take effect if the font is not loaded and selected afterwards.
2984
2985 @example
2986         papersize = "a4"
2987         \include "paper16.ly"
2988
2989         \score @{
2990                 ...
2991                 \paper @{ \paperSixteen @}
2992         @}
2993 @end example
2994
2995 The file "paper16.ly" will now include a file named @file{a4.ly}, which
2996 will set the paper variables @code{hsize} and @code{vsize} (used by
2997 @code{ly2dvi})
2998
2999
3000
3001
3002
3003
3004
3005 @c .  {Line break}
3006 @node Line break
3007 @subsection Line break
3008
3009 @cindex line breaks
3010 @cindex breaking lines
3011
3012 Line breaks are normally computed automatically. They are chosen such
3013 that the resulting spacing has low variation, and looks neither cramped
3014 nor loose.
3015
3016 Occasionally you might want to override the automatic breaks; you can do
3017 this by specifying @code{\break}. This will force a line break at this
3018 point. Do remember that line breaks can only occur at places where there
3019 are barlines.  If you want to have a line break where there is no
3020 barline, you can force a barline by entering @code{\bar "";}.
3021
3022 Similarly, @code{\noBreak} forbids a  line break at a certain point.
3023
3024 @cindex @code{\penalty}
3025
3026 The @code{\break} and @code{\noBreak} commands are defined in terms of
3027 the penalty command:
3028 @example
3029   \penalty @var{int} @code{;}
3030 @end example
3031
3032 This imposes   encourages or discourages LilyPond to make a line break
3033 at this point.
3034
3035 @strong{Warning} do not use @code{\penalty} directly. It is rather
3036 kludgy, and slated for rewriting.
3037
3038 @c .  {Page break}
3039 @node Page break
3040 @subsection Page break
3041
3042 @cindex page breaks
3043 @cindex breaking pages
3044
3045
3046 Page breaks are normally computed by @TeX{}, so they are not under direct
3047 control.  However, you can insert a commands into the @file{.tex} output to
3048 instruct @TeX{} where to break pages. For more details, see  the
3049 example file @file{input/test/between-systems.ly}
3050
3051 [or -> Tricks? ]
3052
3053
3054
3055
3056
3057
3058 @c . {Sound}
3059 @node Sound
3060 @section Sound
3061 @cindex Sound
3062
3063 LilyPond allows MIDI output, with the purpose of proof-hearing the music
3064 you enter. The performance lacks lots of interesting effects, such as
3065 swing, articulation, slurring, tieing, etc.
3066
3067 Also note that it is not possible to use the percussion channel
3068 (generally channel 10 of a MIDI file).
3069
3070 @menu
3071 * MIDI block::                  
3072 * MIDI instrument names::       
3073 * Tempo::                       
3074 @end menu
3075
3076 @c .  {MIDI block}
3077 @node MIDI block
3078 @subsection MIDI block
3079 @cindex MIDI block
3080
3081
3082 The MIDI block is analogous to the paper block, but it is somewhat
3083 simpler.  The @code{\midi} block can contain:
3084 @cindex MIDI block
3085
3086 @itemize @bullet
3087   @item  a @code{\tempo} definition
3088   @item  context definitions
3089 @end itemize
3090
3091 Assignments in the @code{\midi} block are not allowed.
3092
3093
3094
3095 @cindex context definition
3096
3097 Context definitions follow precisely the same syntax as within the
3098 \paper block.  Translation modules for sound are called performers.
3099 The contexts for MIDI output are defined in @file{ly/performer.ly}.
3100
3101 [Volume control]
3102 [Instrument Equaliser]
3103
3104 FIXME: would it be useful to refer to files like scm/midi.scm,
3105 or to give examples of how to tweak MIDI output volume?
3106
3107
3108 @c .  {MIDI instrument names}
3109 @node MIDI instrument names
3110 @subsection MIDI instrument names
3111 @cindex instrument names
3112 @cindex @code{Staff.midiInstrument}
3113 @cindex @code{Staff.instrument}
3114
3115 The MIDI instrument name is set by the @code{Staff.midiInstrument}
3116 property or, if that property is not set, the @code{Staff.instrument}
3117 property.  The instrument name should be chosen from the following list.
3118 If the selected string does not exactly match, then LilyPond uses the
3119 default piano.
3120
3121 [FIXME: to appendix ]
3122
3123
3124 @example 
3125 "acoustic grand"            "contrabass"           "lead 7 (fifths)"
3126 "bright acoustic"           "tremolo strings"      "lead 8 (bass+lead)"
3127 "electric grand"            "pizzicato strings"    "pad 1 (new age)"
3128 "honky-tonk"                "orchestral strings"   "pad 2 (warm)"
3129 "electric piano 1"          "timpani"              "pad 3 (polysynth)"
3130 "electric piano 2"          "string ensemble 1"    "pad 4 (choir)"
3131 "harpsichord"               "string ensemble 2"    "pad 5 (bowed)"
3132 "clav"                      "synthstrings 1"       "pad 6 (metallic)"
3133 "celesta"                   "synthstrings 2"       "pad 7 (halo)"
3134 "glockenspiel"              "choir aahs"           "pad 8 (sweep)"
3135 "music box"                 "voice oohs"           "fx 1 (rain)"
3136 "vibraphone"                "synth voice"          "fx 2 (soundtrack)"
3137 "marimba"                   "orchestra hit"        "fx 3 (crystal)"
3138 "xylophone"                 "trumpet"              "fx 4 (atmosphere)"
3139 "tubular bells"             "trombone"             "fx 5 (brightness)"
3140 "dulcimer"                  "tuba"                 "fx 6 (goblins)"
3141 "drawbar organ"             "muted trumpet"        "fx 7 (echoes)"
3142 "percussive organ"          "french horn"          "fx 8 (sci-fi)"
3143 "rock organ"                "brass section"        "sitar"
3144 "church organ"              "synthbrass 1"         "banjo"
3145 "reed organ"                "synthbrass 2"         "shamisen"
3146 "accordion"                 "soprano sax"          "koto"
3147 "harmonica"                 "alto sax"             "kalimba"
3148 "concertina"                "tenor sax"            "bagpipe"
3149 "acoustic guitar (nylon)"   "baritone sax"         "fiddle"
3150 "acoustic guitar (steel)"   "oboe"                 "shanai"
3151 "electric guitar (jazz)"    "english horn"         "tinkle bell"
3152 "electric guitar (clean)"   "bassoon"              "agogo"
3153 "electric guitar (muted)"   "clarinet"             "steel drums"
3154 "overdriven guitar"         "piccolo"              "woodblock"
3155 "distorted guitar"          "flute"                "taiko drum"
3156 "guitar harmonics"          "recorder"             "melodic tom"
3157 "acoustic bass"             "pan flute"            "synth drum"
3158 "electric bass (finger)"    "blown bottle"         "reverse cymbal"
3159 "electric bass (pick)"      "skakuhachi"           "guitar fret noise"
3160 "fretless bass"             "whistle"              "breath noise"
3161 "slap bass 1"               "ocarina"              "seashore"
3162 "slap bass 2"               "lead 1 (square)"      "bird tweet"
3163 "synth bass 1"              "lead 2 (sawtooth)"    "telephone ring"
3164 "synth bass 2"              "lead 3 (calliope)"    "helicopter"
3165 "violin"                    "lead 4 (chiff)"       "applause"
3166 "viola"                     "lead 5 (charang)"     "gunshot"
3167 "cello"                     "lead 6 (voice)" 
3168 @end example 
3169
3170
3171
3172
3173
3174 @c .  {Tempo}
3175 @node Tempo
3176 @subsection Tempo
3177 @cindex Tempo
3178 @cindex beats per minute
3179 @cindex metronome marking
3180
3181 @cindex @code{\tempo}
3182 @example
3183   \tempo @var{duration} = @var{perminute} @code{;}
3184 @end example
3185
3186 Used to specify the tempo.  For example, @code{\tempo 4 = 76;} requests
3187 output with 76 quarter notes per minute.
3188
3189
3190
3191
3192
3193 @c . {Music entry}
3194 @node Music entry
3195 @section Music entry
3196 @cindex Music entry
3197 @menu
3198 * Relative::                    
3199 * Point and click::             
3200 @end menu
3201
3202
3203
3204 @c .  {Relative}
3205 @node Relative
3206 @subsection Relative
3207 @cindex Relative
3208 @cindex relative octave specification
3209
3210 Octaves are specified by adding @code{'} and @code{,} to pitch names.
3211 When you copy existing music, it is easy to accidentally put a pitch in
3212 the wrong octave and hard to find such an error.  To prevent these
3213 errors, LilyPond features octave entry.
3214
3215 @cindex @code{\relative}
3216 @example
3217   \relative @var{startpitch} @var{musicexpr}
3218 @end example
3219
3220 The octave of notes that appear in @var{musicexpr} are calculated as
3221 follows: If no octave changing marks are used, the basic interval
3222 between this and the last note is always taken to be a fourth or less.
3223   The octave changing marks @code{'} and @code{,} can then
3224 be added to raise or lower the pitch by an extra octave.  Upon entering
3225 relative mode, an absolute starting pitch must be specified that will
3226 act as the predecessor of the first note of @var{musicexpr}.
3227
3228 This distance is determined without regarding accidentals: a
3229 @code{fisis} following a @code{ceses} will be put above the
3230 @code{ceses}.
3231
3232 Entering scales is straightforward in relative mode.
3233
3234 @lilypond[fragment,verbatim,center]
3235   \relative c'' {
3236     g a b c d e f g g, g
3237   }
3238 @end lilypond
3239
3240 And octave changing marks are used for intervals greater than a fourth.
3241
3242 @lilypond[fragment,verbatim,center]
3243   \relative c'' {
3244     c g c f, c' a, e'' }
3245 @end lilypond
3246
3247 If the preceding item is a chord, the first note of the chord is used
3248 to determine the first note of the next chord.  But other notes
3249 within the second chord are determined by looking at the immediately
3250 preceding note.
3251
3252 @lilypond[fragment,verbatim,center]
3253   \relative c' {
3254     c <c e g> 
3255     <c' e g>
3256     <c, e' g>
3257   }
3258 @end lilypond 
3259 @cindex @code{\notes}
3260
3261 The pitch after the @code{\relative} contains a notename.  To parse
3262 the pitch as a notename, you have to be in note mode, so there must
3263 be a surrounding @code{\notes} keyword (which is not
3264 shown here).
3265
3266 The relative conversion will not affect @code{\transpose} or
3267 @code{\relative} sections in its argument.  If you want to use
3268 relative within transposed music, you must place an additional
3269 @code{\relative} inside the @code{\transpose}.
3270
3271
3272 @c .  {Point and click}
3273 @node Point and click
3274 @subsection Point and click
3275
3276 [todo]
3277
3278 @c . {Engravers}
3279 @node Engravers
3280 @section Engravers
3281 @cindex engravers
3282 @menu
3283 * Notation Contexts::           
3284 * Creating contexts::           
3285 * Default contexts::            
3286 * Context properties::          
3287 * Changing context definitions::  
3288 * Defining new contexts::       
3289 @end menu
3290
3291 @c .  {Music expressions}
3292
3293
3294
3295 @c .  {Notation Contexts}
3296 @node Notation Contexts
3297 @subsection Notation Contexts
3298
3299 @cindex notation contexts
3300
3301 Notation contexts are objects that only exist during a run of LilyPond.
3302 During the interpretation phase of LilyPond (when lily prints
3303 "interpreting music"), music a @code{\score} block is interpreted in
3304 time order, i.e. in much the same order that humans read, play, and
3305 write music.
3306
3307 During this reading, the notation context is holds the state
3308 for the current point within the music. It contains information like
3309
3310 @itemize @bullet
3311   @item What notes are playing at this point?
3312   @item What symbols will be printed at this point?
3313   @item What is the current key signature, time signature, point within
3314        the measure, etc.?
3315 @end itemize
3316
3317 Contexts are grouped hierarchically: A @code{Voice} context is
3318 contained in a @code{Staff} context (because a staff can contain
3319 multiple voices at any point), a @code{Staff} context is contained in
3320 a @code{Score}, @code{StaffGroup}, or @code{ChoirStaff} context (because
3321 these can all contain multiple staffs).
3322
3323
3324 Contexts associated with sheet music output are called @emph{notation
3325 contexts}, those for sound output are called performance contexts.
3326
3327
3328 @node Creating contexts
3329 @subsection Creating contexts
3330
3331 @cindex @code{\context}
3332 @cindex context selection
3333
3334 Contexts for a music expression can be selected manually, using the
3335 following music expression.
3336
3337 @example
3338   \context @var{contexttype} [= @var{contextname}] @var{musicexpr}
3339 @end example
3340
3341 This instructs lilypond to interpret @var{musicexpr} within the context
3342  of type @var{contexttype} and with name @var{contextname}.  If this
3343 context does not exist, it will be created.  
3344
3345 @quotation
3346
3347 @lilypond[verbatim,singleline]
3348 \score {
3349   \notes \relative c'' {
3350     c4 <d4 \context Staff = "another" e4> f
3351   }
3352 }
3353
3354 @end lilypond
3355 @end quotation
3356
3357 In this example, the @code{c} and @code{d} are printed on the
3358 default staff.  For the @code{e}, a context Staff called
3359 @code{another} is specified; since that does not exist, a new
3360 context is created.  Within @code{another}, a (default) Voice context
3361 is created for the @code{e4}.  When all music referring to a
3362 context is finished, the context is ended as well.  So after the
3363 third quarter, @code{another} is removed.
3364
3365
3366
3367 @node Default contexts
3368 @subsection Default contexts
3369
3370 Most music expressions don't need @code{\context}: they inherit the
3371 notation context from their parent. Each note is a music expression, and
3372 as you can see in the following example, only the sequential music
3373 enclosing the three notes has an explicit context. 
3374
3375 @lilypond[verbatim,singleline]
3376 \score { \notes \context Voice = goUp { c'4 d' e' } } 
3377 @end lilypond
3378
3379 There are some quirks that you must keep in mind when dealing with
3380 defaults:
3381
3382 Every top-level music is interpreted by the Score context, in other
3383 words, you may think of @code{\score} working like
3384 @example
3385         \score @{
3386                 \context Score @var{music}
3387         @}
3388 @end example
3389
3390 Sequential music follows the contexts of its "children".  Take this example
3391 @lilypond[verbatim, singleline]
3392 \score { \context Score \notes { c'4 (  d' )e' } }
3393 @end lilypond
3394
3395 The sequential music is interpreted by the Score context initially
3396 (notice that the @code{\context} specification is redundant), but when a
3397 note is encountered, contexts are setup to accept that note. In this
3398 case, a Thread, Voice and Staff are created. The rest of the sequential
3399 music is also interpreted with the same Thread, Voice and Staff context,
3400 putting the notes on the same staff, in the same voice.
3401
3402 This is a convenient mechanism, but do not expect opening chords to work
3403 without @code{\context}. For every note, a separate staff is
3404 instantiated.
3405
3406 @lilypond[verbatim, singleline]
3407 \score { \notes <c'4 es'> } 
3408 @end lilypond
3409
3410 Of course, if the chord is preceded by a normal note in sequential
3411 music, the chord will be interpreted by the Thread of the preceding
3412 note:
3413 @lilypond[verbatim,singleline]
3414 \score { \notes { c'4 <c'4 es'> }  }
3415 @end lilypond
3416
3417
3418
3419 @node Context properties
3420 @subsection Context properties
3421
3422 Notation contexts can be modified from within the @file{.ly} file. The
3423 following music expression does that job:
3424
3425 @cindex @code{\property}
3426 @example
3427   \property @var{contextname}.@var{propname} =  @var{value}
3428 @end example
3429
3430 Sets the @var{propname} property of the context @var{contextname} to the
3431 specified Scheme expression @var{value}.  All @var{propname} and
3432 @var{contextname} are strings, which are typically unquoted.
3433
3434 Properties that are set in one context are inherited by all of the
3435 contained contexts.  This means that a property valid for the
3436 @code{Voice} context can be set in the @code{Score} context (for
3437 example) and thus take effect in all @code{Voice} contexts.
3438
3439
3440
3441
3442 @c .  {Context definitions}
3443 @node Changing context definitions
3444 @subsection Changing context definitions
3445
3446 @cindex context definition
3447 @cindex translator definition
3448
3449 The most common way to define a context is by extending an existing
3450 context.  You can change an existing context from the paper block, by
3451 first initializing a translator with an existing context identifier:
3452 @example
3453 \paper @{
3454   \translator @{
3455     @var{context-identifier}
3456   @} @}
3457 @end example
3458 Then you can add engravers, remove engravers and set context
3459 properties. The syntax for these operations are respectively
3460 @example
3461  \remove @var{engravername}
3462  \consists @var{engravername}
3463  @var{propname} = @var{value} 
3464 @end example
3465
3466 Here @var{engravername} is a string, the name of an engraver in the
3467 system. @var{propname} is a string and @var{value} is a Scheme
3468 expression.
3469
3470 @lilypond[verbatim,singleline]
3471 \score {  \notes {
3472         c'4 c'4 }
3473   \paper {
3474     \translator  { \StaffContext
3475         \consists Instrument_name_engraver;
3476         instrument = #"foo"
3477         \remove Clef_engraver;
3478        } } }
3479 @end lilypond
3480
3481 @cindex engraver
3482
3483 These type of property assignments happen before interpretation starts,
3484 so a @code{\property} expression will override any predefined settings.
3485
3486 Engravers are the actual C++ modules that do the work in the
3487 interpretation phase.
3488
3489
3490 There are some pre-defined identifiers to simplify editing translators,
3491 they are defined in @file{ly/engraver.ly}.  These pre-defined
3492 identifiers are:
3493
3494 @table @code
3495 @cindex @code{StaffContext}
3496   @item @code{StaffContext}  
3497     Default Staff context. 
3498 @cindex @code{RhythmicStaffContext}
3499
3500   @item @code{RhythmicStaffContext}  
3501     Default RhythmicStaff context. 
3502 @cindex @code{VoiceContext}
3503
3504   @item @code{VoiceContext}  
3505     Default Voice context.  
3506 @cindex @code{ScoreContext}
3507
3508   @item @code{ScoreContext}  
3509     Default Score context. 
3510
3511 @cindex @code{HaraKiriStaffContext}
3512
3513   @item @code{HaraKiriStaffContext}  
3514     Staff context that does not print if it only contains rests. 
3515     Useful for orchestral scores.@footnote{Harakiri, also called
3516     Seppuku, is the ritual suicide of the Japanese Samourai warriors.}
3517 @end table
3518
3519 @node Defining new contexts
3520 @subsection Defining new contexts
3521
3522 If you want to build a context from scratch, you must also supply the
3523 following extra information:
3524 @itemize @bullet
3525   @item  A name, specified by @code{\name @var{contextname};}.
3526
3527   @item A cooperation engraver. This is specified by   @code{\type
3528 @var{typename};}.
3529 @end itemize
3530
3531
3532 A context definition has this syntax:
3533
3534 @example
3535
3536   \translator @code{@{}
3537                       @var{translatorinit} @var{translatormodifierlist}
3538                     @code{@}}
3539 @end example
3540
3541 @var{translatorinit} can be an identifier or 
3542 @example
3543
3544 @end example
3545 where @var{typename} is one of
3546
3547 The cooperation engraver groups other engravers, and specifies how they
3548 should cooperate. Choices are:
3549
3550 @table @code
3551 @cindex @code{Engraver_group_engraver}
3552   @item @code{Engraver_group_engraver}  
3553     The standard cooperation engraver.
3554
3555 @cindex @code{Score_engraver}
3556
3557   @item @code{Score_engraver}  
3558     This is cooperation module that should be in the top level context,
3559 and only the toplevel context.
3560
3561 @cindex @code{Grace_engraver_group}
3562
3563   @item @code{Grace_engraver_group}  
3564     This is a special cooperation module (resembling
3565     @code{Score_engraver}) that is used to created an embedded
3566     `miniscore'.
3567 @end table 
3568
3569 @var{translatormodifierlist} is a list of items where each item is
3570 one of
3571
3572 @itemize @bullet
3573   @item  @code{\consists} @var{engravername} @code{;}  
3574     Add @var{engravername} to the list of modules in this context. 
3575   The order of engravers added with @code{\consists} is
3576     significant.
3577   
3578   @item  @code{\consistsend} @var{engravername} @code{;}  
3579     Analogous to @code{\consists}, but makes sure that
3580     @var{engravername} is always added to the end of the list of
3581     engravers.
3582
3583     Some engraver types need to be at the end of the list; this
3584     insures they are put there, and stay there, if a user adds or
3585     removes engravers.  This command is usually not needed for
3586     end-users.
3587     
3588   @item  @code{\accepts} @var{contextname} @code{;}  
3589     Add @var{contextname} to the list of  context this context can
3590     contain.  The first listed context is the context to create by
3591     default.
3592
3593   @item @code{\denies}. The opposite of @code{\accepts}. Added for
3594 completeness, but is never used in practice.
3595  
3596   
3597   @item  @code{\remove} @var{engravername} @code{;}  
3598     Remove a previously added (with @code{\consists}) engraver.
3599   
3600   @item  @code{\name} @var{contextname} @code{;}  
3601     This sets name of the context, e.g. @code{Staff}, @code{Voice}.  If
3602     the name is not specified, the translator won't do anything.
3603
3604   @item  @var{propname} @code{=} @var{value} @code{;}  
3605     A property assignment.
3606 @end itemize
3607
3608 In the @code{\paper} block, it is also possible to define translator
3609 identifiers.  Like other block identifiers, the identifier can only
3610 be used as the very first item of a translator.  In order to define
3611 such an identifier outside of @code{\score}, you must do
3612
3613 @quotation
3614
3615 @example 
3616 \paper @{
3617   foo = \translator @{ @dots{} @}
3618 @}
3619 \score @{
3620   \notes @{
3621     @dots{}
3622   @}
3623   \paper @{
3624     \translator @{ \foo @dots{} @}
3625   @}
3626 @} 
3627 @end example 
3628
3629 @end quotation
3630
3631
3632 @cindex paper types, engravers, and pre-defined translators
3633
3634       
3635
3636
3637         Properties can be preset within the @code{\translator} block
3638 corresponding to the appropriate context.  In this case, the syntax
3639 is
3640
3641 @example
3642   @var{propname} @code{=} @var{value}
3643 @end example
3644
3645 The property settings are used during the interpretation phase.  They
3646 are read by the LilyPond modules where interpretation contexts are
3647 built of.  These modules are called @emph{translators}.  Translators for
3648 notation are called @emph{engravers}, and translators for sound are
3649 called @emph{performers}.
3650
3651
3652
3653
3654 @c . {Syntactic details}
3655 @node Syntactic details
3656 @section Syntactic details
3657 @cindex Syntactic details
3658 @menu
3659 * Top level::                   
3660 * Identifiers::                 
3661 * Music expressions::           
3662 * Manipulating music expressions::  
3663 * Assignments::                 
3664 * Lexical details::             
3665 * Lexical modes::               
3666 * Ambiguities::                 
3667 @end menu
3668
3669 @c .  {Top level}
3670 @node Top level
3671 @subsection Top level
3672 @cindex Top level
3673
3674 This section describes what you may enter at top level.
3675
3676
3677 @c .   {Score}
3678 @subsubsection Score
3679 @cindex Score
3680
3681 @cindex score definition
3682
3683 The output is generated combining a music expression with an output
3684 definition.  A score block has the following syntax:
3685
3686 @example
3687   \score @{ @var{musicexpr} @var{outputdefs} @}
3688 @end example
3689
3690 @var{outputdefs} are zero or more output definitions.  If no output
3691 definition is supplied, the default @code{\paper} block will be added.
3692
3693
3694
3695 @c .   {Default output}
3696 @subsubsection Default output
3697
3698 Default values for the @code{\paper} and @code{\midi} block are set by
3699 entering such a block at top-level.
3700
3701 @c .   {Header}
3702 @subsubsection Header
3703 @cindex Header
3704 @cindex @code{\header}
3705
3706 The syntax is
3707
3708 @example
3709   \header @{ @var{key1} = @var{val1};
3710 @cindex @code{ly2dvi}
3711              @var{key2} = @var{val2}; @dots{} @}
3712 @end example
3713
3714
3715 A header describes the file's contents.  It can also appear in a
3716 @code{\score} block.  Tools like @code{ly2dvi} can use this
3717 information for generating titles.  Key values that are used by
3718 @code{ly2dvi} are: title, subtitle, composer, opus, poet, instrument,
3719 metre, arranger, piece and tagline.
3720
3721 It is customary to put the @code{\header} at the top of the file.
3722
3723 @subsubsection Default output
3724
3725 A @code{\midi} or @code{\paper} block at top-level sets the default
3726
3727 paper block for all scores that lack an explicit paper block.
3728
3729 @c .  {Identifiers}
3730 @node Identifiers
3731 @subsection Identifiers
3732 @cindex  Identifiers
3733
3734 All of the information in a LilyPond input file, is represented as a
3735 Scheme value. In addition to normal Scheme data types (such as pair,
3736 number, boolean, etc.), LilyPond has a number of specialized data types,
3737
3738 @itemize @bullet
3739 @item Input
3740 @item c++-function
3741 @item Music
3742 @item Identifier
3743 @item Translator_def
3744 @item Duration
3745 @item Pitch
3746 @item Score
3747 @item Music_output_def
3748 @item Moment (rational number)
3749 @end itemize
3750
3751 LilyPond also includes some transient object types. Objects of these
3752 types are built during a LilyPond run, and do not `exist' per se within
3753 your input file. These objects are created as a result of your input
3754 file, so you can include commands in the input to manipulate them,
3755 during a lilypond run.
3756
3757 @itemize @bullet
3758 @item Grob: short for Graphical object. See @ref{Grobs}. 
3759 @item Molecule: device-independent page output object,
3760 including dimensions.  Produced by some Grob functions
3761 See @ref{Molecules}
3762 @item Translator: object that produces audio objects or Grobs. This is
3763 not yet user accessible.
3764 @item Font_metric: object representing a font. (See @ref{Font metrics})
3765
3766 @end itemize
3767
3768
3769 @node Music expressions
3770 @subsection Music expressions
3771
3772 @cindex music expressions
3773
3774 Music in LilyPond is entered as a music expression.  Notes, rests, lyric
3775 syllables are music expressions, and you can combine music expressions
3776 to form new ones, for example by enclosing a list of expressions in
3777 @code{\sequential @{ @}} or @code{< >}.  In this example, a compound
3778 expression is formed out of the quarter note @code{c} and a quarter note
3779 @code{d}:
3780
3781 @example 
3782 \sequential @{ c4 d4 @} 
3783 @end example 
3784
3785 @cindex Sequential music
3786 @cindex @code{\sequential}
3787 @cindex sequential music
3788 @cindex @code{<}
3789 @cindex @code{>}
3790 @cindex Simultaneous music
3791 @cindex @code{\simultaneous}
3792
3793 The two basic compound  music expressions are simultaneous  and
3794 sequential music.
3795
3796 @example
3797   \sequential @code{@{} @var{musicexprlist} @code{@}}
3798   \simultaneous @code{@{} @var{musicexprlist} @code{@}}
3799 @end example
3800 For both, there is a shorthand:
3801 @example
3802   @code{@{} @var{musicexprlist} @code{@}}
3803 @end example
3804 for sequential and
3805 @example
3806   @code{<} @var{musicexprlist} @code{>}
3807 @end example
3808 for simultaneous music.
3809 Other compound music expressions include
3810 @example
3811  \repeat @var{expr}
3812  \transpose @var{pitch} @var{expr}
3813  \apply @var{func} @var{expr}
3814  \context @var{type} = @var{id} @var{expr}
3815  \times @var{fraction} @var{expr}
3816 @end example
3817
3818 In principle, the way in which you nest sequential and simultaneous to
3819 produce music is not relevant.  In the following example, three chords
3820 are expressed in two different ways:
3821
3822 @lilypond[fragment,verbatim,center]
3823   \notes \context Voice {
3824     <a c'> <b  d' > <c' e'>
3825     < { a b  c' } { c' d' e' } >
3826   }
3827 @end lilypond
3828
3829 However, in some cases, LilyPond will also try to choose contexts, and
3830 use the structure of the music expression  to do so. This can have
3831 undesired effects: for example, LilyPond will create a separate staff
3832 for each note if you start a @code{\score} with a  chord:
3833 @lilypond[verbatim,center,singleline]
3834   \score {
3835     \notes <c''4 e''>
3836   }
3837 @end lilypond
3838   The solution is to explicitly instantiate the context you desire.
3839 In this case this is typically a Voice context
3840 @lilypond[verbatim,center,singleline]
3841   \score {
3842     \notes\context Voice <c''4 e''>
3843   }
3844 @end lilypond
3845 If you use @code{\context Staff} you will get separate stems for each
3846 note head, leading to collisions, so don't use that.
3847
3848
3849
3850 @c . {Manipulating music expressions}
3851 @node Manipulating music expressions
3852 @subsection  Manipulating music expressions
3853
3854 The @code{\apply} mechanism gives you access to the internal
3855 representation of music. You can write Scheme-functions that operate
3856 directly on it. The syntax is 
3857 @example
3858         \apply #@var{func} @var{music}
3859 @end example
3860 This means that @var{func} is applied to @var{music}.  The function
3861 @var{func} should return a music expression.
3862
3863 This example replaces the text string of a script. It also shows a dump
3864 of the music it processes, which is useful if you want to know more
3865 about how music is stored.
3866 @lilypond[verbatim]
3867 #(define (testfunc x)
3868         (if (equal? (ly-get-mus-property x 'text) "foo")
3869                 (ly-set-mus-property x 'text "bar"))
3870         ;; recurse
3871         (ly-set-mus-property x 'elements
3872           (map testfunc (ly-get-mus-property x 'elements)))
3873         (display x)
3874         x        
3875 )
3876 \score { \notes
3877   \apply #testfunc { c4_"foo" }
3878
3879 @end lilypond
3880
3881 For more information on what is possible, see the @ref{Tricks} and the
3882 automatically generated documentation.
3883
3884 As always: directly accessing internal representations is dangerous: the
3885 implementation is subject to changes, so you should not use this if
3886 possible.
3887
3888
3889 @c .   {Assignments}
3890 @node Assignments
3891 @subsection Assignments
3892 @cindex Assignments
3893
3894 Identifiers allow objects to be assigned to names during the parse
3895 stage.  To assign an identifier, you use @var{name}@code{=}@var{value}
3896 and to refer to an identifier, you preceed its name with a backslash:
3897 `@code{\}@var{name}'.  @var{value} is any valid Scheme value or any of
3898 the input-types listed above.  Identifier assignments can appear at top
3899 level in the LilyPond file, but also in @code{\paper} blocks.
3900
3901 Semicolons are forbidden after top level assignments, but mandatory in
3902 other places. The rules about semicolons and assignments are very
3903 confusing, but when LilyPond input evolves more towards Scheme, we hope
3904 that this problem will grow smaller.
3905
3906 An identifier can be created with any string for its name, but you will
3907 only be able to refer to identifiers whose names begin with a letter,
3908 being entirely alphabetical.  It is impossible to refer to an identifier
3909 whose name is the same as the name of a keyword.
3910
3911 The right hand side of an identifier assignment is parsed completely
3912 before the assignment is done, so it is allowed to redefine an
3913 identifier in terms of its old value, e.g.
3914
3915 @example
3916 foo = \foo * 2.0
3917 @end example
3918
3919 When an identifier is referenced, the information it points to is
3920 copied.  For this reason, an identifier reference must always be the
3921 first item in a block.
3922 @example
3923 \paper  @{
3924         foo = 1.0
3925         \paperIdent % wrong and invalid
3926 @}
3927
3928 \paper @{
3929         \paperIdent % correct
3930         foo = 1.0 @}
3931 @end example
3932
3933 @c .  {Lexical details}
3934 @node Lexical details
3935 @subsection Lexical details
3936 @cindex Lexical details
3937 @menu
3938 @end menu
3939
3940 @c .   {Comments}
3941 @subsubsection Comments
3942 @cindex Comments
3943
3944 @cindex @code{%}
3945
3946
3947 A one line comment is introduced by a @code{%} character. 
3948 Block comments are started by @code{%@{} and ended by @code{%@}}. 
3949 They cannot be nested.
3950
3951 @c .  {Direct Scheme}
3952 @subsubsection Direct Scheme
3953 @cindex Scheme
3954 @cindex GUILE
3955 @cindex Scheme, in-line code
3956
3957
3958 LilyPond contains a Scheme interpreter (the GUILE library) for
3959 internal use. In some places Scheme expressions also form valid syntax:
3960 whereever it is allowed,
3961 @example
3962   #@var{scheme}
3963 @end example
3964 evaluates the specified Scheme code. If this is used at toplevel, then
3965 the result is discarded. Example:
3966 @example
3967   \property Staff.TestObject \override #'foobar =  #(+ 1 2)
3968 @end example
3969
3970 @code{\override} expects two Scheme expressions, so there are two Scheme
3971 expressions. The first one is a symbol (@code{foobar}), the second one
3972 an integer (namely, 3).
3973
3974 Scheme is a full-blown programming language, and a full discussion is
3975 outside the scope of this document. Interested readers are referred to
3976 the website @uref{http://www.schemers.org/} for more information on
3977 Scheme.
3978
3979
3980 @c .   {Keywords}
3981 @subsubsection Keywords
3982 @cindex Keywords
3983
3984
3985 Keywords start with a backslash, followed by a number of lower case
3986 alphabetic characters.  These are all the keywords.
3987
3988 @example
3989 apply arpeggio autochange spanrequest commandspanrequest
3990 simultaneous sequential accepts alternative bar breathe
3991 char chordmodifiers chords clef cm consists consistsend
3992 context denies duration dynamicscript elementdescriptions
3993 font grace header in lyrics key mark pitch
3994 time times midi mm name pitchnames notes outputproperty
3995 override set revert partial paper penalty property pt
3996 relative remove repeat addlyrics partcombine score
3997 script stylesheet skip textscript tempo translator
3998 transpose type
3999 @end example
4000
4001 @c .   {Integers}
4002 @subsubsection Integers
4003
4004 @cindex integers
4005 @cindex @code{+}
4006 @cindex @code{-}
4007 @cindex @code{*}
4008 @cindex @code{/}
4009
4010 Formed from an optional minus sign followed by digits.  Arithmetic
4011 operations cannot be done with integers, and integers cannot be mixed
4012 with reals.
4013
4014 @c .   {Reals}
4015 @subsubsection Reals
4016 @cindex real numbers
4017
4018
4019
4020
4021
4022 Formed from an optional minus sign and a sequence of digits followed
4023 by a @emph{required} decimal point and an optional exponent such as
4024 @code{-1.2e3}.  Reals can be built up using the usual operations:
4025 `@code{+}', `@code{-}', `@code{*}', and
4026 `@code{/}', with parentheses for grouping.
4027
4028 @cindex @code{\mm},
4029 @cindex @code{\in}
4030 @cindex @code{\cm}
4031 @cindex @code{\pt}
4032 @cindex dimensions
4033
4034 A real constant can be followed by one of the dimension keywords:
4035 @code{\mm} @code{\pt}, @code{\in}, or @code{\cm}, for millimeters,
4036 points, inches and centimeters, respectively.  This converts the number
4037 to a real that is the internal representation of dimensions.
4038
4039
4040 @c .   {Strings}
4041 @subsubsection Strings
4042 @cindex string
4043 @cindex concatenate
4044
4045 Begins and ends with the @code{"} character.  To include a @code{"}
4046 character in a string write @code{\"}.  Various other backslash
4047 sequences have special interpretations as in the C language.  A string
4048 that contains no spaces can be written without the quotes.  See
4049 @ref{Lexical modes} for details on unquoted strings; their
4050 interpretation varies depending on the situation.  Strings can be
4051 concatenated with the @code{+} operator.
4052
4053 The tokenizer accepts the following commands. They have no grammatical
4054 function, hence they can appear anywhere in the input.
4055
4056
4057 @c .   {Main input}
4058 @subsubsection Main input
4059 @cindex Main input
4060
4061 @cindex @code{\maininput}
4062
4063 The @code{\maininput} command is used in init files to signal that the
4064 user file must be read. This command cannot be used in a user file.
4065
4066 @c .   {File inclusion}
4067 @subsubsection Main input
4068 @cindex Main input
4069
4070 @subsubsection File inclusion
4071 @cindex @code{\include}
4072 @example
4073   \include @var{filename}
4074 @end example
4075
4076 Include @var{filename}.  The argument @var{filename} may be a quoted string (an
4077 unquoted string will not work here!) or a string identifier.  The full
4078 filename including the @file{.ly} extension must be given,
4079
4080 @subsubsection Version information 
4081 @cindex @code{\version}
4082 @example
4083   \version @var{string} ;
4084 @end example
4085
4086 Specify the version of LilyPond that a file was written for.  The
4087 argument is a version string in quotes, for example @code{"1.2.0"}. 
4088 This is used to detect invalid input, and to aid
4089 @code{convert-ly}  a tool that automatically upgrades input files. See
4090 See @ref{convert-ly} for more information on @code{convert-ly}.
4091
4092 @cindex convert-ly
4093
4094
4095 @c .   {Pitch names}
4096 @subsubsection Defining pitch names
4097 @cindex Lexical modes
4098 @cindex definining pitch names
4099 @cindex pitch names, definining
4100 @cindex note names
4101 @cindex chord modifier names
4102
4103 A @code{\paper} block at top level sets the default paper block.  A
4104 @code{\midi} block at top level works similarly.
4105
4106 @c .   {Assignments}
4107 @subsubsection Assignments
4108 @cindex assignments
4109 @cindex @code{#}
4110
4111 Identifier assignments may appear at top level.  @ref{Assignments}
4112
4113
4114
4115 @c .    {Direct scheme}
4116 @subsubsection Direct scheme
4117 @cindex Direct scheme
4118
4119 Scheme statements maybe issued to produce interesting side-effects. 
4120
4121
4122 @c .  {Lexical modes}
4123 @node Lexical modes
4124 @subsection Lexical modes
4125 @cindex Lexical modes
4126 @cindex input mode
4127 @cindex mode, input 
4128 @cindex @code{\notes}
4129 @cindex @code{\chords}
4130 @cindex @code{\lyrics}
4131
4132 To simplify entering notes, lyrics, and chords, LilyPond has three
4133 special input modes on top of the default mode: note, lyrics and chords
4134 mode.  These input modes change the way that normal, unquoted words are
4135 interpreted: for example, the word @code{cis} may be interpreted as a
4136 C-sharp, as a lyric syllable `cis' or as a C-sharp major triad
4137 respectively.
4138
4139 A mode switch is entered as a compound music expressions
4140 @example
4141 @code{\notes} @var{musicexpr}
4142 @code{\chords} @var{musicexpr}
4143 @code{\lyrics}  @var{musicexpr}.
4144 @end example
4145
4146 In each of these cases, these expressions do not add anything to the
4147 meaning of their arguments.  They are just a way to indicate that the
4148 arguments should be parsed in indicated mode.  The modes are treated in
4149 more detail in the sections @ref{Note entry}, @ref{Lyrics} and
4150 @ref{Chords}.
4151
4152 You may nest different input modes.
4153
4154 @c .  {Ambiguities}
4155 @node Ambiguities
4156 @subsection Ambiguities
4157 @cindex ambiguities
4158 @cindex grammar
4159
4160
4161 The grammar contains a number of ambiguities. We hope to resolve them at
4162 some time.
4163
4164 @itemize @bullet
4165   @item  The assignment
4166
4167          @example 
4168 foo = bar 
4169 @end example 
4170
4171        can be interpreted as making a string identifier @code{\foo}
4172        containing @code{"bar"}, or a music identifier @code{\foo}
4173        containing the syllable `bar'.
4174
4175   @item  The assignment
4176
4177          @example 
4178 foo = -6 
4179 @end example 
4180
4181        can be interpreted as making an integer identifier
4182        containing -6, or a Request identifier containing the
4183        fingering `6' (with neutral direction).
4184
4185   @item  If you do a nested repeat like
4186
4187        @quotation
4188
4189 @example 
4190 \repeat @dots{}
4191 \repeat @dots{}
4192 \alternative 
4193 @end example 
4194
4195        @end quotation
4196
4197        then it is ambiguous to which @code{\repeat} the
4198        @code{\alternative} belongs.  This is the classic if-then-else
4199        dilemma.  It may be solved by using braces.
4200
4201   @item  (an as yet unidentified ambiguity :-)
4202 @end itemize
4203
4204
4205
4206
4207
4208 @c .{Local emacs vars}
4209 @c Local variables:
4210 @c mode: texinfo
4211 @c minor-mode: font-lock
4212 @c minor-mode: outline
4213 @c outline-layout: (-1 : 0)
4214 @c outline-use-mode-specific-leader: "@c \."
4215 @c outline-primary-bullet: "{"
4216 @c outline-stylish-prefixes: nil
4217 @c outline-override-protect: t
4218 @c End:
4219