]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/basic-notation.itely
* Documentation/topdocs/NEWS.tely (Top): document new feature.
[lilypond.git] / Documentation / user / basic-notation.itely
1 @c -*- coding: latin-1; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
3
4 @c A menu is needed before every deeper *section nesting of @node's; run
5 @c     M-x texinfo-all-menus-update
6 @c to automatically fill in these menus before saving changes
7
8 @node Basic notation
9 @chapter Basic notation
10
11 This chapter explains how to use all basic notation features.
12
13 @menu
14 * Note entry::                  
15 * Easier music entry::          
16 * Staff notation::              
17 * More than notes::             
18 * Expressive marks::            
19 * Polyphony::                   
20 * Repeats::                     
21 @end menu
22
23
24
25 @node Note entry
26 @section Note entry
27 @cindex Note entry
28
29 This section is about basic notation elements like notes, rests, and
30 related constructs, such as stems, tuplets and ties.
31
32 @menu
33 * Notes::                       
34 * Pitches::                     
35 * Cautionary accidentals::      
36 * Micro tones::                 
37 * Chords::                      
38 * Rests::                       
39 * Skips::                       
40 * Durations::                   
41 * Augmentation dots::           
42 * Tuplets::                     
43 * Scaling durations::           
44 @end menu
45
46
47 @node Notes
48 @subsection Notes
49
50
51 A note is printed by specifying its pitch and then its duration,
52
53 @lilypond[quote,verbatim,raggedright,fragment]
54 cis'4 d'8 e'16 c'16
55 @end lilypond
56
57
58 @node Pitches
59 @subsection Pitches
60
61 @cindex Pitch names
62 @cindex Note specification
63 @cindex pitches
64 @cindex entering notes
65
66 The most common syntax for pitch entry is used for standard notes and
67 @code{\chordmode} modes.  In these modes, pitches may be designated by
68 names.  The notes are specified by the letters @code{a} through
69 @code{g}.  The octave is formed with notes ranging from @code{c}
70 to @code{b}.  The pitch @code{c} is an octave below middle C and the
71 letters span the octave above that C
72
73 @lilypond[quote,fragment,verbatim]
74 \clef bass
75 a,4 b, c d e f g a b c' d' e' \clef treble f' g' a' b' c''
76 @end lilypond
77
78 @cindex @code{'}
79 @cindex @code{,}
80
81 The optional octave specification takes the form of a series of
82 single quote (`@code{'}') characters or a series of comma
83 (`@code{,}') characters.  Each @code{'} raises the pitch by one
84 octave; each @code{,} lowers the pitch by an octave
85
86 @lilypond[quote,raggedright,fragment,verbatim]
87 c' c'' es' g' as' gisis' ais'
88 @end lilypond
89
90 @cindex note names, Dutch
91
92 A sharp is formed by adding @code{-is} to the end of a pitch name and
93 a flat is formed by adding @code{-es}.  Double sharps and double flats
94 are obtained by adding @code{-isis} or @code{-eses}.  These
95 names are the Dutch note names.  In Dutch, @code{aes} is contracted to
96 @code{as}, but both forms are accepted.  Similarly, both
97 @code{es} and @code{ees} are accepted
98
99 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
100 ceses4
101 ces
102 c
103 cis
104 cisis
105 @end lilypond
106
107 In accordance with standard typsetting rules, a natural sign is printed
108 before a sharp or flat if a previous accidental needs to be
109 cancelled.  To change this behaviour, use
110 @code{\set Staff.extraNatural = ##f}
111
112 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
113 ceses4 ces cis c
114 \set Staff.extraNatural = ##f
115 ceses4 ces cis c
116 @end lilypond
117
118 There are predefined sets of note names for various other languages.
119 To use them, include the language specific init file.  For
120 example: @code{\include "english.ly"}.  The available language files
121 and the note names they define are
122
123 @anchor{note name}
124 @anchor{note names}
125 @example
126                         Note Names               sharp       flat
127 nederlands.ly  c   d   e   f   g   a   bes b   -is         -es
128 english.ly     c   d   e   f   g   a   bf  b   -s/-sharp   -f/-flat
129                                                -x (double)
130 deutsch.ly     c   d   e   f   g   a   b   h   -is         -es
131 norsk.ly       c   d   e   f   g   a   b   h   -iss/-is    -ess/-es
132 svenska.ly     c   d   e   f   g   a   b   h   -iss        -ess
133 italiano.ly    do  re  mi  fa  sol la  sib si  -d          -b
134 catalan.ly     do  re  mi  fa  sol la  sib si  -d/-s       -b
135 espanol.ly     do  re  mi  fa  sol la  sib si  -s          -b
136 @end example
137
138
139 @seealso
140
141 Program reference: @internalsref{NoteEvent},
142 @internalsref{LedgerLineSpanner}, and @internalsref{NoteHead}.
143
144
145
146 @node Cautionary accidentals
147 @subsection Cautionary accidentals 
148
149 Normally accidentals are printed automatically, but you may also
150 print them manually.  A reminder accidental
151 @cindex reminder accidental
152 @cindex @code{?}
153 can be forced by adding an exclamation mark @code{!}
154 after the pitch.  A cautionary accidental
155 @cindex cautionary accidental
156 @cindex parenthesized accidental
157 @cindex @code{!}
158 (i.e., an accidental within parentheses) can be obtained by adding the
159 question mark `@code{?}' after the pitch.
160
161 @lilypond[quote,raggedright,fragment,verbatim]
162 cis' cis' cis'! cis'?
163 @end lilypond
164
165
166 @seealso
167
168 The automatic production of accidentals can be tuned in many
169 ways.  For more information, refer to @ref{Automatic accidentals}.
170
171
172
173 @node Micro tones
174 @subsection Micro tones
175
176 Half-flats and half-sharps are formed by adding @code{-eh} and
177 @code{-ih}; the following is a series of Cs with increasing pitches
178
179 @cindex quarter tones
180 @cindex semi-flats, semi-sharps
181
182 @lilypond[verbatim,raggedright,quote,relative=2,fragment]
183 { ceseh ceh cih cisih }
184 @end lilypond
185
186 Micro tones are also exported to the MIDI file
187
188
189 @refbugs
190
191 There are no generally accepted standards for denoting three quarter
192 flats, so LilyPond's symbol does not conform to any standard.
193
194 @node Chords
195 @subsection Chords
196 @cindex Chords
197
198 A chord is formed by a enclosing a set of pitches in @code{<} and
199 @code{>}.  A chord may be followed by a duration, and a set of
200 articulations, just like simple notes
201
202 @lilypond[verbatim,raggedright,fragment,quote,relative=1]
203 <c e g>4 <c>8
204 @end lilypond
205
206 For more information about chords, see @ref{Chord names}.
207
208
209 @node Rests
210 @subsection Rests
211 @cindex Rests
212
213
214 @cindex @code{\rest}
215 @cindex @code{r}
216
217 Rests are entered like notes, with the note name @code{r}
218
219 @lilypond[fragment,quote,raggedright,verbatim]
220 r1 r2 r4 r8
221 @end lilypond
222
223 Whole bar rests, centered in middle of the bar,
224 must be done with multi-measure rests.  They are discussed in
225 @ref{Multi measure rests}.
226
227
228 A rest's vertical position may be explicitly specified by entering a
229 note with the @code{\rest} keyword appended, the rest will be placed at
230 the note's place.  This makes manual formatting in polyphonic music
231 easier.  Automatic rest collision formatting will leave these rests
232 alone
233
234 @lilypond[fragment,quote,raggedright,verbatim]
235 a'4\rest d'4\rest
236 @end lilypond
237
238 @seealso
239
240 Program reference: @internalsref{RestEvent}, and @internalsref{Rest}.
241
242
243 @c FIXME: naming.
244 @node Skips
245 @subsection Skips
246 @cindex Skip
247 @cindex Invisible rest
248 @cindex Space note
249
250 @cindex @code{\skip}
251 @cindex @code{s}
252 An invisible rest (also called a `skip') can be entered like a note
253 with note name `@code{s}' or with @code{\skip @var{duration}}
254
255 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
256 a4 a4 s4 a4 \skip 1 a4
257 @end lilypond
258
259 The @code{s} syntax is only available in note mode and chord mode.  In
260 other situations, for example, when entering lyrics, you should use
261 the @code{\skip} command
262
263 @lilypond[quote,raggedright,verbatim]
264 <<
265   \relative { a'2 a1 }
266   \new Lyrics \lyricmode { \skip 2 bla1 }
267 >>
268 @end lilypond
269
270 The skip command is merely an empty musical placeholder.  It does not
271 produce any output, not even transparent output.
272
273 The @code{s} skip command does create @internalsref{Staff} and
274 @internalsref{Voice} when necessary, similar to note and rest
275 commands.  For example, the following results in an empty staff.
276
277 @lilypond[quote,raggedright,verbatim]
278 { s4 }
279 @end lilypond
280
281 The fragment @code{@{ \skip 4 @} } would produce an empty page.
282
283 @seealso
284
285 Program reference: @internalsref{SkipEvent}, @internalsref{SkipMusic}.
286
287
288
289 @node Durations
290 @subsection Durations
291
292
293 @cindex duration
294 @cindex @code{\longa}
295 @cindex @code{\breve}
296 @cindex @code{\maxima}
297
298
299 In Note, Chord, and Lyrics mode, durations are designated by numbers and
300 dots: durations are entered as their reciprocal values.  For example, a
301 quarter note is entered using a @code{4} (since it is a 1/4 note), while
302 a half note is entered using a @code{2} (since it is a 1/2 note).  For
303 notes longer than a whole you must use the variables @code{\longa} and
304 @code{\breve}
305
306 @example
307 c'\breve
308 c'1 c'2 c'4 c'8 c'16 c'32 c'64 c'64
309 r\longa r\breve
310 r1 r2 r4 r8 r16 r32 r64 r64
311 @end example
312
313 @lilypond[quote]
314 \score {
315  \relative c'' {
316     a\breve*1/2 \autoBeamOff
317     a1 a2 a4 a8 a16 a32 a64 a64
318    \bar "empty"
319    \break
320     r\longa*1/4 r\breve *1/2
321     r1 r2 r4 r8 r16 r32 r64 r64
322   }
323   \layout {
324     raggedright = ##t
325     \context {
326       \Staff
327         \remove "Clef_engraver"
328         \override StaffSymbol #'transparent = ##t
329         \override TimeSignature #'transparent = ##t
330         \override BarLine #'transparent = ##t
331         \consists "Pitch_squash_engraver"
332     }
333   }
334 }
335 @end lilypond
336
337 If the duration is omitted then it is set to the previously entered
338 duration.  The default for the first note is a quarter note.
339
340 @lilypond[quote,raggedright,verbatim,fragment]
341 { a a a2 a a4 a a1 a }
342 @end lilypond
343
344
345
346 @node Augmentation dots
347 @subsection Augmentation dots
348
349 @cindex @code{.}
350 To obtain dotted note lenghts, simply add a dot (`@code{.}') to
351 the number.  Double-dotted notes are produced in a similar way.
352
353 @lilypond[quote,raggedright,fragment,verbatim]
354 a'4 b' c''4. b'8 a'4. b'4.. c''8.
355 @end lilypond
356
357 @refcommands
358
359 Dots are normally moved up to avoid staff lines, except in polyphonic
360 situations.  The following commands may be used to force a particular
361 direction manually
362
363 @cindex @code{\dotsUp}
364 @code{\dotsUp},
365 @cindex @code{\dotsDown}
366 @code{\dotsDown},
367 @cindex @code{\dotsNeutral}
368 @code{\dotsNeutral}.
369
370 @seealso
371
372 Program reference: @internalsref{Dots}, and @internalsref{DotColumn}.
373
374
375 @node Tuplets
376 @subsection Tuplets
377
378 @cindex tuplets
379 @cindex triplets
380 @cindex @code{\times}
381
382 Tuplets are made out of a music expression by multiplying all durations
383 with a fraction
384
385 @cindex @code{\times}
386 @example
387 \times @var{fraction} @var{musicexpr}
388 @end example
389
390 @noindent
391 The duration of @var{musicexpr} will be multiplied by the fraction.
392 The fraction's denominator will be printed over the notes, optionally
393 with a bracket.  The most common tuplet is the triplet in which 3
394 notes have the length of 2, so the notes are 2/3 of their written
395 length
396
397 @lilypond[quote,raggedright,fragment,verbatim]
398 g'4 \times 2/3 {c'4 c' c'} d'4 d'4
399 @end lilypond
400
401 The property @code{tupletSpannerDuration} specifies how long each
402 bracket should last.  With this, you can make lots of tuplets while
403 typing @code{\times} only once, thus saving lots of typing.  In the next
404 example, there are two triplets shown, while @code{\times} was only
405 used once
406
407 @lilypond[quote,fragment,relative=1,raggedright,verbatim]
408 \set tupletSpannerDuration = #(ly:make-moment 1 4)
409 \times 2/3 { c'8 c c c c c }
410 @end lilypond
411
412 The format of the number is determined by the property
413 @code{tupletNumberFormatFunction}.  The default prints only the
414 denominator, but if it is set to the Scheme function
415 @code{fraction-tuplet-formatter}, @var{num}:@var{den} will be printed
416 instead.
417
418 @cindex @code{tupletNumberFormatFunction}
419 @cindex tuplet formatting
420
421 @refcommands
422
423 @cindex @code{\tupletUp}
424 @code{\tupletUp},
425 @cindex @code{\tupletDown}
426 @code{\tupletDown},
427 @cindex @code{\tupletNeutral}
428 @code{\tupletNeutral}.
429
430 @seealso
431
432 User manual: @ref{Changing context properties on the fly} for the
433 @code{\set} command.
434
435
436 Program reference: @internalsref{TupletBracket}, and @internalsref{TimeScaledMusic}.
437
438 Examples: @inputfileref{input/@/regression,tuplet@/-nest@/.ly}.
439
440 @refbugs
441
442 Nested tuplets are not formatted automatically.  In this case, outer
443 tuplet brackets should be moved manually, which is demonstrated in
444 @inputfileref{input/@/regression,tuplet@/-nest@/.ly}.
445
446
447 @node Scaling durations
448 @subsection Scaling durations
449
450 You can alter the length of duration by a fraction @var{N/M}
451 appending `@code{*}@var{N/M}' (or `@code{*}@var{N}' if @var{M=1}).  This
452 will not affect the appearance of the notes or rests produced.
453
454 In the following example, the first three notes take up exactly two
455 beats, but no triplet bracket is printed.
456 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
457 \time 2/4
458 a4*2/3 gis4*2/3 a4*2/3
459 a4 a4 a4*2
460 b16*4 c4
461 @end lilypond
462
463
464 @seealso
465
466 This manual: @ref{Tuplets}
467
468
469 @node Easier music entry
470 @section Easier music entry
471 @cindex Music entry
472
473 This section deals with tricks and features of the input language that
474 were added solely to help entering music and finding and correcting
475 mistakes.  There are also external tools that make debugging easier.
476 See @ref{Point and click} for more information.
477
478 It is also possible to enter and edit music using other programs, such as
479 GUI interfaces or MIDI sequencers.  Refer to the LilyPond
480 website for more information.
481
482
483 @menu
484 * Relative octaves::            
485 * Octave check::                
486 * Bar check::                   
487 * Skipping corrected music::    
488 * Automatic note splitting::    
489 @end menu
490
491
492
493
494 @node Relative octaves
495 @subsection Relative octaves
496 @cindex Relative
497 @cindex relative octave specification
498
499 Octaves are specified by adding @code{'} and @code{,} to pitch names.
500 When you copy existing music, it is easy to accidentally put a pitch
501 in the wrong octave and hard to find such an error.  The relative
502 octave mode prevents these errors by making the mistakes much
503 larger: a single error puts the rest of the piece off by one octave
504
505 @cindex @code{\relative}
506 @example
507 \relative @var{startpitch} @var{musicexpr}
508 @end example
509
510 @noindent
511 or
512
513 @example
514 \relative @var{musicexpr}
515 @end example
516
517 The octave of notes that appear in @var{musicexpr} are calculated as
518 follows: if no octave changing marks are used, the basic interval
519 between this and the last note is always taken to be a fourth or
520 less.  This distance is determined without regarding alterations; a
521 @code{fisis} following a @code{ceses} will be put above the
522 @code{ceses}.  In other words, a doubly-augmented fourth is considered
523 a smaller interval than a diminshed fifth, even though the fourth is
524 seven semitones while the fifth is only six semitones.
525
526 The octave changing marks @code{'} and @code{,} can be added to raise
527 or lower the pitch by an extra octave.  Upon entering relative mode,
528 an absolute starting pitch can be specified that will act as the
529 predecessor of the first note of @var{musicexpr}.  If no starting pitch
530 is specified, then middle C is used as a start.
531
532 Here is the relative mode shown in action
533 @lilypond[quote,fragment,raggedright,verbatim]
534 \relative c'' {
535   b c d c b c bes a
536 }
537 @end lilypond
538
539 Octave changing marks are used for intervals greater than a fourth
540 @lilypond[quote,raggedright,fragment,verbatim]
541 \relative c'' {
542   c g c f, c' a, e''
543 }
544 @end lilypond
545
546 If the preceding item is a chord, the first note of the chord is used
547 to determine the first note of the next chord
548
549 @lilypond[quote,raggedright,fragment,verbatim]
550 \relative c' {
551   c <c e g>
552   <c' e g>
553   <c, e' g>
554 }
555 @end lilypond
556
557 The pitch after the @code{\relative} contains a note name.
558
559
560 The relative conversion will not affect @code{\transpose},
561 @code{\chordmode} or @code{\relative} sections in its argument.  To use
562 relative within transposed music, an additional @code{\relative} must
563 be placed inside @code{\transpose}.
564
565 @node Octave check
566 @subsection Octave check
567
568
569 Octave checks make octave errors easier to correct: a note may be
570 followed by @code{=}@var{quotes} which indicates what its absolute
571 octave should be.  In the following example,
572 @example
573 \relative c'' @{ c='' b=' d,='' @}
574 @end example
575
576 @noindent
577 @c take care with @code, adds confusing quotes.
578 the @code{d} will generate a warning, because a @code{d''} is expected
579 (because @code{b'} to @code{d''} is only a third), but a @code{d}' is
580 found.  In the output, the octave is corrected to be a @code{d''} and
581 the next note is calculated relative to @code{d''} instead of @code{d'}.
582
583
584
585 There is also a syntax that is separate from the notes.  The syntax
586
587 @example
588 \octave @var{pitch}
589 @end example
590
591 This checks that @var{pitch} (without quotes) yields @var{pitch} (with
592 quotes) in \relative mode.  If not, a warning is printed, and the
593 octave is corrected.
594
595 In the example below, the first check passes without incident, since
596 the @code{e} (in relative mode) is within a fifth of @code{a'}.  However,
597 the second check produces a warning, since the @code{e} is not within
598 a fifth of @code{b'}.  The warning message is printed, and the octave
599 is adjusted so that the following notes are in the correct octave
600 once again.
601
602 @example
603 \relative c' @{
604   e
605   \octave a'
606   \octave b'
607 @}
608 @end example
609
610
611 The octave of a note following an octave check is determined with
612 respect to the note preceding it.  In the next fragment, the last note
613 is a @code{a'}, above middle C.  That means that the @code{\octave}
614 check passes successfully, so the check could be deleted without changing
615 the output of the piece.
616
617 @lilypond[quote,raggedright,verbatim,fragment]
618 \relative c' {
619   e
620   \octave b
621   a
622 }
623 @end lilypond
624
625 @node Bar check
626 @subsection Bar check
627 @cindex Bar check
628
629 @cindex bar check
630 @cindex @code{barCheckSynchronize}
631 @cindex @code{|}
632
633 Bar checks help detect errors in the durations.  A bar check is
634 entered using the bar symbol, `@code{|}'.  Whenever it is encountered
635 during interpretation, it should fall on a measure boundary.  If it
636 does not, a warning is printed.  In the next example, the second bar
637 check will signal an error
638 @example
639 \time 3/4 c2 e4 | g2 |
640 @end example
641
642 Bar checks can also be used in lyrics, for example
643
644 @example
645 \lyricmode @{
646   \time 2/4
647   Twin -- kle | Twin -- kle
648 @}
649 @end example
650
651
652 @cindex @code{skipTypesetting}
653
654 Failed bar checks are caused by entering incorrect
655 durations.  Incorrect durations often completely garble up the score,
656 especially if the score is polyphonic, so a good place to start correcting
657 input is by scanning for failed bar checks and incorrect durations.  To
658 speed up this process, the @code{skipTypesetting} feature may be
659 used.  It is described in the next section.
660
661 @cindex @code{|}
662 @cindex @code{pipeSymbol}
663
664 It is also possible to redefine the meaning of @code{|}.  This is done
665 by assigning a music expression to @code{pipeSymbol},
666
667 @lilypond[quote,raggedright,verbatim]
668 pipeSymbol = \bar "||"
669
670 { c'2 c' | c'2 c }
671 @end lilypond
672
673
674 @node Skipping corrected music
675 @subsection Skipping corrected music
676
677 The property @code{Score.skipTypesetting} can be used to switch on and
678 off typesetting completely during the interpretation phase.  When
679 typesetting is switched off, the music is processed much more
680 quickly.  This can be used to skip over the parts of a score that
681 have already been checked for errors
682
683 @lilypond[quote,fragment,raggedright,verbatim]
684 \relative c'' {
685   c8 d
686   \set Score.skipTypesetting = ##t
687   e e e e e e e e
688   \set Score.skipTypesetting = ##f
689   c d b bes a g c2 }
690 @end lilypond
691
692 In polyphonic music, @code{Score.skipTypesetting} will affect all
693 voices and staves, saving even more time.
694
695 @node Automatic note splitting
696 @subsection Automatic note splitting
697
698 Long notes can be converted automatically to tied notes.  This is done
699 by replacing the @internalsref{Note_heads_engraver} by the
700 @internalsref{Completion_heads_engraver}.
701 In the following examples, notes crossing the bar line are split and tied.
702
703
704 @lilypond[quote,fragment,verbatim,relative=1,linewidth=12\cm]
705 \new Voice \with {
706   \remove "Note_heads_engraver"
707   \consists "Completion_heads_engraver"
708 } {
709   c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2
710 }
711 @end lilypond
712
713 This engraver splits all running notes at the bar line, and inserts
714 ties.  One of its uses is to debug complex scores: if the measures are
715 not entirely filled, then the ties exactly show how much each measure
716 is off.
717
718 @refbugs
719
720 Not all durations (especially those containing tuplets) can be
721 represented exactly with normal notes and dots, but the engraver will
722 not insert tuplets.
723
724 @code{Completion_heads_engraver} only affects notes; it does not split
725 rests.
726
727
728 @seealso
729
730 Examples: @inputfileref{input/@/regression,completion@/-heads@/.ly}.
731
732 @noindent
733
734 Program reference: @internalsref{Completion_heads_engraver}.
735
736
737
738
739 @node Staff notation
740 @section Staff notation
741
742 This section describes music notation that occurs on staff level,
743 such as key signatures, clefs and time signatures.
744
745 @cindex Staff notation
746
747 @menu
748 * Staff symbol::                
749 * Key signature::               
750 * Clef::                        
751 * Time signature::              
752 * Partial measures::            
753 * Unmetered music::             
754 * Bar lines::                   
755 * System start delimiters::     
756 @end menu
757
758
759 @node Staff symbol
760 @subsection Staff symbol
761
762 @cindex adjusting staff symbol
763
764 Notes, dynamic signs, etc., are grouped
765 with a set of horizontal lines, into a staff (plural `staves').  In our
766 system, these lines are drawn using a separate layout object called
767 staff symbol.
768
769 The staff symbol may be tuned in the number, thickness and distannce
770 of lines, using properties.  This is demonstrated in the example files
771 @inputfileref{input/@/test,staff@/-lines@/.ly},
772 @inputfileref{input/@/test,staff@/-size@/.ly}.
773
774 In addition, staves may be started and stopped at will. This is done
775 with @code{\startStaff} and @code{\stopStaff}.
776
777 @lilypond[verbatim,relative=2,fragment]
778 b4 b
779 \override Staff.StaffSymbol #'line-count = 2
780 \stopStaff  \startStaff
781 b b
782 \revert Staff.StaffSymbol #'line-count
783 \stopStaff \startStaff
784 b b  
785 @end lilypond
786
787 In combination with Frenched staves, this may be used to typeset ossia
788 sections. An example is in @inputfileref{input/@/test@/,ossia.ly},
789 shown here
790
791 @cindex ossia
792
793 @lilypondfile{ossia.ly}
794
795 @cindex staff lines, setting number of
796 @cindex staff lines, setting thickness of
797 @cindex thickness of staff lines, setting
798 @cindex number of staff lines, setting
799
800 @seealso
801
802 Program reference: @internalsref{StaffSymbol}, @internalsref{StaffSpanEvent}.
803
804 Examples: @inputfileref{input/@/test,staff@/-lines@/.ly},
805 @inputfileref{input/@/test@/,ossia.ly},
806 @inputfileref{input/@/test,staff@/-size@/.ly}.
807
808
809 @node Key signature
810 @subsection Key signature
811 @cindex Key signature
812
813 @cindex @code{\key}
814
815 The key signature indicates the tonality in which a piece is played.  It
816 is denoted by a set of alterations (flats or sharps) at the start of the
817 staff.
818
819
820 Setting or changing the key signature is done with the @code{\key}
821 command
822 @example
823 @code{\key} @var{pitch} @var{type}
824 @end example
825
826 @cindex @code{\minor}
827 @cindex @code{\major}
828 @cindex @code{\minor}
829 @cindex @code{\ionian}
830 @cindex @code{\locrian}
831 @cindex @code{\aeolian}
832 @cindex @code{\mixolydian}
833 @cindex @code{\lydian}
834 @cindex @code{\phrygian}
835 @cindex @code{\dorian}
836
837 Here, @var{type} should be @code{\major} or @code{\minor} to get
838 @var{pitch}-major or @var{pitch}-minor, respectively.
839 The standard mode names @code{\ionian},
840 @code{\locrian}, @code{\aeolian}, @code{\mixolydian}, @code{\lydian},
841 @code{\phrygian}, and @code{\dorian} are also defined.
842
843 This command sets the context property
844 @internalsref{Staff}.@code{keySignature}.  Non-standard key signatures
845 can be specified by setting this property directly.
846
847 A natural sign is printed to cancel any previous accidentals.  This
848 can be suppressed by setting the @code{Staff.printKeyCancellation}
849 property.
850
851 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
852 {
853   \key d \major
854   a b cis d
855   \key g \minor
856   a bes c d
857   \set Staff.printKeyCancellation = ##f
858   \key d \major
859   a b cis d
860   \key g \minor
861   a bes c d
862 }
863 @end lilypond
864
865 Accidentals and key signatures often confuse new users, because
866 unaltered notes get natural signs depending on the key signature.  For
867 more information, see @ref{More about pitches}.
868
869 @seealso
870
871 Program reference: @internalsref{KeyChangeEvent},
872 @internalsref{KeyCancellation} and @internalsref{KeySignature}.
873
874 @cindex @code{keySignature}
875
876
877 @node Clef
878 @subsection Clef
879 @cindex @code{\clef}
880
881 The clef indicates which lines of the staff correspond to which
882 pitches.
883
884
885 The clef can be set with the @code{\clef} command
886 @lilypond[quote,raggedright,fragment,verbatim]
887 { c''2 \clef alto g'2 }
888 @end lilypond
889
890 Supported clef-names include
891 @c Moved standard clefs to the top /MB
892 @table @code
893 @cindex treble clef
894 @cindex violin clef
895 @item treble, violin, G, G2
896 G clef on 2nd line
897 @item alto, C
898 @cindex alto clef
899  C clef on 3rd line
900 @item tenor
901 @cindex tenor clef
902  C clef on 4th line.
903 @item bass, F
904 @cindex bass clef
905  F clef on 4th line
906 @item french
907 @cindex french clef
908  G clef on 1st line, so-called French violin clef
909 @item soprano
910 @cindex soprano clef
911  C clef on 1st line
912 @item mezzosoprano
913 @cindex mezzosoprano clef
914  C clef on 2nd line
915 @item baritone
916 @cindex baritone clef
917  C clef on 5th line
918 @item varbaritone
919 @cindex varbaritone clef
920  F clef on 3rd line
921 @item subbass
922 @cindex subbass clef
923  F clef on 5th line
924 @item percussion
925  percussion clef
926 @item tab
927  tablature clef
928 @end table
929
930 By adding @code{_8} or @code{^8} to the clef name, the clef is
931 transposed one octave down or up, respectively, and @code{_15} and
932 @code{^15} transposes by two octaves.  The argument @var{clefname}
933 must be enclosed in quotes when it contains underscores or digits.  For
934 example,
935
936
937 @cindex choral tenor clef
938 @lilypond[quote,raggedright,verbatim,fragment,relative=1]
939 \clef "G_8" c4
940 @end lilypond
941
942 This command is equivalent to setting @code{clefGlyph},
943 @code{clefPosition} (which controls the Y position of the clef),
944 @code{middleCPosition} and @code{clefOctavation}.  A clef is printed
945 when any of these properties are changed.  The following example shows
946 possibilities when setting properties manually.
947
948 @lilypond[quote,raggedright,verbatim]
949 {
950   \set Staff.clefGlyph = #"clefs.F"
951   \set Staff.clefPosition = #2
952   c'4
953   \set Staff.clefGlyph = #"clefs.G"
954   c'4
955   \set Staff.clefGlyph = #"clefs.C"
956   c'4
957   \set Staff.clefOctavation = #7
958   c'4
959   \set Staff.clefOctavation = #0
960   \set Staff.clefPosition = #0
961   c'4
962   \clef "bass"
963   c'4
964   \set Staff.middleCPosition = #4
965   c'4
966 }
967 @end lilypond
968
969 @seealso
970
971 Program reference: @internalsref{Clef}.
972
973
974
975
976
977 @node Time signature
978 @subsection Time signature
979 @cindex Time signature
980 @cindex meter
981 @cindex @code{\time}
982
983 Time signature indicates the metrum of a piece: a regular pattern of
984 strong and weak beats.  It is denoted by a fraction at the start of the
985 staff.
986
987
988 The time signature is set or changed by the @code{\time}
989 command
990 @lilypond[quote,raggedright,fragment,verbatim]
991 \time 2/4 c'2 \time 3/4 c'2.
992 @end lilypond
993
994 The symbol that is printed can be customized with the @code{style}
995 property.  Setting it to @code{#'()} uses fraction style for 4/4 and
996 2/2 time,
997
998 @lilypond[fragment,quote,raggedright,verbatim]
999 \time 4/4 c'1
1000 \time 2/2 c'1
1001 \override Staff.TimeSignature #'style = #'()
1002 \time 4/4 c'1
1003 \time 2/2 c'1
1004 @end lilypond
1005
1006
1007
1008 There are many more options for its layout.  See @ref{Ancient time
1009 signatures} for more examples.
1010
1011
1012 This command sets the property @code{timeSignatureFraction},
1013 @code{beatLength} and @code{measureLength} in the @code{Timing}
1014 context, which is normally aliased to @internalsref{Score}.  The
1015 property @code{measureLength} determines where bar lines should be
1016 inserted, and how automatic beams should be generated.  Changing the
1017 value of @code{timeSignatureFraction} also causes the symbol to be
1018 printed.
1019
1020 More options are available through the Scheme function
1021 @code{set-time-signature}.  In combination with the
1022 @internalsref{Measure_grouping_engraver}, it will create
1023 @internalsref{MeasureGrouping} signs.  Such signs ease reading
1024 rhythmically complex modern music.  In the following example, the 9/8
1025 measure is subdivided in 2, 2, 2 and 3.  This is passed to
1026 @code{set-time-signature} as the third argument @code{(2 2 2 3)}
1027
1028 @lilypond[quote,raggedright,verbatim]
1029 \score {
1030   \relative c'' {
1031     #(set-time-signature 9 8 '(2 2 2 3))
1032     g8[ g] d[ d] g[ g] a8[( bes g]) |
1033     #(set-time-signature 5 8 '(3 2))
1034     a4. g4
1035   }
1036   \layout {
1037     \context {
1038       \Staff
1039       \consists "Measure_grouping_engraver"
1040     }
1041   }
1042 }
1043 @end lilypond
1044
1045 @seealso
1046
1047 Program reference: @internalsref{TimeSignature}, and @internalsref{Timing_engraver}.
1048
1049
1050 @refbugs
1051
1052 Automatic beaming does not use the measure grouping specified with
1053 @code{set-time-signature}.
1054
1055 @node Partial measures
1056 @subsection Partial measures
1057 @cindex Partial
1058 @cindex anacrusis
1059 @cindex partial measure
1060 @cindex measure, partial
1061 @cindex shorten measures
1062 @cindex @code{\partial}
1063
1064 Partial measures, for example in upsteps, are entered using the
1065 @code{\partial} command
1066 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1067 \partial 16*5 c16 cis d dis e | a2. c,4 | b2
1068 @end lilypond
1069
1070 The syntax for this command is
1071 @example
1072 \partial @var{duration}
1073 @end example
1074 This is internally translated into
1075 @example
1076 \set Timing.measurePosition = -@var{length of duration}
1077 @end example
1078 @cindex @code{|}
1079 The property @code{measurePosition} contains a rational number
1080 indicating how much of the measure has passed at this point.
1081
1082 @refbugs
1083
1084 This command does not take into account grace notes at the start of
1085 the music.  When a piece starts with graces notes in the pickup, then
1086 the @code{\partial} should follow the grace notes
1087
1088 @lilypond[verbatim,quote,raggedright,relative,fragment]
1089 {
1090   \grace f16
1091   \partial 4
1092   g4
1093   a2 g2
1094 }
1095 @end lilypond
1096
1097
1098 @node Unmetered music
1099 @subsection Unmetered music
1100
1101 @cindex @code{\bar}
1102
1103 Bar lines and bar numbers are calculated automatically.  For unmetered
1104 music (cadenzas, for example), this is not desirable.  By setting
1105 @code{Score.timing} to false, this automatic timing can be switched
1106 off.  Empty bar lines,
1107
1108 @example
1109 \bar ""
1110 @end example
1111
1112 @noindent
1113 indicate where line breaks can occur.
1114
1115 @refcommands
1116
1117 @cindex @code{\cadenzaOn}
1118 @code{\cadenzaOn},
1119 @cindex @code{\cadenzaOff}
1120 @code{\cadenzaOff}.
1121
1122
1123
1124
1125 @node Bar lines
1126 @subsection Bar lines
1127 @cindex Bar lines
1128
1129 @cindex @code{\bar}
1130 @cindex measure lines
1131 @cindex repeat bars
1132
1133
1134 Bar lines delimit measures, but are also used to indicate repeats.
1135 Normally, they are inserted automatically.  Line breaks may only
1136 happen on bar lines.
1137
1138 Special types of bar lines can be forced with the @code{\bar} command
1139 @c
1140 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1141 c4 \bar "|:" c4
1142 @end lilypond
1143
1144 The following bar types are available
1145 @lilypondfile[raggedright,quote]{bar-lines.ly}
1146
1147 For allowing line breaks, there is a special command,
1148 @example
1149 \bar ""
1150 @end example
1151 This will insert an invisible bar line, and allow line breaks at this
1152 point.
1153
1154 In scores with many staves, a @code{\bar} command in one staff is
1155 automatically applied to all staves.  The resulting bar lines are
1156 connected between different staves of a @internalsref{StaffGroup}
1157 @c
1158 @lilypond[quote,raggedright,fragment,verbatim]
1159 <<
1160   \context StaffGroup <<
1161     \new Staff {
1162       e'4 d'
1163       \bar "||"
1164       f' e'
1165     }
1166     \new Staff { \clef bass c4 g e g }
1167   >>
1168   \new Staff { \clef bass c2 c2 }
1169 >>
1170 @end lilypond
1171
1172
1173 The command @code{\bar }@var{bartype} is a short cut for doing
1174 @code{\set Timing.whichBar = }@var{bartype}.  Whenever @code{whichBar}
1175 is set to a string, a bar line of that type is created.
1176
1177 A bar line is created whenever the @code{whichBar} property is set.
1178 At the start of a measure it is set to the contents of
1179 @code{Timing.defaultBarType}.  The contents of @code{repeatCommands} are used
1180 to override default measure bars.
1181
1182 @cindex @code{whichBar}
1183 @cindex @code{repeatCommands}
1184 @cindex @code{defaultBarType}
1185
1186 You are encouraged to use @code{\repeat} for repetitions.  See
1187 @ref{Repeats}.
1188
1189
1190
1191 @seealso
1192
1193 In this manual: @ref{Repeats}, @ref{System start delimiters}.
1194
1195
1196 Program reference: @internalsref{BarLine} (created at
1197 @internalsref{Staff} level), @internalsref{SpanBar} (across staves).
1198
1199 @cindex bar lines at start of system
1200 @cindex start of system
1201
1202
1203
1204 Examples: @inputfileref{input/@/test,bar@/-lines@/.ly},
1205
1206
1207
1208 @node System start delimiters
1209 @subsection System start delimiters
1210
1211 Many scores consist of more than one staff.  These staves can be
1212 joined in three different ways
1213 @itemize @bullet
1214 @item The group is started with a brace at the left, and bar lines are
1215 connected.  This is done with the @internalsref{GrandStaff} context.
1216
1217 @lilypond[verbatim,raggedright,quote]
1218 \new GrandStaff
1219 \relative <<
1220   \new Staff { c1 c }
1221   \new Staff { c c }
1222 >>
1223 @end lilypond
1224
1225
1226 @item The group is started with a bracket, and bar lines are connected.
1227 This is done with the
1228 @internalsref{StaffGroup} context
1229
1230 @lilypond[verbatim,raggedright,quote]
1231 \new StaffGroup
1232 \relative <<
1233   \new Staff { c1 c }
1234   \new Staff { c c }
1235 >>
1236 @end lilypond
1237
1238
1239 @item The group is started with a vertical line.  Bar lines are not
1240 connected.  This is the default for the score.
1241
1242 @lilypond[verbatim,raggedright,quote]
1243 \relative <<
1244   \new Staff { c1 c }
1245   \new Staff { c c }
1246 >>
1247 @end lilypond
1248
1249 @end itemize
1250
1251 @cindex Staff, multiple
1252 @cindex bracket, vertical
1253 @cindex brace, vertical
1254 @cindex grand staff
1255 @cindex staff group
1256
1257
1258 @seealso
1259
1260 The bar lines at the start of each system are
1261 @internalsref{SystemStartBar}, @internalsref{SystemStartBrace}, and
1262 @internalsref{SystemStartBracket}.  Only one of these types is created
1263 in every context, and that type is determined by the property
1264 @code{systemStartDelimiter}.
1265
1266
1267 @node More than notes
1268 @section More than notes
1269 @c silly title; should change.
1270
1271 This section deals with notation that affects more than one note.
1272
1273 @menu
1274 * Ties::                        
1275 * Automatic beams::             
1276 * Manual beams::                
1277 * Grace notes::                 
1278 * Fingering instructions::      
1279 @end menu
1280
1281 @node Ties
1282 @subsection Ties
1283
1284 @cindex Tie
1285 @cindex ties
1286 @cindex @code{~}
1287
1288 A tie connects two adjacent note heads of the same pitch.  The tie in
1289 effect extends the length of a note.  Ties should not be confused with
1290 slurs, which indicate articulation, or phrasing slurs, which indicate
1291 musical phrasing.  A tie is entered using the tilde symbol `@code{~}'
1292
1293 @lilypond[quote,raggedright,fragment,verbatim]
1294 e' ~ e' <c' e' g'> ~ <c' e' g'>
1295 @end lilypond
1296
1297 When a tie is applied to a chord, all note heads whose pitches match
1298 are connected.  When no note heads match, no ties will be created.
1299
1300 A tie is just a way of extending a note duration, similar to the
1301 augmentation dot.  The following example shows two ways of notating
1302 exactly the same concept
1303 @c
1304 @lilypond[quote,fragment,raggedright]
1305 \time 3/4 c'2. c'2 ~ c'4
1306 @end lilypond
1307
1308 @noindent
1309 Ties are used either when the note crosses a bar line, or when dots
1310 cannot be used to denote the rhythm.  When using ties, larger note
1311 values should be aligned to subdivisions of the measure, eg.
1312
1313 @lilypond[fragment,quote,raggedright]
1314 \relative {
1315   r8 c8 ~ c2 r4 | r8^"not" c2 ~ c8 r4
1316 }
1317 @end lilypond
1318
1319 If you need to tie a lot of notes over bars, it may be easier to use
1320 automatic note splitting (see @ref{Automatic note splitting}).  This
1321 mechanism automatically splits long notes, and ties them across bar
1322 lines.
1323
1324 Ties are sometimes used to write out arpeggios.  In this case, two tied
1325 notes need not be consecutive.  This can be achieved by setting the
1326 @code{tieWaitForNote} property to true.  For example,
1327
1328 @lilypond[fragment,verbatim,relative=1,raggedright]
1329 \set tieWaitForNote = ##t
1330 \grace { c16[~ e~ g]~ } <c, e g>4   
1331 @end lilypond
1332
1333
1334 @refcommands
1335
1336
1337 @cindex @code{\tieUp}
1338 @code{\tieUp},
1339 @cindex @code{\tieDown}
1340 @code{\tieDown},
1341 @cindex @code{\tieNeutral}
1342 @code{\tieNeutral},
1343 @cindex @code{\tieDotted}
1344 @code{\tieDotted},
1345 @cindex @code{\tieSolid}
1346 @code{\tieSolid}.
1347
1348 @seealso
1349
1350 In this manual: @ref{Automatic note splitting}.
1351
1352 Program reference: @internalsref{TieEvent}, @internalsref{Tie}.
1353
1354 @refbugs
1355
1356
1357 Switching staves when a tie is active will not produce a slanted tie.
1358
1359 Formatting of ties is a difficult subject.  The results are often not
1360 optimal.
1361
1362
1363 @node Automatic beams
1364 @subsection Automatic beams
1365
1366 LilyPond inserts beams automatically
1367
1368 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1369 \time 2/4 c8 c c c \time 6/8 c c c c8. c16 c8
1370 @end lilypond
1371
1372 When these automatic decisions are not good enough, beaming can be
1373 entered explicitly.  It is also possible to define beaming patterns
1374 that differ from the defaults.
1375
1376 Individual notes may be marked with @code{\noBeam}, to prevent them
1377 from being beamed
1378
1379 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1380 \time 2/4 c8 c\noBeam c c
1381 @end lilypond
1382
1383
1384 @seealso
1385
1386 Program reference: @internalsref{Beam}.
1387
1388
1389 @node Manual beams
1390 @subsection Manual beams
1391 @cindex beams, manual
1392 @cindex @code{]}
1393 @cindex @code{[}
1394
1395 In some cases it may be necessary to override the automatic beaming
1396 algorithm.  For example, the autobeamer will not put beams over rests
1397 or bar lines.  Such beams are specified manually by marking the begin
1398 and end point with @code{[} and @code{]}
1399
1400 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
1401 {
1402   r4 r8[ g' a r8] r8 g[ | a] r8
1403 }
1404 @end lilypond
1405
1406 @cindex @code{stemLeftBeamCount}
1407
1408 Normally, beaming patterns within a beam are determined automatically.
1409 If necessary, the properties @code{stemLeftBeamCount} and
1410 @code{stemRightBeamCount} can be used to override the defaults.  If
1411 either property is set, its value will be used only once, and then it
1412 is erased
1413
1414 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
1415 {
1416    f8[ r16
1417       f g a]
1418    f8[ r16
1419    \set stemLeftBeamCount = #1
1420       f g a]
1421 }
1422 @end lilypond
1423 @cindex @code{stemRightBeamCount}
1424
1425
1426 The property @code{subdivideBeams} can be set in order to subdivide
1427 all 16th or shorter beams at beat positions, as defined by the
1428 @code{beatLength} property.
1429
1430
1431 @lilypond[fragment,quote,relative=2,verbatim]
1432 c16[ c c c c c c c]
1433 \set subdivideBeams = ##t
1434 c16[ c c c c c c c]
1435 \set Score.beatLength = #(ly:make-moment 1 8)
1436 c16[ c c c c c c c]
1437 @end lilypond
1438 @cindex @code{subdivideBeams}
1439
1440 Normally, line breaks are forbidden when beams cross bar lines.  This
1441 behavior can be changed by setting @code{allowBeamBreak}.
1442
1443 @cindex @code{allowBeamBreak}
1444 @cindex beams and line breaks
1445
1446 @cindex beams, kneed
1447 @cindex kneed beams
1448 @cindex auto-knee-gap
1449
1450
1451 @seealso
1452
1453 User manual: @ref{Changing context properties on the fly} for the
1454 @code{\set} command
1455
1456
1457 @refbugs
1458
1459 @cindex Frenched staves
1460 Kneed beams are inserted automatically, when a large gap is detected
1461 between the note heads.  This behavior can be tuned through the object.
1462
1463
1464 Automatically kneed cross-staff beams cannot be used together with
1465 hidden staves.  See @ref{Hiding staves}.
1466
1467 Beams do not avoid collisions with symbols around the notes, such as
1468 texts and accidentals.
1469
1470 @c FIXME.
1471
1472
1473 @node Grace notes
1474 @subsection Grace notes
1475
1476 @cindex @code{\grace}
1477 @cindex ornaments
1478 @cindex grace notes
1479
1480 Grace notes are ornaments that are written out.  The most common ones
1481 are acciaccatura, which should be played as very short.  It is denoted
1482 by a slurred small note with a slashed stem.  The appoggiatura is a
1483 grace note that takes a fixed fraction of the main note, and is
1484 denoted as a slurred note in small print without a slash.  They
1485 are entered with the commands @code{\acciaccatura} and
1486 @code{\appoggiatura}, as demonstrated in the following example
1487
1488
1489 @cindex appoggiatura
1490 @cindex acciaccatura
1491
1492 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
1493 b4 \acciaccatura d8 c4 \appoggiatura e8 d4
1494 \acciaccatura { g16[ f] } e4
1495 @end lilypond
1496
1497 Both are special forms of the @code{\grace} command.  By prefixing this
1498 keyword to a music expression, a new one is formed, which will be
1499 printed in a smaller font and takes up no logical time in a measure.
1500
1501 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
1502 c4 \grace c16 c4
1503 \grace { c16[ d16] } c2 c4
1504 @end lilypond
1505
1506 @noindent
1507 Unlike @code{\acciaccatura} and @code{\appoggiatura}, the
1508 @code{\grace} command does not start a slur.
1509
1510 Internally, timing for grace notes is done using a second, `grace'
1511 timing.  Every point in time consists of two rational numbers: one
1512 denotes the logical time, one denotes the grace timing.  The above
1513 example is shown here with timing tuples
1514
1515 @lilypond[quote,raggedright]
1516 <<
1517   \relative c''{
1518     c4 \grace c16 c4 \grace {
1519     c16[ d16] } c2 c4
1520   }
1521   \new Lyrics \lyricmode {
1522     \override LyricText #'font-family = #'typewriter
1523
1524     \markup { (0,0) } 4
1525     \grace { \markup {
1526       ( \fraction 1 4 , \fraction -1 16 ) } 16 }
1527     \markup { (\fraction 1 4 , 0 ) } 4
1528     \grace {
1529       \markup { (\fraction 2 4 , \fraction "-1" 8 ) } 16
1530       \markup { (\fraction 2 4 , \fraction "-1" 16 ) } 16
1531     }
1532     \markup { ( \fraction 2 4 , 0 ) }
1533   }
1534 >>
1535 @end lilypond
1536
1537
1538 The placement of grace notes is synchronized between different staves.
1539 In the following example, there are two sixteenth grace notes for
1540 every eighth grace note
1541
1542 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
1543 << \new Staff { e4 \grace { c16[ d e f] } e4 }
1544    \new Staff { c4 \grace { g8[ b] } c4 } >>
1545 @end lilypond
1546
1547
1548
1549 If you want to end a note with a grace, use the @code{\afterGrace}
1550 command.  It takes two arguments: the main note, and the grace notes
1551 following the main note. 
1552
1553 @lilypond[raggedright, verbatim,relative=2,fragment]
1554 c1 \afterGrace d1 { c16[ d] } c4   
1555 @end lilypond
1556
1557 This will put the grace notes after a ``space'' lasting 3/4 of the
1558 length of the main note.  The fraction 3/4 can be changed by setting
1559 @code{afterGraceFraction}, ie.
1560
1561 @example
1562 afterGraceFraction = #(cons 7 8) 
1563 @end example
1564
1565 @noindent
1566 will put the grace note at 7/8 of the main note. 
1567
1568
1569 The same effect can be achieved manually by doing
1570
1571
1572 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1573 \context Voice {
1574   << { d1^\trill_( }
1575      { s2 \grace { c16[ d] } } >>
1576   c4)
1577 }
1578 @end lilypond
1579
1580 @noindent
1581 By adjusting the duration of the skip note (here it is a half-note),
1582 the space between the main-note and the grace is adjusted.
1583
1584
1585
1586
1587 A @code{\grace} section will introduce special typesetting settings,
1588 for example, to produce smaller type, and set directions.  Hence, when
1589 introducing layout tweaks, they should be inside the grace section,
1590 for example,
1591 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1592 \new Voice {
1593   \acciaccatura {
1594     \stemDown
1595     f16->
1596     \stemNeutral
1597   }
1598   g4
1599 }
1600 @end lilypond
1601
1602 @noindent
1603 The overrides should also be reverted inside the grace section.
1604
1605 The layout of grace sections can be changed throughout the music using
1606 the function @code{add-grace-property}.  The following example
1607 undefines the Stem direction for this grace, so stems do not always
1608 point up.
1609
1610 @example
1611 \new Staff @{
1612   #(add-grace-property 'Voice 'Stem 'direction '())
1613   @dots{}
1614 @}
1615 @end example
1616
1617 @noindent
1618 Another option is to change the variables @code{startGraceMusic},
1619 @code{stopGraceMusic}, @code{startAcciaccaturaMusic},
1620 @code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic},
1621 @code{stopAppoggiaturaMusic}.  More information is in the file
1622 @file{ly/@/grace@/-init@/.ly}.
1623
1624
1625 @seealso
1626
1627 Program reference: @internalsref{GraceMusic}.
1628
1629 @refbugs
1630
1631 A score that starts with a @code{\grace} section needs an explicit
1632 @code{\context Voice} declaration, otherwise the main note and the grace
1633 note end up on different staves.
1634
1635 Grace note synchronization can also lead to surprises.  Staff notation,
1636 such as key signatures, bar lines, etc., are also synchronized.  Take
1637 care when you mix staves with grace notes and staves without, for example,
1638
1639 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
1640 << \new Staff { e4 \bar "|:" \grace c16 d4 }
1641    \new Staff { c4 \bar "|:" d4 } >>
1642 @end lilypond
1643
1644 @noindent
1645 This can be remedied by inserting grace skips, for the above example
1646
1647 @example
1648 \new Staff @{ c4 \bar "|:" \grace s16 d4 @}
1649 @end example
1650
1651 Grace sections should only be used within sequential music
1652 expressions.  Nesting or juxtaposing grace sections is not supported,
1653 and might produce crashes or other errors.
1654
1655
1656 @node Fingering instructions
1657 @subsection Fingering instructions
1658
1659 @cindex fingering
1660
1661 Fingering instructions can be entered using
1662 @example
1663 @var{note}-@var{digit}
1664 @end example
1665 For finger changes, use markup texts
1666
1667 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
1668 c4-1 c-2 c-3 c-4
1669 c^\markup { \finger "2-3" }
1670 @end lilypond
1671
1672 @cindex finger change
1673 @cindex scripts
1674 @cindex superscript
1675 @cindex subscript
1676
1677 You can use the thumb-script to indicate that a note should be
1678 played with the thumb (e.g., in cello music)
1679 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
1680 <a_\thumb a'-3>8 <b_\thumb b'-3>
1681 @end lilypond
1682
1683 Fingerings for chords can also be added to individual notes
1684 of the chord by adding them after the pitches
1685 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
1686 < c-1 e-2 g-3 b-5 >4
1687 @end lilypond
1688
1689 @noindent
1690 In this case, setting @code{fingeringOrientations} will put fingerings next
1691 to note heads
1692
1693 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
1694 \set fingeringOrientations = #'(left down)
1695 <c-1 es-2 g-4 bes-5 > 4
1696 \set fingeringOrientations = #'(up right down)
1697 <c-1 es-2 g-4 bes-5 > 4
1698 @end lilypond
1699
1700 Using this feature, it is also possible to put fingering instructions
1701 very close to note heads in monophonic music,
1702
1703 @lilypond[verbatim,raggedright,quote,fragment]
1704 \set fingeringOrientations = #'(right)
1705 <es'-2>4
1706 @end lilypond
1707
1708
1709 @seealso
1710
1711 Program reference: @internalsref{FingerEvent}, and @internalsref{Fingering}.
1712
1713 Examples: @inputfileref{input/@/regression,finger@/-chords@/.ly}.
1714
1715
1716
1717
1718 @node Expressive marks
1719 @section Expressive marks
1720
1721 Expressive marks help musicians to bring more to the music than simple
1722 notes and rhythms.
1723
1724 @menu
1725 * Slurs::                       
1726 * Phrasing slurs::              
1727 * Articulations::               
1728 * Dynamics::                    
1729 * Breath marks::                
1730 * Running trills::              
1731 * Glissando::                   
1732 * Arpeggio::                    
1733 @end menu
1734
1735
1736 @node Slurs
1737 @subsection Slurs
1738 @cindex Slurs
1739
1740 A slur indicates that notes are to be played bound or @emph{legato}.
1741
1742 They are entered using parentheses
1743 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1744 f( g a) a8 b( a4 g2 f4)
1745 <c e>2( <b d>2)
1746 @end lilypond
1747
1748 The direction of a slur can be set with the
1749 generic commands
1750
1751 @example
1752 \override Slur #'direction = #UP
1753 \slurUp            % shortcut for the previous line
1754 @end example
1755
1756 @noindent
1757 However, there is a convenient shorthand for forcing slur
1758 directions.  By adding @code{_} or @code{^} before the opening
1759 parentheses, the direction is also set.  For example,
1760
1761 @lilypond[relative=2,raggedright,quote,verbatim,fragment]
1762 c4_( c) c^( c)
1763 @end lilypond
1764
1765 Some composers write two slurs when they want legato chords.  This can
1766 be achieved in LilyPond by setting @code{doubleSlurs},
1767
1768 @lilypond[verbatim,raggedright,relative,fragment,quote]
1769 \set doubleSlurs = ##t
1770 <c e>4 ( <d f> <c e> <d f> )
1771 @end lilypond
1772
1773 Only one slur can be printed at once.  If you need to print a long
1774 slur over a few small slurs, please see @ref{Phrasing slurs}.
1775
1776
1777 @refcommands
1778
1779
1780 @cindex @code{\slurUp}
1781 @code{\slurUp},
1782 @cindex @code{\slurDown}
1783 @code{\slurDown},
1784 @cindex @code{\slurNeutral}
1785 @code{\slurNeutral},
1786 @cindex @code{\slurDashed}
1787 @code{\slurDashed},
1788 @cindex @code{\slurDotted}
1789 @code{\slurDotted},
1790 @cindex @code{\slurSolid}
1791 @code{\slurSolid}.
1792
1793 @seealso
1794
1795 Program reference: @seeinternals{Slur}, and @internalsref{SlurEvent}.
1796
1797
1798 @node Phrasing slurs
1799 @subsection Phrasing slurs
1800
1801 @cindex phrasing slurs
1802 @cindex phrasing marks
1803
1804 A phrasing slur (or phrasing mark) connects chords and is used to
1805 indicate a musical sentence.  It is written using @code{\(} and @code{\)}
1806 respectively
1807
1808 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
1809 \time 6/4 c'\( d( e) f( e) d\)
1810 @end lilypond
1811
1812 Typographically, the phrasing slur behaves almost exactly like a
1813 normal slur.  However, they are treated as different objects.  A
1814 @code{\slurUp} will have no effect on a phrasing slur; instead, use
1815 @code{\phrasingSlurUp}, @code{\phrasingSlurDown}, and
1816 @code{\phrasingSlurNeutral}.
1817
1818 The commands @code{\slurUp}, @code{\slurDown}, and @code{\slurNeutral}
1819 will only affect normal slurs and not phrasing slurs.
1820
1821 You cannot have simultaneous phrasing slurs.
1822
1823 @refcommands
1824
1825 @cindex @code{\phrasingSlurUp}
1826 @code{\phrasingSlurUp},
1827 @cindex @code{\phrasingSlurDown}
1828 @code{\phrasingSlurDown},
1829 @cindex @code{\phrasingSlurNeutral}
1830 @code{\phrasingSlurNeutral}.
1831
1832 @seealso
1833
1834 Program reference: see also @internalsref{PhrasingSlur}, and
1835 @internalsref{PhrasingSlurEvent}.
1836
1837 @refbugs
1838
1839 Putting phrasing slurs over rests leads to spurious warnings.
1840
1841
1842 @node Articulations
1843 @subsection Articulations
1844 @cindex Articulations
1845
1846 @cindex articulations
1847 @cindex scripts
1848 @cindex ornaments
1849
1850 A variety of symbols can appear above and below notes to indicate
1851 different characteristics of the performance.  They are added to a note
1852 by adding a dash and the character signifying the
1853 articulation.  They are demonstrated here
1854
1855 @lilypondfile[quote,raggedright]{script-abbreviations.ly}
1856
1857 The meanings of these shorthands can be changed.  See
1858 @file{ly/@/script@/-init@/.ly} for examples.
1859
1860
1861 The script is automatically placed, but the direction can be forced as
1862 well.  Like other pieces of LilyPond code, @code{_} will place them
1863 below the staff, and @code{^} will place them above.
1864
1865
1866 @lilypond[quote,raggedright,fragment,verbatim]
1867 c''4^^ c''4_^
1868 @end lilypond
1869
1870 Other symbols can be added using the syntax
1871 @var{note}@code{\}@var{name}.  Again, they
1872 can be forced up or down using @code{^} and @code{_},
1873 e.g.,
1874
1875 @lilypond[quote,raggedright,verbatim,fragment,relative=2]
1876 c\fermata c^\fermata c_\fermata
1877 @end lilypond
1878
1879
1880
1881 @cindex accent
1882 @cindex marcato
1883 @cindex staccatissimo
1884 @cindex espressivo
1885 @cindex fermata
1886 @cindex stopped
1887 @cindex staccato
1888 @cindex portato
1889 @cindex tenuto
1890 @cindex upbow
1891 @cindex downbow
1892 @cindex foot marks
1893 @cindex organ pedal marks
1894 @cindex turn
1895 @cindex open
1896 @cindex flageolet
1897 @cindex reverseturn
1898 @cindex trill
1899 @cindex prall
1900 @cindex mordent
1901 @cindex prallprall
1902 @cindex prallmordent
1903 @cindex prall, up
1904 @cindex prall, down
1905 @cindex mordent
1906 @cindex thumb marking
1907 @cindex segno
1908 @cindex coda
1909 @cindex varcoda
1910
1911 Here is a chart showing all scripts available,
1912
1913 @lilypondfile[raggedright,quote]{script-chart.ly}
1914
1915
1916 The vertical ordering of scripts is controlled with the
1917 @code{script-priority} property.  The lower this number, the closer it
1918 will be put to the note.  In this example, the
1919 @internalsref{TextScript} (the sharp symbol) first has the lowest
1920 priority, so it is put lowest in the first example.  In the second, the
1921 prall trill (the @internalsref{Script}) has the lowest, so it is on the
1922 inside.  When two objects have the same priority, the order in which
1923 they are entered decides which one comes first.
1924
1925
1926 @lilypond[verbatim,relative=3,raggedright,fragment,quote]
1927 \once \override TextScript #'script-priority = #-100
1928 a4^\prall^\markup { \sharp }
1929
1930 \once \override Script #'script-priority = #-100
1931 a4^\prall^\markup { \sharp }
1932 @end lilypond
1933
1934
1935
1936
1937 @seealso
1938
1939 Program reference: @internalsref{ScriptEvent}, and @internalsref{Script}.
1940
1941 @refbugs
1942
1943 These signs appear in the printed output but have no effect on the
1944 MIDI rendering of the music.
1945
1946
1947 @node Dynamics
1948 @subsection Dynamics
1949 @cindex Dynamics
1950
1951
1952
1953 @cindex @code{\ppp}
1954 @cindex @code{\pp}
1955 @cindex @code{\p}
1956 @cindex @code{\mp}
1957 @cindex @code{\mf}
1958 @cindex @code{\f}
1959 @cindex @code{\ff}
1960 @cindex @code{\fff}
1961 @cindex @code{\ffff}
1962 @cindex @code{\fp}
1963 @cindex @code{\sf}
1964 @cindex @code{\sff}
1965 @cindex @code{\sp}
1966 @cindex @code{\spp}
1967 @cindex @code{\sfz}
1968 @cindex @code{\rfz}
1969
1970
1971 Absolute dynamic marks are specified using a command after a note
1972 @code{c4\ff}.  The available dynamic marks are @code{\ppp},
1973 @code{\pp}, @code{\p}, @code{\mp}, @code{\mf}, @code{\f}, @code{\ff},
1974 @code{\fff}, @code{\fff}, @code{\fp}, @code{\sf}, @code{\sff},
1975 @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}
1976
1977 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
1978 c\ppp c\pp c \p c\mp c\mf c\f c\ff c\fff
1979 c2\fp c\sf c\sff c\sp c\spp c\sfz c\rfz
1980 @end lilypond
1981
1982 @cindex @code{\<}
1983 @cindex @code{\>}
1984 @cindex @code{\"!}
1985
1986
1987
1988 A crescendo mark is started with @code{\<} and terminated with
1989 @code{\!} or an absolute dynamic.  A decrescendo is started with
1990 @code{\>} and is also terminated with @code{\!} or an absolute
1991 dynamic.  Because these marks are bound to notes, you must
1992 use spacer notes if multiple marks are needed during one note
1993
1994 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1995 c\< c\! d\> e\!
1996 << f1 { s4 s4\< s4\! \> s4\! } >>
1997 @end lilypond
1998 This may give rise to very short hairpins.  Use @code{minimum-length}
1999 in @internalsref{Voice}.@internalsref{Hairpin} to lengthen them, for
2000 example
2001
2002 @example
2003 \override Staff.Hairpin #'minimum-length = #5
2004 @end example
2005
2006 You can also use a text saying @emph{cresc.} instead of hairpins.  Here
2007 is an example how to do it
2008
2009 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
2010 \setTextCresc
2011 c\< d e f\!
2012 \setHairpinCresc
2013 e\> d c b\!
2014 \setTextDecresc
2015 c\> d e f\!
2016 \setTextDim
2017 e\> d c b\!
2018 @end lilypond
2019
2020 @cindex crescendo
2021 @cindex decrescendo
2022
2023 You can also supply your own texts
2024 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2025 \set crescendoText = \markup { \italic "cresc. poco" }
2026 \set crescendoSpanner = #'dashed-line
2027 a'2\< a a a\!\mf
2028 @end lilypond
2029
2030 @cindex diminuendo
2031
2032 To create new dynamic marks or text that should be aligned
2033 with dynamics, see @ref{New dynamic marks}.
2034
2035
2036 @refcommands
2037
2038 @cindex @code{\dynamicUp}
2039 @code{\dynamicUp},
2040 @cindex @code{\dynamicDown}
2041 @code{\dynamicDown},
2042 @cindex @code{\dynamicNeutral}
2043 @code{\dynamicNeutral}.
2044
2045 @cindex direction, of dynamics
2046
2047 @seealso
2048
2049 Program reference: @internalsref{CrescendoEvent},
2050 @internalsref{DecrescendoEvent}, and
2051 @internalsref{AbsoluteDynamicEvent}.
2052
2053 Dynamics are @internalsref{DynamicText} and @internalsref{Hairpin}
2054 objects.  Vertical positioning of these symbols is handled by the
2055 @internalsref{DynamicLineSpanner} object.
2056
2057 @node Breath marks
2058 @subsection Breath marks
2059
2060 Breath marks are entered using @code{\breathe}
2061
2062
2063 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2064 c'4 \breathe d4
2065 @end lilypond
2066
2067 The glyph of the breath mark can be tuned by overriding the
2068 @code{text} property of the @code{BreathingSign} layout object with
2069 any markup text.  For example,
2070 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
2071 c'4
2072 \override BreathingSign #'text
2073   = #(make-musicglyph-markup "scripts.rvarcomma")
2074 \breathe
2075 d4
2076 @end lilypond
2077
2078 @seealso
2079
2080 Program reference: @internalsref{BreathingSign},
2081 @internalsref{BreathingSignEvent}.
2082
2083 Examples: @inputfileref{input/@/regression,breathing@/-sign@/.ly}.
2084
2085
2086 @node Running trills
2087 @subsection Running trills
2088
2089 Long running trills are made with @code{\startTrillSpan} and
2090 @code{\stopTrillSpan},
2091
2092
2093 @lilypond[verbatim,raggedright,relative=2,quote,fragment]
2094 \new Voice {
2095   << { c1 \startTrillSpan }
2096      { s2. \grace { d16[\stopTrillSpan e] } } >>
2097   c4 }
2098 @end lilypond
2099
2100 @refcommands
2101
2102 @code{\startTrillSpan},
2103 @cindex @code{\startTrillSpan}
2104 @code{\stopTrillSpan}.
2105 @cindex @code{\stopTrillSpan}
2106
2107 @seealso
2108
2109 Program reference: @internalsref{TrillSpanner},
2110 @internalsref{TrillSpanEvent}.
2111
2112
2113
2114
2115 @node Glissando
2116 @subsection Glissando
2117 @cindex Glissando
2118
2119 @cindex @code{\glissando}
2120
2121 A glissando is a smooth change in pitch.  It is denoted by a line or a
2122 wavy line between two notes.  It is requested by attaching
2123 @code{\glissando} to a note
2124
2125 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
2126 c\glissando c'
2127 @end lilypond
2128
2129 @seealso
2130
2131 Program reference: @internalsref{Glissando}, and @internalsref{GlissandoEvent}.
2132
2133 Example files: @file{input/@/regression/@/glissando@/.ly}.
2134
2135
2136
2137 @refbugs
2138
2139 Printing text over the line (such as @emph{gliss.}) is not supported.
2140
2141
2142 @node Arpeggio
2143 @subsection Arpeggio
2144 @cindex Arpeggio
2145
2146 @cindex broken chord
2147 @cindex @code{\arpeggio}
2148
2149 You can specify an arpeggio sign (also known as broken chord) on a
2150 chord by attaching an @code{\arpeggio} to a chord
2151
2152
2153 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2154 <c e g c>\arpeggio
2155 @end lilypond
2156
2157 When an arpeggio crosses staves, you attach an arpeggio to the chords
2158 in both staves, and set
2159 @internalsref{PianoStaff}.@code{connectArpeggios}
2160
2161 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2162 \context PianoStaff <<
2163   \set PianoStaff.connectArpeggios = ##t
2164   \new Staff { <c' e g c>\arpeggio }
2165   \new Staff { \clef bass <c,, e g>\arpeggio }
2166 >>
2167 @end lilypond
2168
2169 The direction of the arpeggio is sometimes denoted by adding an
2170 arrowhead to the wiggly line
2171
2172 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2173 \context Voice {
2174   \arpeggioUp
2175   <c e g c>\arpeggio
2176   \arpeggioDown
2177   <c e g c>\arpeggio
2178 }
2179 @end lilypond
2180
2181 A square bracket on the left indicates that the player should not
2182 arpeggiate the chord
2183
2184 @c todo: ugh, lousy typography.  Look for real example. --hwn
2185
2186 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2187 \arpeggioBracket
2188 <c' e g c>\arpeggio
2189 @end lilypond
2190
2191 @refcommands
2192
2193 @cindex @code{\arpeggio}
2194 @code{\arpeggio},
2195 @cindex @code{\arpeggioUp}
2196 @code{\arpeggioUp},
2197 @cindex @code{\arpeggioDown}
2198 @code{\arpeggioDown},
2199 @cindex @code{\arpeggioNeutral}
2200 @code{\arpeggioNeutral},
2201 @cindex @code{\arpeggioBracket}
2202 @code{\arpeggioBracket}.
2203
2204 @seealso
2205
2206 Notation manual: @ref{Ties}, for writing out arpeggios.
2207
2208 Program reference: @internalsref{ArpeggioEvent},
2209 @internalsref{Arpeggio}.
2210
2211
2212
2213 @refbugs
2214
2215 It is not possible to mix connected arpeggios and unconnected
2216 arpeggios in one @internalsref{PianoStaff} at the same point in time.
2217
2218
2219
2220 @node Polyphony
2221 @section Polyphony
2222
2223 Polyphony in music refers to having more than one voice occuring in
2224 a piece of music.  Polyphony in LilyPond refers to having more than
2225 one voice on the same staff.
2226
2227 @menu
2228 * Basic polyphony::             
2229 * Explicitly instantiating voices::  
2230 * Collision Resolution::        
2231 @end menu
2232
2233 @node Basic polyphony
2234 @subsection Basic polyphony
2235 @cindex polyphony
2236
2237 The easiest way to enter fragments with more than one voice on a staff
2238 is to enter each voice as a sequence (with @code{@{...@}}), and combine 
2239 them simultaneously, separating the voices with @code{\\}
2240
2241 @cindex @code{\\}
2242
2243 @lilypond[quote,verbatim,fragment]
2244 \new Staff \relative c' {
2245         c16 d e f
2246         << { g4 f e | d2 e2 } \\
2247         { r8 e4 d c8 ~ | c b16 a b8 g ~ g2 } \\
2248         { s2. | s4 b4 c2 }
2249         >>
2250 }
2251 @end lilypond
2252
2253 The separator causes @internalsref{Voice} contexts@footnote{Polyphonic
2254 voices are sometimes called ``layers'' in other notation packages}
2255 @cindex layers
2256 to be instantiated.  They bear the names @code{"1"}, @code{"2"}, etc.  In
2257 each of these contexts, vertical direction of slurs, stems, etc., is set
2258 appropriately.  
2259
2260 These voices are all seperate from the voice that contains the notes just 
2261 outside the @code{<< \\ >>} construct.  This should be noted when making 
2262 changes at the voice level.  This also means that slurs and ties cannot go 
2263 into or out of a @code{<< \\ >>} construct.  
2264 Conversely, parallel voices from separate @code{<< \\ >>} constructs on the 
2265 same staff are the the same voice.  
2266 Here is the same example, with different noteheads for each voice.  
2267 Note that the change to the note-head style in the main voice does not affect
2268 the inside of the @code{<< \\ >>} constructs.  Also, the change to the second
2269 voice in the first @code{<< \\ >>} construct is effective in the second
2270 @code{<< \\ >>}, and the voice is tied accross the two constructs.
2271
2272 @lilypond[quote,verbatim,fragment]
2273 \new Staff \relative c' {
2274         \override NoteHead #'style = #'cross
2275         c16 d e f
2276         <<      
2277                 { g4 f e } \\
2278                 { \override NoteHead #'style = #'triangle
2279                         r8 e4 d c8 ~ 
2280                 }
2281         >> |
2282         <<
2283                 { d2 e2 } \\ 
2284                 { c8 b16 a b8 g ~ g2 } \\
2285                 { \override NoteHead #'style = #'slash s4 b4 c2 }
2286         >>
2287 }
2288 @end lilypond
2289
2290 Polyphony does not change the relationship of notes within a
2291 @code{\relative @{ @}} block.  Each note is calculated relative
2292 to the note immediately preceding it.
2293
2294 @example
2295 \relative @{ noteA << noteB \\ noteC >> noteD @}
2296 @end example
2297
2298 @code{noteC} is relative to @code{noteB}, not @code{noteA};
2299 @code{noteD} is relative to @code{noteC}, not @code{noteB} or
2300 @code{noteA}.
2301
2302 @node Explicitly instantiating voices
2303 @subsection Explicitly instantiating voices
2304
2305 @internalsref{Voice} contexts can also also be instantiated manually
2306 inside a @code{<< >>} block to create polyphonic music, using 
2307 @code{\voiceOne}, up to @code{\voiceFour} to assign stem directions 
2308 and a horizontal shift for each part.
2309
2310 Specifically,
2311 @example
2312 << \upper \\ \lower >>
2313 @end example
2314
2315 @noindent
2316 is equivalent to
2317
2318 @example
2319 <<
2320   \context Voice = "1" @{ \voiceOne \upper @}
2321   \context Voice = "2" @{ \voiceTwo \lower @}
2322 >>
2323 @end example
2324
2325 @cindex @code{\voiceOne}
2326 @cindex @code{\voiceFour}
2327
2328 The @code{\voiceXXX} commands set the direction of stems, slurs, ties,
2329 articulations, text annotations, augmentation dots of dotted
2330 notes, and fingerings.  @code{\voiceOne} and @code{\voiceThree} make
2331 these objects point upwards, while @code{\voiceTwo} and @code{\voiceFour}
2332 make them point downwards.  
2333 The command @code{\oneVoice} will revert back to the normal setting.
2334 @cindex @code{\oneVoice}
2335
2336 An expression that appears directly inside a @code{<< >>} belongs to 
2337 the main voice.  This is useful when extra voices appear while the main
2338 voice is playing.  Here is a more correct rendition of the example from
2339 the previous section.  The crossed noteheads demonstrate that the main
2340 melody is now in a single voice context.
2341
2342 @lilypond[quote,raggedright,verbatim]
2343 \new Staff \relative c' {
2344         \override NoteHead #'style = #'cross
2345         c16 d e f 
2346         \voiceOne
2347         <<      
2348                 { g4 f e | d2 e2}
2349                 \context Voice="1" { \voiceTwo
2350                         r8 e4 d c8 ~ | c8 b16 a b8 g ~ g2 
2351                         \oneVoice
2352                 }
2353                 \new Voice { \voiceThree 
2354                         s2. | s4 b4 c2 
2355                         \oneVoice
2356                 }
2357         >>
2358         \oneVoice
2359 }
2360 @end lilypond
2361
2362 The correct definition of the voices allows the melody to be slurred.
2363 @lilypond[quote,raggedright,verbatim]
2364 \new Staff \relative c' {
2365         c16^( d e f 
2366         \voiceOne
2367         <<      
2368                 { g4 f e | d2 e2) }  
2369                 \context Voice="1" { \voiceTwo
2370                         r8 e4 d c8 ~ | c8 b16 a b8 g ~ g2 
2371                         \oneVoice
2372                 }
2373                 \new Voice { \voiceThree 
2374                         s2. s4 b4 c2 
2375                         \oneVoice
2376                 }
2377         >>
2378         \oneVoice
2379 }
2380 @end lilypond
2381
2382 Avoiding the @code{\\} seperator also allows nesting polyphony 
2383 constructs, which in some case might be a more natural way to typeset
2384 the music.
2385
2386 @lilypond[quote,raggedright,verbatim]
2387 \new Staff \relative c' {
2388         c16^( d e f 
2389         \voiceOne
2390         <<      
2391                 { g4 f e | d2 e2) }  
2392                 \context Voice="1" { \voiceTwo
2393                         r8 e4 d c8 ~ | 
2394                         <<
2395                                 {c8 b16 a b8 g ~ g2} 
2396                                 \new Voice { \voiceThree 
2397                                         s4 b4 c2 
2398                                         \oneVoice
2399                                 }
2400                         >>
2401                         \oneVoice
2402                 }
2403         >>
2404         \oneVoice
2405 }
2406 @end lilypond
2407
2408 @node Collision Resolution
2409 @subsection Collision Resolution
2410
2411 Normally, note heads with a different number of dots are not merged, but
2412 when the object property @code{merge-differently-dotted} is set in
2413 the @internalsref{NoteCollision} object, they are merged
2414 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
2415 \context Voice << {
2416   g8 g8
2417   \override Staff.NoteCollision
2418     #'merge-differently-dotted = ##t
2419   g8 g8
2420 } \\ { g8.[ f16] g8.[ f16] } >>
2421 @end lilypond
2422
2423 Similarly, you can merge half note heads with eighth notes, by setting
2424 @code{merge-differently-headed}
2425 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
2426 \context Voice << {
2427   c8 c4.
2428   \override Staff.NoteCollision
2429     #'merge-differently-headed = ##t
2430 c8 c4. } \\ { c2 c2 } >>
2431 @end lilypond
2432
2433 LilyPond also vertically shifts rests that are opposite of a stem,
2434 for example
2435
2436 @lilypond[quote,raggedright,fragment,verbatim]
2437 \context Voice << c''4 \\ r4 >>
2438 @end lilypond
2439
2440
2441 @refcommands
2442
2443
2444
2445 @cindex @code{\oneVoice}
2446 @code{\oneVoice},
2447 @cindex @code{\voiceOne}
2448 @code{\voiceOne},
2449 @cindex @code{\voiceTwo}
2450 @code{\voiceTwo},
2451 @cindex @code{\voiceThree}
2452 @code{\voiceThree},
2453 @cindex @code{\voiceFour}
2454 @code{\voiceFour}.
2455
2456
2457
2458 @cindex @code{\shiftOn}
2459 @code{\shiftOn},
2460 @cindex @code{\shiftOnn}
2461 @code{\shiftOnn},
2462 @cindex @code{\shiftOnnn}
2463 @code{\shiftOnnn},
2464 @cindex @code{\shiftOff}
2465 @code{\shiftOff}: these commands specify in what chords of the current
2466 voice should be shifted.  The outer voices (normally: voice one and
2467 two) have @code{\shiftOff}, while the inner voices (three and four)
2468 have @code{\shiftOn}.  @code{\shiftOnn} and @code{\shiftOnnn} define
2469 further shift levels.
2470
2471
2472 When LilyPond cannot cope, the @code{force-hshift}
2473 property of the @internalsref{NoteColumn} object and pitched rests can
2474 be used to override typesetting decisions.
2475
2476 @lilypond[quote,verbatim,raggedright]
2477 \relative <<
2478 {
2479   <d g>
2480   <d g>
2481 } \\ {
2482   <b f'>
2483   \once \override NoteColumn #'force-hshift = #1.7
2484   <b f'>
2485 } >>
2486 @end lilypond
2487
2488
2489
2490 @seealso
2491
2492 Program reference: the objects responsible for resolving collisions are
2493 @internalsref{NoteCollision} and @internalsref{RestCollision}.
2494
2495 Examples:
2496 @inputfileref{input/@/regression,collision@/-dots@/.ly},
2497 @inputfileref{input/@/regression,collision@/-head-chords@/.ly},
2498 @inputfileref{input/@/regression,collision@/-heads@/.ly},
2499 @inputfileref{input/@/regression,collision@/-mesh@/.ly}, and
2500 @inputfileref{input/@/regression,collisions@/.ly}.
2501
2502
2503 @refbugs
2504
2505
2506 When using @code{merge-differently-headed} with an upstem eighth or a
2507 shorter note, and a downstem half note, the eighth note gets the wrong
2508 offset.
2509
2510 There is no support for clusters where the same note occurs with
2511 different accidentals in the same chord.  In this case, it is
2512 recommended to use enharmonic transcription, or to use special cluster
2513 notation (see @ref{Clusters}).
2514
2515
2516
2517 @node Repeats
2518 @section Repeats
2519
2520 Repetition is a central concept in music, and multiple notations exist
2521 for repetitions.
2522
2523 @menu
2524 * Repeat types::                
2525 * Repeat syntax::               
2526 * Repeats and MIDI::            
2527 * Manual repeat commands::      
2528 * Tremolo repeats::             
2529 * Tremolo subdivisions::        
2530 * Measure repeats::             
2531 @end menu
2532
2533 @node Repeat types
2534 @subsection Repeat types
2535
2536 @cindex repeats
2537 @cindex @code{\repeat}
2538
2539 The following types of repetition are supported
2540
2541 @table @code
2542 @item unfold
2543 Repeated music is fully written (played) out.  This is useful when
2544 entering repetitious music.  This is the only kind of repeat that
2545 is included in MIDI output.
2546
2547 @item volta
2548 Repeats are not written out, but alternative endings (volte) are
2549 printed, left to right with brackets.  This is the standard notation
2550 for repeats with alternatives.  These are not played in MIDI output by default.
2551
2552 @ignore
2553 @item fold
2554 Alternative endings are written stacked.  This has limited use but may be
2555 used to typeset two lines of lyrics in songs with repeats, see
2556 @inputfileref{input,star-spangled-banner@/.ly}.
2557 @end ignore
2558
2559 @c tremolo, beamed
2560 @item tremolo
2561 Make tremolo beams.  These are not played in MIDI output by default.
2562
2563 @item percent
2564 Make beat or measure repeats.  These look like percent signs.  These
2565 are not played in MIDI output by default.  Percent repeats must be
2566 declared within a Voice context.
2567
2568 @end table
2569
2570 @node Repeat syntax
2571 @subsection Repeat syntax
2572
2573
2574 LilyPond has one syntactic construct for specifying different types of
2575 repeats.  The syntax is
2576
2577 @example
2578 \repeat @var{variant} @var{repeatcount} @var{repeatbody}
2579 @end example
2580
2581 If you have alternative endings, you may add
2582 @cindex @code{\alternative}
2583 @example
2584 \alternative @{ @var{alternative1}
2585                @var{alternative2}
2586                @var{alternative3} @dots{} @}
2587 @end example
2588 where each @var{alternative} is a music expression.  If you do not
2589 give enough alternatives for all of the repeats, the first alternative
2590 is assumed to be played more than once.
2591
2592 Standard repeats are used like this
2593 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2594 c1
2595 \repeat volta 2 { c4 d e f }
2596 \repeat volta 2 { f e d c }
2597 @end lilypond
2598
2599 With alternative endings
2600 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2601 c1
2602 \repeat volta 2 {c4 d e f}
2603 \alternative { {d2 d} {f f,} }
2604 @end lilypond
2605
2606
2607 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2608 \context Staff {
2609   \partial 4
2610   \repeat volta 4 { e | c2 d2 | e2 f2 | }
2611   \alternative { { g4 g g } { a | a a a a | b2. } }
2612 }
2613 @end lilypond
2614
2615 It is possible to shorten volta brackets
2616 by setting @code{voltaSpannerDuration}.  In the next example, the
2617 bracket only lasts one measure, which is a duration of 3/4.
2618
2619
2620
2621 @lilypond[verbatim,raggedright,quote]
2622 \relative c''{
2623   \time 3/4
2624   c c c
2625   \set Staff.voltaSpannerDuration = #(ly:make-moment 3 4)
2626   \repeat "volta" 5 { d d d }
2627   \alternative { { e e e f f f }
2628   { g g g } }
2629 }
2630 @end lilypond
2631
2632
2633 @seealso
2634
2635 Examples:
2636
2637 Brackets for the repeat are normally only printed over the topmost
2638 staff.  This can be adjusted by setting the @code{voltaOnThisStaff}
2639 property; see @inputfileref{input/@/regression,volta@/-multi@/-staff@/.ly}.
2640
2641 @c not necessary
2642 @c @inputfileref{input/@/regression,volta@/-chord@/-names@/.ly}.
2643
2644
2645 @refbugs
2646
2647 A nested repeat like
2648
2649 @example
2650 \repeat @dots{}
2651 \repeat @dots{}
2652 \alternative
2653 @end example
2654
2655 @noindent
2656 is ambiguous, since it is is not clear to which @code{\repeat} the
2657 @code{\alternative} belongs.  This ambiguity is resolved by always
2658 having the @code{\alternative} belong to the inner @code{\repeat}.
2659 For clarity, it is advisable to use braces in such situations.
2660 @cindex ambiguity
2661
2662
2663
2664 Timing information is not remembered at the start of an alternative,
2665 so after a repeat timing information must be reset by hand, for
2666 example by setting @code{Score.measurePosition} or entering
2667 @code{\partial}.  Similarly, slurs or ties are also not repeated.
2668
2669
2670
2671
2672 @node Repeats and MIDI
2673 @subsection Repeats and MIDI
2674
2675 @cindex expanding repeats
2676
2677 With a little bit of tweaking, all types of repeats can be present
2678 in the MIDI output.  This is achieved by applying the
2679 @code{\unfoldrepeats} music function.  This functions changes all
2680 repeats to unfold repeats.
2681
2682 @lilypond[quote,verbatim,fragment,linewidth=8.0\cm]
2683 \unfoldrepeats {
2684   \repeat tremolo 8 {c'32 e' }
2685   \repeat percent 2 { c''8 d'' }
2686   \repeat volta 2 {c'4 d' e' f'}
2687   \alternative {
2688     { g' a' a' g' }
2689     {f' e' d' c' }
2690   }
2691 }
2692 \bar "|."
2693 @end lilypond
2694
2695 When creating a score file using @code{\unfoldrepeats} for midi, then
2696 it is necessary to make two @code{\score} blocks.  One for MIDI (with
2697 unfolded repeats) and one for notation (with volta, tremolo, and
2698 percent repeats).  For example,
2699
2700 @example
2701 \score @{
2702   @var{..music..}
2703   \layout @{ .. @}
2704 @}
2705 \score @{
2706   \unfoldrepeats @var{..music..}
2707   \midi @{ .. @}
2708 @}
2709 @end example
2710
2711 @node Manual repeat commands
2712 @subsection Manual repeat commands
2713
2714 @cindex @code{repeatCommands}
2715
2716 The property @code{repeatCommands} can be used to control the layout of
2717 repeats.  Its value is a Scheme list of repeat commands.
2718
2719 @table @asis
2720 @item @code{start-repeat}
2721 Print a @code{|:} bar line.
2722
2723 @item @code{end-repeat}
2724 Print a @code{:|} bar line.
2725
2726 @item @code{(volta @var{text})}
2727 Print a volta bracket saying @var{text}: The text can be specified as
2728 a text string or as a markup text, see @ref{Text markup}.  Do not
2729 forget to change the font, as the default number font does not contain
2730 alphabetic characters;
2731
2732 @item @code{(volta #f)}
2733 Stop a running volta bracket.
2734 @end table
2735
2736 @lilypond[quote,raggedright,verbatim,fragment,relative=2]
2737 c4
2738   \set Score.repeatCommands = #'((volta "93") end-repeat)
2739 c4 c4
2740   \set Score.repeatCommands = #'((volta #f))
2741 c4 c4
2742 @end lilypond
2743
2744
2745
2746 @seealso
2747
2748 Program reference: @internalsref{VoltaBracket}, @internalsref{RepeatedMusic},
2749 @internalsref{VoltaRepeatedMusic},
2750 @internalsref{UnfoldedRepeatedMusic}, and
2751 @internalsref{FoldedRepeatedMusic}.
2752
2753 @node Tremolo repeats
2754 @subsection Tremolo repeats
2755 @cindex tremolo beams
2756
2757 To place tremolo marks between notes, use @code{\repeat} with tremolo
2758 style
2759 @lilypond[quote,verbatim,raggedright]
2760 \new Voice \relative c' {
2761   \repeat "tremolo" 8 { c16 d16 }
2762   \repeat "tremolo" 4 { c16 d16 }
2763   \repeat "tremolo" 2 { c16 d16 }
2764 }
2765 @end lilypond
2766
2767 Tremolo marks can also be put on a single note.  In this case, the
2768 note should not be surrounded by braces.
2769 @lilypond[quote,verbatim,raggedright]
2770 \repeat "tremolo" 4 c'16
2771 @end lilypond
2772
2773 Similar output is obtained using the tremolo subdivision, described in
2774 @ref{Tremolo subdivisions}.
2775
2776 @seealso
2777
2778 In this manual: @ref{Tremolo subdivisions}, @ref{Repeats}.
2779
2780 Program reference: tremolo beams are @internalsref{Beam} objects.  Single stem
2781 tremolos are @internalsref{StemTremolo} objects.  The music expression is
2782 @internalsref{TremoloEvent}.
2783
2784 Example files: @inputfileref{input/@/regression,chord@/-tremolo@/.ly},
2785 @inputfileref{input/@/regression,stem@/-tremolo@/.ly}.
2786
2787 @node Tremolo subdivisions
2788 @subsection Tremolo subdivisions
2789 @cindex tremolo marks
2790 @cindex @code{tremoloFlags}
2791
2792 Tremolo marks can be printed on a single note by adding
2793 `@code{:}[@var{number}]' after the note.  The number indicates the
2794 duration of the subdivision, and it must be at least 8.  A
2795 @var{length} value of 8 gives one line across the note stem.  If the
2796 length is omitted, the last value (stored in @code{tremoloFlags}) is
2797 used
2798
2799 @lilypond[quote,raggedright,verbatim,fragment]
2800 c'2:8 c':32 | c': c': |
2801 @end lilypond
2802
2803 @c [TODO: stok is te kort bij 32en]
2804 @c   somebody want to translate that into English?
2805 @c   `Stem is too short for 32nds' (wl)
2806
2807 @refbugs
2808
2809 Tremolos entered in this way do not carry over into the MIDI output.
2810
2811 @seealso
2812
2813 In this manual: @ref{Tremolo repeats}.
2814
2815 Elsewhere: @internalsref{StemTremolo}, @internalsref{TremoloEvent}.
2816
2817 @node Measure repeats
2818 @subsection Measure repeats
2819
2820 @cindex percent repeats
2821 @cindex measure repeats
2822
2823 In the @code{percent} style, a note pattern can be repeated.  It is
2824 printed once, and then the pattern is replaced with a special sign.
2825 Patterns of one and two measures are replaced by percent-like signs,
2826 patterns that divide the measure length are replaced by slashes.
2827 Percent repeats must be declared within a @code{Voice} context.
2828
2829 @lilypond[quote,verbatim,raggedright]
2830 \new Voice \relative c' {
2831   \repeat "percent" 4 { c4 }
2832   \repeat "percent" 2 { c2 es2 f4 fis4 g4 c4 }
2833 }
2834 @end lilypond
2835
2836 @seealso
2837
2838 Program reference: @internalsref{RepeatSlash}, @internalsref{PercentRepeat},
2839 @internalsref{PercentRepeatedMusic}, and
2840 @internalsref{DoublePercentRepeat}.
2841
2842
2843