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