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