]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/basic-notation.itely
First round of doc reorg.
[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}, @internalsref{KeySignature}.
1133
1134
1135 @node Time signature
1136 @subsection Time signature
1137
1138 @cindex Time signature
1139 @cindex meter
1140 @cindex @code{\time}
1141
1142 Time signature indicates the metrum of a piece: a regular pattern of
1143 strong and weak beats.  It is denoted by a fraction at the start of the
1144 staff.
1145
1146 The time signature is set with the @code{\time} command
1147
1148 @lilypond[quote,ragged-right,fragment,verbatim]
1149 \time 2/4 c'2 \time 3/4 c'2.
1150 @end lilypond
1151
1152 @commonprop
1153
1154 The symbol that is printed can be customized with the @code{style}
1155 property.  Setting it to @code{#'()} uses fraction style for 4/4 and
1156 2/2 time,
1157
1158 @lilypond[fragment,quote,ragged-right,verbatim]
1159 \time 4/4 c'1
1160 \time 2/2 c'1
1161 \override Staff.TimeSignature #'style = #'()
1162 \time 4/4 c'1
1163 \time 2/2 c'1
1164 @end lilypond
1165
1166 There are many more options for its layout.  See @ref{Ancient time
1167 signatures} for more examples.
1168
1169 @code{\time} sets the property @code{timeSignatureFraction},
1170 @code{beatLength} and @code{measureLength} in the @code{Timing}
1171 context, which is normally aliased to @internalsref{Score}.  The
1172 property @code{measureLength} determines where bar lines should be
1173 inserted, and how automatic beams should be generated.  Changing the
1174 value of @code{timeSignatureFraction} also causes the symbol to be
1175 printed.
1176
1177 More options are available through the Scheme function
1178 @code{set-time-signature}.  In combination with the
1179 @internalsref{Measure_grouping_engraver}, it will create
1180 @internalsref{MeasureGrouping} signs.  Such signs ease reading
1181 rhythmically complex modern music.  In the following example, the 9/8
1182 measure is subdivided in 2, 2, 2 and 3.  This is passed to
1183 @code{set-time-signature} as the third argument @code{(2 2 2 3)}
1184
1185 @lilypond[quote,ragged-right,verbatim]
1186 \score {
1187   \relative c'' {
1188     #(set-time-signature 9 8 '(2 2 2 3))
1189     g8[ g] d[ d] g[ g] a8[( bes g]) |
1190     #(set-time-signature 5 8 '(3 2))
1191     a4. g4
1192   }
1193   \layout {
1194     \context {
1195       \Staff
1196       \consists "Measure_grouping_engraver"
1197     }
1198   }
1199 }
1200 @end lilypond
1201
1202
1203 @seealso
1204
1205 Program reference: @internalsref{TimeSignature}, and @internalsref{Timing_translator}.
1206
1207 Examples: @inputfileref{input/@/test,compound@/-time@/.ly}.
1208
1209
1210 @refbugs
1211
1212 Automatic beaming does not use the measure grouping specified with
1213 @code{set-time-signature}.
1214
1215
1216 @node Partial measures
1217 @subsection Partial measures
1218
1219 @cindex anacrusis
1220 @cindex upbeat
1221 @cindex partial measure
1222 @cindex measure, partial
1223 @cindex shorten measures
1224 @cindex @code{\partial}
1225
1226 Partial measures, such as an anacrusis or upbeat, are entered using the
1227
1228 @lilypond[quote,ragged-right,fragment,verbatim,relative=2]
1229 \partial 16*5 c16 cis d dis e | a2. c,4 | b2
1230 @end lilypond
1231
1232 The syntax for this command is
1233
1234 @example
1235 \partial @var{duration}
1236 @end example
1237
1238 This is internally translated into
1239
1240 @example
1241 \set Timing.measurePosition = -@var{length of duration}
1242 @end example
1243
1244 The property @code{measurePosition} contains a rational number
1245 indicating how much of the measure has passed at this point.
1246
1247
1248 @refbugs
1249
1250 This command does not take into account grace notes at the start of
1251 the music.  When a piece starts with graces notes in the pickup, then
1252 the @code{\partial} should follow the grace notes
1253
1254 @lilypond[verbatim,quote,ragged-right,relative,fragment]
1255 \grace f16
1256 \partial 4
1257 g4
1258 a2 g2
1259 @end lilypond
1260
1261
1262 @node Bar lines
1263 @subsection Bar lines
1264
1265 @cindex Bar lines
1266 @cindex @code{\bar}
1267 @cindex measure lines
1268 @cindex repeat bars
1269
1270 Bar lines delimit measures, but are also used to indicate
1271 repeats.  Normally they are inserted automatically.  Line
1272 breaks may only happen on bar lines.
1273
1274 Special types of bar lines can be forced with the @code{\bar} command
1275
1276 @lilypond[quote,ragged-right,relative=2,fragment,verbatim]
1277 c4 \bar "|:" c4
1278 @end lilypond
1279
1280 The following bar types are available
1281
1282 @lilypondfile[ragged-right,quote]{bar-lines.ly}
1283
1284 To allow a line break where there is no visible bar line, use
1285
1286 @example
1287 \bar ""
1288 @end example
1289
1290 @noindent
1291 This will insert an invisible bar line and allow line breaks at this
1292 point.
1293
1294 In scores with many staves, a @code{\bar} command in one staff is
1295 automatically applied to all staves.  The resulting bar lines are
1296 connected between different staves of a StaffGroup
1297
1298 @lilypond[quote,ragged-right,fragment,verbatim]
1299 <<
1300   \new StaffGroup <<
1301     \new Staff {
1302       e'4 d'
1303       \bar "||"
1304       f' e'
1305     }
1306     \new Staff { \clef bass c4 g e g }
1307   >>
1308   \new Staff { \clef bass c2 c2 }
1309 >>
1310 @end lilypond
1311
1312
1313 @commonprop
1314
1315 @cindex @code{whichBar}
1316 @cindex @code{repeatCommands}
1317 @cindex @code{defaultBarType}
1318
1319 The command @code{\bar }@var{bartype} is a short cut for doing
1320 @code{\set Timing.whichBar = }@var{bartype}.  Whenever @code{whichBar}
1321 is set to a string, a bar line of that type is created.
1322
1323 A bar line is created whenever the @code{whichBar} property is set.
1324 At the start of a measure it is set to the contents of
1325 @code{Timing.defaultBarType}.  The contents of @code{repeatCommands} are used
1326 to override default measure bars.
1327
1328 You are encouraged to use @code{\repeat} for repetitions.  See
1329 @ref{Repeats}.
1330
1331
1332 @seealso
1333
1334 In this manual: @ref{Repeats}, @ref{System start delimiters}.
1335
1336 Program reference: @internalsref{BarLine} (created at
1337 @internalsref{Staff} level), @internalsref{SpanBar} (across staves).
1338
1339 Examples: @inputfileref{input/@/test,bar@/-lines@/.ly},
1340
1341
1342 @node Unmetered music
1343 @subsection Unmetered music
1344
1345 @cindex cadenza
1346 @cindex @code{\cadenzaOn}
1347 @cindex @code{\cadenzaOff}
1348
1349 Bar lines and bar numbers are calculated automatically.  For unmetered
1350 music (cadenzas, for example), this is not desirable.  To turn off
1351 automatic bar lines and bar numbers, use the commands @code{\cadenzaOn}
1352 and @code{\cadenzaOff}.
1353
1354 @lilypond[verbatim,quote,ragged-right,relative=2,fragment]
1355 c4 d e d
1356 \cadenzaOn
1357 c4 c d8 d d f4 g4.
1358 \cadenzaOff
1359 \bar "|"
1360 d4 e d c
1361 @end lilypond
1362
1363
1364 @refbugs
1365
1366 LilyPond will only insert page breaks at a barline.  Unless the unmetered
1367 music ends before the end of the staff line, you will need to insert
1368 invisible bar lines
1369
1370 @example
1371 \bar ""
1372 @end example
1373
1374 @noindent
1375 to indicate where line breaks can occur.
1376
1377
1378 @node System start delimiters
1379 @subsection System start delimiters
1380
1381 @cindex start of system
1382 @cindex Staff, multiple
1383 @cindex bracket, vertical
1384 @cindex brace, vertical
1385 @cindex grand staff
1386 @cindex staff group
1387 @cindex staff, choir
1388
1389 Many scores consist of more than one staff.  These staves can be
1390 joined in four different ways
1391
1392 @itemize @bullet
1393 @item The group is started with a brace at the left, and bar lines are
1394 connected.  This is done with the @internalsref{GrandStaff} context.
1395
1396 @lilypond[verbatim,ragged-right,quote]
1397 \new GrandStaff
1398 \relative <<
1399   \new Staff { c1 c }
1400   \new Staff { c c }
1401 >>
1402 @end lilypond
1403
1404 @item The group is started with a bracket, and bar lines are connected.
1405 This is done with the
1406 @internalsref{StaffGroup} context
1407
1408 @lilypond[verbatim,ragged-right,quote]
1409 \new StaffGroup
1410 \relative <<
1411   \new Staff { c1 c }
1412   \new Staff { c c }
1413 >>
1414 @end lilypond
1415
1416 @item The group is started with a bracket, but bar lines are not
1417 connected.  This is done with the @internalsref{ChoirStaff} context.
1418
1419 @lilypond[verbatim,ragged-right,quote]
1420 \new ChoirStaff
1421 \relative <<
1422   \new Staff { c1 c }
1423   \new Staff { c c }
1424 >>
1425 @end lilypond
1426
1427 @item The group is started with a vertical line.  Bar lines are not
1428 connected.  This is the default for the score.
1429
1430 @lilypond[verbatim,ragged-right,quote]
1431 \relative <<
1432   \new Staff { c1 c }
1433   \new Staff { c c }
1434 >>
1435 @end lilypond
1436 @end itemize
1437
1438
1439 @seealso
1440
1441 The bar lines at the start of each system are
1442 @internalsref{SystemStartBar}, @internalsref{SystemStartBrace}, and
1443 @internalsref{SystemStartBracket}.  Only one of these types is created
1444 in every context, and that type is determined by the property
1445 @code{systemStartDelimiter}.
1446
1447
1448 @node Staff symbol
1449 @subsection Staff symbol
1450
1451 @cindex adjusting staff symbol
1452
1453 Notes, dynamic signs, etc., are grouped
1454 with a set of horizontal lines, called a staff (plural `staves').  In
1455 LilyPond, these lines are drawn using a separate layout object called
1456 staff symbol.
1457
1458 The staff symbol may be tuned in the number, thickness and distance
1459 of lines, using properties.  This is demonstrated in the example files
1460 @inputfileref{input/@/test,staff@/-lines@/.ly},
1461 @inputfileref{input/@/test,staff@/-size@/.ly}.
1462
1463 In addition, staves may be started and stopped at will. This is done
1464 with @code{\startStaff} and @code{\stopStaff}.
1465
1466 @lilypond[verbatim,relative=2,fragment]
1467 b4 b
1468 \override Staff.StaffSymbol #'line-count = 2
1469 \stopStaff \startStaff
1470 b b
1471 \revert Staff.StaffSymbol #'line-count
1472 \stopStaff \startStaff
1473 b b  
1474 @end lilypond
1475
1476 In combination with Frenched staves, this may be used to typeset ossia
1477 sections. An example is in @inputfileref{input/@/test@/,ossia.ly},
1478 shown here
1479
1480 @cindex ossia
1481
1482 @lilypondfile{ossia.ly}
1483
1484 @cindex staff lines, setting number of
1485 @cindex staff lines, setting thickness of
1486 @cindex thickness of staff lines, setting
1487 @cindex number of staff lines, setting
1488
1489 @seealso
1490
1491 Program reference: @internalsref{StaffSymbol}.
1492
1493 Examples: @inputfileref{input/@/test,staff@/-lines@/.ly},
1494 @inputfileref{input/@/test@/,ossia.ly},
1495 @inputfileref{input/@/test,staff@/-size@/.ly},
1496 @inputfileref{input/@/regression,staff@/-line@/-positions@/.ly}.
1497
1498
1499
1500 @node Connecting notes
1501 @section Connecting notes
1502
1503 This section deals with notation that affects groups of notes.
1504
1505 @menu
1506 * Ties::                        
1507 * Slurs::                       
1508 * Phrasing slurs::              
1509 * Laissez vibrer ties::         
1510 * Automatic beams::             
1511 * Manual beams::                
1512 * Grace notes::                 
1513 @end menu
1514
1515
1516 @node Ties
1517 @subsection Ties
1518
1519 @cindex tie
1520 @cindex @code{~}
1521
1522 A tie connects two adjacent note heads of the same pitch.  The tie in
1523 effect extends the length of a note.  Ties should not be confused with
1524 slurs, which indicate articulation, or phrasing slurs, which indicate
1525 musical phrasing.  A tie is entered using the tilde symbol `@code{~}'
1526
1527 @lilypond[quote,ragged-right,fragment,verbatim]
1528 e' ~ e' <c' e' g'> ~ <c' e' g'>
1529 @end lilypond
1530
1531 When a tie is applied to a chord, all note heads whose pitches match
1532 are connected.  When no note heads match, no ties will be created.
1533
1534 A tie is just a way of extending a note duration, similar to the
1535 augmentation dot.  The following example shows two ways of notating
1536 exactly the same concept
1537
1538 @lilypond[quote,fragment,ragged-right]
1539 \time 3/4 c'2. c'2 ~ c'4
1540 @end lilypond
1541
1542 @noindent
1543 Ties are used either when the note crosses a bar line, or when dots
1544 cannot be used to denote the rhythm.  When using ties, larger note
1545 values should be aligned to subdivisions of the measure, such as
1546
1547 @lilypond[fragment,quote,ragged-right]
1548 \relative {
1549   r8 c8 ~ c2 r4 | r8^"not" c2 ~ c8 r4
1550 }
1551 @end lilypond
1552
1553 If you need to tie a lot of notes over bars, it may be easier to use
1554 automatic note splitting (see @ref{Automatic note splitting}).  This
1555 mechanism automatically splits long notes, and ties them across bar
1556 lines.
1557
1558 When a second alternative of a repeat starts with a tied note, you
1559 have to repeat the tie. This can be achieved with @code{\repeatTie},
1560
1561 @lilypond[fragment,quote,ragged-right,relative=2]
1562 r <c e g>\repeatTie
1563 @end lilypond
1564
1565 @cindex repeating ties
1566 @cindex volta brackets and ties
1567
1568 @commonprop
1569
1570 Ties are sometimes used to write out arpeggios.  In this case, two tied
1571 notes need not be consecutive.  This can be achieved by setting the
1572 @code{tieWaitForNote} property to true. The same feature is also useful,
1573 for example, to tie a tremolo to a chord. For example,
1574
1575 @lilypond[fragment,verbatim,relative=1,ragged-right]
1576 \set tieWaitForNote = ##t
1577 \grace { c16[~ e~ g]~ } <c, e g>2   
1578 \repeat "tremolo" 8 { c32~ c'~ } <c c,>1
1579 @end lilypond
1580
1581
1582 @refcommands
1583
1584
1585 @cindex @code{\tieUp}
1586 @code{\tieUp},
1587 @cindex @code{\tieDown}
1588 @code{\tieDown},
1589 @cindex @code{\tieNeutral}
1590 @code{\tieNeutral},
1591 @cindex @code{\tieDotted}
1592 @code{\tieDotted},
1593 @cindex @code{\tieDashed}
1594 @code{\tieDashed},
1595 @cindex @code{\tieSolid}
1596 @code{\tieSolid}.
1597
1598
1599 @seealso
1600
1601 In this manual: @ref{Automatic note splitting}.
1602
1603 Program reference: @internalsref{Tie}.
1604
1605 Examples:
1606 @inputfileref{input/@/regression,tie-arpeggio.ly}
1607 @inputfileref{input/@/regression,tie-manual.ly}
1608
1609
1610
1611
1612 @refbugs
1613
1614 Switching staves when a tie is active will not produce a slanted tie.
1615
1616
1617 @node Slurs
1618 @subsection Slurs
1619
1620 @cindex Slurs
1621
1622 A slur indicates that notes are to be played bound or
1623 @emph{legato}.  They are entered using parentheses
1624
1625 @lilypond[quote,ragged-right,relative=2,fragment,verbatim]
1626 f( g a) a8 b( a4 g2 f4)
1627 <c e>2( <b d>2)
1628 @end lilypond
1629
1630 The direction of a slur can be specified with
1631 @code{\slur@emph{DIR}}, where @code{@emph{DIR}} is
1632 either @code{Up}, @code{Down}, or @code{Neutral} (automatically
1633 selected).
1634
1635 However, there is a convenient shorthand for forcing slur
1636 directions.  By adding @code{_} or @code{^} before the opening
1637 parentheses, the direction is also set.  For example,
1638
1639 @lilypond[relative=2,ragged-right,quote,verbatim,fragment]
1640 c4_( c) c^( c)
1641 @end lilypond
1642
1643 Only one slur can be printed at once.  If you need to print a long
1644 slur over a few small slurs, please see @ref{Phrasing slurs}.
1645
1646
1647 @commonprop
1648
1649 Some composers write two slurs when they want legato chords.  This can
1650 be achieved in LilyPond by setting @code{doubleSlurs},
1651
1652 @lilypond[verbatim,ragged-right,relative,fragment,quote]
1653 \set doubleSlurs = ##t
1654 <c e>4 ( <d f> <c e> <d f> )
1655 @end lilypond
1656
1657
1658 @refcommands
1659
1660 @cindex @code{\slurUp}
1661 @code{\slurUp},
1662 @cindex @code{\slurDown}
1663 @code{\slurDown},
1664 @cindex @code{\slurNeutral}
1665 @code{\slurNeutral},
1666 @cindex @code{\slurDashed}
1667 @code{\slurDashed},
1668 @cindex @code{\slurDotted}
1669 @code{\slurDotted},
1670 @cindex @code{\slurSolid}
1671 @code{\slurSolid}.
1672
1673 @seealso
1674
1675 Program reference: @seeinternals{Slur}.
1676
1677
1678 @node Phrasing slurs
1679 @subsection Phrasing slurs
1680
1681 @cindex phrasing slurs
1682 @cindex phrasing marks
1683
1684 A phrasing slur (or phrasing mark) connects notes and is used to
1685 indicate a musical sentence.  It is written using @code{\(} and @code{\)}
1686 respectively
1687
1688 @lilypond[quote,ragged-right,fragment,verbatim,relative=1]
1689 \time 6/4 c'\( d( e) f( e) d\)
1690 @end lilypond
1691
1692 Typographically, the phrasing slur behaves almost exactly like a
1693 normal slur.  However, they are treated as different objects.  A
1694 @code{\slurUp} will have no effect on a phrasing slur; instead, use
1695 @code{\phrasingSlurUp}, @code{\phrasingSlurDown}, and
1696 @code{\phrasingSlurNeutral}.
1697
1698 You cannot have simultaneous phrasing slurs.
1699
1700
1701 @refcommands
1702
1703 @cindex @code{\phrasingSlurUp}
1704 @code{\phrasingSlurUp},
1705 @cindex @code{\phrasingSlurDown}
1706 @code{\phrasingSlurDown},
1707 @cindex @code{\phrasingSlurNeutral}
1708 @code{\phrasingSlurNeutral}.
1709
1710
1711 @seealso
1712
1713 Program reference: @internalsref{PhrasingSlur}.
1714
1715
1716 @node Laissez vibrer ties
1717 @subsection Laissez vibrer ties
1718 @cindex Laissez vibrer
1719 @cindex Ties, laissez vibrer
1720
1721 L.v. ties (laissez vibrer) indicate that notes must not be damped at the
1722 end. It is used in notation for piano, harp and other string and
1723 percussion instruments. They can be entered using @code{\laissezVibrer},
1724
1725 @lilypond[fragment,ragged-right,verbatim,relative=1]
1726 <c f g>\laissezVibrer 
1727 @end lilypond
1728
1729 @seealso
1730
1731 Program reference: 
1732 @internalsref{LaissezVibrerTie}
1733 @internalsref{LaissezVibrerTieColumn}
1734
1735 Example files:
1736 @inputfileref{input/regression,laissez-vibrer-tie.ly}
1737
1738
1739 @node Automatic beams
1740 @subsection Automatic beams
1741
1742 LilyPond inserts beams automatically
1743
1744 @lilypond[quote,ragged-right,fragment,verbatim,relative=2]
1745 \time 2/4 c8 c c c \time 6/8 c c c c8. c16 c8
1746 @end lilypond
1747
1748 When these automatic decisions are not good enough, beaming can be
1749 entered explicitly.  It is also possible to define beaming patterns
1750 that differ from the defaults.  See @ref{Setting automatic beam behavior}
1751 for details.
1752
1753 Individual notes may be marked with @code{\noBeam} to prevent them
1754 from being beamed
1755
1756 @lilypond[quote,ragged-right,fragment,verbatim,relative=2]
1757 \time 2/4 c8 c\noBeam c c
1758 @end lilypond
1759
1760
1761 @seealso
1762
1763 Program reference: @internalsref{Beam}.
1764
1765
1766 @node Manual beams
1767 @subsection Manual beams
1768
1769 @cindex beams, manual
1770 @cindex @code{]}
1771 @cindex @code{[}
1772
1773 In some cases it may be necessary to override the automatic beaming
1774 algorithm.  For example, the autobeamer will not put beams over rests
1775 or bar lines.  Such beams are specified manually by marking the begin
1776 and end point with @code{[} and @code{]}
1777
1778 @lilypond[quote,ragged-right,fragment,relative=1,verbatim]
1779 {
1780   r4 r8[ g' a r8] r8 g[ | a] r8
1781 }
1782 @end lilypond
1783
1784
1785 @commonprop
1786
1787 @cindex @code{stemLeftBeamCount}
1788 @cindex @code{stemRightBeamCount}
1789
1790 Normally, beaming patterns within a beam are determined automatically.
1791 If necessary, the properties @code{stemLeftBeamCount} and
1792 @code{stemRightBeamCount} can be used to override the defaults.  If
1793 either property is set, its value will be used only once, and then it
1794 is erased
1795
1796 @lilypond[quote,ragged-right,fragment,relative=1,verbatim]
1797 {
1798    f8[ r16
1799       f g a]
1800    f8[ r16
1801    \set stemLeftBeamCount = #1
1802       f g a]
1803 }
1804 @end lilypond
1805
1806 The property @code{subdivideBeams} can be set in order to subdivide
1807 all 16th or shorter beams at beat positions, as defined by the
1808 @code{beatLength} property.
1809
1810 @lilypond[fragment,quote,relative=2,verbatim]
1811 c16[ c c c c c c c]
1812 \set subdivideBeams = ##t
1813 c16[ c c c c c c c]
1814 \set Score.beatLength = #(ly:make-moment 1 8)
1815 c16[ c c c c c c c]
1816 @end lilypond
1817 @cindex @code{subdivideBeams}
1818
1819 @noindent
1820 For more information about @code{make-moment}, see
1821 @ref{Time administration}.
1822
1823 Line breaks are normally forbidden when beams cross bar lines.  This
1824 behavior can be changed by setting @code{allowBeamBreak}.
1825
1826 @cindex @code{allowBeamBreak}
1827 @cindex beams and line breaks
1828 @cindex beams, kneed
1829 @cindex kneed beams
1830 @cindex auto-knee-gap
1831
1832
1833 @refbugs
1834
1835 Kneed beams are inserted automatically when a large gap is detected
1836 between the note heads.  This behavior can be tuned through the object.
1837
1838 Automatically kneed cross-staff beams cannot be used together with
1839 hidden staves.  See @ref{Hiding staves}.
1840
1841 Beams do not avoid collisions with symbols around the notes, such as
1842 texts and accidentals.
1843
1844
1845 @node Grace notes
1846 @subsection Grace notes
1847
1848 @cindex @code{\grace}
1849 @cindex ornaments
1850 @cindex grace notes
1851 @cindex appoggiatura
1852 @cindex acciaccatura
1853
1854 Grace notes are ornaments that are written out.  The most common ones
1855 are acciaccatura, which should be played as very short.  It is denoted
1856 by a slurred small note with a slashed stem.  The appoggiatura is a
1857 grace note that takes a fixed fraction of the main note, and is
1858 denoted as a slurred note in small print without a slash.  They
1859 are entered with the commands @code{\acciaccatura} and
1860 @code{\appoggiatura}, as demonstrated in the following example
1861
1862 @lilypond[quote,ragged-right,relative=2,verbatim,fragment]
1863 b4 \acciaccatura d8 c4 \appoggiatura e8 d4
1864 \acciaccatura { g16[ f] } e4
1865 @end lilypond
1866
1867 Both are special forms of the @code{\grace} command.  By prefixing this
1868 keyword to a music expression, a new one is formed, which will be
1869 printed in a smaller font and takes up no logical time in a measure.
1870
1871 @lilypond[quote,ragged-right,relative=2,verbatim,fragment]
1872 c4 \grace c16 c4
1873 \grace { c16[ d16] } c2 c4
1874 @end lilypond
1875
1876 @noindent
1877 Unlike @code{\acciaccatura} and @code{\appoggiatura}, the
1878 @code{\grace} command does not start a slur.
1879
1880 Internally, timing for grace notes is done using a second, `grace'
1881 timing.  Every point in time consists of two rational numbers: one
1882 denotes the logical time, one denotes the grace timing.  The above
1883 example is shown here with timing tuples
1884
1885 @lilypond[quote,ragged-right]
1886 <<
1887   \relative c''{
1888     c4 \grace c16 c4 \grace {
1889     c16[ d16] } c2 c4
1890   }
1891   \new Lyrics \lyricmode {
1892     \override LyricText #'font-family = #'typewriter
1893
1894     \markup { (0,0) } 4
1895     \grace { \markup {
1896       ( \fraction 1 4 , \fraction -1 16 ) } 16 }
1897     \markup { (\fraction 1 4 , 0 ) } 4
1898     \grace {
1899       \markup { (\fraction 2 4 , \fraction "-1" 8 ) } 16
1900       \markup { (\fraction 2 4 , \fraction "-1" 16 ) } 16
1901     }
1902     \markup { ( \fraction 2 4 , 0 ) }
1903   }
1904 >>
1905 @end lilypond
1906
1907 The placement of grace notes is synchronized between different staves.
1908 In the following example, there are two sixteenth grace notes for
1909 every eighth grace note
1910
1911 @lilypond[quote,ragged-right,relative=2,verbatim,fragment]
1912 << \new Staff { e4 \grace { c16[ d e f] } e4 }
1913    \new Staff { c4 \grace { g8[ b] } c4 } >>
1914 @end lilypond
1915
1916 @cindex @code{\afterGrace}
1917
1918 If you want to end a note with a grace, use the @code{\afterGrace}
1919 command.  It takes two arguments: the main note, and the grace notes
1920 following the main note. 
1921
1922 @lilypond[ragged-right, verbatim,relative=2,fragment]
1923 c1 \afterGrace d1 { c16[ d] } c4   
1924 @end lilypond
1925
1926 This will put the grace notes after a ``space'' lasting 3/4 of the
1927 length of the main note.  The fraction 3/4 can be changed by setting
1928 @code{afterGraceFraction}, ie.
1929
1930 @example
1931 afterGraceFraction = #(cons 7 8) 
1932 @end example
1933
1934 @noindent
1935 will put the grace note at 7/8 of the main note. 
1936
1937 The same effect can be achieved manually by doing
1938
1939 @lilypond[quote,ragged-right,fragment,verbatim,relative=2]
1940 \new Voice {
1941   << { d1^\trill_( }
1942      { s2 \grace { c16[ d] } } >>
1943   c4)
1944 }
1945 @end lilypond
1946
1947 @noindent
1948 By adjusting the duration of the skip note (here it is a half-note),
1949 the space between the main-note and the grace is adjusted.
1950
1951 A @code{\grace} section will introduce special typesetting settings,
1952 for example, to produce smaller type, and set directions.  Hence, when
1953 introducing layout tweaks, they should be inside the grace section,
1954 for example,
1955 @lilypond[quote,ragged-right,fragment,verbatim,relative=2]
1956 \new Voice {
1957   \acciaccatura {
1958     \stemDown
1959     f16->
1960     \stemNeutral
1961   }
1962   g4
1963 }
1964 @end lilypond
1965
1966 @noindent
1967 The overrides should also be reverted inside the grace section.
1968
1969 The layout of grace sections can be changed throughout the music using
1970 the function @code{add-grace-property}.  The following example
1971 undefines the Stem direction for this grace, so stems do not always
1972 point up.
1973
1974 @example
1975 \new Staff @{
1976   #(add-grace-property 'Voice 'Stem 'direction '())
1977   @dots{}
1978 @}
1979 @end example
1980
1981 @noindent
1982 Another option is to change the variables @code{startGraceMusic},
1983 @code{stopGraceMusic}, @code{startAcciaccaturaMusic},
1984 @code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic},
1985 @code{stopAppoggiaturaMusic}.  More information is in the file
1986 @file{ly/@/grace@/-init@/.ly}.
1987
1988 @noindent
1989 The slash through the stem in acciaccaturas can be obtained
1990 in other situations by @code{\override Stem  #'stroke-style = #"grace"}.
1991
1992 @seealso
1993
1994 Program reference: @internalsref{GraceMusic}.
1995
1996
1997 @refbugs
1998
1999 A score that starts with a @code{\grace} section needs an explicit
2000 @code{\new Voice} declaration, otherwise the main note and the grace
2001 note end up on different staves.
2002
2003 Grace note synchronization can also lead to surprises.  Staff notation,
2004 such as key signatures, bar lines, etc., are also synchronized.  Take
2005 care when you mix staves with grace notes and staves without, for example,
2006
2007 @lilypond[quote,ragged-right,relative=2,verbatim,fragment]
2008 << \new Staff { e4 \bar "|:" \grace c16 d4 }
2009    \new Staff { c4 \bar "|:" d4 } >>
2010 @end lilypond
2011
2012 @noindent
2013 This can be remedied by inserting grace skips of the corresponding
2014 durations in the other staves. For the above example
2015
2016 @example
2017 \new Staff @{ c4 \bar "|:" \grace s16 d4 @}
2018 @end example
2019
2020 Grace sections should only be used within sequential music
2021 expressions.  Nesting or juxtaposing grace sections is not supported,
2022 and might produce crashes or other errors.
2023
2024
2025
2026 @node Expressive marks
2027 @section Expressive marks
2028
2029 Expressive marks help musicians to bring more to the music than simple
2030 notes and rhythms.
2031
2032 @menu
2033 * Articulations::               
2034 * Fingering instructions::      
2035 * Dynamics::                    
2036 * Breath marks::                
2037 * Trills::                      
2038 * Glissando::                   
2039 * Arpeggio::                    
2040 @end menu
2041
2042
2043 @node Articulations
2044 @subsection Articulations
2045
2046 @cindex Articulations
2047 @cindex scripts
2048 @cindex ornaments
2049
2050 A variety of symbols can appear above and below notes to indicate
2051 different characteristics of the performance.  They are added to a note
2052 by adding a dash and the character signifying the
2053 articulation.  They are demonstrated here
2054
2055 @lilypondfile[quote,ragged-right]{script-abbreviations.ly}
2056
2057 The meanings of these shorthands can be changed.  See
2058 @file{ly/@/script@/-init@/.ly} for examples.
2059
2060 The script is automatically placed, but the direction can be forced as
2061 well.  Like other pieces of LilyPond code, @code{_} will place them
2062 below the staff, and @code{^} will place them above.
2063
2064 @lilypond[quote,ragged-right,fragment,verbatim]
2065 c''4^^ c''4_^
2066 @end lilypond
2067
2068 Other symbols can be added using the syntax
2069 @var{note}@code{\}@var{name}.  Again, they
2070 can be forced up or down using @code{^} and @code{_},
2071 e.g.,
2072
2073 @lilypond[quote,ragged-right,verbatim,fragment,relative=2]
2074 c\fermata c^\fermata c_\fermata
2075 @end lilypond
2076
2077 @cindex accent
2078 @cindex marcato
2079 @cindex staccatissimo
2080 @cindex espressivo
2081 @cindex fermata
2082 @cindex stopped
2083 @cindex staccato
2084 @cindex portato
2085 @cindex tenuto
2086 @cindex upbow
2087 @cindex downbow
2088 @cindex foot marks
2089 @cindex organ pedal marks
2090 @cindex turn
2091 @cindex open
2092 @cindex flageolet
2093 @cindex reverseturn
2094 @cindex trill
2095 @cindex prall
2096 @cindex mordent
2097 @cindex prallprall
2098 @cindex prallmordent
2099 @cindex prall, up
2100 @cindex prall, down
2101 @cindex mordent
2102 @cindex thumb marking
2103 @cindex segno
2104 @cindex coda
2105 @cindex varcoda
2106
2107 Here is a chart showing all scripts available,
2108
2109 @lilypondfile[ragged-right,quote]{script-chart.ly}
2110
2111
2112 @commonprop
2113
2114 The vertical ordering of scripts is controlled with the
2115 @code{script-priority} property.  The lower this number, the closer it
2116 will be put to the note.  In this example, the
2117 @internalsref{TextScript} (the sharp symbol) first has the lowest
2118 priority, so it is put lowest in the first example.  In the second, the
2119 prall trill (the @internalsref{Script}) has the lowest, so it is on the
2120 inside.  When two objects have the same priority, the order in which
2121 they are entered decides which one comes first.
2122
2123 @lilypond[verbatim,relative=3,ragged-right,fragment,quote]
2124 \once \override TextScript #'script-priority = #-100
2125 a4^\prall^\markup { \sharp }
2126
2127 \once \override Script #'script-priority = #-100
2128 a4^\prall^\markup { \sharp }
2129 @end lilypond
2130
2131
2132 @seealso
2133
2134 Program reference: @internalsref{Script}.
2135
2136
2137 @refbugs
2138
2139 These signs appear in the printed output but have no effect on the
2140 MIDI rendering of the music.
2141
2142
2143 @node Fingering instructions
2144 @subsection Fingering instructions
2145
2146 @cindex fingering
2147 @cindex finger change
2148
2149 Fingering instructions can be entered using
2150 @example
2151 @var{note}-@var{digit}
2152 @end example
2153 For finger changes, use markup texts
2154
2155 @lilypond[quote,verbatim,ragged-right,fragment,relative=1]
2156 c4-1 c-2 c-3 c-4
2157 c^\markup { \finger "2 - 3" }
2158 @end lilypond
2159
2160 You can use the thumb-script to indicate that a note should be
2161 played with the thumb (e.g., in cello music)
2162 @lilypond[quote,verbatim,ragged-right,fragment,relative=2]
2163 <a_\thumb a'-3>8 <b_\thumb b'-3>
2164 @end lilypond
2165
2166 Fingerings for chords can also be added to individual notes
2167 of the chord by adding them after the pitches
2168 @lilypond[quote,verbatim,ragged-right,fragment,relative=2]
2169 < c-1 e-2 g-3 b-5 >4
2170 @end lilypond
2171
2172
2173 @commonprop
2174
2175 You may exercise greater control over fingering chords by
2176 setting @code{fingeringOrientations}
2177
2178 @lilypond[quote,verbatim,ragged-right,fragment,relative=1]
2179 \set fingeringOrientations = #'(left down)
2180 <c-1 es-2 g-4 bes-5 > 4
2181 \set fingeringOrientations = #'(up right down)
2182 <c-1 es-2 g-4 bes-5 > 4
2183 @end lilypond
2184
2185 Using this feature, it is also possible to put fingering instructions
2186 very close to note heads in monophonic music,
2187
2188 @lilypond[verbatim,ragged-right,quote,fragment]
2189 \set fingeringOrientations = #'(right)
2190 <es'-2>4
2191 @end lilypond
2192
2193
2194 @seealso
2195
2196 Program reference: @internalsref{Fingering}.
2197
2198 Examples: @inputfileref{input/@/regression,finger@/-chords@/.ly}.
2199
2200
2201 @node Dynamics
2202 @subsection Dynamics
2203
2204 @cindex Dynamics
2205 @cindex @code{\pppp}
2206 @cindex @code{\ppp}
2207 @cindex @code{\pp}
2208 @cindex @code{\p}
2209 @cindex @code{\mp}
2210 @cindex @code{\mf}
2211 @cindex @code{\f}
2212 @cindex @code{\ff}
2213 @cindex @code{\fff}
2214 @cindex @code{\ffff}
2215 @cindex @code{\fp}
2216 @cindex @code{\sf}
2217 @cindex @code{\sff}
2218 @cindex @code{\sp}
2219 @cindex @code{\spp}
2220 @cindex @code{\sfz}
2221 @cindex @code{\rfz}
2222
2223 Absolute dynamic marks are specified using a command after a note
2224 @code{c4\ff}.  The available dynamic marks are @code{\ppppp},
2225 @code{\pppp}, @code{\ppp},
2226 @code{\pp}, @code{\p}, @code{\mp}, @code{\mf}, @code{\f}, @code{\ff},
2227 @code{\fff}, @code{\ffff}, @code{\fp}, @code{\sf}, @code{\sff},
2228 @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}.
2229
2230 @lilypond[quote,verbatim,ragged-right,fragment,relative=2]
2231 c\ppp c\pp c \p c\mp c\mf c\f c\ff c\fff
2232 c2\fp c\sf c\sff c\sp c\spp c\sfz c\rfz
2233 @end lilypond
2234
2235 @cindex @code{\<}
2236 @cindex @code{\>}
2237 @cindex @code{\!}
2238
2239 A crescendo mark is started with @code{\<} and terminated with
2240 @code{\!} or an absolute dynamic.  A decrescendo is started with
2241 @code{\>} and is also terminated with @code{\!} or an absolute
2242 dynamic.  @code{\cr} and @code{\decr} may be used instead of
2243 @code{\<} and @code{\>}.  Because these marks are bound to notes, you must
2244 use spacer notes if multiple marks are needed during one note
2245
2246 @lilypond[quote,ragged-right,fragment,verbatim,relative=2]
2247 c\< c\! d\> e\!
2248 << f1 { s4 s4\< s4\! \> s4\! } >>
2249 @end lilypond
2250
2251 @noindent
2252 A hairpin starts at the left edge of the beginning note and ends on the
2253 right edge of the ending note.
2254
2255 In some situations the @code{\espressivo} articulation mark may
2256 be suitable to indicate a crescendo and decrescendo on the one note,
2257
2258 @lilypond[quote,ragged-right,fragment,verbatim,relative=2]
2259 c2 b4 a g1\espressivo
2260 @end lilypond
2261
2262 This may give rise to very short hairpins.  Use @code{minimum-length}
2263 in @internalsref{Voice}.@internalsref{Hairpin} to lengthen them, for
2264 example
2265
2266 @example
2267 \override Staff.Hairpin #'minimum-length = #5
2268 @end example
2269
2270 @cindex crescendo
2271 @cindex decrescendo
2272 @cindex diminuendo
2273
2274 You can also use a text saying @emph{cresc.} instead of hairpins
2275
2276 @lilypond[quote,ragged-right,fragment,relative=2,verbatim]
2277 \setTextCresc
2278 c\< d e f\!
2279 \setHairpinCresc
2280 e\> d c b\!
2281 \setTextDecresc
2282 c\> d e f\!
2283 \setTextDim
2284 e\> d c b\!
2285 @end lilypond
2286
2287 You can also supply your own texts
2288 @lilypond[quote,ragged-right,fragment,relative=1,verbatim]
2289 \set crescendoText = \markup { \italic "cresc. poco" }
2290 \set crescendoSpanner = #'dashed-line
2291 a'2\< a a a\!\mf
2292 @end lilypond
2293
2294 To create new dynamic marks or text that should be aligned
2295 with dynamics, see @ref{New dynamic marks}.
2296
2297
2298 @commonprop
2299
2300 Dynamics that occur at, begin on, or end on, the same note
2301 will be vertically aligned.  If you want to ensure that dynamics
2302 are aligned when they do not occur on the same note, you can
2303 increase the @code{staff-padding} property.
2304
2305 @example
2306 \override DynamicLineSpanner #'staff-padding = #4
2307 @end example
2308
2309 You may also use this property if the dynamics are colliding
2310 with other notation.
2311
2312 Crescendi and decrescendi that end on the first note of a
2313 new line are not printed.  To change this behavior, use
2314
2315 @example
2316 \override Score.Hairpin #'after-line-breaking = ##t
2317 @end example
2318
2319 Text style dynamic changes (such as cresc. and dim.) are printed with a
2320 dashed line showing their extent.  To surpress printing this line, use
2321
2322 @example
2323 \override DynamicTextSpanner #'dash-period = #-1.0
2324 @end example
2325
2326
2327 @refcommands
2328
2329 @cindex @code{\dynamicUp}
2330 @code{\dynamicUp},
2331 @cindex @code{\dynamicDown}
2332 @code{\dynamicDown},
2333 @cindex @code{\dynamicNeutral}
2334 @code{\dynamicNeutral}.
2335
2336
2337 @seealso
2338
2339 Program reference: @internalsref{DynamicText}, @internalsref{Hairpin}.
2340 Vertical positioning of these symbols is handled by
2341 @internalsref{DynamicLineSpanner}.
2342
2343
2344 @node Breath marks
2345 @subsection Breath marks
2346
2347 Breath marks are entered using @code{\breathe}
2348
2349 @lilypond[quote,ragged-right,fragment,relative=1,verbatim]
2350 c'4 \breathe d4
2351 @end lilypond
2352
2353
2354 @commonprop
2355
2356 The glyph of the breath mark can be tuned by overriding the
2357 @code{text} property of the @code{BreathingSign} layout object with
2358 any markup text.  For example,
2359 @lilypond[quote,ragged-right,fragment,verbatim,relative=1]
2360 c'4
2361 \override BreathingSign #'text
2362   = #(make-musicglyph-markup "scripts.rvarcomma")
2363 \breathe
2364 d4
2365 @end lilypond
2366
2367 @seealso
2368
2369 Program reference: @internalsref{BreathingSign}.
2370
2371 Examples: @inputfileref{input/@/regression,breathing@/-sign@/.ly}.
2372
2373
2374 @node Trills
2375 @subsection Trills
2376
2377 Short trills are printed like normal articulation; see @ref{Articulations}.
2378
2379 Long running trills are made with @code{\startTrillSpan} and
2380 @code{\stopTrillSpan},
2381
2382 @lilypond[verbatim,ragged-right,relative=2,quote,fragment]
2383 \new Voice {
2384   << { c1 \startTrillSpan }
2385      { s2. \grace { d16[\stopTrillSpan e] } } >>
2386   c4 }
2387 @end lilypond
2388
2389 @cindex Pitched trills
2390
2391 Trills that should be executed on an explicitly specified pitch can be
2392 typeset with the command @code{pitchedTrill}, 
2393
2394 @lilypond[ragged-right,verbatim,fragment,relative=1]
2395 \pitchedTrill c4\startTrillSpan fis
2396 f\stopTrillSpan
2397 @end lilypond
2398
2399 The first argument is the main note.  The pitch of the second
2400 is printed as a stemless note head in parentheses.
2401
2402
2403 @refcommands
2404
2405 @code{\startTrillSpan},
2406 @cindex @code{\startTrillSpan}
2407 @code{\stopTrillSpan}.
2408 @cindex @code{\stopTrillSpan}
2409
2410
2411 @seealso
2412
2413 Program reference: @internalsref{TrillSpanner}.
2414
2415
2416 @node Glissando
2417 @subsection Glissando
2418
2419 @cindex Glissando
2420 @cindex @code{\glissando}
2421
2422 A glissando is a smooth change in pitch.  It is denoted by a line or a
2423 wavy line between two notes.  It is requested by attaching
2424 @code{\glissando} to a note
2425
2426 @lilypond[quote,ragged-right,fragment,relative=2,verbatim]
2427 c2\glissando c'
2428 \override Glissando #'style = #'zigzag
2429 c2\glissando c,
2430 @end lilypond
2431
2432
2433 @seealso
2434
2435 Program reference: @internalsref{Glissando}.
2436
2437 Example files: @file{input/@/regression/@/glissando@/.ly}.
2438
2439
2440 @refbugs
2441
2442 Printing text over the line (such as @emph{gliss.}) is not supported.
2443
2444
2445 @node Arpeggio
2446 @subsection Arpeggio
2447
2448 @cindex Arpeggio
2449 @cindex broken chord
2450 @cindex @code{\arpeggio}
2451
2452 You can specify an arpeggio sign (also known as broken chord) on a
2453 chord by attaching an @code{\arpeggio} to a chord
2454
2455 @lilypond[quote,ragged-right,fragment,relative=1,verbatim]
2456 <c e g c>\arpeggio
2457 @end lilypond
2458
2459 A square bracket on the left indicates that the player should not
2460 arpeggiate the chord
2461
2462 @lilypond[quote,ragged-right,fragment,relative=1,verbatim]
2463 \arpeggioBracket
2464 <c' e g c>\arpeggio
2465 @end lilypond
2466
2467 The direction of the arpeggio is sometimes denoted by adding an
2468 arrowhead to the wiggly line
2469
2470 @lilypond[quote,ragged-right,fragment,relative=1,verbatim]
2471 \new Voice {
2472   \arpeggioUp
2473   <c e g c>\arpeggio
2474   \arpeggioDown
2475   <c e g c>\arpeggio
2476 }
2477 @end lilypond
2478
2479
2480 @commonprop
2481
2482 When an arpeggio crosses staves, you may attach an arpeggio to the chords
2483 in both staves and set
2484 @internalsref{PianoStaff}.@code{connectArpeggios}
2485
2486 @lilypond[quote,ragged-right,fragment,relative=1,verbatim]
2487 \new PianoStaff <<
2488   \set PianoStaff.connectArpeggios = ##t
2489   \new Staff { <c' e g c>\arpeggio }
2490   \new Staff { \clef bass <c,, e g>\arpeggio }
2491 >>
2492 @end lilypond
2493
2494
2495 @refcommands
2496
2497 @code{\arpeggio},
2498 @cindex @code{\arpeggioUp}
2499 @code{\arpeggioUp},
2500 @cindex @code{\arpeggioDown}
2501 @code{\arpeggioDown},
2502 @cindex @code{\arpeggioNeutral}
2503 @code{\arpeggioNeutral},
2504 @cindex @code{\arpeggioBracket}
2505 @code{\arpeggioBracket}.
2506
2507
2508 @seealso
2509
2510 Notation manual: @ref{Ties}, for writing out arpeggios.
2511
2512 Program reference: @internalsref{Arpeggio}.
2513
2514
2515 @refbugs
2516
2517 It is not possible to mix connected arpeggios and unconnected
2518 arpeggios in one @internalsref{PianoStaff} at the same point in time.
2519
2520
2521
2522 @node Polyphony
2523 @section Polyphony
2524
2525 Polyphony in music refers to having more than one voice occurring in
2526 a piece of music.  Polyphony in LilyPond refers to having more than
2527 one voice on the same staff.
2528
2529 @menu
2530 * Basic polyphony::             
2531 * Explicitly instantiating voices::  
2532 * Collision Resolution::        
2533 @end menu
2534
2535
2536 @node Basic polyphony
2537 @subsection Basic polyphony
2538
2539 @cindex polyphony
2540
2541 The easiest way to enter fragments with more than one voice on a staff
2542 is to enter each voice as a sequence (with @code{@{...@}}), and combine 
2543 them simultaneously, separating the voices with @code{\\}
2544
2545 @cindex @code{\\}
2546
2547 @lilypond[quote,verbatim,fragment]
2548 \new Staff \relative c' {
2549   c16 d e f
2550   <<
2551     { g4 f e | d2 e2 } \\
2552     { r8 e4 d c8 ~ | c b16 a b8 g ~ g2 } \\
2553     { s2. | s4 b4 c2 }
2554   >>
2555 }
2556 @end lilypond
2557
2558 The separator causes @internalsref{Voice} contexts@footnote{Polyphonic
2559 voices are sometimes called ``layers'' in other notation packages}
2560 @cindex layers
2561 to be instantiated.  They bear the names @code{"1"}, @code{"2"}, etc.  In
2562 each of these contexts, vertical direction of slurs, stems, etc., is set
2563 appropriately.  
2564
2565 These voices are all separate from the voice that contains the notes just 
2566 outside the @code{<< \\ >>} construct.  This should be noted when making 
2567 changes at the voice level.  This also means that slurs and ties cannot go 
2568 into or out of a @code{<< \\ >>} construct.  Conversely, parallel voices
2569 from separate @code{<< \\ >>} constructs on the same staff are the the
2570 same voice.  Here is the same example, with different noteheads for each
2571 voice.  Note that the change to the note-head style in the main voice does not affect
2572 the inside of the @code{<< \\ >>} constructs.  Also, the change to the second
2573 voice in the first @code{<< \\ >>} construct is effective in the second
2574 @code{<< \\ >>}, and the voice is tied across the two constructs.
2575
2576 @lilypond[quote,verbatim,fragment]
2577 \new Staff \relative c' {
2578   \override NoteHead #'style = #'cross
2579   c16 d e f
2580   <<    
2581     { g4 f e } \\
2582     { \override NoteHead #'style = #'triangle
2583     r8 e4 d c8 ~ }
2584   >> |
2585   <<
2586     { d2 e2 } \\ 
2587     { c8 b16 a b8 g ~ g2 } \\
2588     { \override NoteHead #'style = #'slash s4 b4 c2 }
2589   >>
2590 }
2591 @end lilypond
2592
2593 Polyphony does not change the relationship of notes within a
2594 @code{\relative @{ @}} block.  Each note is calculated relative
2595 to the note immediately preceding it.
2596
2597 @example
2598 \relative @{ noteA << noteB \\ noteC >> noteD @}
2599 @end example
2600
2601 @code{noteC} is relative to @code{noteB}, not @code{noteA};
2602 @code{noteD} is relative to @code{noteC}, not @code{noteB} or
2603 @code{noteA}.
2604
2605 @node Explicitly instantiating voices
2606 @subsection Explicitly instantiating voices
2607
2608 @internalsref{Voice} contexts can also be instantiated manually
2609 inside a @code{<< >>} block to create polyphonic music, using 
2610 @code{\voiceOne}, up to @code{\voiceFour} to assign stem directions 
2611 and a horizontal shift for each part.
2612
2613 Specifically,
2614 @example
2615 << \upper \\ \lower >>
2616 @end example
2617
2618 @noindent
2619 is equivalent to
2620
2621 @example
2622 <<
2623   \new Voice = "1" @{ \voiceOne \upper @}
2624   \new Voice = "2" @{ \voiceTwo \lower @}
2625 >>
2626 @end example
2627
2628 The @code{\voiceXXX} commands set the direction of stems, slurs, ties,
2629 articulations, text annotations, augmentation dots of dotted
2630 notes, and fingerings.  @code{\voiceOne} and @code{\voiceThree} make
2631 these objects point upwards, while @code{\voiceTwo} and @code{\voiceFour}
2632 make them point downwards.  
2633 The command @code{\oneVoice} will revert back to the normal setting.
2634
2635 An expression that appears directly inside a @code{<< >>} belongs to 
2636 the main voice.  This is useful when extra voices appear while the main
2637 voice is playing.  Here is a more correct rendition of the example from
2638 the previous section.  The crossed noteheads demonstrate that the main
2639 melody is now in a single voice context.
2640
2641 @lilypond[quote,ragged-right,verbatim]
2642 \new Staff \relative c' {
2643   \override NoteHead #'style = #'cross
2644   c16 d e f 
2645   \voiceOne
2646   <<    
2647     { g4 f e | d2 e2 }
2648     \new Voice="1" { \voiceTwo
2649       r8 e4 d c8 ~ | c8 b16 a b8 g ~ g2 
2650       \oneVoice
2651     }
2652     \new Voice { \voiceThree 
2653       s2. | s4 b4 c2 
2654       \oneVoice
2655     }
2656   >>
2657   \oneVoice
2658 }
2659 @end lilypond
2660
2661 The correct definition of the voices allows the melody to be slurred.
2662 @lilypond[quote,ragged-right,verbatim]
2663 \new Staff \relative c' {
2664   c16^( d e f 
2665   \voiceOne
2666   <<    
2667     { g4 f e | d2 e2) }  
2668     \context Voice="1" { \voiceTwo
2669       r8 e4 d c8 ~ | c8 b16 a b8 g ~ g2 
2670       \oneVoice
2671     }
2672     \new Voice { \voiceThree 
2673       s2. s4 b4 c2 
2674       \oneVoice
2675     }
2676   >>
2677   \oneVoice
2678 }
2679 @end lilypond
2680
2681 Avoiding the @code{\\} separator also allows nesting polyphony 
2682 constructs, which in some case might be a more natural way to typeset
2683 the music.
2684
2685 @lilypond[quote,ragged-right,verbatim]
2686 \new Staff \relative c' {
2687   c16^( d e f 
2688   \voiceOne
2689   <<    
2690     { g4 f e | d2 e2) }  
2691     \context Voice="1" { \voiceTwo
2692       r8 e4 d c8 ~ | 
2693       <<
2694         {c8 b16 a b8 g ~ g2} 
2695         \new Voice { \voiceThree 
2696           s4 b4 c2 
2697           \oneVoice
2698         }
2699       >>
2700     \oneVoice
2701     }
2702   >>
2703   \oneVoice
2704 }
2705 @end lilypond
2706
2707
2708 @node Collision Resolution
2709 @subsection Collision Resolution
2710
2711 Normally, note heads with a different number of dots are not merged, but
2712 when the object property @code{merge-differently-dotted} is set in
2713 the @internalsref{NoteCollision} object, they are merged
2714 @lilypond[quote,verbatim,fragment,ragged-right,relative=2]
2715 \new Voice << {
2716   g8 g8
2717   \override Staff.NoteCollision
2718     #'merge-differently-dotted = ##t
2719   g8 g8
2720 } \\ { g8.[ f16] g8.[ f16] } >>
2721 @end lilypond
2722
2723 Similarly, you can merge half note heads with eighth notes, by setting
2724 @code{merge-differently-headed}
2725 @lilypond[quote,ragged-right,fragment,relative=2,verbatim]
2726 \new Voice << {
2727   c8 c4.
2728   \override Staff.NoteCollision
2729     #'merge-differently-headed = ##t
2730 c8 c4. } \\ { c2 c2 } >>
2731 @end lilypond
2732
2733 LilyPond also vertically shifts rests that are opposite of a stem,
2734 for example
2735
2736 @lilypond[quote,ragged-right,fragment,verbatim]
2737 \new Voice << c''4 \\ r4 >>
2738 @end lilypond
2739
2740
2741 @refcommands
2742
2743 @cindex @code{\oneVoice}
2744 @code{\oneVoice},
2745 @cindex @code{\voiceOne}
2746 @code{\voiceOne},
2747 @cindex @code{\voiceTwo}
2748 @code{\voiceTwo},
2749 @cindex @code{\voiceThree}
2750 @code{\voiceThree},
2751 @cindex @code{\voiceFour}
2752 @code{\voiceFour}.
2753
2754 @cindex @code{\shiftOn}
2755 @code{\shiftOn},
2756 @cindex @code{\shiftOnn}
2757 @code{\shiftOnn},
2758 @cindex @code{\shiftOnnn}
2759 @code{\shiftOnnn},
2760 @cindex @code{\shiftOff}
2761 @code{\shiftOff}: these commands specify in what chords of the current
2762 voice should be shifted.  The outer voices (normally: voice one and
2763 two) have @code{\shiftOff}, while the inner voices (three and four)
2764 have @code{\shiftOn}.  @code{\shiftOnn} and @code{\shiftOnnn} define
2765 further shift levels.
2766
2767 When LilyPond cannot cope, the @code{force-hshift}
2768 property of the @internalsref{NoteColumn} object and pitched rests can
2769 be used to override typesetting decisions.
2770
2771 @lilypond[quote,verbatim,ragged-right]
2772 \relative <<
2773 {
2774   <d g>
2775   <d g>
2776 } \\ {
2777   <b f'>
2778   \once \override NoteColumn #'force-hshift = #1.7
2779   <b f'>
2780 } >>
2781 @end lilypond
2782
2783
2784 @seealso
2785
2786 Program reference: the objects responsible for resolving collisions are
2787 @internalsref{NoteCollision} and @internalsref{RestCollision}.
2788
2789 Examples:
2790 @inputfileref{input/@/regression,collision@/-dots@/.ly},
2791 @inputfileref{input/@/regression,collision@/-head-chords@/.ly},
2792 @inputfileref{input/@/regression,collision@/-heads@/.ly},
2793 @inputfileref{input/@/regression,collision@/-mesh@/.ly}, and
2794 @inputfileref{input/@/regression,collisions@/.ly}.
2795
2796
2797 @refbugs
2798
2799 When using @code{merge-differently-headed} with an upstem eighth or a
2800 shorter note, and a downstem half note, the eighth note gets the wrong
2801 offset.
2802
2803 There is no support for clusters where the same note occurs with
2804 different accidentals in the same chord.  In this case, it is
2805 recommended to use enharmonic transcription, or to use special cluster
2806 notation (see @ref{Clusters}).
2807
2808
2809
2810 @node Repeats
2811 @section Repeats
2812
2813 Repetition is a central concept in music, and multiple notations exist
2814 for repetitions.
2815
2816 @menu
2817 * Repeat types::                
2818 * Repeat syntax::               
2819 * Repeats and MIDI::            
2820 * Manual repeat commands::      
2821 * Tremolo repeats::             
2822 * Tremolo subdivisions::        
2823 * Measure repeats::             
2824 @end menu
2825
2826
2827 @node Repeat types
2828 @subsection Repeat types
2829
2830 @cindex repeats
2831 @cindex @code{\repeat}
2832
2833 The following types of repetition are supported
2834
2835 @table @code
2836 @item unfold
2837 Repeated music is fully written (played) out.  This is useful when
2838 entering repetitious music.  This is the only kind of repeat that
2839 is included in MIDI output.
2840
2841 @item volta
2842 Repeats are not written out, but alternative endings (volte) are
2843 printed, left to right with brackets.  This is the standard notation
2844 for repeats with alternatives.  These are not played in MIDI output by default.
2845
2846 @ignore
2847 @item fold
2848 Alternative endings are written stacked.  This has limited use but may be
2849 used to typeset two lines of lyrics in songs with repeats, see
2850 @inputfileref{input,star-spangled-banner@/.ly}.
2851 @end ignore
2852
2853 @item tremolo
2854 Make tremolo beams.  These are not played in MIDI output by default.
2855
2856 @item percent
2857 Make beat or measure repeats.  These look like percent signs.  These
2858 are not played in MIDI output by default.  Percent repeats must be
2859 declared within a Voice context.
2860
2861 @end table
2862
2863
2864 @node Repeat syntax
2865 @subsection Repeat syntax
2866
2867 LilyPond has one syntactic construct for specifying different types of
2868 repeats.  The syntax is
2869
2870 @example
2871 \repeat @var{variant} @var{repeatcount} @var{repeatbody}
2872 @end example
2873
2874 If you have alternative endings, you may add
2875 @cindex @code{\alternative}
2876 @example
2877 \alternative @{
2878   @var{alternative1}
2879   @var{alternative2}
2880   @var{alternative3}
2881   @dots{}
2882 @}
2883 @end example
2884
2885 @noindent
2886 where each @var{alternative} is a music expression.  If you do not
2887 give enough alternatives for all of the repeats, the first alternative
2888 is assumed to be played more than once.
2889
2890 Standard repeats are used like this
2891 @lilypond[quote,ragged-right,fragment,verbatim,relative=2]
2892 c1
2893 \repeat volta 2 { c4 d e f }
2894 \repeat volta 2 { f e d c }
2895 @end lilypond
2896
2897 With alternative endings
2898 @lilypond[quote,ragged-right,fragment,verbatim,relative=2]
2899 c1
2900 \repeat volta 2 {c4 d e f}
2901 \alternative { {d2 d} {f f,} }
2902 @end lilypond
2903
2904 In this example, the first ending is not a complete bar (it
2905 only had 3 beats).  The beginning of the second ending
2906 contains the 4th beat from the first ending.  This ``extra''
2907 beat in the second ending is due to the first time ending,
2908 and has nothing to do with the @code{\partial} at the
2909 beginning of the example.
2910
2911 @lilypond[quote,ragged-right,fragment,verbatim,relative=2]
2912 \new Staff {
2913   \partial 4
2914   \repeat volta 4 { e | c2 d2 | e2 f2 | }
2915   \alternative { { g4 g g } { a | a a a a | b2. } }
2916 }
2917 @end lilypond
2918
2919 It is possible to shorten volta brackets
2920 by setting @code{voltaSpannerDuration}.  In the next example, the
2921 bracket only lasts one measure, which is a duration of 3/4.
2922
2923 @lilypond[verbatim,ragged-right,quote]
2924 \relative c''{
2925   \time 3/4
2926   c c c
2927   \set Staff.voltaSpannerDuration = #(ly:make-moment 3 4)
2928   \repeat "volta" 5 { d d d }
2929   \alternative { { e e e f f f }
2930   { g g g } }
2931 }
2932 @end lilypond
2933
2934
2935 @seealso
2936
2937 Examples:
2938
2939 Brackets for the repeat are normally only printed over the topmost
2940 staff.  This can be adjusted by setting the @code{voltaOnThisStaff}
2941 property; see @inputfileref{input/@/regression,volta@/-multi@/-staff@/.ly}.
2942
2943
2944 @refbugs
2945
2946 @cindex repeat, ambiguous
2947
2948 A nested repeat like
2949
2950 @example
2951 \repeat @dots{}
2952 \repeat @dots{}
2953 \alternative
2954 @end example
2955
2956 @noindent
2957 is ambiguous, since it is is not clear to which @code{\repeat} the
2958 @code{\alternative} belongs.  This ambiguity is resolved by always
2959 having the @code{\alternative} belong to the inner @code{\repeat}.
2960 For clarity, it is advisable to use braces in such situations.
2961
2962 Timing information is not remembered at the start of an alternative,
2963 so after a repeat timing information must be reset by hand, for
2964 example by setting @code{Score.measurePosition} or entering
2965 @code{\partial}.  Similarly, slurs or ties are also not repeated.
2966
2967
2968 @node Repeats and MIDI
2969 @subsection Repeats and MIDI
2970
2971 @cindex expanding repeats
2972 @cindex @code{\unfoldRepeats}
2973
2974 With a little bit of tweaking, all types of repeats can be present
2975 in the MIDI output.  This is achieved by applying the
2976 @code{\unfoldRepeats} music function.  This functions changes all
2977 repeats to unfold repeats.
2978
2979 @lilypond[quote,verbatim,fragment,line-width=8.0\cm]
2980 \unfoldRepeats {
2981   \repeat tremolo 8 {c'32 e' }
2982   \repeat percent 2 { c''8 d'' }
2983   \repeat volta 2 {c'4 d' e' f'}
2984   \alternative {
2985     { g' a' a' g' }
2986     {f' e' d' c' }
2987   }
2988 }
2989 \bar "|."
2990 @end lilypond
2991
2992 When creating a score file using @code{\unfoldRepeats} for midi, then
2993 it is necessary to make two @code{\score} blocks.  One for MIDI (with
2994 unfolded repeats) and one for notation (with volta, tremolo, and
2995 percent repeats).  For example,
2996
2997 @example
2998 \score @{
2999   @var{..music..}
3000   \layout @{ .. @}
3001 @}
3002 \score @{
3003   \unfoldRepeats @var{..music..}
3004   \midi @{ .. @}
3005 @}
3006 @end example
3007
3008
3009 @node Manual repeat commands
3010 @subsection Manual repeat commands
3011
3012 @cindex @code{repeatCommands}
3013
3014 The property @code{repeatCommands} can be used to control the layout of
3015 repeats.  Its value is a Scheme list of repeat commands.
3016
3017 @table @asis
3018 @item @code{start-repeat}
3019 Print a @code{|:} bar line.
3020
3021 @item @code{end-repeat}
3022 Print a @code{:|} bar line.
3023
3024 @item @code{(volta @var{text})}
3025 Print a volta bracket saying @var{text}: The text can be specified as
3026 a text string or as a markup text, see @ref{Text markup}.  Do not
3027 forget to change the font, as the default number font does not contain
3028 alphabetic characters;
3029
3030 @item @code{(volta #f)}
3031 Stop a running volta bracket.
3032 @end table
3033
3034 @lilypond[quote,ragged-right,verbatim,fragment,relative=2]
3035 c4
3036   \set Score.repeatCommands = #'((volta "93") end-repeat)
3037 c4 c4
3038   \set Score.repeatCommands = #'((volta #f))
3039 c4 c4
3040 @end lilypond
3041
3042
3043 @seealso
3044
3045 Program reference: @internalsref{VoltaBracket}, @internalsref{RepeatedMusic},
3046 @internalsref{VoltaRepeatedMusic},
3047 @internalsref{UnfoldedRepeatedMusic}, and
3048 @internalsref{FoldedRepeatedMusic}.
3049
3050
3051 @node Tremolo repeats
3052 @subsection Tremolo repeats
3053
3054 @cindex tremolo beams
3055
3056 To place tremolo marks between notes, use @code{\repeat} with tremolo
3057 style
3058 @lilypond[quote,verbatim,ragged-right]
3059 \new Voice \relative c' {
3060   \repeat "tremolo" 8 { c16 d16 }
3061   \repeat "tremolo" 4 { c16 d16 }
3062   \repeat "tremolo" 2 { c16 d16 }
3063 }
3064 @end lilypond
3065
3066 Tremolo marks can also be put on a single note.  In this case, the
3067 note should not be surrounded by braces.
3068 @lilypond[quote,verbatim,ragged-right]
3069 \repeat "tremolo" 4 c'16
3070 @end lilypond
3071
3072 Similar output is obtained using the tremolo subdivision, described in
3073 @ref{Tremolo subdivisions}.
3074
3075
3076 @seealso
3077
3078 In this manual: @ref{Tremolo subdivisions}, @ref{Repeats}.
3079
3080 Program reference: @internalsref{Beam}, @internalsref{StemTremolo}.
3081
3082 Example files: @inputfileref{input/@/regression,chord@/-tremolo@/.ly},
3083 @inputfileref{input/@/regression,stem@/-tremolo@/.ly}.
3084
3085
3086 @node Tremolo subdivisions
3087 @subsection Tremolo subdivisions
3088
3089 @cindex tremolo marks
3090 @cindex @code{tremoloFlags}
3091
3092 Tremolo marks can be printed on a single note by adding
3093 `@code{:}[@var{number}]' after the note.  The number indicates the
3094 duration of the subdivision, and it must be at least 8.  A
3095 @var{length} value of 8 gives one line across the note stem.  If the
3096 length is omitted, the last value (stored in @code{tremoloFlags}) is
3097 used
3098
3099 @lilypond[quote,ragged-right,verbatim,fragment]
3100 c'2:8 c':32 | c': c': |
3101 @end lilypond
3102
3103
3104 @refbugs
3105
3106 Tremolos entered in this way do not carry over into the MIDI output.
3107
3108
3109 @seealso
3110
3111 In this manual: @ref{Tremolo repeats}.
3112
3113 Elsewhere: @internalsref{StemTremolo}.
3114
3115
3116 @node Measure repeats
3117 @subsection Measure repeats
3118
3119 @cindex percent repeats
3120 @cindex measure repeats
3121
3122 In the @code{percent} style, a note pattern can be repeated.  It is
3123 printed once, and then the pattern is replaced with a special sign.
3124 Patterns of one and two measures are replaced by percent-like signs,
3125 patterns that divide the measure length are replaced by slashes.
3126 Percent repeats must be declared within a @code{Voice} context.
3127
3128 @lilypond[quote,verbatim,ragged-right]
3129 \new Voice \relative c' {
3130   \repeat "percent" 4 { c4 }
3131   \repeat "percent" 2 { c2 es2 f4 fis4 g4 c4 }
3132 }
3133 @end lilypond
3134
3135 Measure repeats of more than 2 measures get a counter, if you switch
3136 on the @code{countPercentRepeats} property,
3137
3138 @lilypond[relative=2,fragment,quote,verbatim,ragged-right]
3139 \new Voice {
3140 \set countPercentRepeats = ##t
3141   \repeat "percent" 4 { c1 }
3142 }
3143 @end lilypond
3144
3145
3146
3147 Isolated percents can also be printed. This is done by putting a multi
3148 measure rest with a different print function,
3149
3150 @lilypond[fragment,verbatim]
3151 \override MultiMeasureRest #'stencil
3152   = #ly:multi-measure-rest::percent
3153 R1
3154 @end lilypond
3155
3156
3157
3158
3159 @seealso
3160
3161 Program reference: @internalsref{RepeatSlash},
3162 @internalsref{PercentRepeat}, @internalsref{DoublePercentRepeat},
3163 @internalsref{DoublePercentRepeatCounter},
3164 @internalsref{PercentRepeatCounter},
3165 @internalsref{PercentRepeatedMusic}, and
3166