]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/rhythms.itely
c22f55fb52356cc7c0133af219eb2a3c0ce6fb86
[lilypond.git] / Documentation / notation / rhythms.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  For details, see the Contributors'
7     Guide, node Updating translation committishes..
8 @end ignore
9
10 @c \version "2.15.18"
11
12 @node Rhythms
13 @section Rhythms
14
15 @lilypondfile[quote]{rhythms-headword.ly}
16
17 This section discusses rhythms, rests, durations, beaming and bars.
18
19 @menu
20 * Writing rhythms::
21 * Writing rests::
22 * Displaying rhythms::
23 * Beams::
24 * Bars::
25 * Special rhythmic concerns::
26 @end menu
27
28
29 @node Writing rhythms
30 @subsection Writing rhythms
31
32 @menu
33 * Durations::
34 * Tuplets::
35 * Scaling durations::
36 * Ties::
37 @end menu
38
39 @node Durations
40 @unnumberedsubsubsec Durations
41
42 @cindex durations, of notes
43 @cindex note durations
44 @cindex length of notes
45 @cindex note lengths
46
47 @funindex \longa
48 @funindex longa
49 @funindex \breve
50 @funindex breve
51 @funindex \maxima
52 @funindex maxima
53
54 Durations are designated by numbers and dots.  Durations are entered
55 as their reciprocal values.  For example, a quarter note is entered
56 using a @code{4} (since it is a 1/4 note), and a half note is entered
57 using a @code{2} (since it is a 1/2 note).  For notes longer than a
58 whole you must use the @code{\longa} (a double breve) and
59 @code{\breve} commands.  Durations as short as 128th notes may be
60 specified.  Shorter values are possible, but only as beamed notes.
61
62 @c Two 64th notes are needed to obtain beams
63 @lilypond[quote,verbatim,relative=2]
64 \time 8/1
65 c\longa c\breve c1 c2
66 c4 c8 c16 c32 c64 c128 c128
67 @end lilypond
68
69 Here are the same durations with automatic beaming turned off.
70
71 @c not strictly "writing rhythms"; more of a "displaying" thing,
72 @c but it's ok here.  -gp
73 @lilypond[quote,verbatim,relative=2]
74 \time 8/1
75 \autoBeamOff
76 c\longa c\breve c1 c2
77 c4 c8 c16 c32 c64 c128 c128
78 @end lilypond
79
80 A note with the duration of a quadruple breve may be entered with
81 @code{\maxima}, but this is supported only within ancient music
82 notation.  For details, see @ref{Ancient notation}.
83
84 @cindex duration, default
85 @cindex default note duration
86 @cindex note duration, default
87
88 If the duration is omitted, it is set to the previously
89 entered duration.  The default for the first note is a quarter
90 note.
91
92 @lilypond[quote,verbatim,relative=2]
93 a a a2 a a4 a a1 a
94 @end lilypond
95
96 @cindex notes, dotted
97 @cindex dotted notes
98 @cindex notes, double-dotted
99 @cindex double-dotted notes
100
101 @funindex .
102
103 To obtain dotted note lengths, place a dot (@code{.}) after the
104 duration.  Double-dotted notes are specified by appending two
105 dots, and so on.
106
107 @lilypond[quote,verbatim,relative=2]
108 a4 b c4. b8 a4. b4.. c8.
109 @end lilypond
110
111 Some durations cannot be represented with just binary durations
112 and dots; they can be represented only by tying two or more
113 notes together.  For details, see @ref{Ties}.
114
115 For ways of specifying durations for the syllables of lyrics and
116 ways of aligning lyrics to notes, see @ref{Vocal music}.
117
118 Optionally, notes can be spaced strictly proportionately to their
119 duration.  For details of this and other settings which control
120 proportional notation, see @ref{Proportional notation}.
121
122 @funindex \dotsUp
123 @funindex dotsUp
124 @funindex \dotsDown
125 @funindex dotsDown
126 @funindex \dotsNeutral
127 @funindex dotsNeutral
128
129 Dots are normally moved up to avoid staff lines, except in
130 polyphonic situations.  Dots may be manually placed above or below
131 the staff; see @ref{Direction and placement}.
132
133
134 @predefined
135 @code{\autoBeamOn},
136 @code{\autoBeamOff},
137 @code{\dotsUp},
138 @code{\dotsDown},
139 @code{\dotsNeutral}.
140 @endpredefined
141
142
143 @snippets
144
145 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
146 {alternative-breve-note.ly}
147
148 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
149 {changing-the-number-of-augmentation-dots-per-note.ly}
150
151
152 @seealso
153 Music Glossary:
154 @rglos{breve},
155 @rglos{longa},
156 @rglos{maxima},
157 @rglos{note value},
158 @rglos{Duration names notes and rests}.
159
160 Notation Reference:
161 @ref{Automatic beams},
162 @ref{Ties},
163 @ref{Stems},
164 @ref{Writing rhythms},
165 @ref{Writing rests},
166 @ref{Vocal music},
167 @ref{Ancient notation},
168 @ref{Proportional notation}.
169
170 Snippets:
171 @rlsr{Rhythms}.
172
173 Internals Reference:
174 @rinternals{Dots},
175 @rinternals{DotColumn}.
176
177
178 @knownissues
179
180 @c Deliberately duplicated in Durations and Rests.  -gp
181 There is no fundamental limit to rest durations (both in terms of
182 longest and shortest), but the number of glyphs is limited:
183 rests from 128th to maxima (8 x whole) may be printed.
184
185
186 @node Tuplets
187 @unnumberedsubsubsec Tuplets
188
189 @cindex tuplets
190 @cindex triplets
191
192 @funindex \times
193 @funindex times
194
195 Tuplets are made from a music expression by multiplying all the
196 durations with a fraction:
197
198 @example
199 \times @var{fraction} @{ @var{music} @}
200 @end example
201
202 @noindent
203 The duration of @code{@var{music}} will be multiplied by the
204 fraction.  The fraction's denominator will be printed over or
205 under the notes, optionally with a bracket.  The most common
206 tuplet is the triplet in which 3 notes have the duration of 2, so
207 the notes are 2/3 of their written length.
208
209 @lilypond[quote,verbatim,relative=2]
210 a2 \times 2/3 { b4 b b }
211 c4 c \times 2/3 { b4 a g }
212 @end lilypond
213
214 @cindex tuplet bracket placement
215
216 @funindex \tupletUp
217 @funindex tupletUp
218 @funindex \tupletDown
219 @funindex tupletDown
220 @funindex \tupletNeutral
221 @funindex tupletNeutral
222
223 Tuplet brackets may be manually placed above or below the staff;
224 see @ref{Direction and placement}.
225
226 Tuplets may be nested:
227
228 @lilypond[quote,verbatim,relative=2]
229 \autoBeamOff
230 c4 \times 4/5 { f8 e f \times 2/3 { e[ f g] } } f4
231 @end lilypond
232
233 Modifying nested tuplets which begin at the same musical moment
234 must be done with @code{\tweak}.
235
236 To modify the duration of notes without printing a tuplet bracket,
237 see @ref{Scaling durations}.
238
239
240 @predefined
241 @code{\tupletUp},
242 @code{\tupletDown},
243 @code{\tupletNeutral}.
244 @endpredefined
245
246
247 @snippets
248
249 @cindex tuplet formatting
250 @cindex triplet formatting
251
252 @funindex tupletNumberFormatFunction
253 @funindex tupletSpannerDuration
254
255 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
256 {entering-several-tuplets-using-only-one--times-command.ly}
257
258 @cindex Tuplet number changes
259
260 @funindex TupletNumber
261
262 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
263 {changing-the-tuplet-number.ly}
264
265 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
266 {non-default-tuplet-numbers.ly}
267
268 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
269 {controlling-tuplet-bracket-visibility.ly}
270
271 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
272 {permitting-line-breaks-within-beamed-tuplets.ly}
273
274
275 @seealso
276 Music Glossary:
277 @rglos{triplet},
278 @rglos{tuplet},
279 @rglos{polymetric}.
280
281 Learning Manual:
282 @rlearning{Tweaking methods}.
283
284 Notation Reference:
285 @ref{Time administration},
286 @ref{Scaling durations},
287 @ref{The tweak command},
288 @ref{Polymetric notation}.
289
290 Snippets:
291 @rlsr{Rhythms}.
292
293 Internals Reference:
294 @rinternals{TupletBracket},
295 @rinternals{TupletNumber},
296 @rinternals{TimeScaledMusic}.
297
298
299 @cindex grace notes within tuplet brackets
300
301 @knownissues
302 Grace notes may be placed within tuplet brackets, @emph{except}
303 when a staff begins with a grace note followed by a tuplet.  In this
304 particular case, the grace note must be placed before the @code{\times}
305 command to avoid errors.
306
307 @cindex tempo marks within tuplet brackets
308
309 When using a tuplet at the beginning of a piece with a @code{\tempo}
310 mark, the music must be explicitly entered in a @code{\new Voice}
311 block, as discussed in @rlearning{Voices contain music}.
312
313
314 @node Scaling durations
315 @unnumberedsubsubsec Scaling durations
316
317 @cindex scaling durations
318 @cindex durations, scaling
319
320 You can alter the duration of single notes, rests or chords by a
321 fraction @code{N/M} by appending @code{*N/M} (or @code{*N} if @code{M}
322 is 1) to the duration.  This will not affect the appearance of the
323 notes or rests produced, but the altered duration will be used in
324 calculating the position within the measure and setting the duration
325 in the MIDI output.  Multiplying factors may be combined such as
326 @code{*L*M/N}.
327
328 In the following example, the first three notes take up exactly
329 two beats, but no triplet bracket is printed.
330
331 @lilypond[quote,relative=2,verbatim]
332 \time 2/4
333 % Alter durations to triplets
334 a4*2/3 gis4*2/3 a4*2/3
335 % Normal durations
336 a4 a4
337 % Double the duration of chord
338 <a d>4*2
339 % Duration of quarter, appears like sixteenth
340 b16*4 c4
341 @end lilypond
342
343 The duration of spacing notes may also be modified by
344 a multiplier.  This is useful for skipping many measures, e.g.,
345 @code{s1*23}.
346
347 @cindex compressing music
348 @cindex expanding music
349
350 @funindex \scaleDurations
351 @funindex scaleDurations
352
353 Longer stretches of music may be compressed by a fraction in the
354 same way, as if every note, chord or rest had the fraction as a
355 multiplier.  This leaves the appearance of the music unchanged but
356 the internal duration of the notes will be multiplied by the
357 fraction @emph{num}/@emph{den}.  The spaces around the dot are
358 required.  Here is an example showing how music can be compressed
359 and expanded:
360
361 @lilypond[quote,relative=2,verbatim]
362 \time 2/4
363 % Normal durations
364 <c a>4 c8 a
365 % Scale music by *2/3
366 \scaleDurations #'(2 . 3) {
367   <c a f>4. c8 a f
368 }
369 % Scale music by *2
370 \scaleDurations #'(2 . 1) {
371   <c' a>4 c8 b
372 }
373 @end lilypond
374
375 One application of this command is in polymetric
376 notation, see @ref{Polymetric notation}.
377
378
379 @seealso
380 Notation Reference:
381 @ref{Tuplets},
382 @ref{Invisible rests},
383 @ref{Polymetric notation}.
384
385 Snippets:
386 @rlsr{Rhythms}.
387
388
389 @node Ties
390 @unnumberedsubsubsec Ties
391
392 @cindex tie
393
394 @funindex ~
395
396 A tie connects two adjacent note heads of the same pitch.  The tie
397 in effect extends the duration of a note.
398
399 @warning{Ties should not be confused with @emph{slurs}, which
400 indicate articulation, or @emph{phrasing slurs}, which indicate
401 musical phrasing.  A tie is just a way of extending a note
402 duration, similar to the augmentation dot.}
403
404 A tie is entered using the tilde symbol (@code{~}).
405
406 @lilypond[quote,verbatim,relative=2]
407 a2 ~ a
408 @end lilypond
409
410 Ties are used either when the note crosses a bar line, or when
411 dots cannot be used to denote the rhythm.  Ties should also be
412 used when note values cross larger subdivisions of the measure:
413
414 @lilypond[verbatim,quote]
415 \relative c' {
416   r8 c8 ~ c2 r4 |
417   r8^"not" c2 ~ c8 r4
418 }
419 @end lilypond
420
421 If you need to tie many notes across bar lines, it may be
422 easier to use automatic note splitting, see @ref{Automatic note
423 splitting}.  This mechanism automatically splits long notes, and
424 ties them across bar lines.
425
426 @cindex ties and chords
427 @cindex chords and ties
428
429 When a tie is applied to a chord, all note heads whose pitches
430 match are connected.  When no note heads match, no ties will be
431 created.  Chords may be partially tied by placing the tie inside
432 the chord.
433
434 @lilypond[quote,verbatim,relative=1]
435 <c e g> ~ <c e g>
436 <c~ e g~ b> <c e g b>
437 @end lilypond
438
439 @cindex repeating ties
440 @cindex ties, repeating
441 @cindex volta brackets and ties
442 @cindex ties and volta brackets
443
444 @funindex \repeatTie
445 @funindex repeatTie
446
447 When a second alternative of a repeat starts with a tied note, you
448 have to specify the repeated tie as follows:
449
450 @lilypond[quote,relative=2,verbatim]
451 \repeat volta 2 { c g <c e>2 ~ }
452 \alternative {
453   % First alternative: following note is tied normally
454   { <c e>2. r4 }
455   % Second alternative: following note has a repeated tie
456   { <c e>2\repeatTie d4 c } }
457 @end lilypond
458
459 @cindex laissez vibrer
460 @cindex ties, laissez vibrer
461
462 @funindex \laissezVibrer
463 @funindex laissezVibrer
464
465 @notation{L.v.}@: ties (@notation{laissez vibrer}) indicate that
466 notes must not be damped at the end.  It is used in notation for
467 piano, harp and other string and percussion instruments.  They can
468 be entered as follows:
469
470 @lilypond[quote,verbatim,relative=1]
471 <c f g>1\laissezVibrer
472 @end lilypond
473
474 @cindex ties, placement
475
476 @funindex \tieUp
477 @funindex tieUp
478 @funindex \tieDown
479 @funindex tieDown
480 @funindex \tieNeutral
481 @funindex tieNeutral
482
483 Ties may be manually placed above or below the staff; see
484 @ref{Direction and placement}.
485
486 @cindex ties, appearance
487 @cindex ties, dotted
488 @cindex ties, dashed
489 @cindex dashed ties
490 @cindex dotted ties
491
492 @funindex \tieDotted
493 @funindex tieDotted
494 @funindex \tieDashed
495 @funindex tieDashed
496 @funindex \tieSolid
497 @funindex tieSolid
498
499 Ties may be made dashed, dotted, or a combination of solid and
500 dashed.
501
502 @lilypond[quote, verbatim, relative=1]
503 \tieDotted
504 c2 ~ c
505 \tieDashed
506 c2 ~ c
507 \tieHalfDashed
508 c2 ~ c
509 \tieHalfSolid
510 c2 ~ c
511 \tieSolid
512 c2 ~ c
513 @end lilypond
514
515 Custom dash patterns can be specified:
516
517 @lilypond[quote, verbatim, relative=1]
518 \tieDashPattern #0.3 #0.75
519 c2 ~ c
520 \tieDashPattern #0.7 #1.5
521 c2 ~ c
522 \tieSolid
523 c2 ~ c
524 @end lilypond
525
526 Dash pattern definitions for ties have the same structure as dash
527 pattern definitions for slurs. For more information about complex dash
528 patterns, see @ref{Slurs}.
529
530 Override @var{whiteout} and @var{layer} layout properties for ties that
531 collide with other objects in a staff.
532
533 @lilypond[verbatim,quote,ragged-right,relative=2]
534 \override Tie #'layer = #-2
535 \override Staff.TimeSignature #'layer = #-1
536 \override Staff.KeySignature #'layer = #-1
537 \override Staff.TimeSignature #'whiteout = ##t
538 \override Staff.KeySignature #'whiteout = ##t
539 b2 b~
540 \time 3/4
541 \key a \major
542 b r4
543 @end lilypond
544
545 @predefined
546 @code{\tieUp},
547 @code{\tieDown},
548 @code{\tieNeutral},
549 @code{\tieDotted},
550 @code{\tieDashed},
551 @code{\tieDashPattern},
552 @code{\tieHalfDashed},
553 @code{\tieHalfSolid},
554 @code{\tieSolid}.
555 @endpredefined
556
557 @snippets
558
559 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
560 {using-ties-with-arpeggios.ly}
561
562 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
563 {engraving-ties-manually.ly}
564
565 @seealso
566 Music Glossary:
567 @rglos{tie},
568 @rglos{laissez vibrer}.
569
570 Notation Reference:
571 @ref{Slurs},
572 @ref{Automatic note splitting}.
573
574 Snippets:
575 @rlsr{Expressive marks},
576 @rlsr{Rhythms}.
577
578 Internals Reference:
579 @rinternals{LaissezVibrerTie},
580 @rinternals{LaissezVibrerTieColumn},
581 @rinternals{TieColumn},
582 @rinternals{Tie}.
583
584 @knownissues
585 Switching staves when a tie is active will not produce a slanted tie.
586
587 Changing clefs or ottavations during a tie is not really well-defined.
588 In these cases, a slur may be preferable.
589
590
591 @node Writing rests
592 @subsection Writing rests
593
594 Rests are entered as part of the music in music expressions.
595
596 @menu
597 * Rests::
598 * Invisible rests::
599 * Full measure rests::
600 @end menu
601
602 @node Rests
603 @unnumberedsubsubsec Rests
604
605 @cindex rest
606 @cindex rest, entering durations
607 @cindex maxima rest
608 @cindex longa rest
609 @cindex breve rest
610
611 @funindex \rest
612 @funindex rest
613 @funindex r
614 @funindex \maxima
615 @funindex maxima
616 @funindex \longa
617 @funindex longa
618 @funindex \breve
619 @funindex breve
620
621 Rests are entered like notes with the note name @code{r}.
622 Durations longer than a whole rest use the following predefined
623 commands:
624
625 @c \time 16/1 is used to avoid spurious bar lines
626 @c and long tracts of empty measures
627 @lilypond[quote,verbatim,relative=2]
628 \new Staff {
629   % These two lines are just to prettify this example
630   \time 16/1
631   \override Staff.TimeSignature #'stencil = ##f
632   % Print a maxima rest, equal to four breves
633   r\maxima
634   % Print a longa rest, equal to two breves
635   r\longa
636   % Print a breve rest
637   r\breve
638   r1 r2 r4 r8 r16 r32 r64 r128
639 }
640 @end lilypond
641
642 @cindex rest, multi-measure
643 @cindex rest, whole-measure
644
645 Whole measure rests, centered in the middle of the measure, must be
646 entered as multi-measure rests.  They can be used for a single
647 measure as well as many measures and are discussed in
648 @ref{Full measure rests}.
649
650 @cindex rest, specifying vertical position
651
652 To explicitly specify a rest's vertical position, write a note
653 followed by @code{\rest}.  A rest of the duration of the note will
654 be placed at the staff position where the note would appear.  This
655 allows for precise manual formatting of polyphonic music, since the
656 automatic rest collision formatter will not move these rests.
657
658 @lilypond[quote,verbatim,relative=2]
659 a4\rest d4\rest
660 @end lilypond
661
662 @snippets
663
664 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
665 {rest-styles.ly}
666
667
668 @seealso
669 Music Glossary:
670 @rglos{breve},
671 @rglos{longa},
672 @rglos{maxima}.
673
674 Notation Reference:
675 @ref{Full measure rests}.
676
677 Snippets:
678 @rlsr{Rhythms}.
679
680 Internals Reference:
681 @rinternals{Rest}.
682
683
684 @knownissues
685
686 @c Deliberately duplicated in Durations and Rests.  -gp
687 There is no fundamental limit to rest durations (both in terms of
688 longest and shortest), but the number of glyphs is limited: there
689 are rests from 128th to maxima (8 x whole).
690
691
692 @node Invisible rests
693 @unnumberedsubsubsec Invisible rests
694
695 @cindex skip
696 @cindex invisible rest
697 @cindex rest, invisible
698 @cindex spacer note
699 @cindex spacer rest
700
701 @funindex s
702 @funindex \skip
703 @funindex skip
704
705 An invisible rest (also called a @q{spacer rest}) can be entered
706 like a note with the note name@tie{}@code{s}:
707
708 @lilypond[verbatim,quote,relative=2]
709 c4 c s c
710 s2 c
711 @end lilypond
712
713 @cindex lyrics, skip
714
715 Spacer rests are available only in note mode and chord mode.  In
716 other situations, for example, when entering lyrics, the
717 command @code{\skip} is used to skip a musical moment.
718 @code{\skip} requires an explicit duration, but this is ignored if
719 the lyrics derive their durations from the notes in an associated
720 melody through @code{\addlyrics} or @code{\lyricsto}.
721
722 @lilypond[quote,verbatim,relative=2]
723 <<
724   {
725     a2 \skip2 a2 a2
726   }
727   \new Lyrics {
728     \lyricmode {
729       foo2 \skip 1 bla2
730     }
731   }
732 >>
733 @end lilypond
734
735 Because @code{\skip} is a command, it does not affect the default
736 durations of following notes, unlike@tie{}@code{s}.
737
738 @lilypond[quote,verbatim,relative=2]
739 <<
740   {
741     \repeat unfold 8 { a4 }
742   }
743   {
744     a4 \skip 2 a |
745     s2 a
746   }
747 >>
748 @end lilypond
749
750
751 A spacer rest implicitly causes @code{Staff} and @code{Voice}
752 contexts to be created if none exist, just like notes and rests
753 do:
754
755 @lilypond[quote,verbatim,relative=2]
756 s1 s s
757 @end lilypond
758
759 @code{\skip} simply skips musical time; it creates no output of
760 any kind.
761
762 @lilypond[quote,verbatim,relative=2]
763 % This is valid input, but does nothing
764 \skip 1 \skip1 \skip 1
765 @end lilypond
766
767
768 @seealso
769 Learning Manual:
770 @rlearning{Visibility and color of objects}.
771
772 Notation Reference:
773 @ref{Hidden notes},
774 @ref{Visibility of objects}.
775
776 Snippets:
777 @rlsr{Rhythms}.
778
779 Internals Reference:
780 @rinternals{SkipMusic}.
781
782
783 @node Full measure rests
784 @unnumberedsubsubsec Full measure rests
785
786 @cindex multi-measure rests
787 @cindex full-measure rests
788 @cindex rest, multi-measure
789 @cindex rest, full-measure
790 @cindex whole rest for a full measure
791 @cindex rest, whole for a full measure
792
793 @funindex R
794
795 Rests for one or more full measures are entered like notes with
796 the note name uppercase @code{R}:
797
798 @lilypond[quote,verbatim,relative=2]
799 % Rest measures contracted to single measure
800 \compressFullBarRests
801 R1*4
802 R1*24
803 R1*4
804 b2^"Tutti" b4 a4
805 @end lilypond
806
807 The duration of full-measure rests is identical to the duration
808 notation used for notes.  The duration in a multi-measure rest must
809 always be an integral number of measure-lengths, so augmentation dots
810 or fractions must often be used:
811
812 @lilypond[quote,verbatim,relative=2]
813 \compressFullBarRests
814 \time 2/4
815 R1 | R2 |
816 \time 3/4
817 R2. | R2.*2 |
818 \time 13/8
819 R1*13/8 | R1*13/8*12 |
820 \time 10/8
821 R4*5*4 |
822 @end lilypond
823
824 A full-measure rest is printed as either a whole or breve rest,
825 centered in the measure, depending on the time signature.
826
827 @lilypond[quote,verbatim,relative=2]
828 \time 4/4
829 R1 |
830 \time 6/4
831 R1*3/2 |
832 \time 8/4
833 R1*2 |
834 @end lilypond
835
836 @cindex multi-measure rest, expanding
837 @cindex multi-measure rest, contracting
838
839 @funindex \expandFullBarRests
840 @funindex expandFullBarRests
841 @funindex \compressFullBarRests
842 @funindex compressFullBarRests
843
844 By default a multi-measure rest is expanded in the printed score to
845 show all the rest measures explicitly.  Alternatively, a multi-measure
846 rest can be shown as a single measure containing a multi-measure rest
847 symbol, with the number of measures of rest printed above the measure:
848
849 @lilypond[quote,verbatim,relative=2]
850 % Default behavior
851 \time 3/4 r2. | R2.*2 |
852 \time 2/4 R2 |
853 \time 4/4
854 % Rest measures contracted to single measure
855 \compressFullBarRests
856 r1 | R1*17 | R1*4 |
857 % Rest measures expanded
858 \expandFullBarRests
859 \time 3/4
860 R2.*2 |
861 @end lilypond
862
863
864 @cindex text on multi-measure rest
865 @cindex multi-measure rest, attaching text
866 @cindex script on multi-measure rest
867 @cindex multi-measure rest, script
868 @cindex fermata on multi-measure rest
869 @cindex multi-measure rest, attaching fermata
870 @cindex markup on multi-measure rest
871 @cindex multi-measure rest with markup
872
873 @funindex \fermataMarkup
874 @funindex fermataMarkup
875 @funindex MultiMeasureRestText
876
877 Markups can be added to multi-measure rests.
878 The predefined command @code{\fermataMarkup}
879 is provided for adding fermatas.
880
881 @lilypond[quote,verbatim,relative=2]
882 \compressFullBarRests
883 \time 3/4
884 R2.*10^\markup { \italic "ad lib." }
885 R2.^\fermataMarkup
886 @end lilypond
887
888 @warning{Markups attached to a multi-measure rest are objects of type
889 @code{MultiMeasureRestText}, not @code{TextScript}.  Overrides must
890 be directed to the correct object, or they will be ignored.  See the
891 following example:}
892
893 @lilypond[quote,verbatim,relative=2]
894 % This fails, as the wrong object name is specified
895 \override TextScript #'padding = #5
896 R1^"wrong"
897 % This is the correct object name to be specified
898 \override MultiMeasureRestText #'padding = #5
899 R1^"right"
900 @end lilypond
901
902 When a multi-measure rest immediately follows a @code{\partial}
903 setting, resulting bar-check warnings may not be displayed.
904
905
906 @funindex \textLengthOn
907 @funindex textLengthOn
908 @funindex \textLengthOff
909 @funindex textLengthOff
910 @funindex \fermataMarkup
911 @funindex fermataMarkup
912 @funindex \compressFullBarRests
913 @funindex compressFullBarRests
914 @funindex \expandFullBarRests
915 @funindex expandFullBarRests
916
917 @predefined
918 @code{\textLengthOn},
919 @code{\textLengthOff},
920 @code{\fermataMarkup},
921 @code{\compressFullBarRests},
922 @code{\expandFullBarRests}.
923 @endpredefined
924
925
926 @snippets
927
928 @cindex church rest
929 @cindex rest, church
930 @cindex kirchenpausen
931
932 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
933 {changing-form-of-multi-measure-rests.ly}
934
935 @cindex multi-measure rests, positioning
936 @cindex positioning multi-measure rests
937
938 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
939 {positioning-multi-measure-rests.ly}
940
941 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
942 {multi-measure-rest-markup.ly}
943
944
945 @seealso
946 Music Glossary:
947 @rglos{multi-measure rest}.
948
949 Notation Reference:
950 @ref{Durations},
951 @ref{Text},
952 @ref{Formatting text},
953 @ref{Text scripts}.
954
955 Snippets:
956 @rlsr{Rhythms}.
957
958 Internals Reference:
959 @rinternals{MultiMeasureRest},
960 @rinternals{MultiMeasureRestNumber},
961 @rinternals{MultiMeasureRestText}.
962
963
964 @cindex fingerings and multi-measure rests
965 @cindex multi-measure rests and fingerings
966
967 @knownissues
968 Fingerings over multi-measure rests (e.g. @code{R1*10-4}) may result
969 in the fingering numeral colliding with the bar counter
970 numeral.
971
972 @cindex condensing rests
973 @cindex rest, condensing ordinary
974
975 There is no way to automatically condense multiple ordinary rests
976 into a single multi-measure rest.
977
978 @cindex rest, collisions of
979
980 Multi-measure rests do not take part in rest collisions.
981
982 @node Displaying rhythms
983 @subsection Displaying rhythms
984
985 @menu
986 * Time signature::
987 * Metronome marks::
988 * Upbeats::
989 * Unmetered music::
990 * Polymetric notation::
991 * Automatic note splitting::
992 * Showing melody rhythms::
993 @end menu
994
995 @node Time signature
996 @unnumberedsubsubsec Time signature
997
998 @cindex time signature
999 @cindex meter
1000
1001 @funindex \time
1002 @funindex time
1003
1004 The time signature is set as follows:
1005
1006 @lilypond[quote,verbatim,relative=2]
1007 \time 2/4 c2
1008 \time 3/4 c2.
1009 @end lilypond
1010
1011 @cindex time signature, visibility of
1012
1013 Time signatures are printed at the beginning of a piece
1014 and whenever the time signature changes.  If a change takes place
1015 at the end of a line a warning time signature sign is printed
1016 there.  This default behavior may be changed, see
1017 @ref{Visibility of objects}.
1018
1019 @lilypond[quote,verbatim,relative=2]
1020 \time 2/4
1021 c2 c
1022 \break
1023 c c
1024 \break
1025 \time 4/4
1026 c c c c
1027 @end lilypond
1028
1029 @cindex time signature style
1030 @cindex meter style
1031
1032 @funindex \numericTimeSignature
1033 @funindex numericTimeSignature
1034 @funindex \defaultTimeSignature
1035 @funindex defaultTimeSignature
1036
1037 The time signature symbol that is used in 2/2 and 4/4 time can be
1038 changed to a numeric style:
1039
1040 @lilypond[quote,verbatim,relative=2]
1041 % Default style
1042 \time 4/4 c1
1043 \time 2/2 c1
1044 % Change to numeric style
1045 \numericTimeSignature
1046 \time 4/4 c1
1047 \time 2/2 c1
1048 % Revert to default style
1049 \defaultTimeSignature
1050 \time 4/4 c1
1051 \time 2/2 c1
1052 @end lilypond
1053
1054
1055 Mensural time signatures are covered in
1056 @ref{Mensural time signatures}.
1057
1058 @cindex time signature default settings
1059 @cindex autobeaming properties for time signatures
1060 @cindex beaming, time signature default properties
1061 @funindex \overrideTimeSignatureSettings
1062
1063 In addition to setting the printed time signature, the @code{\time}
1064 command also sets time-signature-based default values for the properties
1065 @code{baseMoment}, @code{beatStructure}, and @code{beamExceptions}.  The
1066 predefined default values for these properties can be found in
1067 @file{scm/time-signature-settings.scm}.  The existing default values can
1068 be changed, or new default values can be added:
1069
1070 @lilypond[quote,verbatim]
1071 \score {
1072   \new Staff {
1073     \relative c' {
1074       \overrideTimeSignatureSettings
1075         #'(4 . 4)  % timeSignatureFraction
1076         #'(1 . 4)  % baseMomentFraction
1077         #'(3 1)    % beatStructure
1078         #'()       % beamExceptions
1079       \time 4/4
1080       \repeat unfold 8 { c8 } |
1081     }
1082   }
1083 }
1084 @end lilypond
1085
1086 @code{\overrideTimeSignatureSettings} takes four arguments:
1087
1088 @enumerate
1089
1090 @item
1091 @code{@var{timeSignatureFraction}}, a Scheme pair describing the
1092 time signature.
1093
1094 @item
1095 @code{@var{baseMomentFraction}}, a Scheme pair containing the numerator
1096 and denominator of the basic timing unit for the time signature.
1097
1098 @item
1099 @code{@var{beatStructure}}, a Scheme list indicating the structure
1100 of the beats in the measure, in units of the base moment.
1101
1102 @item
1103 @code{@var{beamExceptions}}, an alist containing any beaming rules
1104 for the time signature that go beyond ending at every beat, as
1105 described in @ref{Setting automatic beam behavior}.
1106 @end enumerate
1107
1108 The context containing @code{\overrideTimeSignatureSettings} must
1109 be instantiated before the @code{\overrideTimeSignatureSettings}
1110 call is executed.  That means it must either be explicitly
1111 instantiated or there must be music in the context before the
1112 @code{\overrideTimeSignatureSettings} call:
1113
1114 @lilypond[quote,verbatim]
1115 \score {
1116   \relative c' {
1117     % This call will fail because the context isn't yet instantiated
1118     \overrideTimeSignatureSettings
1119       #'(4 . 4)  % timeSignatureFraction
1120       #'(1 . 4)  % baseMomentFraction
1121       #'(3 1)    % beatStructure
1122       #'()       % beamExceptions
1123     \time 4/4
1124     c8^\markup {"Beamed (2 2)"}
1125     \repeat unfold 7 { c8 } |
1126     % This call will succeed
1127     \overrideTimeSignatureSettings
1128       #'(4 . 4)  % timeSignatureFraction
1129       #'(1 . 4)  % baseMomentFraction
1130       #'(3 1)    % beatStructure
1131       #'()       % beamExceptions
1132     \time 4/4
1133     c8^\markup {"Beamed (3 1)"}
1134     \repeat unfold 7 { c8 } |
1135   }
1136 }
1137 @end lilypond
1138
1139
1140 @cindex time signature properties, restoring default values
1141 @cindex restoring default properties for time signatures
1142 @funindex \revertTimeSignatureSettings
1143
1144 Changed values of default time signature properties can be restored
1145 to the original values:
1146
1147 @lilypond[quote,verbatim]
1148 \score{
1149   \relative c' {
1150     \repeat unfold 8 { c8 } |
1151     \overrideTimeSignatureSettings
1152       #'(4 . 4)  % timeSignatureFraction
1153       #'(1 . 4)  % baseMomentFraction
1154       #'(3 1)    % beatStructure
1155       #'()       % beamExceptions
1156     \time 4/4
1157     \repeat unfold 8 { c8 } |
1158     \revertTimeSignatureSettings #'(4 . 4)
1159     \time 4/4
1160     \repeat unfold 8 { c8 } |
1161   }
1162 }
1163 @end lilypond
1164
1165 Different values of default time signature properties can be established
1166 for different staves by moving the @code{Timing_translator} and the
1167 @code{Default_bar_line_engraver} from the @code{Score} context to the
1168 @code{Staff} context.
1169
1170 @lilypond[quote, verbatim]
1171 \score {
1172   \new StaffGroup <<
1173      \new Staff {
1174         \overrideTimeSignatureSettings
1175           #'(4 . 4)  % timeSignatureFraction
1176           #'(1 . 4)  % baseMomentFraction
1177           #'(3 1)    % beatStructure
1178           #'()       % beamExceptions
1179         \time 4/4
1180         \repeat unfold 8 {c''8}
1181      }
1182      \new Staff {
1183         \overrideTimeSignatureSettings
1184           #'(4 . 4)  % timeSignatureFraction
1185           #'(1 . 4)  % baseMomentFraction
1186           #'(1 3)    % beatStructure
1187           #'()       % beamExceptions
1188         \time 4/4
1189         \repeat unfold 8 {c''8}
1190      }
1191   >>
1192   \layout {
1193     \context {
1194       \Score
1195       \remove "Timing_translator"
1196       \remove "Default_bar_line_engraver"
1197     }
1198     \context {
1199       \Staff
1200       \consists "Timing_translator"
1201       \consists "Default_bar_line_engraver"
1202     }
1203   }
1204 }
1205 @end lilypond
1206
1207 @predefined
1208 @code{\numericTimeSignature},
1209 @code{\defaultTimeSignature}.
1210 @endpredefined
1211
1212
1213 @snippets
1214 @lilypondfile[verbatim,quote,texidoc,doctitle]
1215 {time-signature-printing-only-the-numerator-as-a-number-instead-of-the-fraction.ly}
1216
1217
1218 @seealso
1219 Music Glossary:
1220 @rglos{time signature}
1221
1222 Notation Reference:
1223 @ref{Mensural time signatures},
1224 @ref{Time administration}.
1225
1226 Snippets:
1227 @rlsr{Rhythms}.
1228
1229 Internals Reference:
1230 @rinternals{TimeSignature},
1231 @rinternals{Timing_translator}.
1232
1233 @node Metronome marks
1234 @unnumberedsubsubsec Metronome marks
1235
1236 @cindex tempo
1237 @cindex beats per minute
1238 @cindex metronome mark
1239 @cindex metronome marking with text
1240
1241 @funindex \tempo
1242 @funindex tempo
1243
1244 A basic metronome mark is simple to write:
1245
1246 @lilypond[verbatim,quote,relative=1]
1247 \tempo 4 = 120
1248 c2 d
1249 e4. d8 c2
1250 @end lilypond
1251
1252 Metronome marks may also be printed as a range of two numbers:
1253
1254 @lilypond[verbatim,quote,relative=1]
1255 \tempo 4 = 40 ~ 46
1256 c4. e8 a4 g
1257 b,2 d4 r
1258 @end lilypond
1259
1260 Tempo indications with text can be used instead:
1261
1262 @lilypond[verbatim,quote,relative=2]
1263 \tempo "Allegretto"
1264 c4 e d c
1265 b4. a16 b c4 r4
1266 @end lilypond
1267
1268 Combining a metronome mark and text will automatically place the
1269 metronome mark within parentheses:
1270
1271 @lilypond[verbatim,quote,relative=2]
1272 \tempo "Allegro" 4 = 160
1273 g4 c d e
1274 d4 b g2
1275 @end lilypond
1276
1277 In general, the text can be any markup object:
1278
1279 @lilypond[verbatim,quote,relative=2]
1280 \tempo \markup { \italic Faster } 4 = 132
1281 a8-. r8 b-. r gis-. r a-. r
1282 @end lilypond
1283
1284 A parenthesized metronome mark with no textual indication may be
1285 written by including an empty string in the input:
1286
1287 @lilypond[verbatim,quote,relative=2]
1288 \tempo "" 8 = 96
1289 d4 g e c
1290 @end lilypond
1291
1292
1293 @snippets
1294
1295 @lilypondfile[verbatim,quote,texidoc,doctitle]
1296 {printing-metronome-and-rehearsal-marks-below-the-staff.ly}
1297
1298 @c perhaps also an example of how to move it horizontally?
1299
1300 @lilypondfile[verbatim,quote,texidoc,doctitle]
1301 {changing-the-tempo-without-a-metronome-mark.ly}
1302
1303 @lilypondfile[verbatim,quote,texidoc,doctitle]
1304 {creating-metronome-marks-in-markup-mode.ly}
1305
1306 For more details, see @ref{Formatting text}.
1307
1308
1309 @seealso
1310 Music Glossary:
1311 @rglos{metronome},
1312 @rglos{metronomic indication},
1313 @rglos{tempo indication},
1314 @rglos{metronome mark}.
1315
1316 Notation Reference:
1317 @ref{Formatting text},
1318 @ref{MIDI output}.
1319
1320 Snippets:
1321 @rlsr{Staff notation}.
1322
1323 Internals Reference:
1324 @rinternals{MetronomeMark}.
1325
1326
1327 @node Upbeats
1328 @unnumberedsubsubsec Upbeats
1329
1330 @cindex anacrusis
1331 @cindex upbeat
1332 @cindex partial measure
1333 @cindex measure, partial
1334 @cindex pickup measure
1335 @cindex measure, change length
1336
1337 @funindex measurePosition
1338 @funindex \partial
1339 @funindex partial
1340
1341 Partial or pick-up measures, such as an anacrusis or upbeat, are
1342 entered using the @code{\partial} command, with the syntax
1343
1344 @example
1345 \partial @var{duration}
1346 @end example
1347
1348 @noindent
1349 where @code{@var{duration}} is the rhythmic length of the
1350 remaining interval of the current measure before the start of the
1351 next.
1352
1353 @lilypond[quote,verbatim,relative=2]
1354 \partial 4 e4 |
1355 a2. c,4 |
1356 @end lilypond
1357
1358 The partial measure can be any duration less than the full measure:
1359
1360 @lilypond[quote,verbatim,relative=2]
1361 \partial 8*3 c8 d e |
1362 a2. c,4 |
1363 @end lilypond
1364
1365 Internally, @code{\partial @var{duration}} is translated into:
1366
1367 @example
1368 \set Timing.measurePosition -@var{duration}
1369 @end example
1370
1371 For example, @code{\partial 8*3} becomes:
1372
1373 @example
1374 \set Timing.measurePosition = #(ly:make-moment -3 8)
1375 @end example
1376
1377 The property @code{measurePosition} contains a rational number
1378 indicating how much of the measure has passed at this point.  Note
1379 that this is set to a negative number by the @code{\partial} command:
1380 i.e., @code{\partial 4} is internally translated to @w{@code{-4}}, meaning
1381 @qq{there is a quarter note left in the measure.}
1382
1383 @seealso
1384 Music Glossary:
1385 @rglos{anacrusis}.
1386
1387 Notation Reference:
1388 @ref{Grace notes}.
1389
1390 Snippets:
1391 @rlsr{Rhythms}.
1392
1393 Internal Reference:
1394 @rinternals{Timing_translator}.
1395
1396 @knownissues
1397
1398 The @code{\partial} command is intended to be used only at the
1399 beginning of a piece.  If you use it after the beginning, some
1400 odd warnings or effects may occur, in this case use
1401 @code{\set Timing.measurePosition} instead.
1402
1403 @node Unmetered music
1404 @unnumberedsubsubsec Unmetered music
1405
1406 @cindex bar lines, turning off
1407 @cindex bar numbering, turning off
1408 @cindex cadenza
1409 @cindex unmetered music
1410
1411 @funindex \cadenzaOn
1412 @funindex cadenzaOn
1413 @funindex \cadenzaOff
1414 @funindex cadenzaOff
1415
1416 Bar lines and bar numbers are calculated automatically.  For
1417 unmetered music (some cadenzas, for example), this is not desirable.
1418 To turn off automatic calculation of bar lines and bar numbers,
1419 use the command @code{\cadenzaOn}, and use @code{\cadenzaOff}
1420 to turn them on again.
1421
1422 @lilypond[verbatim,relative=2,quote]
1423 c4 d e d
1424 \cadenzaOn
1425 c4 c d8[ d d] f4 g4.
1426 \cadenzaOff
1427 \bar "|"
1428 d4 e d c
1429 @end lilypond
1430
1431 Bar numbering is resumed at the end of the cadenza as if the
1432 cadenza were not there:
1433
1434 @lilypond[verbatim,relative=2,quote]
1435 % Show all bar numbers
1436 \override Score.BarNumber #'break-visibility = #all-visible
1437 c4 d e d
1438 \cadenzaOn
1439 c4 c d8[ d d] f4 g4.
1440 \cadenzaOff
1441 \bar "|"
1442 d4 e d c
1443 @end lilypond
1444
1445 @cindex beams, in cadenzas
1446 @cindex beams, in unmetered music
1447 @cindex cadenza, with beams
1448 @cindex unmetered music, with beams
1449
1450 Automatic beaming is disabled by @code{\cadenzaOn} and enabled
1451 by @code{\cadenzaOff}.  Therefore, all beaming in cadenzas
1452 must be entered manually (@ref{Manual beams}).
1453
1454 @lilypond[verbatim,relative=2,quote]
1455 \repeat unfold 8 { c8 }
1456 \cadenzaOn
1457 \repeat unfold 5 { c8 }
1458 \bar"|"
1459 \cadenzaOff
1460 \repeat unfold 8 { c8 }
1461 @end lilypond
1462
1463 Note that these predefined commands affect all staves in the
1464 score, even when they are placed in just one @code{Voice}
1465 context.  To change this, move the @code{Timing_translator}
1466 from the @code{Score} context to the @code{Staff} context, as
1467 shown in @ref{Polymetric notation}.
1468
1469 @predefined
1470 @code{\cadenzaOn},
1471 @code{\cadenzaOff}.
1472 @endpredefined
1473
1474
1475 @seealso
1476 Music Glossary:
1477 @rglos{cadenza}.
1478
1479 Notation Reference:
1480 @ref{Visibility of objects},
1481 @ref{Polymetric notation},
1482 @ref{Manual beams}.
1483
1484 Snippets:
1485 @rlsr{Rhythms}.
1486
1487
1488 @cindex cadenza line breaks
1489 @cindex cadenza page breaks
1490 @cindex unmetered music, line breaks
1491 @cindex unmetered music, page breaks
1492 @cindex breaks in unmetered music
1493 @cindex line breaks in cadenzas
1494 @cindex page breaks in cadenzas
1495 @cindex line breaks in unmetered music
1496 @cindex page breaks in unmetered music
1497
1498 @knownissues
1499
1500 LilyPond will insert line breaks and page breaks only at a
1501 bar line.  Unless the unmetered music ends before the end of the
1502 staff line, you will need to insert invisible bar lines with
1503
1504 @example
1505 \bar ""
1506 @end example
1507
1508 @noindent
1509 to indicate where breaks can occur.
1510
1511 You should explicitly create a @code{Voice} context when starting a
1512 piece with @code{\cadenzaOn}, otherwise strange errors may occur.
1513
1514 @example
1515 \new Voice @{
1516   \relative c' @{
1517     \cadenzaOn
1518     c16[^"Solo Free Time" d e f] g2.
1519     \bar "||"
1520     \cadenzaOff
1521   @}
1522 @}
1523 @end example
1524
1525
1526 @node Polymetric notation
1527 @unnumberedsubsubsec Polymetric notation
1528
1529 @c This section necessarily uses \set
1530 @c This is acceptable  -td
1531
1532 @cindex double time signatures
1533 @cindex signatures, polymetric
1534 @cindex time signatures, polymetric
1535 @cindex time signatures, double
1536 @cindex polymetric signatures
1537 @cindex meter, polymetric
1538
1539 @funindex timeSignatureFraction
1540 @funindex \scaleDurations
1541 @funindex scaleDurations
1542 @funindex \times
1543 @funindex times
1544
1545 Polymetric notation is supported explicitly or by manually modifying the
1546 visible time signature symbol and/or scaling note durations.
1547
1548 @subsubheading Different time signatures with equal-length measures
1549
1550 Set a common time signature for each staff, and set the
1551 @code{timeSignatureFraction} to the desired fraction.  Then use the
1552 @code{\scaleDurations} function to scale the durations of the notes in
1553 each staff to the common time signature.
1554
1555 @cindex beams, with polymetric meters
1556 @cindex polymetric meters, with beams
1557
1558 In the following example, music with the time signatures of 3/4, 9/8 and
1559 10/8 are used in parallel.  In the second staff, shown durations are
1560 multiplied by 2/3 (because 2/3 * 9/8 = 3/4) and in the third staff, the
1561 shown durations are multiplied by 3/5 (because 3/5 * 10/8 = 3/4).  It
1562 may be necessary to insert beams manually, as the duration scaling will
1563 affect the autobeaming rules.
1564
1565 @lilypond[quote,verbatim]
1566 \relative c' <<
1567   \new Staff {
1568     \time 3/4
1569     c4 c c |
1570     c4 c c |
1571   }
1572   \new Staff {
1573     \time 3/4
1574     \set Staff.timeSignatureFraction = #'(9 . 8)
1575     \scaleDurations #'(2 . 3)
1576       \repeat unfold 6 { c8[ c c] }
1577   }
1578   \new Staff {
1579     \time 3/4
1580     \set Staff.timeSignatureFraction = #'(10 . 8)
1581     \scaleDurations #'(3 . 5) {
1582       \repeat unfold 2 { c8[ c c] }
1583       \repeat unfold 2 { c8[ c] } |
1584       c4. c \times 2/3 { c8[ c c] } c4
1585     }
1586   }
1587 >>
1588 @end lilypond
1589
1590 @subsubheading Different time signatures with unequal-length measures
1591
1592 Each staff can be given its own independent time signature by
1593 moving the @code{Timing_translator} and the
1594 @code{Default_bar_line_engraver} to the @code{Staff} context.
1595
1596 @lilypond[quote,verbatim]
1597 \layout {
1598   \context {
1599     \Score
1600     \remove "Timing_translator"
1601     \remove "Default_bar_line_engraver"
1602   }
1603   \context {
1604     \Staff
1605     \consists "Timing_translator"
1606     \consists "Default_bar_line_engraver"
1607   }
1608 }
1609
1610 % Now each staff has its own time signature.
1611
1612 \relative c' <<
1613   \new Staff {
1614     \time 3/4
1615     c4 c c |
1616     c4 c c |
1617   }
1618   \new Staff {
1619     \time 2/4
1620     c4 c |
1621     c4 c |
1622     c4 c |
1623   }
1624   \new Staff {
1625     \time 3/8
1626     c4. |
1627     c8 c c |
1628     c4. |
1629     c8 c c |
1630   }
1631 >>
1632 @end lilypond
1633
1634 @funindex \compoundMeter
1635 @cindex compound time signatures
1636 @cindex time signature, compound
1637
1638 @subsubheading Compound time signatures
1639
1640 These are created using the @code{\compoundMeter} function.  The syntax
1641 for this is:
1642
1643 @example
1644 \compoundMeter #'@code{(list of lists)}
1645 @end example
1646
1647 The simplest construction is a single list, where the @emph{last} number
1648 indicates the bottom number of the time signature and those that come
1649 before it, the top numbers.
1650
1651 @lilypond[quote,verbatim]
1652 \relative c' {
1653   \compoundMeter #'((2 2 2 8))
1654   \repeat unfold 6 c8 \repeat unfold 12 c16
1655 }
1656 @end lilypond
1657
1658 More complex meters can be constructed using additional lists.  Also,
1659 automatic beaming settings will be adjusted depending on the values.
1660
1661 @lilypond[quote,verbatim]
1662 \relative c' {
1663   \compoundMeter #'((1 4) (3 8))
1664   \repeat unfold 5 c8 \repeat unfold 10 c16
1665 }
1666
1667 \relative c' {
1668   \compoundMeter #'((1 2 3 8) (3 4))
1669   \repeat unfold 12 c8
1670 }
1671 @end lilypond
1672
1673 @seealso
1674 Music Glossary:
1675 @rglos{polymetric},
1676 @rglos{polymetric time signature},
1677 @rglos{meter}.
1678
1679 Notation Reference:
1680 @ref{Automatic beams},
1681 @ref{Manual beams},
1682 @ref{Time signature},
1683 @ref{Scaling durations}.
1684
1685 Snippets:
1686 @rlsr{Rhythms}.
1687
1688 Internals Reference:
1689 @rinternals{TimeSignature},
1690 @rinternals{Timing_translator},
1691 @rinternals{Default_bar_line_engraver},
1692 @rinternals{Staff}.
1693
1694
1695 @knownissues
1696 When using different time signatures in parallel, notes at the same
1697 moment will be placed at the same horizontal location.  However, the bar
1698 lines in the different staves will cause the note spacing to be less
1699 regular in each of the individual staves than would be normal without
1700 the different time signatures.
1701
1702 @node Automatic note splitting
1703 @unnumberedsubsubsec Automatic note splitting
1704
1705 @cindex notes, splitting
1706 @cindex splitting notes
1707 @cindex rests, splitting
1708 @cindex splitting rests
1709
1710 @funindex Note_heads_engraver
1711 @funindex Completion_heads_engraver
1712 @funindex Completion_rest_engraver
1713
1714 Long notes which overrun bar lines can be converted automatically to
1715 tied notes.  This is done by replacing the @code{Note_heads_engraver}
1716 with the @code{Completion_heads_engraver}.  Similarly, long rests which
1717 overrun bar lines are split automatically by replacing the
1718 @code{Rest_engraver} with the @code{Completion_rest_engraver}.  In the
1719 following example, notes and rests crossing the bar lines are split,
1720 notes are also tied.
1721
1722 @lilypond[quote,verbatim,relative=1]
1723 \new Voice \with {
1724   \remove "Note_heads_engraver"
1725   \consists "Completion_heads_engraver"
1726   \remove "Rest_engraver"
1727   \consists "Completion_rest_engraver"
1728 }
1729
1730 { c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2 r1*2 }
1731 @end lilypond
1732
1733 These engravers split all running notes and rests at the bar line, and
1734 inserts ties for notes.  One of its uses is to debug complex scores: if
1735 the measures are not entirely filled, then the ties show exactly how
1736 much each measure is off.
1737
1738
1739 @seealso
1740 Music Glossary:
1741 @rglos{tie}
1742
1743 Learning Manual:
1744 @rlearning{Engravers explained},
1745 @rlearning{Adding and removing engravers}.
1746
1747 Snippets:
1748 @rlsr{Rhythms}.
1749
1750 Internals Reference:
1751 @rinternals{Note_heads_engraver},
1752 @rinternals{Completion_heads_engraver},
1753 @rinternals{Rest_engraver},
1754 @rinternals{Completion_rest_engraver},
1755 @rinternals{Forbid_line_break_engraver}.
1756
1757
1758 @knownissues
1759
1760 Not all durations (especially those containing tuplets) can be
1761 represented exactly with normal notes and dots, but the
1762 @code{Completion_heads_engraver} will not insert tuplets.
1763
1764 The @code{Completion_heads_engraver} only affects notes; it does not
1765 split rests.
1766
1767
1768 @node Showing melody rhythms
1769 @unnumberedsubsubsec Showing melody rhythms
1770
1771 @cindex melody rhythms, showing
1772 @cindex rhythms, showing melody
1773
1774 Sometimes you might want to show only the rhythm of a melody.  This
1775 can be done with the rhythmic staff.  All pitches of notes on such a
1776 staff are squashed, and the staff itself has a single line
1777
1778 @lilypond[quote,relative=1,verbatim]
1779 <<
1780   \new RhythmicStaff {
1781     \new Voice = "myRhythm" {
1782       \time 4/4
1783       c4 e8 f g2
1784       r4 g g f
1785       g1
1786     }
1787   }
1788   \new Lyrics {
1789     \lyricsto "myRhythm" {
1790       This is my song
1791       I like to sing
1792     }
1793   }
1794 >>
1795 @end lilypond
1796
1797 @cindex guitar chord charts
1798 @cindex strumming rhythms, showing
1799 @cindex guitar strumming rhythms, showing
1800
1801 @funindex Pitch_squash_engraver
1802 @funindex \improvisationOn
1803 @funindex improvisationOn
1804 @funindex \improvisationOff
1805 @funindex improvisationOff
1806
1807 Guitar chord charts often show the strumming rhythms.  This can
1808 be done with the @code{Pitch_squash_engraver} and
1809 @code{\improvisationOn}.
1810
1811
1812 @lilypond[quote,verbatim]
1813 <<
1814   \new ChordNames {
1815     \chordmode {
1816       c1 f g c
1817     }
1818   }
1819   \new Voice \with {
1820     \consists Pitch_squash_engraver
1821   } \relative c'' {
1822     \improvisationOn
1823     c4 c8 c c4 c8 c
1824     f4 f8 f f4 f8 f
1825     g4 g8 g g4 g8 g
1826     c4 c8 c c4 c8 c
1827   }
1828 >>
1829 @end lilypond
1830
1831
1832 @predefined
1833 @code{\improvisationOn},
1834 @code{\improvisationOff}.
1835 @endpredefined
1836
1837
1838 @snippets
1839
1840 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
1841 {guitar-strum-rhythms.ly}
1842
1843
1844 @seealso
1845 Snippets:
1846 @rlsr{Rhythms}.
1847
1848 Internals Reference:
1849 @rinternals{RhythmicStaff},
1850 @rinternals{Pitch_squash_engraver}.
1851
1852
1853 @node Beams
1854 @subsection Beams
1855
1856 @menu
1857 * Automatic beams::
1858 * Setting automatic beam behavior::
1859 * Manual beams::
1860 * Feathered beams::
1861 @end menu
1862
1863 @node Automatic beams
1864 @unnumberedsubsubsec Automatic beams
1865
1866 By default, beams are inserted automatically:
1867
1868 @cindex beams, manual
1869 @cindex manual beams
1870 @cindex beams, customizing rules
1871
1872 @funindex \autoBeamOn
1873 @funindex autoBeamOn
1874 @funindex \autoBeamOff
1875 @funindex autoBeamOff
1876
1877 @lilypond[quote,verbatim,relative=2]
1878 \time 2/4 c8 c c c
1879 \time 6/8 c8 c c c8. c16 c8
1880 @end lilypond
1881
1882 If these automatic decisions are not satisfactory, beaming can be
1883 entered explicitly; see @ref{Manual beams}.  Beams @emph{must} be
1884 entered manually if beams are to be extended over rests.
1885
1886 If automatic beaming is not required, it may be turned off with
1887 @code{\autoBeamOff} and on with @code{\autoBeamOn}:
1888
1889 @lilypond[quote,relative=1,verbatim]
1890 c4 c8 c8. c16 c8. c16 c8
1891 \autoBeamOff
1892 c4 c8 c8. c16 c8.
1893 \autoBeamOn
1894 c16 c8
1895 @end lilypond
1896
1897 @cindex melismata, with beams
1898 @cindex beams, with melismata
1899
1900 @warning{If beams are used to indicate melismata in songs, then
1901 automatic beaming should be switched off with @code{\autoBeamOff}
1902 and the beams indicated manually.}
1903
1904 @warning{Using @code{@bs{}partcombine} with @code{@bs{}autoBeamOff} can
1905 produce unintended results.  See the snippet below for more information.}
1906
1907 Beaming patterns that differ from the automatic defaults can be
1908 created; see @ref{Setting automatic beam behavior}.
1909
1910 @predefined
1911 @code{\autoBeamOff},
1912 @code{\autoBeamOn}.
1913 @endpredefined
1914
1915 @cindex beams, line breaks
1916 @cindex line breaks, beams
1917 @cindex beams, with knee gap
1918 @cindex knee gap, with beams
1919 @funindex breakable
1920
1921 @snippets
1922 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
1923 {beams-across-line-breaks.ly}
1924
1925 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
1926 {changing-beam-knee-gap.ly}
1927
1928 @cindex beams, \partcombine with \autoBeamOff
1929 @cindex voices, \partcombine with \autoBeamOff
1930
1931 @lilypondfile [verbatim, quote, ragged-right, texidoc, doctitle]
1932 {partcombine-and-autobeamoff.ly}
1933
1934 @seealso
1935 Notation Reference:
1936 @ref{Manual beams},
1937 @ref{Setting automatic beam behavior}.
1938
1939 Installed Files:
1940 @file{scm/auto-beam.scm}.
1941
1942 Snippets:
1943 @rlsr{Rhythms}.
1944
1945 Internals Reference:
1946 @rinternals{Auto_beam_engraver},
1947 @rinternals{Beam_engraver},
1948 @rinternals{Beam},
1949 @rinternals{BeamEvent},
1950 @rinternals{BeamForbidEvent},
1951 @rinternals{beam-interface},
1952 @rinternals{unbreakable-spanner-interface}.
1953
1954 @node Setting automatic beam behavior
1955 @unnumberedsubsubsec Setting automatic beam behavior
1956
1957 @cindex beams, with lyrics
1958 @cindex lyrics, with beams
1959
1960 @funindex autoBeaming
1961 @funindex baseMoment
1962 @funindex beamExceptions
1963 @funindex beatStructure
1964 @funindex measureLength
1965 @funindex \time
1966 @funindex time
1967 @funindex \set
1968 @funindex set
1969
1970 In most instances, automatic beams will end at the end of a beat.
1971 The ending points for beats are determined by the context properties
1972 @code{baseMoment} and @code{beatStructure}.  @code{beatStructure}
1973 is a scheme list that defines the length of each beat in the measure
1974 in units of @code{baseMoment}.  By default, @code{baseMoment} is
1975 the one over numerator of the time signature.  By default,
1976 each unit of length @code{baseMoment} is a single beat.
1977
1978 @lilypond[quote,relative=2,verbatim]
1979 \time 5/16
1980 c16^"default" c c c c |
1981 \set Timing.beatStructure = #'(2 3)
1982 c16^"(2+3)" c c c c |
1983 \set Timing.beatStructure = #'(3 2)
1984 c16^"(3+2)" c c c c |
1985 @end lilypond
1986
1987 Beam setting changes can be limited to specific contexts.  If no
1988 setting is included in a lower-level context, the setting of the
1989 enclosing context will apply.
1990
1991 @lilypond[quote, verbatim,relative=1]
1992 \new Staff {
1993   \time 7/8
1994   \set Staff.beatStructure = #'(2 3 2)
1995   <<
1996     \new Voice = one {
1997       \relative c'' {
1998         a8 a a a a a a
1999       }
2000     }
2001     \new Voice = two {
2002       \relative c' {
2003         \voiceTwo
2004         \set Voice.beatStructure = #'(1 3 3)
2005         f8 f f f f f f
2006       }
2007     }
2008   >>
2009 }
2010 @end lilypond
2011
2012 When multiple voices are used the @code{Staff} context must be
2013 specified if the beaming is to be applied to all voices in the
2014 staff:
2015
2016 @lilypond[quote,verbatim,relative=2]
2017 \time 7/8
2018 % rhythm 3-1-1-2
2019 % Change applied to Voice by default --  does not work correctly
2020 % Because of autogenerated voices, all beating will
2021 % be at baseMoment (1 . 8)
2022 \set beatStructure = #'(3 1 1 2)
2023 << {a8 a a a16 a a a a8 a} \\ {f4. f8 f f f} >>
2024
2025 % Works correctly with context Staff specified
2026 \set Staff.beatStructure = #'(3 1 1 2)
2027 << {a8 a a a16 a a a a8 a} \\ {f4. f8 f f f} >>
2028 @end lilypond
2029
2030 The value of @code{baseMoment} can be adjusted to change
2031 the beaming behavior, if desired. When this is done,
2032 the value of @code{beatStructure} must be set to be
2033 compatible with the new value of @code{baseMoment}.
2034
2035 @lilypond[quote,verbatim,relative=2]
2036 \time 5/8
2037 \set Timing.baseMoment = #(ly:make-moment 1 16)
2038 \set Timing.beatStructure = #'(7 3)
2039 \repeat unfold 10 { a16 }
2040 @end lilypond
2041
2042 @code{baseMoment} is a @i{moment}; a unit of musical duration.  A
2043 quantity of type @i{moment} is created by the scheme function
2044 @code{ly:make-moment}.  For more information about this function,
2045 see @ref{Time administration}.
2046
2047 By default @code{baseMoment} is set to one over the denominator of
2048 the time signature. Any exceptions to this default can be found in
2049 @file{scm/time-signature-settings.scm}.
2050
2051 Special autobeaming rules (other than ending a beam on a beat)
2052 are defined in the @code{beamExceptions} property.
2053
2054 @lilypond[quote,relative=2,verbatim]
2055 \time 3/16
2056 \set Timing.beatStructure = #'(2 1)
2057 \set Timing.beamExceptions =
2058   #'(                         ;start of alist
2059      (end .                   ;entry for end of beams
2060       (                       ;start of alist of end points
2061        ((1 . 32) . (2 2 2))   ;rule for 1/32 beams -- end each 1/16
2062       )))                     %close all entries
2063 c16 c c |
2064 \repeat unfold 6 { c32 } |
2065 @end lilypond
2066
2067 @code{beamExceptions} is an alist with a key of rule-type and a value
2068 of beaming-rules.
2069
2070 At this time the only available value of rule-type is
2071 @code{'end} for beam ending.
2072
2073 Beaming-rules is a scheme alist (or list of pairs) that indicates the
2074 beam type and the grouping to be applied to beams containing notes with
2075 a shortest duration of that beam type.
2076
2077 @example
2078 #'((beam-type1 . grouping-1)
2079    (beam-type2 . grouping-2)
2080    (beam-type3 . grouping-3))
2081 @end example
2082
2083 Beam type is a scheme pair indicating the duration of the beam,
2084 e.g., @code{(1 . 16)}.
2085
2086 Grouping is a scheme list indicating the grouping to be applied to
2087 the beam.  The grouping is in units of the beam type.
2088
2089 @warning{ A @code{beamExceptions} value must be @emph{complete}
2090 exceptions list.  That is, every exception that should be applied
2091 must be included in the setting.  It is not possible to add, remove,
2092 or change only one of the exceptions. While this may seem cumbersome,
2093 it means that the current beaming settings need not be known in order
2094 to specify a new beaming pattern.}
2095
2096 When the time signature is changed, default values of
2097 @code{Timing.baseMoment}, @code{Timing.beatStructure},
2098 and @code{Timing.beamExceptions} are set.  Setting the time signature
2099 will reset the automatic beaming settings for the @code{Timing}
2100 context to the default behavior.
2101
2102 @lilypond[quote,verbatim,relative=2]
2103 \time 6/8
2104 \repeat unfold 6 { a8 }
2105 % group (4 + 2)
2106 \set Timing.beatStructure = #'(4 2)
2107 \repeat unfold 6 { a8 }
2108 % go back to default behavior
2109 \time 6/8
2110 \repeat unfold 6 { a8 }
2111 @end lilypond
2112
2113 The default automatic beaming settings for a time signature
2114 are determined in @file{scm/time-signature-settings.scm}.
2115 Changing the default automatic beaming settings
2116 for a time signature is described in @ref{Time signature}.
2117
2118 Many automatic beaming settings for a time signature contain an
2119 entry for @code{beamExceptions}.  For example, 4/4 time tries to
2120 beam the measure in two if there are only eighth notes.  The
2121 @code{beamExceptions} rule can override the @code{beatStructure} setting
2122 if @code{beamExceptions} is not reset.
2123
2124 @lilypond[quote,verbatim,relative=2]
2125 \time 4/4
2126 \set Timing.baseMoment = #(ly:make-moment 1 8)
2127 \set Timing.beatStructure = #'(3 3 2)
2128 % This won't beam (3 3 2) because of beamExceptions
2129 \repeat unfold 8 {c8} |
2130 % This will beam (3 3 2) because we clear beamExceptions
2131 \set Timing.beamExceptions = #'()
2132 \repeat unfold 8 {c8}
2133 @end lilypond
2134
2135 In a similar fashion, eighth notes in 3/4 time are beamed as a full
2136 measure by default.  To beam eighth notes in 3/4 time on the beat,
2137 reset @code{beamExceptions}.
2138
2139 @lilypond[quote,verbatim,relative=2]
2140 \time 3/4
2141 % by default we beam in (3) due to beamExceptions
2142 \repeat unfold 6 {a8} |
2143 % This will beam (1 1 1) due to beatLength
2144 \set Timing.beamExceptions = #'()
2145 \repeat unfold 6 {a8}
2146 @end lilypond
2147
2148 @i{@strong{How automatic beaming works}}
2149
2150 When automatic beaming is enabled, the placement of automatic beams
2151 is determined by the context properties
2152 @code{baseMoment}, @code{beatStructure}, and @code{beamExceptions}.
2153
2154 The following rules, in order of priority, apply when determining
2155 the appearance of beams:
2156
2157 @itemize
2158 @item
2159 If a manual beam is specified with @code{[..]} set the beam
2160 as specified, otherwise
2161
2162 @item
2163 if a beam-ending rule is defined in @code{beamExceptions}
2164 for the beam-type, use it to determine the valid places where
2165 beams may end, otherwise
2166
2167 @item
2168 if a beam-ending rule is defined in @code{beamExceptions}
2169 for a longer beam-type, use it to determined the valid places
2170 where beams may end, otherwise
2171
2172 @item
2173 use the values of @code{baseMoment} and @code{beatStructure} to
2174 determine the ends of the beats in the measure, and
2175 end beams at the end of beats.
2176
2177 @end itemize
2178
2179 In the rules above, the @emph{beam-type} is the duration of the
2180 shortest note in the beamed group.
2181
2182 The default beaming rules can be found in
2183 @file{scm/time-signature-settings.scm}.
2184
2185 @snippets
2186
2187 @cindex beams, subdividing
2188
2189 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
2190 {subdividing-beams.ly}
2191
2192 @cindex beamlets, orienting
2193
2194 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
2195 {strict-beat-beaming.ly}
2196
2197 @cindex measure groupings
2198 @cindex beats, grouping
2199 @cindex grouping beats
2200 @cindex measure sub-grouping
2201
2202 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
2203 {conducting-signs,-measure-grouping-signs.ly}
2204
2205 @cindex beam, endings in a score
2206 @cindex beam, endings with multiple voices
2207
2208 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
2209 {beam-endings-in-score-context.ly}
2210
2211
2212 @seealso
2213 Installed Files:
2214 @file{scm/beam-settings.scm}.
2215
2216 Snippets:
2217 @rlsr{Rhythms}.
2218
2219 Internals Reference:
2220 @rinternals{Auto_beam_engraver},
2221 @rinternals{Beam},
2222 @rinternals{BeamForbidEvent},
2223 @rinternals{beam-interface}.
2224
2225
2226 @knownissues
2227 If a score ends while an automatic beam has not been ended and is
2228 still accepting notes, this last beam will not be typeset at all.
2229 The same holds for polyphonic voices, entered with
2230 @code{<< @dots{} \\ @dots{} >>}.  If a polyphonic voice ends while an
2231 automatic beam is still accepting notes, it is not typeset.
2232 The workaround for these problems is to manually beam the last
2233 beam in the voice or score.
2234
2235 By default, the @code{Timing} translator is aliased to the
2236 @code{Score} context.  This means that setting the time signature
2237 in one staff will affect the beaming of the other staves as well.
2238 Thus, a time signature setting in a later staff will reset custom
2239 beaming that was set in an earlier staff.
2240 One way to avoid this problem is to set the time signature
2241 in only one staff.
2242
2243 @lilypond[quote,verbatim,relative=2]
2244 <<
2245   \new Staff {
2246     \time 3/4
2247     \set Timing.baseMoment = #(ly:make-moment 1 8)
2248     \set Timing.beatStructure = #'(1 5)
2249     \repeat unfold 6 { a8 }
2250   }
2251   \new Staff {
2252     \repeat unfold 6 { a8 }
2253   }
2254 >>
2255 @end lilypond
2256
2257 The default beam settings for the time signature can also be changed, so
2258 that the desired beaming will always be used.  Changes in automatic
2259 beaming settings for a time signature are described in
2260 @ref{Time signature}.
2261
2262 @lilypond[quote,verbatim,relative=2]
2263 <<
2264   \new Staff {
2265     \overrideTimeSignatureSettings
2266       #'(3 . 4)         % timeSignatureFraction
2267       #'(1 . 8)         % baseMomentFraction
2268       #'(1 5)           % beatStructure
2269       #'()              % beamExceptions
2270     \time 3/4
2271     \repeat unfold 6 { a8 }
2272   }
2273   \new Staff {
2274     \time 3/4
2275     \repeat unfold 6 { a8 }
2276   }
2277 >>
2278 @end lilypond
2279
2280 @node Manual beams
2281 @unnumberedsubsubsec Manual beams
2282
2283 @cindex beams, manual
2284 @cindex manual beams
2285
2286 @funindex ]
2287 @funindex [
2288
2289 In some cases it may be necessary to override the automatic
2290 beaming algorithm.  For example, the autobeamer will not put beams
2291 over rests or bar lines, and in choral scores the beaming is
2292 often set to follow the meter of the lyrics rather than the
2293 notes.  Such beams can be specified manually by
2294 marking the begin and end point with @code{[} and @code{]}.
2295
2296 @lilypond[quote,relative=1,verbatim]
2297 r4 r8[ g' a r] r g[ | a] r
2298 @end lilypond
2299
2300 @cindex manual beams, direction shorthand for
2301 @cindex manual beams, grace notes
2302
2303 Beaming direction can be set manually using direction indicators:
2304
2305 @lilypond[quote,relative=2,verbatim]
2306 c8^[ d e] c,_[ d e f g]
2307 @end lilypond
2308
2309 @funindex \noBeam
2310 @funindex noBeam
2311
2312 Individual notes may be marked with @code{\noBeam} to prevent them
2313 from being beamed:
2314
2315 @lilypond[quote,verbatim,relative=2]
2316 \time 2/4
2317 c8 c\noBeam c c
2318 @end lilypond
2319
2320 Grace note beams and normal note beams can occur simultaneously.
2321 Unbeamed grace notes are not put into normal note beams.
2322
2323 @lilypond[quote,verbatim,relative=2]
2324 c4 d8[
2325 \grace { e32[ d c d] }
2326 e8] e[ e
2327 \grace { f16 }
2328 e8 e]
2329 @end lilypond
2330
2331 @funindex stemLeftBeamCount
2332 @funindex stemRightBeamCount
2333
2334 Even more strict manual control with the beams can be achieved by
2335 setting the properties @code{stemLeftBeamCount} and
2336 @code{stemRightBeamCount}.  They specify the number of beams to
2337 draw on the left and right side, respectively, of the next note.
2338 If either property is set, its value will be used only once, and
2339 then it is erased.  In this example, the last @code{f} is printed
2340 with only one beam on the left side, i.e., the eighth-note beam of
2341 the group as a whole.
2342
2343 @lilypond[quote,relative=2,verbatim]
2344 a8[ r16 f g a]
2345 a8[ r16
2346 \set stemLeftBeamCount = #2
2347 \set stemRightBeamCount = #1
2348 f16
2349 \set stemLeftBeamCount = #1
2350 g16 a]
2351 @end lilypond
2352
2353
2354 @predefined
2355 @code{\noBeam}.
2356 @endpredefined
2357
2358
2359 @snippets
2360
2361 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
2362 {flat-flags-and-beam-nibs.ly}
2363
2364
2365 @seealso
2366 Notation Reference:
2367 @ref{Direction and placement},
2368 @ref{Grace notes}.
2369
2370 Snippets:
2371 @rlsr{Rhythms}.
2372
2373 Internals Reference:
2374 @rinternals{Beam},
2375 @rinternals{BeamEvent},
2376 @rinternals{Beam_engraver},
2377 @rinternals{beam-interface},
2378 @rinternals{Stem_engraver}.
2379
2380
2381 @node Feathered beams
2382 @unnumberedsubsubsec Feathered beams
2383
2384 @cindex beams, feathered
2385 @cindex feathered beams
2386
2387 @funindex \featherDurations
2388 @funindex featherDurations
2389 @funindex grow-direction
2390
2391 Feathered beams are used to indicate that a small group of notes
2392 should be played at an increasing (or decreasing) tempo, without
2393 changing the overall tempo of the piece.  The extent of the
2394 feathered beam must be indicated manually using @code{[} and
2395 @code{]}, and the beam feathering is turned on by specifying a
2396 direction to the @code{Beam} property @code{grow-direction}.
2397
2398 If the placement of the notes and the sound in the MIDI output is to
2399 reflect the @emph{ritardando} or @emph{accelerando} indicated by the
2400 feathered beam the notes must be grouped as a music expression delimited
2401 by braces and preceded by a @code{featherDurations} command which specifies
2402 the ratio between the durations of the first and last notes in the
2403 group.
2404
2405 The square brackets show the extent of the beam and the braces show
2406 which notes are to have their durations modified.  Normally these
2407 would delimit the same group of notes, but this is not required: the
2408 two commands are independent.
2409
2410 In the following example the eight 16th notes occupy exactly the
2411 same time as a half note, but the first note is one half as long
2412 as the last one, with the intermediate notes gradually
2413 lengthening.  The first four 32nd notes gradually speed up, while
2414 the last four 32nd notes are at a constant tempo.
2415
2416 @lilypond[relative=1,verbatim,quote]
2417 \override Beam #'grow-direction = #LEFT
2418 \featherDurations #(ly:make-moment 2 1)
2419 { c16[ c c c c c c c] }
2420 \override Beam #'grow-direction = #RIGHT
2421 \featherDurations #(ly:make-moment 2 3)
2422 { c32[ d e f] }
2423 % revert to non-feathered beams
2424 \override Beam #'grow-direction = #'()
2425 { g32[ a b c] }
2426 @end lilypond
2427
2428 @noindent
2429 The spacing in the printed output represents the
2430 note durations only approximately, but the MIDI output is exact.
2431
2432
2433 @predefined
2434 @code{\featherDurations}.
2435 @endpredefined
2436
2437 @seealso
2438 Snippets:
2439 @rlsr{Rhythms}.
2440
2441
2442 @knownissues
2443
2444 The @code{\featherDurations} command only works with very short
2445 music snippets, and when numbers in the fraction are small.
2446
2447
2448 @node Bars
2449 @subsection Bars
2450
2451
2452 @menu
2453 * Bar lines::
2454 * Bar numbers::
2455 * Bar and bar number checks::
2456 * Rehearsal marks::
2457 @end menu
2458
2459 @node Bar lines
2460 @unnumberedsubsubsec Bar lines
2461
2462 @cindex bar lines
2463 @cindex measure lines
2464 @cindex closing bar lines
2465 @cindex bar lines, closing
2466 @cindex double bar lines
2467 @cindex bar lines, double
2468 @cindex repeat bars
2469
2470 @funindex \bar
2471 @funindex bar
2472
2473 Bar lines delimit measures, and are also used to indicate
2474 repeats.  Normally, simple bar lines are automatically inserted
2475 into the printed output at places based on the current time
2476 signature.
2477
2478 The simple bar lines inserted automatically can be changed to
2479 other types with the @code{\bar} command.  For example, a closing
2480 double bar line is usually placed at the end of a piece:
2481
2482 @lilypond[quote,relative=1,verbatim]
2483 e4 d c2 \bar "|."
2484 @end lilypond
2485
2486 It is not invalid if the final note in a measure does not
2487 end on the automatically entered bar line: the note is assumed
2488 to carry over into the next measure.  But if a long sequence
2489 of such carry-over measures appears the music can appear compressed
2490 or even flowing off the page.  This is because automatic line
2491 breaks happen only at the end of complete measures, i.e., where
2492 all notes end before the end of a measure.
2493
2494 @warning{An incorrect duration can cause line breaks to be
2495 inhibited, leading to a line of highly compressed music or
2496 music which flows off the page.}
2497
2498 @cindex line breaks
2499 @cindex bar lines, invisible
2500 @cindex measure lines, invisible
2501
2502 Line breaks are also permitted at manually inserted bar lines
2503 even within incomplete measures.  To allow a line break without
2504 printing a bar line, use the following:
2505
2506 @example
2507 \bar ""
2508 @end example
2509
2510 @noindent
2511 This will insert an invisible bar line and allow (but not
2512 force) a line break to occur at this point.  The bar number
2513 counter is not increased.  To force a line break see
2514 @ref{Line breaking}.
2515
2516 @cindex manual bar lines
2517 @cindex manual measure lines
2518 @cindex bar lines, manual
2519 @cindex measure lines, manual
2520
2521 This and other special bar lines may be inserted manually at any
2522 point.  When they coincide with the end of a measure they replace
2523 the simple bar line which would have been inserted there
2524 automatically.  When they do not coincide with the end of a measure
2525 the specified bar line is inserted at that point in the printed
2526 output.
2527
2528 Note that manual bar lines are purely visual.  They do not affect
2529 any of the properties that a normal bar line would affect, such as
2530 measure numbers, accidentals, line breaks, etc.  They do not affect
2531 the calculation and placement of subsequent automatic bar lines.
2532 When a manual bar line is placed where a normal bar line already
2533 exists, the effects of the original bar line are not altered.
2534
2535 Two types of simple bar lines and five types of double bar lines are
2536 available for manual insertion:
2537
2538 @lilypond[quote,relative=1,verbatim]
2539 f1 \bar "|"
2540 f1 \bar "."
2541 g1 \bar "||"
2542 a1 \bar ".|"
2543 b1 \bar ".|."
2544 c1 \bar "|.|"
2545 d1 \bar "|."
2546 e1
2547 @end lilypond
2548
2549 @noindent
2550 together with dotted and dashed bar lines:
2551
2552 @lilypond[quote,relative=1,verbatim]
2553 f1 \bar ":"
2554 g1 \bar "dashed"
2555 a1
2556 @end lilypond
2557
2558 @noindent
2559 and five types of repeat bar line:
2560
2561 @lilypond[quote,relative=1,verbatim]
2562 f1 \bar "|:"
2563 g1 \bar ":|:"
2564 a1 \bar ":|.|:"
2565 b1 \bar ":|.:"
2566 c1 \bar ":|"
2567 e1
2568 @end lilypond
2569
2570 Additionally, a bar line can be printed as a simple tick:
2571 @lilypond[quote,relative=1,verbatim]
2572 f1 \bar "'"
2573 @end lilypond
2574 However, as such ticks are typically used in Gregorian chant, it is
2575 preferable to use @code{\divisioMinima} there instead, described in
2576 the section @ref{Divisiones} in Gregorian chant.
2577
2578 @cindex segno
2579
2580 For in-line segno signs, there are three types of bar lines which
2581 differ in their behavior at line breaks:
2582
2583 @lilypond[quote,relative=2,verbatim]
2584 c4 c c c
2585 \bar "S"
2586 c4 c c c \break
2587 \bar "S"
2588 c4 c c c
2589 \bar "|S"
2590 c4 c c c \break
2591 \bar "|S"
2592 c4 c c c
2593 \bar "S|"
2594 c4 c c c \break
2595 \bar "S|"
2596 c1
2597 @end lilypond
2598
2599 @cindex repeats
2600
2601 Although the bar line types signifying repeats may be inserted
2602 manually they do not in themselves cause LilyPond to recognize
2603 a repeated section.  Such repeated sections are better entered
2604 using the various repeat commands (see @ref{Repeats}), which
2605 automatically print the appropriate bar lines.
2606
2607 In addition, you can specify @code{"||:"}, which is equivalent to
2608 @code{"|:"} except at line breaks, where it gives a double bar
2609 line at the end of the line and a start repeat at the beginning of
2610 the next line.
2611
2612 @lilypond[quote,relative=2,verbatim]
2613 c4 c c c
2614 \bar "||:"
2615 c4 c c c \break
2616 \bar "||:"
2617 c4 c c c
2618 @end lilypond
2619
2620 For combinations of repeats with the segno sign, there are six different
2621 variations:
2622
2623 @lilypond[quote,relative=2,verbatim]
2624 c4 c c c
2625 \bar ":|S"
2626 c4 c c c \break
2627 \bar ":|S"
2628 c4 c c c
2629 \bar ":|S."
2630 c4 c c c \break
2631 \bar ":|S."
2632 c4 c c c
2633 \bar "S|:"
2634 c4 c c c \break
2635 \bar "S|:"
2636 c4 c c c
2637 \bar ".S|:"
2638 c4 c c c \break
2639 \bar ".S|:"
2640 c4 c c c
2641 \bar ":|S|:"
2642 c4 c c c \break
2643 \bar ":|S|:"
2644 c4 c c c
2645 \bar ":|S.|:"
2646 c4 c c c \break
2647 \bar ":|S.|:"
2648 c1
2649 @end lilypond
2650
2651
2652 In scores with many staves, a @code{\bar} command in one staff is
2653 automatically applied to all staves.  The resulting bar lines are
2654 connected between different staves of a @code{StaffGroup},
2655 @code{PianoStaff}, or @code{GrandStaff}.
2656
2657 @lilypond[quote,relative=1,verbatim]
2658 <<
2659   \new StaffGroup <<
2660     \new Staff {
2661       e4 d
2662       \bar "||"
2663       f4 e
2664     }
2665     \new Staff { \clef bass c4 g e g }
2666   >>
2667   \new Staff { \clef bass c2 c2 }
2668 >>
2669 @end lilypond
2670
2671
2672 @cindex default bar lines, changing
2673 @cindex bar lines, default, changing
2674
2675 @snippets
2676
2677 @funindex whichBar
2678 @funindex defaultBarType
2679 @funindex \bar
2680 @funindex bar
2681 @funindex bartype
2682
2683 The command @samp{\bar @var{bartype}} is a shortcut for
2684 @samp{\set Timing.whichBar = @var{bartype}}.  A bar line is
2685 created whenever the @code{whichBar} property is set.
2686
2687 The default bar type used for automatically inserted bar lines is
2688 @code{"|"}.  This may be changed at any time with
2689 @samp{\set Timing.defaultBarType = @var{bartype}}.
2690
2691
2692 @seealso
2693 Notation Reference:
2694 @ref{Line breaking},
2695 @ref{Repeats},
2696 @ref{Grouping staves}.
2697
2698 Snippets:
2699 @rlsr{Rhythms}.
2700
2701 Internals Reference:
2702 @rinternals{BarLine} (created at @code{Staff} level),
2703 @rinternals{SpanBar} (across staves),
2704 @rinternals{Timing_translator} (for Timing properties).
2705
2706
2707 @node Bar numbers
2708 @unnumberedsubsubsec Bar numbers
2709
2710 @cindex bar numbers
2711 @cindex measure numbers
2712 @cindex numbers, bar
2713 @cindex numbers, measure
2714
2715 @funindex currentBarNumber
2716
2717 Bar numbers are typeset by default at the start of every line except
2718 the first line.  The number itself is stored in the
2719 @code{currentBarNumber} property, which is normally updated
2720 automatically for every measure.  It may also be set manually:
2721
2722 @lilypond[verbatim,quote,relative=1]
2723 c1 c c c
2724 \break
2725 \set Score.currentBarNumber = #50
2726 c1 c c c
2727 @end lilypond
2728
2729 @cindex bar numbers, regular spacing
2730
2731 @funindex barNumberVisibility
2732 @funindex BarNumber
2733
2734 Bar numbers can be typeset at regular intervals instead of just at
2735 the beginning of every line.  To do this the default behavior
2736 must be overridden to permit bar numbers to be printed at places
2737 other than the start of a line.  This is controlled by the
2738 @code{break-visibility} property of @code{BarNumber}.  This takes
2739 three values which may be set to @code{#t} or @code{#f} to specify
2740 whether the corresponding bar number is visible or not.  The order
2741 of the three values is @code{end of line visible}, @code{middle of
2742 line visible}, @code{beginning of line visible}.  In the following
2743 example bar numbers are printed at all possible places:
2744
2745 @lilypond[verbatim,quote,relative=1]
2746 \override Score.BarNumber #'break-visibility = #'#(#t #t #t)
2747 \set Score.currentBarNumber = #11
2748 % Permit first bar number to be printed
2749 \bar ""
2750 c1 | c | c | c
2751 \break
2752 c1 | c | c | c
2753 @end lilypond
2754
2755 @snippets
2756 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
2757 {printing-the-bar-number-for-the-first-measure.ly}
2758
2759 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
2760 {printing-bar-numbers-at-regular-intervals.ly}
2761
2762 @cindex measure number, format
2763 @cindex bar number, format
2764
2765 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
2766 {printing-bar-numbers-inside-boxes-or-circles.ly}
2767
2768 @cindex bar numbers, with letters
2769 @cindex bar numbers, with repeats
2770
2771 @lilypondfile[verbatim,quote,texidoc,doctitle]
2772 {alternative-bar-numbering.ly}
2773
2774 @cindex bar number alignment
2775
2776 @lilypondfile[verbatim,quote,texidoc,doctitle]
2777 {aligning-bar-numbers.ly}
2778
2779 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
2780 {removing-bar-numbers-from-a-score.ly}
2781
2782 @seealso
2783 Snippets:
2784 @rlsr{Rhythms}.
2785
2786 Internals Reference:
2787 @rinternals{BarNumber},
2788 @rinternals{Bar_number_engraver}.
2789
2790 @cindex bar number collision
2791 @cindex collision, bar number
2792
2793 @knownissues
2794 Bar numbers may collide with the top of the @code{StaffGroup} bracket,
2795 if there is one.  To solve this, the @code{padding} property of
2796 @code{BarNumber} can be used to position the number correctly.  See
2797 @rinternals{StaffGroup} and @rinternals{BarNumber} for more.
2798
2799
2800 @node Bar and bar number checks
2801 @unnumberedsubsubsec Bar and bar number checks
2802
2803 @cindex bar check
2804 @cindex bar number check
2805 @cindex measure check
2806 @cindex measure number check
2807
2808 @funindex barCheckSynchronize
2809 @funindex |
2810
2811 Bar checks help detect errors in the entered durations.  A bar check
2812 may be entered using the bar symbol, @code{|}, at any place where a
2813 bar line is expected to fall.  If bar check lines are encountered at
2814 other places, a list of warnings is printed in the log file, showing
2815 the line numbers and lines in which the bar checks failed.  In the
2816 next example, the second bar check will signal an error.
2817
2818 @example
2819 \time 3/4 c2 e4 | g2 |
2820 @end example
2821
2822 Bar checks can also be used in lyrics:
2823
2824 @example
2825 \lyricmode @{
2826   \time 2/4
2827   Twin -- kle | Twin -- kle |
2828 @}
2829 @end example
2830
2831 An incorrect duration can result in a completely garbled score,
2832 especially if the score is polyphonic, so a good place to start
2833 correcting input is by scanning for failed bar checks and
2834 incorrect durations.
2835
2836 If successive bar checks are off by the same musical interval,
2837 only the first warning message is displayed.  This allows the
2838 warning to focus on the source of the timing error.
2839
2840
2841 @funindex |
2842 @funindex pipeSymbol
2843
2844 It is also possible to redefine the action taken when a bar check
2845 or pipe symbol, @code{|}, is encountered in the input, so that
2846 it does something other than a bar check.  This is done by
2847 assigning a music expression to @code{pipeSymbol}.
2848 In the following example @code{|} is set to insert a double bar
2849 line wherever it appears in the input, rather than checking
2850 for end of bar.
2851
2852 @lilypond[quote,verbatim]
2853 pipeSymbol = \bar "||"
2854 {
2855   c'2 c' |
2856   c'2 c'
2857   c'2 | c'
2858   c'2 c'
2859 }
2860 @end lilypond
2861
2862 @funindex \barNumberCheck
2863 @funindex barNumberCheck
2864
2865 When copying large pieces of music, it can be helpful to check that
2866 the LilyPond bar number corresponds to the original that you are
2867 entering from.  This can be checked with @code{\barNumberCheck}, for
2868 example,
2869
2870 @verbatim
2871 \barNumberCheck #123
2872 @end verbatim
2873
2874 @noindent
2875 will print a warning if the @code{currentBarNumber} is not 123
2876 when it is processed.
2877
2878
2879 @seealso
2880 Snippets:
2881 @rlsr{Rhythms}.
2882
2883
2884 @node Rehearsal marks
2885 @unnumberedsubsubsec Rehearsal marks
2886
2887 @cindex rehearsal marks
2888 @cindex mark, rehearsal
2889
2890 @funindex \mark
2891 @funindex mark
2892
2893 To print a rehearsal mark, use the @code{\mark} command.
2894
2895 @lilypond[quote,verbatim,relative=2]
2896 c1 \mark \default
2897 c1 \mark \default
2898 c1 \mark \default
2899 c1 \mark \default
2900 @end lilypond
2901
2902 @noindent
2903 The mark is incremented automatically if you use @code{\mark
2904 \default}, but you can also use an integer argument to set the
2905 mark manually.  The value to use is stored in the property
2906 @code{rehearsalMark}.
2907
2908 @lilypond[quote,verbatim,relative=2]
2909 c1 \mark \default
2910 c1 \mark \default
2911 c1 \mark #8
2912 c1 \mark \default
2913 c1 \mark \default
2914 @end lilypond
2915
2916 @noindent
2917 The letter@tie{}@q{I} is skipped in accordance with engraving
2918 traditions.  If you wish to include the letter @q{I}, then use one
2919 of the following commands, depending on which style of rehearsal mark
2920 you want (letters only, letters in a hollow box, or letters in a
2921 hollow circle).
2922
2923 @example
2924 \set Score.markFormatter = #format-mark-alphabet
2925 \set Score.markFormatter = #format-mark-box-alphabet
2926 \set Score.markFormatter = #format-mark-circle-alphabet
2927 @end example
2928
2929 @lilypond[quote,verbatim,relative=2]
2930 \set Score.markFormatter = #format-mark-box-alphabet
2931 c1 \mark \default
2932 c1 \mark \default
2933 c1 \mark #8
2934 c1 \mark \default
2935 c1 \mark \default
2936 @end lilypond
2937
2938 @cindex rehearsal mark format
2939 @cindex rehearsal mark style
2940 @cindex style, rehearsal mark
2941 @cindex format, rehearsal mark
2942 @cindex mark, rehearsal, style
2943 @cindex mark, rehearsal, format
2944 @cindex rehearsal mark, manual
2945 @cindex mark, rehearsal, manual
2946 @cindex custom rehearsal mark
2947 @cindex manual rehearsal mark
2948
2949 The style is defined by the property @code{markFormatter}.  It is
2950 a function taking the current mark (an integer) and the current
2951 context as argument.  It should return a markup object.  In the
2952 following example, @code{markFormatter} is set to a pre-defined
2953 procedure.  After a few measures, it is set to a procedure that
2954 produces a boxed number.
2955
2956 @lilypond[quote,verbatim,relative=2]
2957 \set Score.markFormatter = #format-mark-numbers
2958 c1 \mark \default
2959 c1 \mark \default
2960 \set Score.markFormatter = #format-mark-box-numbers
2961 c1 \mark \default
2962 \set Score.markFormatter = #format-mark-circle-numbers
2963 c1 \mark \default
2964 \set Score.markFormatter = #format-mark-circle-letters
2965 c1
2966 @end lilypond
2967
2968 The file @file{scm/translation-functions.scm} contains the
2969 definitions of @code{format-mark-numbers} (the default format),
2970 @code{format-mark-box-numbers}, @code{format-mark-letters} and
2971 @code{format-mark-box-letters}.  These can be used as inspiration
2972 for other formatting functions.
2973
2974 You may use @code{format-mark-barnumbers},
2975 @code{format-mark-box-barnumbers}, and
2976 @code{format-mark-circle-barnumbers} to get bar numbers instead of
2977 incremented numbers or letters.
2978
2979 Other styles of rehearsal mark can be specified manually:
2980
2981 @example
2982 \mark "A1"
2983 @end example
2984
2985 @noindent
2986 Note that @code{Score.markFormatter} does not affect marks specified
2987 in this manner.  However, it is possible to apply a @code{\markup} to the
2988 string.
2989
2990 @example
2991 \mark \markup@{ \box A1 @}
2992 @end example
2993
2994 @cindex segno
2995 @cindex coda
2996 @cindex D.S. al Fine
2997 @cindex fermata
2998 @cindex music glyphs
2999 @cindex glyphs, music
3000
3001 @funindex \musicglyph
3002 @funindex musicglyph
3003
3004 Music glyphs (such as the segno sign) may be printed inside a
3005 @code{\mark}
3006
3007 @lilypond[quote,verbatim,relative=1]
3008 c1 \mark \markup { \musicglyph #"scripts.segno" }
3009 c1 \mark \markup { \musicglyph #"scripts.coda" }
3010 c1 \mark \markup { \musicglyph #"scripts.ufermata" }
3011 c1
3012 @end lilypond
3013
3014 @noindent
3015 See @ref{The Feta font}, for a list of symbols which may be
3016 printed with @code{\musicglyph}.
3017
3018 For common tweaks to the positioning of rehearsal marks, see
3019 @ref{Formatting text}.  For more precise control, see
3020 @code{break-alignable-interface} in @ref{Aligning objects}.
3021
3022
3023 @seealso
3024 Notation Reference:
3025 @ref{The Feta font},
3026 @ref{Formatting text},
3027 @ref{Aligning objects}.
3028
3029 Installed Files:
3030 @file{scm/translation-functions.scm} contains
3031 the definitions of @code{format-mark-numbers} and
3032 @code{format-mark-letters}.  They can be used as inspiration for
3033 other formatting functions.
3034
3035 Snippets:
3036 @rlsr{Rhythms}.
3037
3038 Internals Reference:
3039 @rinternals{MarkEvent},
3040 @rinternals{Mark_engraver},
3041 @rinternals{RehearsalMark}.
3042
3043
3044 @node Special rhythmic concerns
3045 @subsection Special rhythmic concerns
3046
3047
3048 @menu
3049 * Grace notes::
3050 * Aligning to cadenzas::
3051 * Time administration::
3052 @end menu
3053
3054 @node Grace notes
3055 @unnumberedsubsubsec Grace notes
3056
3057 @cindex ornaments
3058 @cindex grace notes
3059 @cindex appoggiatura
3060 @cindex acciaccatura
3061
3062 @funindex \grace
3063 @funindex \slashedGrace
3064 @funindex \acciaccatura
3065 @funindex \appoggiatura
3066
3067 Grace notes are musical ornaments, printed in a smaller font, that take
3068 up no additional logical time in a measure.
3069
3070 @lilypond[quote,relative=2,verbatim]
3071 c4 \grace b16 a4(
3072 \grace { b16[ c16] } a2)
3073 @end lilypond
3074
3075 There are three other types of grace notes possible; the
3076 @emph{acciaccatura} -- an unmeasured grace note indicated by a slurred
3077 note with a slashed stem -- and the @emph{appoggiatura}, which takes a
3078 fixed fraction of the main note it is attached to and prints without the
3079 slash.  It is also possible to write a grace note with a slashed stem,
3080 like the @emph{acciaccatura} but without the slur, so as to place it
3081 between notes that are slurred themselves, using the
3082 @code{\slashedGrace} function.
3083
3084 @lilypond[quote,relative=2,verbatim]
3085 \acciaccatura d8 c4
3086 \appoggiatura e8 d4
3087 \acciaccatura { g16[ f] } e2
3088 \slashedGrace a,8 g4
3089 \slashedGrace b16 a4(
3090 \slashedGrace b8 a2)
3091 @end lilypond
3092
3093 The placement of grace notes is synchronized between different staves.
3094 In the following example, there are two sixteenth grace notes for every
3095 eighth grace note
3096
3097 @lilypond[quote,relative=2,verbatim]
3098 <<
3099   \new Staff { e2 \grace { c16[ d e f] } e2 }
3100   \new Staff { c2 \grace { g8[ b] } c2 }
3101 >>
3102 @end lilypond
3103
3104 @cindex grace notes, following
3105
3106 @funindex \afterGrace
3107 @funindex afterGrace
3108
3109 If you want to end a note with a grace, use the @code{\afterGrace}
3110 command.  It takes two arguments: the main note, and the grace
3111 notes following the main note.
3112
3113 @lilypond[quote,verbatim,relative=2]
3114 c1 \afterGrace d1 { c16[ d] } c1
3115 @end lilypond
3116
3117 This will put the grace notes after a space lasting 3/4 of the
3118 length of the main note.  The default fraction 3/4 can be changed by
3119 setting @code{afterGraceFraction}.  The following example shows
3120 the results from setting the space at the default,  at 15/16, and
3121 finally at 1/2 of the main note.
3122
3123 @lilypond[quote,verbatim,relative=2]
3124 <<
3125   \new Staff {
3126     c1 \afterGrace d1 { c16[ d] } c1
3127   }
3128   \new Staff {
3129     #(define afterGraceFraction (cons 15 16))
3130     c1 \afterGrace d1 { c16[ d] } c1
3131   }
3132   \new Staff {
3133     #(define afterGraceFraction (cons 1 2))
3134     c1 \afterGrace d1 { c16[ d] } c1
3135   }
3136 >>
3137 @end lilypond
3138
3139 The space between the main note and the grace note may also be
3140 specified using spacers.  The following example places the grace
3141 note after a space lasting 7/8 of the main note.
3142
3143 @lilypond[quote,verbatim,relative=2]
3144 \new Voice {
3145   <<
3146     { d1^\trill_( }
3147     { s2 s4. \grace { c16[ d] } }
3148   >>
3149   c1)
3150 }
3151 @end lilypond
3152
3153 @cindex tweaking grace notes
3154 @cindex grace notes, tweaking
3155 @cindex grace notes, changing layout settings
3156
3157 A @code{\grace} music expression will introduce special
3158 typesetting settings, for example, to produce smaller type, and
3159 set directions.  Hence, when introducing layout tweaks to
3160 override the special settings, they should be placed inside
3161 the grace expression.  The overrides should also be reverted
3162 inside the grace expression.  Here, the grace note's default stem
3163 direction is overridden and then reverted.
3164
3165 @lilypond[quote,verbatim,relative=2]
3166 \new Voice {
3167   \acciaccatura {
3168     \stemDown
3169     f16->
3170     \stemNeutral
3171   }
3172   g4 e c2
3173 }
3174 @end lilypond
3175
3176
3177 @cindex stem, with slash
3178
3179
3180 @snippets
3181
3182 @lilypondfile[verbatim,quote,texidoc,doctitle]
3183 {using-grace-note-slashes-with-normal-heads.ly}
3184
3185 @lilypondfile[verbatim,quote,texidoc,doctitle]
3186 {tweaking-grace-layout-within-music.ly}
3187
3188 @lilypondfile[verbatim,quote,texidoc,doctitle]
3189 {redefining-grace-note-global-defaults.ly}
3190
3191 @lilypondfile[verbatim,quote,texidoc,doctitle]
3192 {positioning-grace-notes-with-floating-space.ly}
3193
3194
3195 @seealso
3196 Music Glossary:
3197 @rglos{grace notes},
3198 @rglos{acciaccatura},
3199 @rglos{appoggiatura}.
3200
3201 Notation Reference:
3202 @ref{Manual beams}.
3203
3204 Installed Files:
3205 @file{ly/grace-init.ly}.
3206
3207 Snippets:
3208 @rlsr{Rhythms}.
3209
3210 Internals Reference:
3211 @rinternals{GraceMusic},
3212 @rinternals{Grace_beam_engraver},
3213 @rinternals{Grace_engraver},
3214 @rinternals{Grace_spacing_engraver}.
3215
3216
3217 @knownissues
3218
3219 @cindex acciaccatura, multi-note
3220 @cindex multi-note acciaccatura
3221 @cindex grace-note synchronization
3222
3223 A multi-note beamed @i{acciaccatura} is printed without a slash,
3224 and looks exactly the same as a multi-note beamed
3225 @i{appoggiatura}.
3226
3227 @c TODO Add link to LSR snippet to add slash when available
3228
3229 Grace note synchronization can also lead to surprises.  Staff
3230 notation, such as key signatures, bar lines, etc., are also
3231 synchronized.  Take care when you mix staves with grace notes and
3232 staves without, for example,
3233
3234 @lilypond[quote,relative=2,verbatim]
3235 <<
3236   \new Staff { e4 \bar "|:" \grace c16 d2. }
3237   \new Staff { c4 \bar "|:" d2. }
3238 >>
3239 @end lilypond
3240
3241 @noindent
3242 This can be remedied by inserting grace skips of the corresponding
3243 durations in the other staves.  For the above example
3244
3245 @lilypond[quote,relative=2,verbatim]
3246 <<
3247   \new Staff { e4 \bar "|:" \grace c16 d2. }
3248   \new Staff { c4 \bar "|:" \grace s16 d2. }
3249 >>
3250 @end lilypond
3251
3252 The use of grace notes within voice contexts confuses the way the voice
3253 is typeset. This can be overcome by inserting a rest or note between the
3254 voice command and the grace note.
3255
3256 @lilypond[quote,verbatim]
3257 accMusic = {
3258   \acciaccatura { f8 } e8 r8 \acciaccatura { f8 } e8 r4
3259 }
3260
3261 \new Staff {
3262   <<
3263     \new Voice {
3264       \relative c'' {
3265         r8 r8 \voiceOne \accMusic \oneVoice r8 |
3266         r8 \voiceOne r8 \accMusic \oneVoice r8 |
3267       }
3268     }
3269     \new Voice {
3270       \relative c' {
3271         s8 s8 \voiceTwo \accMusic \oneVoice s8 |
3272         s8 \voiceTwo r8 \accMusic \oneVoice s8 |
3273       }
3274     }
3275   >>
3276 }
3277 @end lilypond
3278
3279 Grace sections should only be used within sequential music expressions.
3280 Nesting or juxtaposing grace sections is not supported, and might
3281 produce crashes or other errors.
3282
3283 Each grace note in MIDI output has a length of 1/4 of its actual
3284 duration.  If the combined length of the grace notes is greater than the
3285 length of the preceding note a @qq{@code{Going back in MIDI time}}
3286 error will be generated.  Either make the grace notes shorter in
3287 duration, for example:
3288
3289 @example
3290 \acciaccatura @{ c'8[ d' e' f' g'] @}
3291 @end example
3292
3293 becomes:
3294
3295 @example
3296 \acciaccatura @{ c'16[ d' e' f' g'] @}
3297 @end example
3298
3299 Or explicitly change the musical duration:
3300
3301 @example
3302 \acciaccatura @{ \scaleDurations #' (1 . 2) @{ c'8[ d' e' f' g'] @} @}
3303 @end example
3304
3305 See @ref{Scaling durations}.
3306
3307
3308 @node Aligning to cadenzas
3309 @unnumberedsubsubsec Aligning to cadenzas
3310
3311 @cindex cadenza
3312 @cindex cadenza, aligning to
3313 @cindex aligning to cadenza
3314
3315 In an orchestral context, cadenzas present a special problem: when
3316 constructing a score that includes a measured cadenza or other solo
3317 passage, all other instruments should skip just as many notes as the
3318 length of the cadenza, otherwise they will start too soon or too late.
3319
3320 One solution to this problem is to use the functions
3321 @code{mmrest-of-length} and @code{skip-of-length}.  These Scheme
3322 functions take a defined piece of music as an argument and generate a
3323 multi-measure rest or @code{\skip} exactly as long as the piece.
3324
3325 @lilypond[verbatim,quote]
3326 MyCadenza = \relative c' {
3327   c4 d8 e f g g4
3328   f2 g4 g
3329 }
3330
3331 \new GrandStaff <<
3332   \new Staff {
3333     \MyCadenza c'1
3334     \MyCadenza c'1
3335   }
3336   \new Staff {
3337     $(mmrest-of-length MyCadenza)
3338     c'1
3339     $(skip-of-length MyCadenza)
3340     c'1
3341   }
3342 >>
3343 @end lilypond
3344
3345
3346 @seealso
3347 Music Glossary:
3348 @rglos{cadenza}.
3349
3350 Snippets:
3351 @rlsr{Rhythms}.
3352
3353
3354 @node Time administration
3355 @unnumberedsubsubsec Time administration
3356
3357 @cindex time administration
3358 @cindex timing (within the score)
3359 @cindex music, unmetered
3360 @cindex unmetered music
3361
3362 @funindex currentBarNumber
3363 @funindex measurePosition
3364 @funindex measureLength
3365
3366 Time is administered by the @code{Timing_translator}, which by
3367 default is to be found in the @code{Score} context.  An alias,
3368 @code{Timing}, is added to the context in which the
3369 @code{Timing_translator} is placed.  To ensure that the
3370 @code{Timing} alias is available, you may need to explicitly
3371 instantiate the containing context (such as @code{Voice} or
3372 @code{Staff}).
3373
3374 The following properties of @code{Timing} are used
3375 to keep track of timing within the score.
3376
3377 @cindex bar number
3378 @cindex measure number
3379
3380 @table @code
3381 @item currentBarNumber
3382 The current measure number.  For an example showing the
3383 use of this property see @ref{Bar numbers}.
3384
3385 @item measureLength
3386 The length of the measures in the current time signature.  For a
3387 4/4 time this is@tie{}1, and for 6/8 it is 3/4.  Its value
3388 determines when bar lines are inserted and how automatic beams
3389 should be generated.
3390
3391 @item measurePosition
3392 The point within the measure where we currently are.  This
3393 quantity is reset by subtracting @code{measureLength} whenever
3394 @code{measureLength} is reached or exceeded.  When that happens,
3395 @code{currentBarNumber} is incremented.
3396
3397 @item timing
3398 If set to true, the above variables are updated for every time
3399 step.  When set to false, the engraver stays in the current
3400 measure indefinitely.
3401
3402 @end table
3403
3404 Timing can be changed by setting any of these variables
3405 explicitly.  In the next example, the default 4/4 time
3406 signature is printed, but @code{measureLength} is set to 5/4.
3407 At 4/8 through the third measure, the @code{measurePosition} is
3408 advanced by 1/8 to 5/8, shortening that bar by 1/8.
3409 The next bar line then falls at 9/8 rather than 5/4.
3410
3411 @lilypond[quote,verbatim]
3412 \new Voice \relative c' {
3413   \set Timing.measureLength = #(ly:make-moment 5 4)
3414   c1 c4 |
3415   c1 c4 |
3416   c4 c
3417   \set Timing.measurePosition = #(ly:make-moment 5 8)
3418   b4 b b8 |
3419   c4 c1 |
3420 }
3421 @end lilypond
3422
3423 @noindent
3424 As the example illustrates, @code{ly:make-moment n m} constructs a
3425 duration of n/m of a whole note.  For example,
3426 @code{ly:make-moment 1 8} is an eighth note duration and
3427 @code{ly:make-moment 7 16} is the duration of seven sixteenths
3428 notes.
3429
3430
3431 @seealso
3432 Notation Reference:
3433 @ref{Bar numbers},
3434 @ref{Unmetered music}.
3435
3436 Snippets:
3437 @rlsr{Rhythms}.
3438
3439 Internals Reference:
3440 @rinternals{Timing_translator},
3441 @rinternals{Score}.
3442