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