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