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