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