]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/basic-notation.itely
minor fixes.
[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
770 @cindex staff lines, setting number of
771 @cindex staff lines, setting thickness of
772 @cindex thickness of staff lines, setting
773 @cindex number of staff lines, setting
774
775 @seealso
776
777 Program reference: @internalsref{StaffSymbol}.
778
779 Examples: @inputfileref{input/@/test,staff@/-lines@/.ly},
780 @inputfileref{input/@/test,staff@/-size@/.ly}.
781
782 @refbugs
783
784 If a staff is ended halfway a piece, the staff symbol may not end
785 exactly on the bar line.
786
787
788 @node Key signature
789 @subsection Key signature
790 @cindex Key signature
791
792 @cindex @code{\key}
793
794 The key signature indicates the tonality in which a piece is played.  It
795 is denoted by a set of alterations (flats or sharps) at the start of the
796 staff.
797
798
799 Setting or changing the key signature is done with the @code{\key}
800 command
801 @example
802 @code{\key} @var{pitch} @var{type}
803 @end example
804
805 @cindex @code{\minor}
806 @cindex @code{\major}
807 @cindex @code{\minor}
808 @cindex @code{\ionian}
809 @cindex @code{\locrian}
810 @cindex @code{\aeolian}
811 @cindex @code{\mixolydian}
812 @cindex @code{\lydian}
813 @cindex @code{\phrygian}
814 @cindex @code{\dorian}
815
816 Here, @var{type} should be @code{\major} or @code{\minor} to get
817 @var{pitch}-major or @var{pitch}-minor, respectively.
818 The standard mode names @code{\ionian},
819 @code{\locrian}, @code{\aeolian}, @code{\mixolydian}, @code{\lydian},
820 @code{\phrygian}, and @code{\dorian} are also defined.
821
822 This command sets the context property
823 @internalsref{Staff}.@code{keySignature}.  Non-standard key signatures
824 can be specified by setting this property directly.
825
826 A natural sign is printed to cancel any previous accidentals.  This
827 can be suppressed by setting the @code{Staff.printKeyCancellation}
828 property.
829
830 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
831 {
832   \key d \major
833   a b cis d
834   \key g \minor
835   a bes c d
836   \set Staff.printKeyCancellation = ##f
837   \key d \major
838   a b cis d
839   \key g \minor
840   a bes c d
841 }
842 @end lilypond
843
844 Accidentals and key signatures often confuse new users, because
845 unaltered notes get natural signs depending on the key signature.  For
846 more information, see @ref{More about pitches}.
847
848 @seealso
849
850 Program reference: @internalsref{KeyChangeEvent},
851 @internalsref{KeyCancellation} and @internalsref{KeySignature}.
852
853 @cindex @code{keySignature}
854
855
856 @node Clef
857 @subsection Clef
858 @cindex @code{\clef}
859
860 The clef indicates which lines of the staff correspond to which
861 pitches.
862
863
864 The clef can be set with the @code{\clef} command
865 @lilypond[quote,raggedright,fragment,verbatim]
866 { c''2 \clef alto g'2 }
867 @end lilypond
868
869 Supported clef-names include
870 @c Moved standard clefs to the top /MB
871 @table @code
872 @cindex treble clef
873 @cindex violin clef
874 @item treble, violin, G, G2
875 G clef on 2nd line
876 @item alto, C
877 @cindex alto clef
878  C clef on 3rd line
879 @item tenor
880 @cindex tenor clef
881  C clef on 4th line.
882 @item bass, F
883 @cindex bass clef
884  F clef on 4th line
885 @item french
886 @cindex french clef
887  G clef on 1st line, so-called French violin clef
888 @item soprano
889 @cindex soprano clef
890  C clef on 1st line
891 @item mezzosoprano
892 @cindex mezzosoprano clef
893  C clef on 2nd line
894 @item baritone
895 @cindex baritone clef
896  C clef on 5th line
897 @item varbaritone
898 @cindex varbaritone clef
899  F clef on 3rd line
900 @item subbass
901 @cindex subbass clef
902  F clef on 5th line
903 @item percussion
904  percussion clef
905 @item tab
906  tablature clef
907 @end table
908
909 By adding @code{_8} or @code{^8} to the clef name, the clef is
910 transposed one octave down or up, respectively, and @code{_15} and
911 @code{^15} transposes by two octaves.  The argument @var{clefname}
912 must be enclosed in quotes when it contains underscores or digits.  For
913 example,
914
915
916 @cindex choral tenor clef
917 @lilypond[quote,raggedright,verbatim,fragment,relative=1]
918 \clef "G_8" c4
919 @end lilypond
920
921 This command is equivalent to setting @code{clefGlyph},
922 @code{clefPosition} (which controls the Y position of the clef),
923 @code{middleCPosition} and @code{clefOctavation}.  A clef is printed
924 when any of these properties are changed.  The following example shows
925 possibilities when setting properties manually.
926
927 @lilypond[quote,raggedright,verbatim]
928 {
929   \set Staff.clefGlyph = #"clefs.F"
930   \set Staff.clefPosition = #2
931   c'4
932   \set Staff.clefGlyph = #"clefs.G"
933   c'4
934   \set Staff.clefGlyph = #"clefs.C"
935   c'4
936   \set Staff.clefOctavation = #7
937   c'4
938   \set Staff.clefOctavation = #0
939   \set Staff.clefPosition = #0
940   c'4
941   \clef "bass"
942   c'4
943   \set Staff.middleCPosition = #4
944   c'4
945 }
946 @end lilypond
947
948 @seealso
949
950 Program reference: @internalsref{Clef}.
951
952
953
954
955
956 @node Time signature
957 @subsection Time signature
958 @cindex Time signature
959 @cindex meter
960 @cindex @code{\time}
961
962 Time signature indicates the metrum of a piece: a regular pattern of
963 strong and weak beats.  It is denoted by a fraction at the start of the
964 staff.
965
966
967 The time signature is set or changed by the @code{\time}
968 command
969 @lilypond[quote,raggedright,fragment,verbatim]
970 \time 2/4 c'2 \time 3/4 c'2.
971 @end lilypond
972
973 The symbol that is printed can be customized with the @code{style}
974 property.  Setting it to @code{#'()} uses fraction style for 4/4 and
975 2/2 time,
976
977 @lilypond[fragment,quote,raggedright,verbatim]
978 \time 4/4 c'1
979 \time 2/2 c'1
980 \override Staff.TimeSignature #'style = #'()
981 \time 4/4 c'1
982 \time 2/2 c'1
983 @end lilypond
984
985
986
987 There are many more options for its layout.  See @ref{Ancient time
988 signatures} for more examples.
989
990
991 This command sets the property @code{timeSignatureFraction},
992 @code{beatLength} and @code{measureLength} in the @code{Timing}
993 context, which is normally aliased to @internalsref{Score}.  The
994 property @code{measureLength} determines where bar lines should be
995 inserted, and how automatic beams should be generated.  Changing the
996 value of @code{timeSignatureFraction} also causes the symbol to be
997 printed.
998
999 More options are available through the Scheme function
1000 @code{set-time-signature}.  In combination with the
1001 @internalsref{Measure_grouping_engraver}, it will create
1002 @internalsref{MeasureGrouping} signs.  Such signs ease reading
1003 rhythmically complex modern music.  In the following example, the 9/8
1004 measure is subdivided in 2, 2, 2 and 3.  This is passed to
1005 @code{set-time-signature} as the third argument @code{(2 2 2 3)}
1006
1007 @lilypond[quote,raggedright,verbatim]
1008 \score {
1009   \relative c'' {
1010     #(set-time-signature 9 8 '(2 2 2 3))
1011     g8[ g] d[ d] g[ g] a8[( bes g]) |
1012     #(set-time-signature 5 8 '(3 2))
1013     a4. g4
1014   }
1015   \layout {
1016     \context {
1017       \Staff
1018       \consists "Measure_grouping_engraver"
1019     }
1020   }
1021 }
1022 @end lilypond
1023
1024 @seealso
1025
1026 Program reference: @internalsref{TimeSignature}, and @internalsref{Timing_engraver}.
1027
1028
1029 @refbugs
1030
1031 Automatic beaming does not use the measure grouping specified with
1032 @code{set-time-signature}.
1033
1034 @node Partial measures
1035 @subsection Partial measures
1036 @cindex Partial
1037 @cindex anacrusis
1038 @cindex partial measure
1039 @cindex measure, partial
1040 @cindex shorten measures
1041 @cindex @code{\partial}
1042
1043 Partial measures, for example in upsteps, are entered using the
1044 @code{\partial} command
1045 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1046 \partial 16*5 c16 cis d dis e | a2. c,4 | b2
1047 @end lilypond
1048
1049 The syntax for this command is
1050 @example
1051 \partial @var{duration}
1052 @end example
1053 This is internally translated into
1054 @example
1055 \set Timing.measurePosition = -@var{length of duration}
1056 @end example
1057 @cindex @code{|}
1058 The property @code{measurePosition} contains a rational number
1059 indicating how much of the measure has passed at this point.
1060
1061 @refbugs
1062
1063 This command does not take into account grace notes at the start of
1064 the music.  When a piece starts with graces notes in the pickup, then
1065 the @code{\partial} should follow the grace notes
1066
1067 @lilypond[verbatim,quote,raggedright,relative,fragment]
1068 {
1069   \grace f16
1070   \partial 4
1071   g4
1072   a2 g2
1073 }
1074 @end lilypond
1075
1076
1077 @node Unmetered music
1078 @subsection Unmetered music
1079
1080 @cindex @code{\bar}
1081
1082 Bar lines and bar numbers are calculated automatically.  For unmetered
1083 music (cadenzas, for example), this is not desirable.  By setting
1084 @code{Score.timing} to false, this automatic timing can be switched
1085 off.  Empty bar lines,
1086
1087 @example
1088 \bar ""
1089 @end example
1090
1091 @noindent
1092 indicate where line breaks can occur.
1093
1094 @refcommands
1095
1096 @cindex @code{\cadenzaOn}
1097 @code{\cadenzaOn},
1098 @cindex @code{\cadenzaOff}
1099 @code{\cadenzaOff}.
1100
1101
1102
1103
1104 @node Bar lines
1105 @subsection Bar lines
1106 @cindex Bar lines
1107
1108 @cindex @code{\bar}
1109 @cindex measure lines
1110 @cindex repeat bars
1111
1112
1113 Bar lines delimit measures, but are also used to indicate repeats.
1114 Normally, they are inserted automatically.  Line breaks may only
1115 happen on bar lines.
1116
1117 Special types of bar lines can be forced with the @code{\bar} command
1118 @c
1119 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1120 c4 \bar "|:" c4
1121 @end lilypond
1122
1123 The following bar types are available
1124 @lilypondfile[raggedright,quote]{bar-lines.ly}
1125
1126 For allowing line breaks, there is a special command,
1127 @example
1128 \bar ""
1129 @end example
1130 This will insert an invisible bar line, and allow line breaks at this
1131 point.
1132
1133 In scores with many staves, a @code{\bar} command in one staff is
1134 automatically applied to all staves.  The resulting bar lines are
1135 connected between different staves of a @internalsref{StaffGroup}
1136 @c
1137 @lilypond[quote,raggedright,fragment,verbatim]
1138 <<
1139   \context StaffGroup <<
1140     \new Staff {
1141       e'4 d'
1142       \bar "||"
1143       f' e'
1144     }
1145     \new Staff { \clef bass c4 g e g }
1146   >>
1147   \new Staff { \clef bass c2 c2 }
1148 >>
1149 @end lilypond
1150
1151
1152 The command @code{\bar }@var{bartype} is a short cut for doing
1153 @code{\set Timing.whichBar = }@var{bartype}.  Whenever @code{whichBar}
1154 is set to a string, a bar line of that type is created.
1155
1156 A bar line is created whenever the @code{whichBar} property is set.
1157 At the start of a measure it is set to the contents of
1158 @code{Timing.defaultBarType}.  The contents of @code{repeatCommands} are used
1159 to override default measure bars.
1160
1161 @cindex @code{whichBar}
1162 @cindex @code{repeatCommands}
1163 @cindex @code{defaultBarType}
1164
1165 You are encouraged to use @code{\repeat} for repetitions.  See
1166 @ref{Repeats}.
1167
1168
1169
1170 @seealso
1171
1172 In this manual: @ref{Repeats}, @ref{System start delimiters}.
1173
1174
1175 Program reference: @internalsref{BarLine} (created at
1176 @internalsref{Staff} level), @internalsref{SpanBar} (across staves).
1177
1178 @cindex bar lines at start of system
1179 @cindex start of system
1180
1181
1182
1183 Examples: @inputfileref{input/@/test,bar@/-lines@/.ly},
1184
1185
1186
1187 @node System start delimiters
1188 @subsection System start delimiters
1189
1190 Many scores consist of more than one staff.  These staves can be
1191 joined in three different ways
1192 @itemize @bullet
1193 @item The group is started with a brace at the left, and bar lines are
1194 connected.  This is done with the @internalsref{GrandStaff} context.
1195
1196 @lilypond[verbatim,raggedright,quote]
1197 \new GrandStaff
1198 \relative <<
1199   \new Staff { c1 c }
1200   \new Staff { c c }
1201 >>
1202 @end lilypond
1203
1204
1205 @item The group is started with a bracket, and bar lines are connected.
1206 This is done with the
1207 @internalsref{StaffGroup} context
1208
1209 @lilypond[verbatim,raggedright,quote]
1210 \new StaffGroup
1211 \relative <<
1212   \new Staff { c1 c }
1213   \new Staff { c c }
1214 >>
1215 @end lilypond
1216
1217
1218 @item The group is started with a vertical line.  Bar lines are not
1219 connected.  This is the default for the score.
1220
1221 @lilypond[verbatim,raggedright,quote]
1222 \relative <<
1223   \new Staff { c1 c }
1224   \new Staff { c c }
1225 >>
1226 @end lilypond
1227
1228 @end itemize
1229
1230 @cindex Staff, multiple
1231 @cindex bracket, vertical
1232 @cindex brace, vertical
1233 @cindex grand staff
1234 @cindex staff group
1235
1236
1237 @seealso
1238
1239 The bar lines at the start of each system are
1240 @internalsref{SystemStartBar}, @internalsref{SystemStartBrace}, and
1241 @internalsref{SystemStartBracket}.  Only one of these types is created
1242 in every context, and that type is determined by the property
1243 @code{systemStartDelimiter}.
1244
1245
1246 @node More than notes
1247 @section More than notes
1248 @c silly title; should change.
1249
1250 This section deals with notation that affects more than one note.
1251
1252 @menu
1253 * Ties::                        
1254 * Automatic beams::             
1255 * Manual beams::                
1256 * Grace notes::                 
1257 * Fingering instructions::      
1258 @end menu
1259
1260 @node Ties
1261 @subsection Ties
1262
1263 @cindex Tie
1264 @cindex ties
1265 @cindex @code{~}
1266
1267 A tie connects two adjacent note heads of the same pitch.  The tie in
1268 effect extends the length of a note.  Ties should not be confused with
1269 slurs, which indicate articulation, or phrasing slurs, which indicate
1270 musical phrasing.  A tie is entered using the tilde symbol `@code{~}'
1271
1272 @lilypond[quote,raggedright,fragment,verbatim]
1273 e' ~ e' <c' e' g'> ~ <c' e' g'>
1274 @end lilypond
1275
1276 When a tie is applied to a chord, all note heads whose pitches match
1277 are connected.  When no note heads match, no ties will be created.
1278
1279 A tie is just a way of extending a note duration, similar to the
1280 augmentation dot.  The following example shows two ways of notating
1281 exactly the same concept
1282 @c
1283 @lilypond[quote,fragment,raggedright]
1284 \time 3/4 c'2. c'2 ~ c'4
1285 @end lilypond
1286
1287 @noindent
1288 Ties are used either when the note crosses a bar line, or when dots
1289 cannot be used to denote the rhythm.  When using ties, larger note
1290 values should be aligned to subdivisions of the measure, eg.
1291
1292 @lilypond[fragment,quote,raggedright]
1293 \relative {
1294   r8 c8 ~ c2 r4 | r8^"not" c2 ~ c8 r4
1295 }
1296 @end lilypond
1297
1298 If you need to tie a lot of notes over bars, it may be easier to use
1299 automatic note splitting (see @ref{Automatic note splitting}).  This
1300 mechanism automatically splits long notes, and ties them across bar
1301 lines.
1302
1303 Ties are sometimes used to write out arpeggios.  In this case, two tied
1304 notes need not be consecutive.  This can be achieved by setting the
1305 @code{tieWaitForNote} property to true.  For example,
1306
1307 @lilypond[fragment,verbatim,relative=1,raggedright]
1308 \set tieWaitForNote = ##t
1309 \grace { c16[~ e~ g]~ } <c, e g>4   
1310 @end lilypond
1311
1312
1313 @refcommands
1314
1315
1316 @cindex @code{\tieUp}
1317 @code{\tieUp},
1318 @cindex @code{\tieDown}
1319 @code{\tieDown},
1320 @cindex @code{\tieNeutral}
1321 @code{\tieNeutral},
1322 @cindex @code{\tieDotted}
1323 @code{\tieDotted},
1324 @cindex @code{\tieSolid}
1325 @code{\tieSolid}.
1326
1327 @seealso
1328
1329 In this manual: @ref{Automatic note splitting}.
1330
1331 Program reference: @internalsref{TieEvent}, @internalsref{Tie}.
1332
1333 @refbugs
1334
1335
1336 Switching staves when a tie is active will not produce a slanted tie.
1337
1338 Formatting of ties is a difficult subject.  The results are often not
1339 optimal.
1340
1341
1342 @node Automatic beams
1343 @subsection Automatic beams
1344
1345 LilyPond inserts beams automatically
1346
1347 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1348 \time 2/4 c8 c c c \time 6/8 c c c c8. c16 c8
1349 @end lilypond
1350
1351 When these automatic decisions are not good enough, beaming can be
1352 entered explicitly.  It is also possible to define beaming patterns
1353 that differ from the defaults.
1354
1355 Individual notes may be marked with @code{\noBeam}, to prevent them
1356 from being beamed
1357
1358 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1359 \time 2/4 c8 c\noBeam c c
1360 @end lilypond
1361
1362
1363 @seealso
1364
1365 Program reference: @internalsref{Beam}.
1366
1367
1368 @node Manual beams
1369 @subsection Manual beams
1370 @cindex beams, manual
1371 @cindex @code{]}
1372 @cindex @code{[}
1373
1374 In some cases it may be necessary to override the automatic beaming
1375 algorithm.  For example, the autobeamer will not put beams over rests
1376 or bar lines.  Such beams are specified manually by marking the begin
1377 and end point with @code{[} and @code{]}
1378
1379 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
1380 {
1381   r4 r8[ g' a r8] r8 g[ | a] r8
1382 }
1383 @end lilypond
1384
1385 @cindex @code{stemLeftBeamCount}
1386
1387 Normally, beaming patterns within a beam are determined automatically.
1388 If necessary, the properties @code{stemLeftBeamCount} and
1389 @code{stemRightBeamCount} can be used to override the defaults.  If
1390 either property is set, its value will be used only once, and then it
1391 is erased
1392
1393 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
1394 {
1395    f8[ r16
1396       f g a]
1397    f8[ r16
1398    \set stemLeftBeamCount = #1
1399       f g a]
1400 }
1401 @end lilypond
1402 @cindex @code{stemRightBeamCount}
1403
1404
1405 The property @code{subdivideBeams} can be set in order to subdivide
1406 all 16th or shorter beams at beat positions, as defined by the
1407 @code{beatLength} property.
1408
1409
1410 @lilypond[fragment,quote,relative=2,verbatim]
1411 c16[ c c c c c c c]
1412 \set subdivideBeams = ##t
1413 c16[ c c c c c c c]
1414 \set Score.beatLength = #(ly:make-moment 1 8)
1415 c16[ c c c c c c c]
1416 @end lilypond
1417 @cindex @code{subdivideBeams}
1418
1419 Normally, line breaks are forbidden when beams cross bar lines.  This
1420 behavior can be changed by setting @code{allowBeamBreak}.
1421
1422 @cindex @code{allowBeamBreak}
1423 @cindex beams and line breaks
1424
1425 @cindex beams, kneed
1426 @cindex kneed beams
1427 @cindex auto-knee-gap
1428
1429
1430 @seealso
1431
1432 User manual: @ref{Changing context properties on the fly} for the
1433 @code{\set} command
1434
1435
1436 @refbugs
1437
1438 @cindex Frenched staves
1439 Kneed beams are inserted automatically, when a large gap is detected
1440 between the note heads.  This behavior can be tuned through the object.
1441
1442
1443 Automatically kneed cross-staff beams cannot be used together with
1444 hidden staves.  See @ref{Hiding staves}.
1445
1446 Beams do not avoid collisions with symbols around the notes, such as
1447 texts and accidentals.
1448
1449 @c FIXME.
1450
1451
1452 @node Grace notes
1453 @subsection Grace notes
1454
1455 @cindex @code{\grace}
1456 @cindex ornaments
1457 @cindex grace notes
1458
1459 Grace notes are ornaments that are written out.  The most common ones
1460 are acciaccatura, which should be played as very short.  It is denoted
1461 by a slurred small note with a slashed stem.  The appoggiatura is a
1462 grace note that takes a fixed fraction of the main note, and is
1463 denoted as a slurred note in small print without a slash.  They
1464 are entered with the commands @code{\acciaccatura} and
1465 @code{\appoggiatura}, as demonstrated in the following example
1466
1467
1468 @cindex appoggiatura
1469 @cindex acciaccatura
1470
1471 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
1472 b4 \acciaccatura d8 c4 \appoggiatura e8 d4
1473 \acciaccatura { g16[ f] } e4
1474 @end lilypond
1475
1476 Both are special forms of the @code{\grace} command.  By prefixing this
1477 keyword to a music expression, a new one is formed, which will be
1478 printed in a smaller font and takes up no logical time in a measure.
1479
1480 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
1481 c4 \grace c16 c4
1482 \grace { c16[ d16] } c2 c4
1483 @end lilypond
1484
1485 @noindent
1486 Unlike @code{\acciaccatura} and @code{\appoggiatura}, the
1487 @code{\grace} command does not start a slur.
1488
1489 Internally, timing for grace notes is done using a second, `grace'
1490 timing.  Every point in time consists of two rational numbers: one
1491 denotes the logical time, one denotes the grace timing.  The above
1492 example is shown here with timing tuples
1493
1494 @lilypond[quote,raggedright]
1495 <<
1496   \relative c''{
1497     c4 \grace c16 c4 \grace {
1498     c16[ d16] } c2 c4
1499   }
1500   \new Lyrics \lyricmode {
1501     \override LyricText #'font-family = #'typewriter
1502
1503     \markup { (0,0) } 4
1504     \grace { \markup {
1505       ( \fraction 1 4 , \fraction -1 16 ) } 16 }
1506     \markup { (\fraction 1 4 , 0 ) } 4
1507     \grace {
1508       \markup { (\fraction 2 4 , \fraction "-1" 8 ) } 16
1509       \markup { (\fraction 2 4 , \fraction "-1" 16 ) } 16
1510     }
1511     \markup { ( \fraction 2 4 , 0 ) }
1512   }
1513 >>
1514 @end lilypond
1515
1516
1517 The placement of grace notes is synchronized between different staves.
1518 In the following example, there are two sixteenth grace notes for
1519 every eighth grace note
1520
1521 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
1522 << \new Staff { e4 \grace { c16[ d e f] } e4 }
1523    \new Staff { c4 \grace { g8[ b] } c4 } >>
1524 @end lilypond
1525
1526
1527
1528 If you want to end a note with a grace, use the @code{\afterGrace}
1529 command.  It takes two arguments: the main note, and the grace notes
1530 following the main note. 
1531
1532 @lilypond[raggedright, verbatim,relative=2,fragment]
1533 c1 \afterGrace d1 { c16[ d] } c4   
1534 @end lilypond
1535
1536 This will put the grace notes after a ``space'' lasting 3/4 of the
1537 length of the main note.  The fraction 3/4 can be changed by setting
1538 @code{afterGraceFraction}, ie.
1539
1540 @example
1541 afterGraceFraction = #(cons 7 8) 
1542 @end example
1543
1544 @noindent
1545 will put the grace note at 7/8 of the main note. 
1546
1547
1548 The same effect can be achieved manually by doing
1549
1550
1551 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1552 \context Voice {
1553   << { d1^\trill_( }
1554      { s2 \grace { c16[ d] } } >>
1555   c4)
1556 }
1557 @end lilypond
1558
1559 @noindent
1560 By adjusting the duration of the skip note (here it is a half-note),
1561 the space between the main-note and the grace is adjusted.
1562
1563
1564
1565
1566 A @code{\grace} section will introduce special typesetting settings,
1567 for example, to produce smaller type, and set directions.  Hence, when
1568 introducing layout tweaks, they should be inside the grace section,
1569 for example,
1570 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1571 \new Voice {
1572   \acciaccatura {
1573     \stemDown
1574     f16->
1575     \stemNeutral
1576   }
1577   g4
1578 }
1579 @end lilypond
1580
1581 @noindent
1582 The overrides should also be reverted inside the grace section.
1583
1584 The layout of grace sections can be changed throughout the music using
1585 the function @code{add-grace-property}.  The following example
1586 undefines the Stem direction for this grace, so stems do not always
1587 point up.
1588
1589 @example
1590 \new Staff @{
1591   #(add-grace-property 'Voice 'Stem 'direction '())
1592   @dots{}
1593 @}
1594 @end example
1595
1596 @noindent
1597 Another option is to change the variables @code{startGraceMusic},
1598 @code{stopGraceMusic}, @code{startAcciaccaturaMusic},
1599 @code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic},
1600 @code{stopAppoggiaturaMusic}.  More information is in the file
1601 @file{ly/@/grace@/-init@/.ly}.
1602
1603
1604 @seealso
1605
1606 Program reference: @internalsref{GraceMusic}.
1607
1608 @refbugs
1609
1610 A score that starts with a @code{\grace} section needs an explicit
1611 @code{\context Voice} declaration, otherwise the main note and the grace
1612 note end up on different staves.
1613
1614 Grace note synchronization can also lead to surprises.  Staff notation,
1615 such as key signatures, bar lines, etc., are also synchronized.  Take
1616 care when you mix staves with grace notes and staves without, for example,
1617
1618 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
1619 << \new Staff { e4 \bar "|:" \grace c16 d4 }
1620    \new Staff { c4 \bar "|:" d4 } >>
1621 @end lilypond
1622
1623 @noindent
1624 This can be remedied by inserting grace skips, for the above example
1625
1626 @example
1627 \new Staff @{ c4 \bar "|:" \grace s16 d4 @}
1628 @end example
1629
1630 Grace sections should only be used within sequential music
1631 expressions.  Nesting or juxtaposing grace sections is not supported,
1632 and might produce crashes or other errors.
1633
1634
1635 @node Fingering instructions
1636 @subsection Fingering instructions
1637
1638 @cindex fingering
1639
1640 Fingering instructions can be entered using
1641 @example
1642 @var{note}-@var{digit}
1643 @end example
1644 For finger changes, use markup texts
1645
1646 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
1647 c4-1 c-2 c-3 c-4
1648 c^\markup { \finger "2-3" }
1649 @end lilypond
1650
1651 @cindex finger change
1652 @cindex scripts
1653 @cindex superscript
1654 @cindex subscript
1655
1656 You can use the thumb-script to indicate that a note should be
1657 played with the thumb (e.g., in cello music)
1658 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
1659 <a_\thumb a'-3>8 <b_\thumb b'-3>
1660 @end lilypond
1661
1662 Fingerings for chords can also be added to individual notes
1663 of the chord by adding them after the pitches
1664 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
1665 < c-1 e-2 g-3 b-5 >4
1666 @end lilypond
1667
1668 @noindent
1669 In this case, setting @code{fingeringOrientations} will put fingerings next
1670 to note heads
1671
1672 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
1673 \set fingeringOrientations = #'(left down)
1674 <c-1 es-2 g-4 bes-5 > 4
1675 \set fingeringOrientations = #'(up right down)
1676 <c-1 es-2 g-4 bes-5 > 4
1677 @end lilypond
1678
1679 Using this feature, it is also possible to put fingering instructions
1680 very close to note heads in monophonic music,
1681
1682 @lilypond[verbatim,raggedright,quote,fragment]
1683 \set fingeringOrientations = #'(right)
1684 <es'-2>4
1685 @end lilypond
1686
1687
1688 @seealso
1689
1690 Program reference: @internalsref{FingerEvent}, and @internalsref{Fingering}.
1691
1692 Examples: @inputfileref{input/@/regression,finger@/-chords@/.ly}.
1693
1694
1695
1696
1697 @node Expressive marks
1698 @section Expressive marks
1699
1700 Expressive marks help musicians to bring more to the music than simple
1701 notes and rhythms.
1702
1703 @menu
1704 * Slurs::                       
1705 * Phrasing slurs::              
1706 * Articulations::               
1707 * Dynamics::                    
1708 * Breath marks::                
1709 * Running trills::              
1710 * Glissando::                   
1711 * Arpeggio::                    
1712 @end menu
1713
1714
1715 @node Slurs
1716 @subsection Slurs
1717 @cindex Slurs
1718
1719 A slur indicates that notes are to be played bound or @emph{legato}.
1720
1721 They are entered using parentheses
1722 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1723 f( g a) a8 b( a4 g2 f4)
1724 <c e>2( <b d>2)
1725 @end lilypond
1726
1727 The direction of a slur can be set with the
1728 generic commands
1729
1730 @example
1731 \override Slur #'direction = #UP
1732 \slurUp            % shortcut for the previous line
1733 @end example
1734
1735 @noindent
1736 However, there is a convenient shorthand for forcing slur
1737 directions.  By adding @code{_} or @code{^} before the opening
1738 parentheses, the direction is also set.  For example,
1739
1740 @lilypond[relative=2,raggedright,quote,verbatim,fragment]
1741 c4_( c) c^( c)
1742 @end lilypond
1743
1744 Some composers write two slurs when they want legato chords.  This can
1745 be achieved in LilyPond by setting @code{doubleSlurs},
1746
1747 @lilypond[verbatim,raggedright,relative,fragment,quote]
1748 \set doubleSlurs = ##t
1749 <c e>4 ( <d f> <c e> <d f> )
1750 @end lilypond
1751
1752 Only one slur can be printed at once.  If you need to print a long
1753 slur over a few small slurs, please see @ref{Phrasing slurs}.
1754
1755
1756 @refcommands
1757
1758
1759 @cindex @code{\slurUp}
1760 @code{\slurUp},
1761 @cindex @code{\slurDown}
1762 @code{\slurDown},
1763 @cindex @code{\slurNeutral}
1764 @code{\slurNeutral},
1765 @cindex @code{\slurDashed}
1766 @code{\slurDashed},
1767 @cindex @code{\slurDotted}
1768 @code{\slurDotted},
1769 @cindex @code{\slurSolid}
1770 @code{\slurSolid}.
1771
1772 @seealso
1773
1774 Program reference: @seeinternals{Slur}, and @internalsref{SlurEvent}.
1775
1776
1777 @node Phrasing slurs
1778 @subsection Phrasing slurs
1779
1780 @cindex phrasing slurs
1781 @cindex phrasing marks
1782
1783 A phrasing slur (or phrasing mark) connects chords and is used to
1784 indicate a musical sentence.  It is written using @code{\(} and @code{\)}
1785 respectively
1786
1787 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
1788 \time 6/4 c'\( d( e) f( e) d\)
1789 @end lilypond
1790
1791 Typographically, the phrasing slur behaves almost exactly like a
1792 normal slur.  However, they are treated as different objects.  A
1793 @code{\slurUp} will have no effect on a phrasing slur; instead, use
1794 @code{\phrasingSlurUp}, @code{\phrasingSlurDown}, and
1795 @code{\phrasingSlurNeutral}.
1796
1797 The commands @code{\slurUp}, @code{\slurDown}, and @code{\slurNeutral}
1798 will only affect normal slurs and not phrasing slurs.
1799
1800 You cannot have simultaneous phrasing slurs.
1801
1802 @refcommands
1803
1804 @cindex @code{\phrasingSlurUp}
1805 @code{\phrasingSlurUp},
1806 @cindex @code{\phrasingSlurDown}
1807 @code{\phrasingSlurDown},
1808 @cindex @code{\phrasingSlurNeutral}
1809 @code{\phrasingSlurNeutral}.
1810
1811 @seealso
1812
1813 Program reference: see also @internalsref{PhrasingSlur}, and
1814 @internalsref{PhrasingSlurEvent}.
1815
1816 @refbugs
1817
1818 Putting phrasing slurs over rests leads to spurious warnings.
1819
1820
1821 @node Articulations
1822 @subsection Articulations
1823 @cindex Articulations
1824
1825 @cindex articulations
1826 @cindex scripts
1827 @cindex ornaments
1828
1829 A variety of symbols can appear above and below notes to indicate
1830 different characteristics of the performance.  They are added to a note
1831 by adding a dash and the character signifying the
1832 articulation.  They are demonstrated here
1833
1834 @lilypondfile[quote,raggedright]{script-abbreviations.ly}
1835
1836 The meanings of these shorthands can be changed.  See
1837 @file{ly/@/script@/-init@/.ly} for examples.
1838
1839
1840 The script is automatically placed, but the direction can be forced as
1841 well.  Like other pieces of LilyPond code, @code{_} will place them
1842 below the staff, and @code{^} will place them above.
1843
1844
1845 @lilypond[quote,raggedright,fragment,verbatim]
1846 c''4^^ c''4_^
1847 @end lilypond
1848
1849 Other symbols can be added using the syntax
1850 @var{note}@code{\}@var{name}.  Again, they
1851 can be forced up or down using @code{^} and @code{_},
1852 e.g.,
1853
1854 @lilypond[quote,raggedright,verbatim,fragment,relative=2]
1855 c\fermata c^\fermata c_\fermata
1856 @end lilypond
1857
1858
1859
1860 @cindex accent
1861 @cindex marcato
1862 @cindex staccatissimo
1863 @cindex espressivo
1864 @cindex fermata
1865 @cindex stopped
1866 @cindex staccato
1867 @cindex portato
1868 @cindex tenuto
1869 @cindex upbow
1870 @cindex downbow
1871 @cindex foot marks
1872 @cindex organ pedal marks
1873 @cindex turn
1874 @cindex open
1875 @cindex flageolet
1876 @cindex reverseturn
1877 @cindex trill
1878 @cindex prall
1879 @cindex mordent
1880 @cindex prallprall
1881 @cindex prallmordent
1882 @cindex prall, up
1883 @cindex prall, down
1884 @cindex mordent
1885 @cindex thumb marking
1886 @cindex segno
1887 @cindex coda
1888 @cindex varcoda
1889
1890 Here is a chart showing all scripts available,
1891
1892 @lilypondfile[raggedright,quote]{script-chart.ly}
1893
1894
1895 The vertical ordering of scripts is controlled with the
1896 @code{script-priority} property.  The lower this number, the closer it
1897 will be put to the note.  In this example, the
1898 @internalsref{TextScript} (the sharp symbol) first has the lowest
1899 priority, so it is put lowest in the first example.  In the second, the
1900 prall trill (the @internalsref{Script}) has the lowest, so it is on the
1901 inside.  When two objects have the same priority, the order in which
1902 they are entered decides which one comes first.
1903
1904
1905 @lilypond[verbatim,relative=3,raggedright,fragment,quote]
1906 \once \override TextScript #'script-priority = #-100
1907 a4^\prall^\markup { \sharp }
1908
1909 \once \override Script #'script-priority = #-100
1910 a4^\prall^\markup { \sharp }
1911 @end lilypond
1912
1913
1914
1915
1916 @seealso
1917
1918 Program reference: @internalsref{ScriptEvent}, and @internalsref{Script}.
1919
1920 @refbugs
1921
1922 These signs appear in the printed output but have no effect on the
1923 MIDI rendering of the music.
1924
1925
1926 @node Dynamics
1927 @subsection Dynamics
1928 @cindex Dynamics
1929
1930
1931
1932 @cindex @code{\ppp}
1933 @cindex @code{\pp}
1934 @cindex @code{\p}
1935 @cindex @code{\mp}
1936 @cindex @code{\mf}
1937 @cindex @code{\f}
1938 @cindex @code{\ff}
1939 @cindex @code{\fff}
1940 @cindex @code{\ffff}
1941 @cindex @code{\fp}
1942 @cindex @code{\sf}
1943 @cindex @code{\sff}
1944 @cindex @code{\sp}
1945 @cindex @code{\spp}
1946 @cindex @code{\sfz}
1947 @cindex @code{\rfz}
1948
1949
1950 Absolute dynamic marks are specified using a command after a note
1951 @code{c4\ff}.  The available dynamic marks are @code{\ppp},
1952 @code{\pp}, @code{\p}, @code{\mp}, @code{\mf}, @code{\f}, @code{\ff},
1953 @code{\fff}, @code{\fff}, @code{\fp}, @code{\sf}, @code{\sff},
1954 @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}
1955
1956 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
1957 c\ppp c\pp c \p c\mp c\mf c\f c\ff c\fff
1958 c2\fp c\sf c\sff c\sp c\spp c\sfz c\rfz
1959 @end lilypond
1960
1961 @cindex @code{\<}
1962 @cindex @code{\>}
1963 @cindex @code{\"!}
1964
1965
1966
1967 A crescendo mark is started with @code{\<} and terminated with
1968 @code{\!} or an absolute dynamic.  A decrescendo is started with
1969 @code{\>} and is also terminated with @code{\!} or an absolute
1970 dynamic.  Because these marks are bound to notes, you must
1971 use spacer notes if multiple marks are needed during one note
1972
1973 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1974 c\< c\! d\> e\!
1975 << f1 { s4 s4\< s4\! \> s4\! } >>
1976 @end lilypond
1977 This may give rise to very short hairpins.  Use @code{minimum-length}
1978 in @internalsref{Voice}.@internalsref{Hairpin} to lengthen them, for
1979 example
1980
1981 @example
1982 \override Staff.Hairpin #'minimum-length = #5
1983 @end example
1984
1985 You can also use a text saying @emph{cresc.} instead of hairpins.  Here
1986 is an example how to do it
1987
1988 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
1989 \setTextCresc
1990 c\< d e f\!
1991 \setHairpinCresc
1992 e\> d c b\!
1993 \setTextDecresc
1994 c\> d e f\!
1995 \setTextDim
1996 e\> d c b\!
1997 @end lilypond
1998
1999 @cindex crescendo
2000 @cindex decrescendo
2001
2002 You can also supply your own texts
2003 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2004 \set crescendoText = \markup { \italic "cresc. poco" }
2005 \set crescendoSpanner = #'dashed-line
2006 a'2\< a a a\!\mf
2007 @end lilypond
2008
2009 @cindex diminuendo
2010
2011 To create new dynamic marks or text that should be aligned
2012 with dynamics, see @ref{New dynamic marks}.
2013
2014
2015 @refcommands
2016
2017 @cindex @code{\dynamicUp}
2018 @code{\dynamicUp},
2019 @cindex @code{\dynamicDown}
2020 @code{\dynamicDown},
2021 @cindex @code{\dynamicNeutral}
2022 @code{\dynamicNeutral}.
2023
2024 @cindex direction, of dynamics
2025
2026 @seealso
2027
2028 Program reference: @internalsref{CrescendoEvent},
2029 @internalsref{DecrescendoEvent}, and
2030 @internalsref{AbsoluteDynamicEvent}.
2031
2032 Dynamics are @internalsref{DynamicText} and @internalsref{Hairpin}
2033 objects.  Vertical positioning of these symbols is handled by the
2034 @internalsref{DynamicLineSpanner} object.
2035
2036 @node Breath marks
2037 @subsection Breath marks
2038
2039 Breath marks are entered using @code{\breathe}
2040
2041
2042 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2043 c'4 \breathe d4
2044 @end lilypond
2045
2046 The glyph of the breath mark can be tuned by overriding the
2047 @code{text} property of the @code{BreathingSign} layout object with
2048 any markup text.  For example,
2049 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
2050 c'4
2051 \override BreathingSign #'text
2052   = #(make-musicglyph-markup "scripts.rvarcomma")
2053 \breathe
2054 d4
2055 @end lilypond
2056
2057 @seealso
2058
2059 Program reference: @internalsref{BreathingSign},
2060 @internalsref{BreathingSignEvent}.
2061
2062 Examples: @inputfileref{input/@/regression,breathing@/-sign@/.ly}.
2063
2064
2065 @node Running trills
2066 @subsection Running trills
2067
2068 Long running trills are made with @code{\startTrillSpan} and
2069 @code{\stopTrillSpan},
2070
2071
2072 @lilypond[verbatim,raggedright,relative=2,quote,fragment]
2073 \new Voice {
2074   << { c1 \startTrillSpan }
2075      { s2. \grace { d16[\stopTrillSpan e] } } >>
2076   c4 }
2077 @end lilypond
2078
2079 @refcommands
2080
2081 @code{\startTrillSpan},
2082 @cindex @code{\startTrillSpan}
2083 @code{\stopTrillSpan}.
2084 @cindex @code{\stopTrillSpan}
2085
2086 @seealso
2087
2088 Program reference: @internalsref{TrillSpanner},
2089 @internalsref{TrillSpanEvent}.
2090
2091
2092
2093
2094 @node Glissando
2095 @subsection Glissando
2096 @cindex Glissando
2097
2098 @cindex @code{\glissando}
2099
2100 A glissando is a smooth change in pitch.  It is denoted by a line or a
2101 wavy line between two notes.  It is requested by attaching
2102 @code{\glissando} to a note
2103
2104 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
2105 c\glissando c'
2106 @end lilypond
2107
2108 @seealso
2109
2110 Program reference: @internalsref{Glissando}, and @internalsref{GlissandoEvent}.
2111
2112 Example files: @file{input/@/regression/@/glissando@/.ly}.
2113
2114
2115
2116 @refbugs
2117
2118 Printing text over the line (such as @emph{gliss.}) is not supported.
2119
2120
2121 @node Arpeggio
2122 @subsection Arpeggio
2123 @cindex Arpeggio
2124
2125 @cindex broken chord
2126 @cindex @code{\arpeggio}
2127
2128 You can specify an arpeggio sign (also known as broken chord) on a
2129 chord by attaching an @code{\arpeggio} to a chord
2130
2131
2132 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2133 <c e g c>\arpeggio
2134 @end lilypond
2135
2136 When an arpeggio crosses staves, you attach an arpeggio to the chords
2137 in both staves, and set
2138 @internalsref{PianoStaff}.@code{connectArpeggios}
2139
2140 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2141 \context PianoStaff <<
2142   \set PianoStaff.connectArpeggios = ##t
2143   \new Staff { <c' e g c>\arpeggio }
2144   \new Staff { \clef bass <c,, e g>\arpeggio }
2145 >>
2146 @end lilypond
2147
2148 The direction of the arpeggio is sometimes denoted by adding an
2149 arrowhead to the wiggly line
2150
2151 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2152 \context Voice {
2153   \arpeggioUp
2154   <c e g c>\arpeggio
2155   \arpeggioDown
2156   <c e g c>\arpeggio
2157 }
2158 @end lilypond
2159
2160 A square bracket on the left indicates that the player should not
2161 arpeggiate the chord
2162
2163 @c todo: ugh, lousy typography.  Look for real example. --hwn
2164
2165 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2166 \arpeggioBracket
2167 <c' e g c>\arpeggio
2168 @end lilypond
2169
2170 @refcommands
2171
2172 @cindex @code{\arpeggio}
2173 @code{\arpeggio},
2174 @cindex @code{\arpeggioUp}
2175 @code{\arpeggioUp},
2176 @cindex @code{\arpeggioDown}
2177 @code{\arpeggioDown},
2178 @cindex @code{\arpeggioNeutral}
2179 @code{\arpeggioNeutral},
2180 @cindex @code{\arpeggioBracket}
2181 @code{\arpeggioBracket}.
2182
2183 @seealso
2184
2185 Notation manual: @ref{Ties}, for writing out arpeggios.
2186
2187 Program reference: @internalsref{ArpeggioEvent},
2188 @internalsref{Arpeggio}.
2189
2190
2191
2192 @refbugs
2193
2194 It is not possible to mix connected arpeggios and unconnected
2195 arpeggios in one @internalsref{PianoStaff} at the same point in time.
2196
2197
2198
2199 @node Polyphony
2200 @section Polyphony
2201
2202 Polyphony in music refers to having more than one voice occuring in
2203 a piece of music.  Polyphony in LilyPond refers to having more than
2204 one voice on the same staff.
2205
2206 @menu
2207 * Basic polyphony::             
2208 * Explicitly instantiating voices::  
2209 * Collision Resolution::        
2210 @end menu
2211
2212 @node Basic polyphony
2213 @subsection Basic polyphony
2214 @cindex polyphony
2215
2216 The easiest way to enter fragments with more than one voice on a staff
2217 is to enter each voice as a sequence (with @code{@{...@}}), and combine 
2218 them simultaneously, separating the voices with @code{\\}
2219
2220 @cindex @code{\\}
2221
2222 @lilypond[quote,verbatim,fragment]
2223 \new Staff \relative c' {
2224         c16 d e f
2225         << { g4 f e | d2 e2 } \\
2226         { r8 e4 d c8 ~ | c b16 a b8 g ~ g2 } \\
2227         { s2. | s4 b4 c2 }
2228         >>
2229 }
2230 @end lilypond
2231
2232 The separator causes @internalsref{Voice} contexts@footnote{Polyphonic
2233 voices are sometimes called ``layers'' in other notation packages}
2234 @cindex layers
2235 to be instantiated.  They bear the names @code{"1"}, @code{"2"}, etc.  In
2236 each of these contexts, vertical direction of slurs, stems, etc., is set
2237 appropriately.  
2238
2239 These voices are all seperate from the voice that contains the notes just 
2240 outside the @code{<< \\ >>} construct.  This should be noted when making 
2241 changes at the voice level.  This also means that slurs and ties cannot go 
2242 into or out of a @code{<< \\ >>} construct.  
2243 Conversely, parallel voices from separate @code{<< \\ >>} constructs on the 
2244 same staff are the the same voice.  
2245 Here is the same example, with different noteheads for each voice.  
2246 Note that the change to the note-head style in the main voice does not affect
2247 the inside of the @code{<< \\ >>} constructs.  Also, the change to the second
2248 voice in the first @code{<< \\ >>} construct is effective in the second
2249 @code{<< \\ >>}, and the voice is tied accross the two constructs.
2250
2251 @lilypond[quote,verbatim,fragment]
2252 \new Staff \relative c' {
2253         \override NoteHead #'style = #'cross
2254         c16 d e f
2255         <<      
2256                 { g4 f e } \\
2257                 { \override NoteHead #'style = #'triangle
2258                         r8 e4 d c8 ~ 
2259                 }
2260         >> |
2261         <<
2262                 { d2 e2 } \\ 
2263                 { c8 b16 a b8 g ~ g2 } \\
2264                 { \override NoteHead #'style = #'slash s4 b4 c2 }
2265         >>
2266 }
2267 @end lilypond
2268
2269 @node Explicitly instantiating voices
2270 @subsection Explicitly instantiating voices
2271
2272 @internalsref{Voice} contexts can also also be instantiated manually
2273 inside a @code{<< >>} block to create polyphonic music, using 
2274 @code{\voiceOne}, up to @code{\voiceFour} to assign stem directions 
2275 and a horizontal shift for each part.
2276
2277 Specifically,
2278 @example
2279 << \upper \\ \lower >>
2280 @end example
2281
2282 @noindent
2283 is equivalent to
2284
2285 @example
2286 <<
2287   \context Voice = "1" @{ \voiceOne \upper @}
2288   \context Voice = "2" @{ \voiceTwo \lower @}
2289 >>
2290 @end example
2291
2292 @cindex @code{\voiceOne}
2293 @cindex @code{\voiceFour}
2294
2295 The @code{\voiceXXX} commands set the direction of stems, slurs, ties,
2296 articulations, text annotations, augmentation dots of dotted
2297 notes, and fingerings.  @code{\voiceOne} and @code{\voiceThree} make
2298 these objects point upwards, while @code{\voiceTwo} and @code{\voiceFour}
2299 make them point downwards.  
2300 The command @code{\oneVoice} will revert back to the normal setting.
2301 @cindex @code{\oneVoice}
2302
2303 An expression that appears directly inside a @code{<< >>} belongs to 
2304 the main voice.  This is useful when extra voices appear while the main
2305 voice is playing.  Here is a more correct rendition of the example from
2306 the previous section.  The crossed noteheads demonstrate that the main
2307 melody is now in a single voice context.
2308
2309 @lilypond[quote,raggedright,verbatim]
2310 \new Staff \relative c' {
2311         \override NoteHead #'style = #'cross
2312         c16 d e f 
2313         \voiceOne
2314         <<      
2315                 { g4 f e | d2 e2}
2316                 \context Voice="1" { \voiceTwo
2317                         r8 e4 d c8 ~ | c8 b16 a b8 g ~ g2 
2318                         \oneVoice
2319                 }
2320                 \new Voice { \voiceThree 
2321                         s2. | s4 b4 c2 
2322                         \oneVoice
2323                 }
2324         >>
2325         \oneVoice
2326 }
2327 @end lilypond
2328
2329 The correct definition of the voices allows the melody to be slurred.
2330 @lilypond[quote,raggedright,verbatim]
2331 \new Staff \relative c' {
2332         c16^( d e f 
2333         \voiceOne
2334         <<      
2335                 { g4 f e | d2 e2) }  
2336                 \context Voice="1" { \voiceTwo
2337                         r8 e4 d c8 ~ | c8 b16 a b8 g ~ g2 
2338                         \oneVoice
2339                 }
2340                 \new Voice { \voiceThree 
2341                         s2. s4 b4 c2 
2342                         \oneVoice
2343                 }
2344         >>
2345         \oneVoice
2346 }
2347 @end lilypond
2348
2349 Avoiding the @code{\\} seperator also allows nesting polyphony 
2350 constructs, which in some case might be a more natural way to typeset
2351 the music.
2352
2353 @lilypond[quote,raggedright,verbatim]
2354 \new Staff \relative c' {
2355         c16^( d e f 
2356         \voiceOne
2357         <<      
2358                 { g4 f e | d2 e2) }  
2359                 \context Voice="1" { \voiceTwo
2360                         r8 e4 d c8 ~ | 
2361                         <<
2362                                 {c8 b16 a b8 g ~ g2} 
2363                                 \new Voice { \voiceThree 
2364                                         s4 b4 c2 
2365                                         \oneVoice
2366                                 }
2367                         >>
2368                         \oneVoice
2369                 }
2370         >>
2371         \oneVoice
2372 }
2373 @end lilypond
2374
2375 @node Collision Resolution
2376 @subsection Collision Resolution
2377
2378 Normally, note heads with a different number of dots are not merged, but
2379 when the object property @code{merge-differently-dotted} is set in
2380 the @internalsref{NoteCollision} object, they are merged
2381 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
2382 \context Voice << {
2383   g8 g8
2384   \override Staff.NoteCollision
2385     #'merge-differently-dotted = ##t
2386   g8 g8
2387 } \\ { g8.[ f16] g8.[ f16] } >>
2388 @end lilypond
2389
2390 Similarly, you can merge half note heads with eighth notes, by setting
2391 @code{merge-differently-headed}
2392 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
2393 \context Voice << {
2394   c8 c4.
2395   \override Staff.NoteCollision
2396     #'merge-differently-headed = ##t
2397 c8 c4. } \\ { c2 c2 } >>
2398 @end lilypond
2399
2400 LilyPond also vertically shifts rests that are opposite of a stem,
2401 for example
2402
2403 @lilypond[quote,raggedright,fragment,verbatim]
2404 \context Voice << c''4 \\ r4 >>
2405 @end lilypond
2406
2407
2408 @refcommands
2409
2410
2411
2412 @cindex @code{\oneVoice}
2413 @code{\oneVoice},
2414 @cindex @code{\voiceOne}
2415 @code{\voiceOne},
2416 @cindex @code{\voiceTwo}
2417 @code{\voiceTwo},
2418 @cindex @code{\voiceThree}
2419 @code{\voiceThree},
2420 @cindex @code{\voiceFour}
2421 @code{\voiceFour}.
2422
2423
2424
2425 @cindex @code{\shiftOn}
2426 @code{\shiftOn},
2427 @cindex @code{\shiftOnn}
2428 @code{\shiftOnn},
2429 @cindex @code{\shiftOnnn}
2430 @code{\shiftOnnn},
2431 @cindex @code{\shiftOff}
2432 @code{\shiftOff}: these commands specify in what chords of the current
2433 voice should be shifted.  The outer voices (normally: voice one and
2434 two) have @code{\shiftOff}, while the inner voices (three and four)
2435 have @code{\shiftOn}.  @code{\shiftOnn} and @code{\shiftOnnn} define
2436 further shift levels.
2437
2438
2439 When LilyPond cannot cope, the @code{force-hshift}
2440 property of the @internalsref{NoteColumn} object and pitched rests can
2441 be used to override typesetting decisions.
2442
2443 @lilypond[quote,verbatim,raggedright]
2444 \relative <<
2445 {
2446   <d g>
2447   <d g>
2448 } \\ {
2449   <b f'>
2450   \once \override NoteColumn #'force-hshift = #1.7
2451   <b f'>
2452 } >>
2453 @end lilypond
2454
2455
2456
2457 @seealso
2458
2459 Program reference: the objects responsible for resolving collisions are
2460 @internalsref{NoteCollision} and @internalsref{RestCollision}.
2461
2462 Examples:
2463 @inputfileref{input/@/regression,collision@/-dots@/.ly},
2464 @inputfileref{input/@/regression,collision@/-head-chords@/.ly},
2465 @inputfileref{input/@/regression,collision@/-heads@/.ly},
2466 @inputfileref{input/@/regression,collision@/-mesh@/.ly}, and
2467 @inputfileref{input/@/regression,collisions@/.ly}.
2468
2469
2470 @refbugs
2471
2472
2473 When using @code{merge-differently-headed} with an upstem eighth or a
2474 shorter note, and a downstem half note, the eighth note gets the wrong
2475 offset.
2476
2477 There is no support for clusters where the same note occurs with
2478 different accidentals in the same chord.  In this case, it is
2479 recommended to use enharmonic transcription, or to use special cluster
2480 notation (see @ref{Clusters}).
2481
2482
2483
2484 @node Repeats
2485 @section Repeats
2486
2487 Repetition is a central concept in music, and multiple notations exist
2488 for repetitions.
2489
2490 @menu
2491 * Repeat types::                
2492 * Repeat syntax::               
2493 * Repeats and MIDI::            
2494 * Manual repeat commands::      
2495 * Tremolo repeats::             
2496 * Tremolo subdivisions::        
2497 * Measure repeats::             
2498 @end menu
2499
2500 @node Repeat types
2501 @subsection Repeat types
2502
2503 @cindex repeats
2504 @cindex @code{\repeat}
2505
2506 The following types of repetition are supported
2507
2508 @table @code
2509 @item unfold
2510 Repeated music is fully written (played) out.  This is useful when
2511 entering repetitious music.  This is the only kind of repeat that
2512 is included in MIDI output.
2513
2514 @item volta
2515 Repeats are not written out, but alternative endings (volte) are
2516 printed, left to right with brackets.  This is the standard notation
2517 for repeats with alternatives.  These are not played in MIDI output by default.
2518
2519 @ignore
2520 @item fold
2521 Alternative endings are written stacked.  This has limited use but may be
2522 used to typeset two lines of lyrics in songs with repeats, see
2523 @inputfileref{input,star-spangled-banner@/.ly}.
2524 @end ignore
2525
2526 @c tremolo, beamed
2527 @item tremolo
2528 Make tremolo beams.  These are not played in MIDI output by default.
2529
2530 @item percent
2531 Make beat or measure repeats.  These look like percent signs.  These
2532 are not played in MIDI output by default.  Percent repeats must be
2533 declared within a Voice context.
2534
2535 @end table
2536
2537 @node Repeat syntax
2538 @subsection Repeat syntax
2539
2540
2541 LilyPond has one syntactic construct for specifying different types of
2542 repeats.  The syntax is
2543
2544 @example
2545 \repeat @var{variant} @var{repeatcount} @var{repeatbody}
2546 @end example
2547
2548 If you have alternative endings, you may add
2549 @cindex @code{\alternative}
2550 @example
2551 \alternative @{ @var{alternative1}
2552                @var{alternative2}
2553                @var{alternative3} @dots{} @}
2554 @end example
2555 where each @var{alternative} is a music expression.  If you do not
2556 give enough alternatives for all of the repeats, the first alternative
2557 is assumed to be played more than once.
2558
2559 Standard repeats are used like this
2560 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2561 c1
2562 \repeat volta 2 { c4 d e f }
2563 \repeat volta 2 { f e d c }
2564 @end lilypond
2565
2566 With alternative endings
2567 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2568 c1
2569 \repeat volta 2 {c4 d e f}
2570 \alternative { {d2 d} {f f,} }
2571 @end lilypond
2572
2573
2574 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2575 \context Staff {
2576   \partial 4
2577   \repeat volta 4 { e | c2 d2 | e2 f2 | }
2578   \alternative { { g4 g g } { a | a a a a | b2. } }
2579 }
2580 @end lilypond
2581
2582 It is possible to shorten volta brackets
2583 by setting @code{voltaSpannerDuration}.  In the next example, the
2584 bracket only lasts one measure, which is a duration of 3/4.
2585
2586
2587
2588 @lilypond[verbatim,raggedright,quote]
2589 \relative c''{
2590   \time 3/4
2591   c c c
2592   \set Staff.voltaSpannerDuration = #(ly:make-moment 3 4)
2593   \repeat "volta" 5 { d d d }
2594   \alternative { { e e e f f f }
2595   { g g g } }
2596 }
2597 @end lilypond
2598
2599
2600 @seealso
2601
2602 Examples:
2603
2604 Brackets for the repeat are normally only printed over the topmost
2605 staff.  This can be adjusted by setting the @code{voltaOnThisStaff}
2606 property; see @inputfileref{input/@/regression,volta@/-multi@/-staff@/.ly}.
2607
2608 @c not necessary
2609 @c @inputfileref{input/@/regression,volta@/-chord@/-names@/.ly}.
2610
2611
2612 @refbugs
2613
2614 A nested repeat like
2615
2616 @example
2617 \repeat @dots{}
2618 \repeat @dots{}
2619 \alternative
2620 @end example
2621
2622 @noindent
2623 is ambiguous, since it is is not clear to which @code{\repeat} the
2624 @code{\alternative} belongs.  This ambiguity is resolved by always
2625 having the @code{\alternative} belong to the inner @code{\repeat}.
2626 For clarity, it is advisable to use braces in such situations.
2627 @cindex ambiguity
2628
2629
2630
2631 Timing information is not remembered at the start of an alternative,
2632 so after a repeat timing information must be reset by hand, for
2633 example by setting @code{Score.measurePosition} or entering
2634 @code{\partial}.  Similarly, slurs or ties are also not repeated.
2635
2636
2637
2638
2639 @node Repeats and MIDI
2640 @subsection Repeats and MIDI
2641
2642 @cindex expanding repeats
2643
2644 With a little bit of tweaking, all types of repeats can be present
2645 in the MIDI output.  This is achieved by applying the
2646 @code{\unfoldrepeats} music function.  This functions changes all
2647 repeats to unfold repeats.
2648
2649 @lilypond[quote,verbatim,fragment,linewidth=8.0\cm]
2650 \unfoldrepeats {
2651   \repeat tremolo 8 {c'32 e' }
2652   \repeat percent 2 { c''8 d'' }
2653   \repeat volta 2 {c'4 d' e' f'}
2654   \alternative {
2655     { g' a' a' g' }
2656     {f' e' d' c' }
2657   }
2658 }
2659 \bar "|."
2660 @end lilypond
2661
2662 When creating a score file using @code{\unfoldrepeats} for midi, then
2663 it is necessary to make two @code{\score} blocks.  One for MIDI (with
2664 unfolded repeats) and one for notation (with volta, tremolo, and
2665 percent repeats).  For example,
2666
2667 @example
2668 \score @{
2669   @var{..music..}
2670   \layout @{ .. @}
2671 @}
2672 \score @{
2673   \unfoldrepeats @var{..music..}
2674   \midi @{ .. @}
2675 @}
2676 @end example
2677
2678 @node Manual repeat commands
2679 @subsection Manual repeat commands
2680
2681 @cindex @code{repeatCommands}
2682
2683 The property @code{repeatCommands} can be used to control the layout of
2684 repeats.  Its value is a Scheme list of repeat commands.
2685
2686 @table @asis
2687 @item @code{start-repeat}
2688 Print a @code{|:} bar line.
2689
2690 @item @code{end-repeat}
2691 Print a @code{:|} bar line.
2692
2693 @item @code{(volta @var{text})}
2694 Print a volta bracket saying @var{text}: The text can be specified as
2695 a text string or as a markup text, see @ref{Text markup}.  Do not
2696 forget to change the font, as the default number font does not contain
2697 alphabetic characters;
2698
2699 @item @code{(volta #f)}
2700 Stop a running volta bracket.
2701 @end table
2702
2703 @lilypond[quote,raggedright,verbatim,fragment,relative=2]
2704 c4
2705   \set Score.repeatCommands = #'((volta "93") end-repeat)
2706 c4 c4
2707   \set Score.repeatCommands = #'((volta #f))
2708 c4 c4
2709 @end lilypond
2710
2711
2712
2713 @seealso
2714
2715 Program reference: @internalsref{VoltaBracket}, @internalsref{RepeatedMusic},
2716 @internalsref{VoltaRepeatedMusic},
2717 @internalsref{UnfoldedRepeatedMusic}, and
2718 @internalsref{FoldedRepeatedMusic}.
2719
2720 @node Tremolo repeats
2721 @subsection Tremolo repeats
2722 @cindex tremolo beams
2723
2724 To place tremolo marks between notes, use @code{\repeat} with tremolo
2725 style
2726 @lilypond[quote,verbatim,raggedright]
2727 \new Voice \relative c' {
2728   \repeat "tremolo" 8 { c16 d16 }
2729   \repeat "tremolo" 4 { c16 d16 }
2730   \repeat "tremolo" 2 { c16 d16 }
2731 }
2732 @end lilypond
2733
2734 Tremolo marks can also be put on a single note.  In this case, the
2735 note should not be surrounded by braces.
2736 @lilypond[quote,verbatim,raggedright]
2737 \repeat "tremolo" 4 c'16
2738 @end lilypond
2739
2740 Similar output is obtained using the tremolo subdivision, described in
2741 @ref{Tremolo subdivisions}.
2742
2743 @seealso
2744
2745 In this manual: @ref{Tremolo subdivisions}, @ref{Repeats}.
2746
2747 Program reference: tremolo beams are @internalsref{Beam} objects.  Single stem
2748 tremolos are @internalsref{StemTremolo} objects.  The music expression is
2749 @internalsref{TremoloEvent}.
2750
2751 Example files: @inputfileref{input/@/regression,chord@/-tremolo@/.ly},
2752 @inputfileref{input/@/regression,stem@/-tremolo@/.ly}.
2753
2754 @node Tremolo subdivisions
2755 @subsection Tremolo subdivisions
2756 @cindex tremolo marks
2757 @cindex @code{tremoloFlags}
2758
2759 Tremolo marks can be printed on a single note by adding
2760 `@code{:}[@var{number}]' after the note.  The number indicates the
2761 duration of the subdivision, and it must be at least 8.  A
2762 @var{length} value of 8 gives one line across the note stem.  If the
2763 length is omitted, the last value (stored in @code{tremoloFlags}) is
2764 used
2765
2766 @lilypond[quote,raggedright,verbatim,fragment]
2767 c'2:8 c':32 | c': c': |
2768 @end lilypond
2769
2770 @c [TODO: stok is te kort bij 32en]
2771 @c   somebody want to translate that into English?
2772 @c   `Stem is too short for 32nds' (wl)
2773
2774 @refbugs
2775
2776 Tremolos entered in this way do not carry over into the MIDI output.
2777
2778 @seealso
2779
2780 In this manual: @ref{Tremolo repeats}.
2781
2782 Elsewhere: @internalsref{StemTremolo}, @internalsref{TremoloEvent}.
2783
2784 @node Measure repeats
2785 @subsection Measure repeats
2786
2787 @cindex percent repeats
2788 @cindex measure repeats
2789
2790 In the @code{percent} style, a note pattern can be repeated.  It is
2791 printed once, and then the pattern is replaced with a special sign.
2792 Patterns of one and two measures are replaced by percent-like signs,
2793 patterns that divide the measure length are replaced by slashes.
2794 Percent repeats must be declared within a @code{Voice} context.
2795
2796 @lilypond[quote,verbatim,raggedright]
2797 \new Voice \relative c' {
2798   \repeat "percent" 4 { c4 }
2799   \repeat "percent" 2 { c2 es2 f4 fis4 g4 c4 }
2800 }
2801 @end lilypond
2802
2803 @seealso
2804
2805 Program reference: @internalsref{RepeatSlash}, @internalsref{PercentRepeat},
2806 @internalsref{PercentRepeatedMusic}, and
2807 @internalsref{DoublePercentRepeat}.
2808
2809
2810