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