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