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