]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/advanced-notation.itely
Rearranging, editing, clean-up.
[lilypond.git] / Documentation / user / advanced-notation.itely
1 @c -*- coding: latin-1; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
3
4 @c A menu is needed before every deeper *section nesting of @node's; run 
5 @c     M-x texinfo-all-menus-update
6 @c to automatically fill in these menus before saving changes
7
8
9 @node Advanced notation
10 @chapter Advanced notation
11
12 This chapter deals with rarely-used and advanced notation.
13
14 @menu
15 * Text::                        
16 * Preparing parts::             
17 * Orchestral music::            
18 * Contemporary notation::       
19 * Educational use::             
20 * Automatic notation::          
21 @end menu
22
23
24
25 @node Text
26 @section Text
27
28 This section explains how to include text (with various formatting) in
29 your scores.
30
31 @menu
32 * Text scripts::                
33 * Text spanners::               
34 * Text marks::                  
35 * Text markup::                 
36 * Text encoding::               
37 * Nested scores::               
38 * Overview of text markup commands::  
39 * Selecting font sizes::        
40 * Font selection::              
41 * New dynamic marks::           
42 * Other text markup issues::    
43 @end menu
44
45
46 @node Text scripts
47 @subsection Text scripts
48
49 @cindex Text scripts
50 @cindex text items, non-empty
51 @cindex non-empty texts
52
53 It is possible to place arbitrary strings of text or @ref{Text markup}
54 above or below notes by using a string @code{c^"text"}.  By default,
55 these indications do not influence the note spacing, but by using the
56 command @code{\fatText}, the widths will be taken into account
57
58 @lilypond[quote,fragment,raggedright,verbatim,relative=1]
59 c4^"longtext" \fatText c4_"longlongtext" c4
60 @end lilypond
61
62 More complex formatting may also be added to a note by using the
63 markup command,
64 @lilypond[fragment,raggedright,verbatim,quote]
65 c'4^\markup { bla \bold bla }
66 @end lilypond
67
68 The @code{\markup} is described in more detail in
69 @ref{Text markup}.
70
71
72 @refcommands
73
74 @cindex @code{\fatText}
75 @code{\fatText},
76 @cindex @code{\emptyText}
77 @code{\emptyText}.
78
79
80 @seealso
81
82 In this manual: @ref{Text markup}.
83
84 Program reference: @internalsref{TextScript}.
85
86
87 @node Text spanners
88 @subsection Text spanners
89
90 @cindex Text spanners
91
92 Some performance indications, e.g., @i{rallentando} or @i{accelerando},
93 are written as text and are extended over many measures with dotted
94 lines.  Such texts are created using text spanners; attach
95 @code{\startTextSpan} and @code{\stopTextSpan} to the first and last
96 notes of the spanner.
97
98 The string to be printed, as well as the style, is set through object
99 properties
100
101 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
102 c1
103 \textSpannerDown
104 \override TextSpanner #'edge-text = #'("rall " . "")
105 c2\startTextSpan b c\stopTextSpan a
106 @end lilypond
107
108 @refcommands
109
110 @cindex textSpannerUp
111 @code{textSpannerUp},
112 @cindex textSpannerDown 
113 @code{textSpannerDown},
114 @cindex textSpannerNeutral
115 @code{textSpannerNeutral}.
116
117
118 @seealso
119
120 Program reference: @internalsref{TextSpanner}.
121
122 Examples: @inputfileref{input/@/regression,text@/-spanner@/.ly}.
123
124
125 @node Text marks
126 @subsection Text marks
127
128 @cindex coda on bar line
129 @cindex segno on bar line
130 @cindex fermata on bar line
131 @cindex bar lines, symbols on
132 @cindex @code{\mark}
133
134 The @code{\mark} command is primarily used for
135 @internalsref{Rehearsal marks},
136 but it can also be used to put signs like coda,
137 segno, and fermata on a bar line.  Use @code{\markup} to
138 access the appropriate symbol
139
140 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
141 c1 \mark \markup { \musicglyph #"scripts.ufermata" }
142 c1
143 @end lilypond
144
145 @noindent
146 @code{\mark} is only typeset above the top stave of the score.  If
147 you specify the @code{\mark} command at a bar line, the resulting
148 mark is placed above the bar line.  If you specify it in the middle
149 of a bar, the resulting mark is positioned between notes.  If it is
150 specified before the beginning of a score line, it is placed
151 before the first note of the line.  Finally, if the mark occurs at
152 a line break, the mark will be printed at the
153 beginning of the next line.
154 @c  IMO this is a bug; hopefully it'll be fixed soon, so I can
155 @c  delete this sentence.   -gp
156 If there is no next line, then the mark will not be printed at all.
157
158
159 @commonprop
160
161 To print the mark at the end of the current line, use
162
163 @example
164 \override Score.RehearsalMark
165   #'break-visibility = #begin-of-line-invisible
166 @end example
167
168 @code{\mark} is often useful for adding text to the end of bar.  In
169 such cases, changing the @code{#'self-alignment} is very useful
170
171 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
172 \override Score.RehearsalMark
173   #'break-visibility = #begin-of-line-invisible
174 c1 c c c4 c c c
175 \once \override Score.RehearsalMark #'self-alignment-X = #right
176 \mark "D.S. al Fine "
177 @end lilypond
178
179
180 @seealso
181
182 Program reference: @internalsref{RehearsalMark}.
183
184
185 @node Text markup
186 @subsection Text markup
187
188 @cindex markup
189 @cindex text markup
190 @cindex markup text
191 @cindex typeset text
192
193 Use @code{\markup} to typeset text.  Commands are entered with the
194 backslash @code{\}.
195
196 @lilypond[quote,verbatim,fragment,relative=1]
197 c1^\markup { hello }
198 c1_\markup { hi there }
199 c1^\markup { hi \bold there, is \italic anyone home? }
200 @end lilypond
201
202 @noindent
203 See @ref{Overview of text markup commands} for a list of all
204 commands.
205
206 @code{\markup} is primarily used for @internalsref{TextScript}s,
207 but it can also be used anywhere text is called in lilypond
208
209 @lilypond[quote,verbatim]
210 \header{ title = \markup{ \bold { foo \italic { bar! } } } }
211 \score{
212   \relative c'' {
213     \override Score.RehearsalMark
214       #'break-visibility = #begin-of-line-invisible
215     \override Score.RehearsalMark #'self-alignment-X = #right
216
217     \set Staff.instrument = \markup{ \column{ Alto solo } }
218     c2^\markup{ don't be \flat }
219     b2
220     a2\mark \markup{ \large \bold Fine }
221     r2
222     \bar "||"
223   }
224   \addlyrics { bar, foo \markup{ \italic bar! } }
225 }
226 @end lilypond
227
228 @cindex font switching
229
230 The markup in the example demonstrates font switching commands.  The
231 command @code{\bold} and @code{\italic} apply to the first following 
232 word only; to apply a command to more than one word, enclose the
233 words with braces,
234
235 @example
236 \markup @{ \bold @{ hi there @} @}
237 @end example
238
239 @noindent
240 For clarity, you can also do this for single arguments, e.g.,
241
242 @example
243 \markup @{ is \italic @{ anyone @} home @}
244 @end example
245
246 @cindex font size, texts
247
248 In markup mode you can compose expressions, similar to mathematical
249 expressions, XML documents, and music expressions.  You can stack
250 expressions grouped vertically with the command @code{\column}.
251 Similarly, @code{\center-align} aligns texts by their center lines:
252
253 @lilypond[quote,verbatim,fragment,relative=1]
254 c1^\markup { \column { a bbbb \line { c d } } }
255 c1^\markup { \center-align { a bbbb c } }
256 c1^\markup { \line { a b c } }
257 @end lilypond
258
259 Markups can be stored in variables and these variables
260 may be attached to notes, like
261 @example
262 allegro = \markup @{ \bold \large @{ Allegro @} @}
263  @{ a^\allegro b c d @}
264 @end example
265
266 Some objects have alignment procedures of their own, which cancel out
267 any effects of alignments applied to their markup arguments as a
268 whole.  For example, the @internalsref{RehearsalMark} is horizontally
269 centered, so using @code{\mark \markup @{ \left-align .. @}} has no
270 effect.
271
272
273 @seealso
274
275 This manual: @ref{Overview of text markup commands}.
276
277 Program reference: @internalsref{TextScript}.
278
279 Init files: @file{scm/@/new@/-markup@/.scm}.
280
281
282 @refbugs
283
284 Kerning or generation of ligatures is only done when the @TeX{}
285 backend is used.  In this case, LilyPond does not account for them so
286 texts will be spaced slightly too wide.
287
288 Syntax errors for markup mode are confusing.
289
290
291 @node Text encoding
292 @subsection Text encoding
293
294 LilyPond uses the Pango library to format multi-lingual texts, and
295 does not perform any input-encoding conversions.  This means that any
296 text, be it title, lyric text, or musical instruction containing
297 non-ASCII characters, must be utf-8.  Easiest to enter such texts is
298 by using a Unicode-aware editor, and save using utf-8 encoding.  Most
299 popular modern editors have utf-8 support, for example, vim, Emacs,
300 jEdit, and GEdit do.
301
302 Depending on the fonts installed, the following fragment shows Hebrew
303 and Cyrillic lyrics,
304
305 @cindex Cyrillic
306 @cindex Hebrew
307 @cindex ASCII, non
308
309 @lilypondfile[fontload]{utf-8.ly}
310
311 The @TeX{} backend does not handle encoding specially at all.  Strings
312 in the input are put in the output as-is.  Extents of text items in the
313 @TeX{} backend, are determined by reading a file created via the
314 @file{texstr} backend,
315
316 @example
317 lilypond -b texstr input/les-nereides.ly
318 latex les-nereides.texstr
319 @end example
320
321 The last command produces @file{les-nereides.textmetrics}, which is
322 read when you execute
323
324 @example
325 lilypond -b tex input/les-nereides.ly
326 @end example
327
328 Both @file{les-nereides.texstr} and @file{les-nereides.tex} need
329 suitable LaTeX wrappers to load appropriate La@TeX{} packages for
330 interpreting non-ASCII strings.
331
332
333 @seealso
334
335 @inputfileref{input/regression,utf-8.ly}
336
337
338 @node Nested scores
339 @subsection Nested scores
340
341 It is possible to nest music inside markups, by adding a @code{\score}
342 block to a markup expression.  Such a score must contain a @code{\layout}
343 block.
344
345 @lilypond[quote,verbatim,raggedright]
346 \relative {
347   c4 d^\markup {
348     \score {
349       \relative { c4 d e f }
350       \layout { }
351     }
352   }
353   e f
354 }
355 @end lilypond
356
357
358 @node Overview of text markup commands
359 @subsection Overview of text markup commands
360
361 The following commands can all be used inside @code{\markup @{ @}}.
362
363 @include markup-commands.tely
364
365
366 @node Selecting font sizes
367 @subsection Selecting font sizes
368
369 The easiest method of setting the font size of any context, is by
370 setting the @code{fontSize} property.
371
372 @lilypond[quote,fragment,relative=1,verbatim]
373 c8
374 \set fontSize = #-4
375 c f
376 \set fontSize = #3
377 g
378 @end lilypond
379
380 @noindent
381 It does not change the size of variable symbols, such as beams or
382 slurs.
383
384 Internally, the @code{fontSize} context property will cause the
385 @code{font-size} property to be set in all layout objects.  The value
386 of @code{font-size} is a number indicating the size relative to the
387 standard size for the current staff height.  Each step up is an
388 increase of approximately 12% of the font size.  Six steps is exactly a
389 factor two.  The Scheme function @code{magstep} converts a
390 @code{font-size} number to a scaling factor.
391
392 @lilypond[quote,fragment,relative=1,verbatim]
393 c8
394 \override NoteHead #'font-size = #-4
395 c f
396 \override NoteHead #'font-size = #3
397 g
398 @end lilypond
399
400 LilyPond has fonts in different design sizes.  The music fonts for
401 smaller sizes are chubbier, while the text fonts are relatively wider.
402 Font size changes are achieved by scaling the design size that is
403 closest to the desired size.  The standard font size (for
404 @code{font-size} equals 0), depends on the standard staff height.  For
405 a 20pt staff, a 10pt font is selected.
406
407 The @code{font-size} property can only be set on layout objects that
408 use fonts. These are the ones supporting the
409 @internalsref{font-interface} layout interface.
410
411 @refcommands
412
413 The following commands set @code{fontSize} for the current voice:
414
415 @cindex @code{\tiny}
416 @code{\tiny}, 
417 @cindex @code{\small}
418 @code{\small}, 
419 @cindex @code{\normalsize}
420 @code{\normalsize}.
421
422
423 @node Font selection
424 @subsection Font selection
425
426 @cindex font selection
427 @cindex font magnification
428 @cindex @code{font-interface}
429
430 By setting the object properties described below, you can select a
431 font from the preconfigured font families.  LilyPond has default
432 support for the feta music fonts and @TeX{}'s Computer Modern text
433 fonts.
434
435 @itemize @bullet
436 @item @code{font-encoding}
437 is a symbol that sets layout of the glyphs.  This should only be set to
438 select different types of non-text fonts, eg.
439
440 @code{fetaBraces} for piano staff braces, @code{fetaMusic} the
441 standard music font, including ancient glyphs, @code{fetaDynamic} for
442 dynamic signs and @code{fetaNumber} for the number font.
443
444 @item @code{font-family}
445 is a symbol indicating the general class of the typeface.  Supported are
446 @code{roman} (Computer Modern), @code{sans}, and @code{typewriter}.
447   
448 @item @code{font-shape}
449 is a symbol indicating the shape of the font.  There are typically
450 several font shapes available for each font family.  Choices are
451 @code{italic}, @code{caps}, and @code{upright}.
452
453 @item @code{font-series}
454 is a symbol indicating the series of the font.  There are typically
455 several font series for each font family and shape.  Choices are
456 @code{medium} and @code{bold}. 
457
458 @end itemize
459
460 Fonts selected in the way sketched above come from a predefined style
461 sheet. If you want to use a font from outside the style sheet, 
462 then set the 
463 @code{font-name} property, 
464
465 @lilypond[fragment,verbatim]
466 {
467   \override Staff.TimeSignature #'font-name = #"Times"
468   \override Staff.TimeSignature #'font-size = #2
469   \time 3/4
470   c'1_\markup {
471     \override #'(font-name . "Vera Bold")
472       { This text is in Vera Bold }
473   }
474 }
475 @end lilypond
476
477 @noindent
478 Any font can be used, as long as it is available to Pango/FontConfig.
479
480 The size of the font may be set with the @code{font-size}
481 property. The resulting size is taken relative to the
482 @code{text-font-size} as defined in the @code{\paper} block.
483
484 @cindex font size
485 @cindex font magnification
486
487 @seealso
488
489 Init files: @file{ly/@/declarations@/-init@/.ly} contains hints how new
490 fonts may be added to LilyPond.
491
492
493 @node New dynamic marks
494 @subsection New dynamic marks
495
496 It is possible to print new dynamic marks or text that should be aligned
497 with dynamics.  Use @code{make-dynamic-script} to create these marks.
498
499 @cindex make-dynamic-script
500
501 @lilypond[quote,verbatim,raggedright]
502 sfzp = #(make-dynamic-script "sfzp")
503 \relative c' {
504   c4 c c\sfzp c
505 }
506 @end lilypond
507
508 @cindex Dynamics, editorial
509 @cindex Dynamics, parenthesis
510
511 It is also possible to print dynamics in round parenthesis or square
512 brackets.  These are often used for adding editorial dynamics.
513
514 @lilypond[quote,verbatim,raggedright]
515 rndf = \markup{ \center-align {\line { \bold{\italic (}
516   \dynamic f \bold{\italic )} }} }
517 boxf = \markup{ \bracket { \dynamic f } }
518 { c'1_\rndf c'1_\boxf }
519 @end lilypond
520
521
522 @node Other text markup issues
523 @subsection Other text markup issues
524
525 To use a normal font within a title, you must define it manually
526
527 @example
528 #(def-markup-command (normal-font layout props arg) (markup?)
529   "Switch to normal text font"
530   (interpret-markup layout (cons '((font-series . 'medium) (font-shape . 'upright)) props) arg))
531
532 \header@{
533   title = \markup@{ ABCD \normal-font ABCD @}
534 @}
535 @end example
536
537
538
539 @node Preparing parts
540 @section Preparing parts
541
542 This section describes various notation that are useful for preparing
543 individual parts.
544
545 @menu
546 * Multi measure rests::         
547 * Metronome marks::             
548 * Rehearsal marks::             
549 * Bar numbers::                 
550 * Instrument names::            
551 * Instrument transpositions::   
552 * Ottava brackets::             
553 * Different editions from one source::  
554 @end menu
555
556
557 @node Multi measure rests
558 @subsection Multi measure rests
559
560 @cindex multi measure rests
561 @cindex Rests, multi measure
562 @cindex whole rests for a full measure
563 @cindex @code{R}
564
565 Multi-measure rests are entered using `@code{R}'.  It is specifically
566 meant for full bar rests and for entering parts: the rest can expand
567 to fill a score with rests, or it can be printed as a single
568 multi-measure rest.  This expansion is controlled by the property
569 @code{Score.skipBars}.  If this is set to true, empty measures will not
570 be expanded, and the appropriate number is added automatically
571
572 @lilypond[quote,raggedright,fragment,verbatim]
573 \time 4/4 r1 | R1 | R1*2
574 \set Score.skipBars = ##t R1*17 R1*4
575 @end lilypond
576
577 The @code{1} in @code{R1} is similar to the duration notation used for
578 notes.  Hence, for time signatures other than 4/4, you must enter other
579 durations.  This can be done with augmentation dots or fractions
580
581 @lilypond[quote,raggedright,fragment,verbatim]
582 \set Score.skipBars = ##t
583 \time 3/4
584 R2. | R2.*2
585 \time 13/8
586 R1*13/8
587 R1*13/8*12 |
588 \time 10/8 R4*5*4 |
589 @end lilypond
590
591 An @code{R} spanning a single measure is printed as either a whole rest
592 or a breve, centered in the measure regardless of the time signature.
593
594 If there are only a few measures of rest, LilyPond prints ``church rests''
595 (a series of rectangles) in the staff.  To replace that with a simple
596 rest, use @code{MultiMeasureRest.expand-limit}.
597
598 @lilypond[quote,raggedright,fragment,verbatim]
599 \set Score.skipBars = ##t
600 R1*2 | R1*5 | R1*9
601 \override MultiMeasureRest #'expand-limit = 1
602 R1*2 | R1*5 | R1*9
603 @end lilypond
604
605 @cindex text on multi-measure rest
606 @cindex script on multi-measure rest
607 @cindex fermata on multi-measure rest
608
609 Texts can be added to multi-measure rests by using the
610 @var{note}-@code{markup} syntax @ref{Text markup}.
611 A variable (@code{\fermataMarkup}) is provided for
612 adding fermatas
613
614 @lilypond[quote,raggedright,verbatim,fragment]
615 \set Score.skipBars = ##t
616 \time 3/4
617 R2.*10^\markup { \italic "ad lib." }
618 R2.^\fermataMarkup
619 @end lilypond
620
621 If you want to have text on the left end of a multi-measure rest,
622 attach the text to a zero-length skip note, i.e.,
623
624 @example
625 s1*0^"Allegro"
626 R1*4
627 @end example
628
629
630 @seealso
631
632 Program reference: @internalsref{MultiMeasureRestMusicGroup},
633 @internalsref{MultiMeasureRest}.
634
635 The layout object @internalsref{MultiMeasureRestNumber} is for the
636 default number, and @internalsref{MultiMeasureRestText} for user
637 specified texts.
638
639
640 @refbugs
641
642 It is not possible to use fingerings (e.g., @code{R1-4}) to put numbers
643 over multi-measure rests.  And the pitch of multi-measure rests (or
644 staff-centered rests) can not be influenced.
645
646 @cindex condensing rests
647
648 There is no way to automatically condense multiple rests into a single
649 multi-measure rest.  Multi-measure rests do not take part in rest
650 collisions.
651
652 Be careful when entering multi-measure rests followed by whole
653 notes.  The following will enter two notes lasting four measures each
654 @example
655 R1*4 cis cis
656 @end example
657 When @code{skipBars} is set, the result will look OK, but the bar
658 numbering will be off.
659
660
661 @node Metronome marks
662 @subsection Metronome marks
663
664 @cindex Tempo
665 @cindex beats per minute
666 @cindex metronome marking
667
668 Metronome settings can be entered as follows
669 @example
670 \tempo @var{duration} = @var{per-minute}
671 @end example
672
673 In the MIDI output, they are interpreted as a tempo change.  In the
674 layout output, a metronome marking is printed
675 @cindex @code{\tempo}
676 @lilypond[quote,raggedright,verbatim,fragment]
677 \tempo 8.=120 c''1
678 @end lilypond
679
680
681 @commonprop
682
683 To change the tempo in the MIDI output without printing anything, make
684 the metronome marking invisible
685 @example
686 \once \override Score.MetronomeMark #'transparent = ##t
687 @end example
688
689 To print other metronome markings, use these markup commands
690 @lilypond[quote,raggedright,verbatim,relative,fragment]
691 c4^\markup {
692   "("
693   \smaller \general-align #Y #DOWN \note #"16." #1
694   "="
695   \smaller \general-align #Y #DOWN \note #"8" #1"
696   ")" }
697 @end lilypond
698
699 @noindent
700 See @ref{Text markup} for more details.
701
702
703 @seealso
704
705 Program reference: @internalsref{MetronomeMark}.
706
707
708 @refbugs
709
710 Collisions are not checked.  If you have notes above the top line of
711 the staff (or notes with articulations, slurs, text, etc), then the
712 metronome marking may be printed on top of musical symbols.  If this
713 occurs, increase the padding of the metronome mark to place it 
714 further away from the staff.
715
716 @example
717 \override Score.MetronomeMark #'padding = #2.5
718 @end example
719
720
721 @node Rehearsal marks
722 @subsection Rehearsal marks
723
724 @cindex Rehearsal marks
725 @cindex @code{\mark}
726
727 To print a rehearsal mark, use the @code{\mark} command
728
729 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
730 c1 \mark \default
731 c1 \mark \default
732 c1 \mark #8
733 c1 \mark \default
734 c1 \mark \default
735 @end lilypond
736
737 @noindent
738 (The letter@tie{}`I' is skipped in accordance with engraving traditions.)
739
740 The mark is incremented automatically if you use @code{\mark
741 \default}, but you can also use an integer argument to set the mark
742 manually.  The value to use is stored in the property
743 @code{rehearsalMark}.
744
745 The style is defined by the property @code{markFormatter}.  It is a
746 function taking the current mark (an integer) and the current context
747 as argument.  It should return a markup object.  In the following
748 example, @code{markFormatter} is set to a canned procedure.  After a
749 few measures, it is set to function that produces a boxed number.
750
751 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
752 \set Score.markFormatter = #format-mark-numbers
753 c1 \mark \default
754 c1 \mark \default
755 \set Score.markFormatter = #format-mark-box-numbers
756 c1 \mark \default
757 c1 \mark \default
758 c1
759 @end lilypond
760
761 The file @file{scm/@/translation@/-functions@/.scm} contains the definitions
762 of @code{format-mark-numbers} (the default format), @code{format-mark-box-numbers},
763 @code{format-mark-letters} and @code{format-mark-box-letters}.
764 These can be used as inspiration for other formatting functions.
765
766
767 @seealso
768
769 Program reference: @internalsref{RehearsalMark}.
770
771 Init files: @file{scm/@/translation@/-functions@/.scm} contains the
772 definition of @code{format-mark-numbers} and
773 @code{format-mark-letters}.  They can be used as inspiration for other
774 formatting functions.
775
776 Examples: @inputfileref{input/@/regression,rehearsal@/-mark@/-letter@/.ly},
777
778 @inputfileref{input/@/regression,rehearsal@/-mark@/-number@/.ly}.
779
780
781 @node Bar numbers
782 @subsection Bar numbers
783
784 @cindex Bar numbers
785 @cindex measure numbers
786 @cindex @code{currentBarNumber}
787
788 Bar numbers are printed by default at the start of the line.  The
789 number itself is stored in the @code{currentBarNumber} property, which
790 is normally updated automatically for every measure.
791
792 Bar numbers can be typeset at regular intervals instead of at the
793 beginning of each line.  This is illustrated in the following example,
794 whose source is available as
795 @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}
796
797 @lilypondfile[raggedright,quote]{bar-number-regular-interval.ly}
798
799 Bar numbers can be typeset manually by tweaking the
800 @code{markFormatter} property
801
802 @lilypond[verbatim,raggedright,quote]
803 \relative c' {
804   \set Score.markFormatter
805     = #(lambda (mark context)
806       (make-bold-markup
807         (make-box-markup
808           (number->string (ly:context-property context
809                                                'currentBarNumber)))))
810
811   c1 \bar "||" \mark \default c1 c1 \mark \default c1 \bar "|."
812 }
813 @end lilypond
814
815 Bar numbers can be manually changed by setting the
816 @code{Staff.currentBarNumber} property
817
818 @lilypond[verbatim,raggedright,quote]
819 \relative c' {
820   \repeat unfold 4 {c4 c c c} \break
821   \set Score.currentBarNumber = #50
822   \repeat unfold 4 {c4 c c c}
823 }
824 @end lilypond
825
826
827 @seealso
828
829 Program reference: @internalsref{BarNumber}.
830
831 Examples:
832 @inputfileref{input/@/test,bar@/-number@/-every@/-five@/-reset@/.ly},
833 and @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}.
834
835
836 @refbugs
837
838 Bar numbers can collide with the @internalsref{StaffGroup} bracket, if
839 there is one at the top.  To solve this, the
840 @code{padding} property of @internalsref{BarNumber} can be
841 used to position the number correctly.
842
843
844 @node Instrument names
845 @subsection Instrument names
846
847 In an orchestral score, instrument names are printed at the left side
848 of the staves.
849
850 This can be achieved by setting @internalsref{Staff}.@code{instrument}
851 and @internalsref{Staff}.@code{instr}.  This will print a string before
852 the start of the staff.  For the first staff, @code{instrument} is
853 used, for the following ones, @code{instr} is used.
854
855 @lilypond[quote,verbatim,raggedright,relative=1,fragment]
856 \set Staff.instrument = "Ploink "
857 \set Staff.instr = "Plk "
858 c1
859 \break
860 c''
861 @end lilypond
862
863 You can also use markup texts to construct more complicated instrument
864 names, for example
865
866 @lilypond[quote,fragment,verbatim,raggedright]
867 \set Staff.instrument = \markup {
868   \column { "Clarinetti"
869             \line { "in B" \smaller \flat } } }
870 c''1
871 @end lilypond
872
873 For longer instrument names, it may be useful to increase the
874 @code{indent} setting in the @code{\layout} block.
875
876 @seealso
877
878 Program reference: @internalsref{InstrumentName}.
879
880 @refbugs
881
882 When you put a name on a grand staff or piano staff, the width of the
883 brace is not taken into account.  You must add extra spaces to the end of
884 the name to avoid a collision.
885
886
887 @node Instrument transpositions
888 @subsection Instrument transpositions
889
890 @cindex transposition, MIDI
891 @cindex transposition, instrument
892
893 The key of a transposing instrument can also be specified.  This
894 applies to many wind instruments, for example, clarinets (B-flat, A, and
895 E-flat), horn (F) and trumpet (B-flat, C, D, and E-flat).
896
897 The transposition is entered after the keyword @code{\transposition}
898
899 @example
900 \transposition bes   %% B-flat clarinet
901 @end example
902
903 @noindent
904 This command sets the property @code{instrumentTransposition}.  The value of
905 this property is used for MIDI output and quotations.  It does not
906 affect how notes are printed in the current staff.  To change the printed
907 output, see @ref{Transpose}.
908
909 The pitch to use for @code{\transposition} should correspond to the
910 transposition of the notes.  For example, when entering a score in
911 concert pitch, typically all voices are entered in C, so
912 they should be entered as
913
914 @example
915 clarinet = @{
916   \transposition c'
917   ...
918 @}
919 saxophone = @{
920   \transposition c'
921   ...
922 @}
923 @end example
924
925 The command @code{\transposition} should be used when the music is
926 entered from a (transposed) orchestral part.  For example, in
927 classical horn parts, the tuning of the instrument is often changed
928 during a piece.  When copying the notes from the part, use
929 @code{\transposition}, e.g.,
930
931 @example
932 \transposition d'
933 c'4^"in D"
934 ...
935 \transposition g'
936 c'4^"in G"
937 ...
938 @end example
939
940
941 @node Ottava brackets
942 @subsection Ottava brackets
943
944 `Ottava' brackets introduce an extra transposition of an octave for
945 the staff.  They are created by invoking the function
946 @code{set-octavation}
947
948 @cindex ottava
949 @cindex 15ma
950 @cindex octavation
951
952 @lilypond[quote,raggedright,verbatim,fragment]
953 \relative c''' {
954   a2 b
955   #(set-octavation 1)
956   a b
957   #(set-octavation 0)
958   a b
959 }
960 @end lilypond
961
962 The @code{set-octavation} function also takes -1 (for 8va bassa) and 2
963 (for 15ma) as arguments.  Internally the function sets the properties
964 @code{ottavation} (e.g., to @code{"8va"}) and
965 @code{centralCPosition}.  For overriding the text of the bracket, set
966 @code{ottavation} after invoking @code{set-octavation}, i.e.,
967
968 @lilypond[quote,raggedright,verbatim]
969 {
970   #(set-octavation 1)
971   \set Staff.ottavation = #"8"
972   c'''
973 }
974 @end lilypond
975
976
977 @seealso
978
979 Program reference: @internalsref{OttavaBracket}.
980
981 Examples: @inputfileref{input/@/regression,ottava@/.ly},
982 @inputfileref{input/@/regression,ottava@/-broken@/.ly}.
983
984
985 @refbugs
986
987 @code{set-octavation} will get confused when clef changes happen
988 during an octavation bracket.
989
990
991 @node Different editions from one source
992 @subsection Different editions from one source
993
994 @cindex @code{\tag}
995 @cindex tag
996
997 The @code{\tag} command marks music expressions with a name.  These
998 tagged expressions can be filtered out later.  With this mechanism it
999 is possible to make different versions of the same music source.
1000
1001 In the following example, we see two versions of a piece of music, one
1002 for the full score, and one with cue notes for the instrumental part
1003
1004 @example
1005 c1
1006 <<
1007   \tag #'part <<
1008     R1 \\
1009     @{
1010       \set fontSize = #-1
1011       c4_"cue" f2 g4 @}
1012   >>
1013   \tag #'score R1
1014 >>
1015 c1
1016 @end example
1017
1018 The same can be applied to articulations, texts, etc.: they are
1019 made by prepending
1020 @example
1021 -\tag #@var{your-tag}
1022 @end example
1023 to an articulation, for example,
1024 @example
1025 c1-\tag #'part ^4
1026 @end example
1027
1028 This defines a note with a conditional fingering indication.
1029
1030 @cindex keepWithTag
1031 @cindex removeWithTag
1032 By applying the @code{\keepWithTag} and @code{\removeWithTag}
1033 commands, tagged expressions can be filtered.  For example,
1034 @example
1035 <<
1036   @var{the music}
1037   \keepWithTag #'score @var{the music}
1038   \keepWithTag #'part @var{the music}
1039 >>
1040 @end example
1041 would yield
1042
1043 @lilypondfile[raggedright,quote]{tag-filter.ly}
1044
1045 The argument of the @code{\tag} command should be a symbol, or a list
1046 of symbols, for example,
1047 @example
1048 \tag #'(original-part transposed-part) @dots{}
1049 @end example
1050
1051
1052 @seealso
1053
1054 Examples: @inputfileref{input/@/regression,tag@/-filter@/.ly}.
1055
1056
1057 @refbugs
1058
1059 Multiple rests are not merged if you create the score with both tagged
1060 sections.
1061  
1062
1063
1064 @node Orchestral music
1065 @section Orchestral music
1066
1067 Orchestral music involves some special notation, both in the full
1068 score and the individual parts.  This section explains how to tackle
1069 some common problems in orchestral music.
1070
1071 @menu
1072 * Automatic part combining::    
1073 * Hiding staves::               
1074 * Quoting other voices::        
1075 * Formatting cue notes::        
1076 * Aligning to cadenzas::        
1077 @end menu
1078
1079
1080 @node Automatic part combining
1081 @subsection Automatic part combining
1082 @cindex automatic part combining
1083 @cindex part combiner
1084
1085 Automatic part combining is used to merge two parts of music onto a
1086 staff.  It is aimed at typesetting orchestral scores.  When the two
1087 parts are identical for a period of time, only one is shown.  In
1088 places where the two parts differ, they are typeset as separate
1089 voices, and stem directions are set automatically.  Also, solo and
1090 @emph{a due} parts are identified and can be marked.
1091
1092 The syntax for part combining is
1093
1094 @example
1095 \partcombine @var{musicexpr1} @var{musicexpr2}
1096 @end example
1097
1098
1099 The following example demonstrates the basic functionality of the part
1100 combiner: putting parts on one staff, and setting stem directions and
1101 polyphony
1102
1103 @lilypond[quote,verbatim,raggedright,fragment]
1104 \new Staff \partcombine
1105   \relative g' { g g a( b) c c r r }
1106   \relative g' { g g r4 r e e g g }
1107 @end lilypond
1108
1109 The first @code{g} appears only once, although it was
1110 specified twice (once in each part).  Stem, slur, and tie directions are
1111 set automatically, depending whether there is a solo or unisono.  The
1112 first part (with context called @code{one}) always gets up stems, and
1113 `Solo', while the second (called @code{two}) always gets down stems and
1114 `Solo II'.
1115
1116 If you just want the merging parts, and not the textual markings, you
1117 may set the property @code{printPartCombineTexts} to false
1118
1119 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
1120 \new Staff <<
1121   \set Staff.printPartCombineTexts = ##f
1122   \partcombine
1123     \relative g' { g a( b) r }
1124     \relative g' { g r4 r f }
1125 >>
1126 @end lilypond
1127
1128 To change the text that is printed for solos or merging, you may
1129 set the @code{soloText}, @code{soloIIText}, and @code{aDueText}
1130 properties.
1131
1132 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
1133 \new Staff <<
1134   \set Score.soloText = #"ichi"
1135   \set Score.soloIIText = #"ni"
1136   \set Score.aDueText = #"tachi"
1137   \partcombine
1138     \relative g' { g4 g a( b) r }
1139     \relative g' { g4 g r r f }
1140 >>
1141 @end lilypond
1142
1143 Both arguments to @code{\partcombine} will be interpreted as
1144 @internalsref{Voice} contexts.  If using relative octaves,
1145 @code{\relative} should be specified for both music expressions, i.e.,
1146
1147 @example
1148 \partcombine
1149   \relative @dots{} @var{musicexpr1}
1150   \relative @dots{} @var{musicexpr2}
1151 @end example
1152
1153 @noindent
1154 A @code{\relative} section that is outside of @code{\partcombine} has
1155 no effect on the pitches of @var{musicexpr1} and @var{musicexpr2}.
1156
1157 @seealso
1158
1159 Program reference: @internalsref{PartCombineMusic}.
1160
1161 @refbugs
1162
1163 When @code{printPartCombineTexts} is set, when the two voices play the
1164 same notes on and off, the part combiner may typeset @code{a2} more
1165 than once in a measure.
1166
1167 @code{\partcombine} cannot be inside @code{\times}.
1168
1169 @code{\partcombine} cannot be inside @code{\relative}.
1170
1171 Internally, the @code{\partcombine} interprets both arguments as
1172 @code{Voice}s named @code{one} and @code{two}, and then decides when
1173 the parts can be combined.  Consequently, if the arguments switch to
1174 differently named @internalsref{Voice} contexts, the events in those
1175 will be ignored.
1176
1177
1178 @node Hiding staves
1179 @subsection Hiding staves
1180
1181 @cindex Frenched scores
1182 @cindex Hiding staves
1183
1184 In orchestral scores, staff lines that only have rests are usually
1185 removed; this saves some space.  This style is called `French Score'.
1186 For @internalsref{Lyrics},
1187 @internalsref{ChordNames} and @internalsref{FiguredBass}, this is
1188 switched on by default.  When the lines of these contexts turn out
1189 empty after the line-breaking process, they are removed.
1190
1191 For normal staves, a specialized @internalsref{Staff} context is
1192 available, which does the same: staves containing nothing (or only
1193 multi-measure rests) are removed.  The context definition is stored in
1194 @code{\RemoveEmptyStaffContext} variable.  Observe how the second staff
1195 in this example disappears in the second line
1196
1197 @lilypond[quote,raggedright,verbatim]
1198 \layout {
1199   \context { \RemoveEmptyStaffContext }
1200 }
1201
1202 {
1203   \relative c' <<
1204     \new Staff { e4 f g a \break c1 }
1205     \new Staff { c4 d e f \break R1 }
1206   >>
1207 }
1208 @end lilypond
1209
1210 The first system shows all staves in full.  If empty staves should be
1211 removed from the first system too, set @code{remove-first} to true in
1212 @internalsref{RemoveEmptyVerticalGroup}.
1213
1214 @example
1215 \override Score.RemoveEmptyVerticalGroup #'remove-first = ##t
1216 @end example
1217
1218 To remove other types of contexts, use @code{\AncientRemoveEmptyStaffContext}
1219 or @code{\RemoveEmptyRhythmicStaffContext}.
1220
1221 Another application is making ossia sections, i.e., alternative
1222 melodies on a separate piece of staff, with help of a Frenched
1223 staff.  See @inputfileref{input/@/test,ossia@/.ly} for an example.
1224
1225
1226 @node Quoting other voices
1227 @subsection Quoting other voices
1228
1229 With quotations, fragments of other parts can be inserted into a part
1230 directly.  Before a part can be quoted, it must be marked especially as
1231 quotable.  This is done with the @code{\addquote} command.
1232
1233 @example
1234 \addquote @var{name} @var{music}
1235 @end example
1236
1237
1238 @noindent
1239 Here, @var{name} is an identifying string.  The @var{music} is any kind
1240 of music.  Here is an example of @code{\addquote}
1241
1242 @example
1243 \addquote clarinet \relative c' @{
1244   f4 fis g gis
1245 @}
1246 @end example
1247
1248 This command must be entered at toplevel, i.e., outside any music
1249 blocks.
1250
1251 After calling @code{\addquote}, the quotation may then be done with
1252 @code{\quoteDuring} or @code{\cueDuring},
1253
1254 @example
1255 \quoteDuring #@var{name} @var{music}
1256 @end example
1257
1258 During a part, a piece of music can be quoted with the @code{\quoteDuring}
1259 command.
1260
1261 @example
1262 \quoteDuring #"clarinet" @{ s2. @}
1263 @end example
1264
1265 This would cite three quarter notes (the duration of @code{s2.})  of
1266 the previously added @code{clarinet} voice.
1267
1268
1269 More precisely, it takes the current time-step of the part being
1270 printed, and extracts the notes at the corresponding point of the
1271 @code{\addquote}d voice.  Therefore, the argument to @code{\addquote}
1272 should be the entire part of the voice to be quoted, including any
1273 rests at the beginning.
1274
1275 Quotations take into account the transposition of both source and target
1276 instruments, if they are specified using the @code{\transposition} command.
1277
1278 @lilypond[quote,raggedright,verbatim]
1279 \addquote clarinet \relative c' {
1280   \transposition bes
1281   f4 fis g gis
1282 }
1283
1284 {
1285   e'8 f'8 \quoteDuring #"clarinet" { s2 }
1286 }
1287 @end lilypond
1288
1289 The type of events that are present in cue notes can be trimmed with
1290 the @code{quotedEventTypes} property.  The default value is
1291 @code{(note-event rest-event)}, which means that only notes and
1292 rests of the cued voice end up in the @code{\quoteDuring}.
1293 Setting
1294
1295 @example
1296 \set Staff.quotedEventTypes =
1297        #'(note-event articulation-event dynamic-event)
1298 @end example
1299
1300 @noindent
1301 will quote notes (but no rests), together with scripts and dynamics.
1302
1303 @refbugs
1304
1305 Only the contents of the first @internalsref{Voice} occurring in an
1306 @code{\addquote} command will be considered for quotation, so
1307 @var{music} can not contain @code{\new} and @code{\context Voice}
1308 statements that would switch to a different Voice.
1309
1310 Quoting grace notes is broken and can even cause LilyPond to crash.
1311
1312 @seealso
1313
1314 In this manual: @ref{Instrument transpositions}.
1315
1316 Examples: @inputfileref{input/@/regression,quote@/.ly}
1317 @inputfileref{input/@/regression,quote@/-transposition@/.ly}
1318
1319 Program reference: @internalsref{QuoteMusic}.
1320
1321
1322 @node Formatting cue notes
1323 @subsection Formatting cue notes
1324
1325 The previous section deals with inserting notes from another voice.
1326 There is a more advanced music function called @code{\cueDuring},
1327 which makes formatting cue notes easier.
1328
1329 The syntax is
1330
1331 @example
1332   \cueDuring #@var{name} #@var{updown} @var{music}
1333 @end example
1334
1335 This will insert notes from the part @var{name} into a
1336 @internalsref{Voice} called @code{cue}.  This happens simultaneously
1337 with @var{music}, which usually is a rest.  When the cue notes start,
1338 the staff in effect becomes polyphonic for a moment.  The argument
1339 @var{updown} determines whether the cue notes should be notated as a
1340 first or second voice.
1341
1342
1343 @lilypond[verbatim,raggedright]
1344 smaller = {
1345   \set fontSize = #-2
1346   \override Stem #'length = #5.5
1347   \override Beam #'thickness = #0.384
1348   \override Beam #'space-function =
1349     #(lambda (beam mult) (* 0.8 (Beam::space_function beam mult)))
1350 }
1351
1352 \addquote clarinet \relative {
1353   R1*20
1354   r2 r8 c f f
1355
1356
1357 \new Staff \relative  <<
1358
1359   % setup a context for  cue  notes.
1360   \context Voice = cue { \smaller \skip 1*21 }
1361   
1362   \set Score.skipBars = ##t
1363   
1364   \new Voice {
1365     R1*20
1366     \cueDuring #"clarinet" #1 {
1367       R1
1368     }
1369     g4 g2. 
1370   }
1371 >>
1372 @end lilypond 
1373
1374
1375 Here are a couple of hints for successful cue notes
1376
1377 @itemize @bullet
1378 @item
1379 Cue notes have smaller font sizes.
1380 @item
1381  the cued part is marked with the instrument playing the cue.
1382 @item
1383  when the original part takes over again, this should be marked with
1384  the name of the original instrument.
1385
1386  @c really?  Are you sure about that last point?  I'll check after 3.0 -gp
1387
1388 @c Yes, this is good practice.  Otherwise, the start of the original
1389 @c part can only be seen from the font size.  This is not good enough
1390 @c for sight-reading.  It is possilbe to use other
1391 @c markers (eg. a big close-bracket over the staff) to indicate the cue notes are
1392 @c finished.
1393 @c -hwn
1394
1395
1396  any other changes introduced by the cued part should also be
1397 undone.  For example, if the cued instrument plays in a different clef,
1398 the original clef should be stated once again.
1399
1400 @end itemize
1401
1402
1403 @node Aligning to cadenzas
1404 @subsection Aligning to cadenzas
1405
1406 In an orchestral context, cadenzas present a special problem:
1407 when constructing a score that includes a cadenza, all other
1408 instruments should skip just as many notes as the length of the
1409 cadenza, otherwise they will start too soon or too late.
1410
1411 A solution to this problem are the functions @code{mmrest-of-length}
1412 and @code{skip-of-length}.  These Scheme functions take a piece of music
1413 as argument, and generate a @code{\skip} or multi-rest, exactly as
1414 long as the piece.  The use of @code{mmrest-of-length} is demonstrated
1415 in the following example.
1416
1417 @lilypond[verbatim,raggedright,quote]
1418 cadenza = \relative c' {
1419   c4 d8 << { e f g } \\ { d4. } >>
1420   g4 f2 g4 g
1421 }
1422
1423 \new GrandStaff <<
1424   \new Staff { \cadenza c'4 }
1425   \new Staff {
1426     #(ly:export (mmrest-of-length cadenza))
1427     c'4
1428   }
1429 >>
1430 @end lilypond
1431
1432
1433
1434
1435 @node Contemporary notation
1436 @section Contemporary notation
1437
1438 In the 20th century, composers have greatly expanded the musical
1439 vocabulary.  With this expansion, many innovations in musical notation
1440 have been tried.  The book ``Music Notation in the 20th century'' by
1441 Kurt Stone gives a comprehensive overview (see @ref{Literature
1442 list}).  In general, the use of new, innovative notation makes a piece
1443 harder to understand and perform and its use should therefore be
1444 avoided.  For this reason, support for contemporary notation in
1445 LilyPond is limited.
1446
1447
1448 @menu
1449 * Polymetric notation::         
1450 * Time administration::         
1451 * Clusters::                    
1452 * Special fermatas::            
1453 * Special noteheads::           
1454 * Feathered beams::             
1455 * Improvisation::               
1456 @end menu
1457
1458
1459 @node Polymetric notation
1460 @subsection Polymetric notation
1461
1462 Double time signatures are not supported explicitly, but they can be
1463 faked.  In the next example, the markup for the time signature is
1464 created with a markup text.  This markup text is inserted in the
1465 @internalsref{TimeSignature} grob.
1466
1467 @lilypond[verbatim,raggedright]
1468 % create 2/4 + 5/8
1469 tsMarkup =\markup {
1470   \number {
1471     \column { "2" "4" }
1472     \musicglyph #"scripts.stopped"
1473     \bracket \column { "5" "8" }
1474   }
1475 }
1476
1477 {
1478   \override Staff.TimeSignature #'print-function = #Text_interface::print
1479   \override Staff.TimeSignature #'text = #tsMarkup
1480   \time 3/2
1481   c'2 \bar ":" c'4 c'4.
1482 }
1483 @end lilypond
1484
1485 Each staff can also have its own time signature.  This is done by
1486 moving the @internalsref{Timing_engraver} to the @internalsref{Staff}
1487 context.
1488
1489 @example
1490 \layout @{
1491   \context @{ \Score \remove "Timing_engraver" @}
1492   \context @{ \Staff \consists "Timing_engraver" @}
1493 @}
1494 @end example
1495
1496
1497 Now, each staff has its own time signature.
1498 @example
1499 <<
1500   \new Staff @{
1501     \time 3/4
1502     c4 c c | c c c |
1503   @}
1504   \new Staff @{
1505     \time 2/4
1506     c4 c | c c | c c
1507   @}
1508   \new Staff @{
1509     \time 3/8
1510     c4. c8 c c c4. c8 c c
1511   @}
1512 >>
1513 @end example
1514
1515 @lilypond[quote,raggedright]
1516 \layout{
1517   \context{ \Score \remove "Timing_engraver" }
1518   \context{ \Staff \consists "Timing_engraver" }
1519 }
1520
1521 \relative c' <<
1522   \new Staff {
1523     \time 3/4
1524     c4 c c | c c c |
1525   }
1526   \new Staff {
1527     \time 2/4
1528     c4 c | c c | c c
1529   }
1530   \new Staff {
1531     \time 3/8
1532     c4. c8 c c c4. c8 c c
1533   }
1534 >>
1535 @end lilypond
1536
1537
1538 A different form of polymetric notation is where note lengths have
1539 different values across staves.
1540
1541 This notation can be created by setting a common time signature for
1542 each staff but replacing it manually using
1543 @code{timeSignatureFraction} to the desired fraction.  Then the printed
1544 durations in each staff are scaled to the common time signature.
1545 The latter is done with @code{\compressMusic}, which is similar to
1546 @code{\times}, but does not create a tuplet bracket.
1547
1548
1549 In this example, music with the time signatures of 3/4, 9/8, and 10/8 are
1550 used in parallel.  In the second staff, shown durations are multiplied by
1551 2/3, so that 2/3 * 9/8 = 3/4, and in the third staff, shown durations are
1552 multiplied by 3/5, so that 3/5 * 10/8 = 3/4.
1553
1554 @lilypond[quote,raggedright,verbatim,fragment]
1555 \relative c' { <<
1556   \new Staff {
1557     \time 3/4
1558     c4 c c | c c c |
1559   }
1560   \new Staff {
1561     \time 3/4
1562     \set Staff.timeSignatureFraction = #'(9 . 8)
1563     \compressMusic #'(2 . 3)
1564       \repeat unfold 6 { c8[ c c] }
1565   }
1566   \new Staff {
1567     \time 3/4
1568     \set Staff.timeSignatureFraction = #'(10 . 8)
1569     \compressMusic #'(3 . 5) {
1570       \repeat unfold 2 { c8[ c c] }
1571       \repeat unfold 2 { c8[ c] }
1572       | c4. c4. \times 2/3 { c8 c c } c4
1573     }
1574   }
1575 >> }
1576 @end lilypond
1577
1578
1579
1580
1581 @refbugs
1582
1583 When using different time signatures in parallel, the spacing is
1584 aligned vertically, but bar lines distort the regular spacing.
1585
1586
1587 @node Time administration
1588 @subsection Time administration
1589
1590 @cindex Time administration
1591
1592 Time is administered by the @internalsref{Time_signature_engraver},
1593 which usually lives in the @internalsref{Score} context.  The
1594 bookkeeping deals with the following variables
1595
1596 @table @code
1597 @item currentBarNumber
1598 The measure number.
1599
1600 @item measureLength
1601 The length of the measures in the current time signature.  For a 4/4
1602 time this is@tie{}1, and for 6/8 it is 3/4.
1603
1604 @item measurePosition
1605 The point within the measure where we currently are.  This quantity
1606 is reset to@tie{}0 whenever it exceeds @code{measureLength}.  When that
1607 happens, @code{currentBarNumber} is incremented.
1608
1609 @item timing
1610 If set to true, the above variables are updated for every time
1611 step.  When set to false, the engraver stays in the current measure
1612 indefinitely.
1613 @end table
1614
1615 Timing can be changed by setting any of these variables explicitly.
1616 In the next example, the 4/4 time signature is printed, but
1617 @code{measureLength} is set to 5/4.  After a while, the measure is
1618 shortened by 1/8, by setting @code{measurePosition} to 7/8 at 2/4
1619 in the measure, so the next bar line will fall at 2/4 + 3/8.  The
1620 3/8 arises because 5/4 normally has 10/8, but we have manually
1621 set the measure position to be 7/8 and 10/8 - 7/8 = 3/8.
1622
1623 @lilypond[quote,raggedright,verbatim,relative,fragment]
1624 \set Score.measureLength = #(ly:make-moment 5 4)
1625 c1 c4
1626 c1 c4
1627 c4 c4
1628 \set Score.measurePosition = #(ly:make-moment 7 8)
1629 b8 b b
1630 c4 c1
1631 @end lilypond
1632
1633
1634
1635 @node Clusters
1636 @subsection Clusters
1637
1638 @cindex cluster
1639
1640 A cluster indicates a continuous range of pitches to be played.  They
1641 can be denoted as the envelope of a set of notes.  They are entered by
1642 applying the function @code{makeClusters} to a sequence of
1643 chords, e.g.,
1644 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1645 \makeClusters { <c e > <b f'> }
1646 @end lilypond
1647
1648 The following example (from
1649 @inputfileref{input/@/regression,cluster@/.ly}) shows what the result
1650 looks like
1651
1652 @lilypondfile[raggedright,quote]{cluster.ly}
1653
1654 Ordinary notes and clusters can be put together in the same staff,
1655 even simultaneously.  In such a case no attempt is made to
1656 automatically avoid collisions between ordinary notes and clusters.
1657
1658 @seealso
1659
1660 Program reference: @internalsref{ClusterSpanner},
1661 @internalsref{ClusterSpannerBeacon},
1662 @internalsref{Cluster_spanner_engraver}.
1663
1664 Examples: @inputfileref{input/@/regression,cluster@/.ly}.
1665
1666 @refbugs
1667
1668 Music expressions like @code{<< @{ g8 e8 @} a4 >>} are not printed
1669 accurately.  Use @code{<g a>8 <e a>8} instead.
1670
1671
1672
1673 @node Special fermatas
1674 @subsection Special fermatas
1675
1676 @cindex fermatas, special
1677
1678 In contemporary music notation, special fermata symbols denote breaks
1679 of differing lengths.  The following fermatas are supported
1680
1681 @lilypond[quote,raggedright]
1682 <<
1683   \oldaddlyrics {
1684     b'2
1685     ^\shortfermata
1686     _\shortfermata
1687     r
1688
1689     b'
1690     ^\fermata
1691     _\fermata
1692     r
1693
1694     b'
1695     ^\longfermata
1696     _\longfermata
1697     r
1698
1699     b'
1700     ^\verylongfermata
1701     _\verylongfermata
1702     r
1703   }
1704   \context Lyrics \lyricmode {
1705     \override LyricText #'font-family = #'typewriter
1706     "shortfermata" "fermata" "longfermata" "verylongfermata"
1707   }
1708 >>
1709 @end lilypond
1710
1711 See @ref{Articulations} for general instructions how to apply scripts
1712 such as fermatas to notes.
1713
1714
1715 @node Special noteheads
1716 @subsection Special noteheads
1717
1718 Different noteheads are used by various instruments for various
1719 meanings -- crosses are used for ``parlato'' with vocalists, stopped
1720 notes on guitar; diamonds are used for harmonics on string instruments,
1721 etc.  There is a shorthand (@code{\harmonic}) for diamond shapes; the
1722 other notehead styles are produced by tweaking the property
1723
1724 @lilypond[raggedright,relative=1,fragment,verbatim,quote]
1725 c4 d
1726 \override NoteHead #'style = #'cross
1727 e f
1728 \revert NoteHead #'style
1729 e d <c f\harmonic> <d a'\harmonic>
1730 @end lilypond
1731
1732 @noindent
1733 To see all notehead styles, please see
1734 @inputfileref{input/@/regression,note@/-head@/-style@/.ly}.
1735
1736
1737 @seealso
1738
1739 Program reference: @internalsref{NoteHead}.
1740
1741
1742 @node Feathered beams
1743 @subsection Feathered beams
1744
1745 Feathered beams are not supported natively, but they can be faked by
1746 forcing two beams to overlap.  Here is an example,
1747
1748 @c don't change relative setting witout changing positions!
1749 @lilypond[raggedright,relative=1,fragment,verbatim,quote]
1750 \new Staff <<
1751   \new Voice
1752   {
1753     \stemUp
1754     \once \override Voice.Beam #'positions = #'(0 . 0.5)
1755     c8[ c c c c ]
1756   }
1757   \new Voice {
1758     \stemUp
1759     \once \override Voice.Beam #'positions = #'(0 . -0.5)
1760     c[ c c c c]
1761   }
1762 >>
1763 @end lilypond
1764
1765
1766 @node Improvisation
1767 @subsection Improvisation
1768
1769 Improvisation is sometimes denoted with slashed note heads.  Such note
1770 heads can be created by adding a @internalsref{Pitch_squash_engraver}
1771 to the @internalsref{Staff} or @internalsref{Voice} context.  Then, the
1772 following command
1773
1774 @example
1775 \set squashedPosition = #0
1776 \override NoteHead #'style = #'slash
1777 @end example
1778
1779 @noindent
1780 switches on the slashes.
1781
1782 There are shortcuts @code{\improvisationOn} (and an accompanying
1783 @code{\improvisationOff}) for this command sequence.  They are used in
1784 the following example
1785
1786 @lilypond[verbatim,raggedright,quote]
1787 \new Staff \with {
1788   \consists Pitch_squash_engraver
1789 } \transpose c c' {
1790   e8 e g a a16(bes)(a8) g \improvisationOn
1791   e8
1792   ~e2~e8 f4 fis8
1793   ~fis2 \improvisationOff a16(bes) a8 g e
1794 }
1795 @end lilypond
1796
1797
1798 @node Educational use
1799 @section Educational use
1800
1801 With the amount of control that LilyPond offers, one can make great
1802 teaching tools in addition to great musical scores.
1803
1804 @menu
1805 * Balloon help::                
1806 * Blank music sheet::           
1807 * Hidden notes::                
1808 * Shaped note heads ::          
1809 * Easy Notation note heads::    
1810 * Analysis brackets::           
1811 * Coloring objects::            
1812 @end menu
1813
1814 @node Balloon help
1815 @subsection Balloon help
1816
1817 Elements of notation can be marked and named with the help of a square
1818 balloon.  The primary purpose of this feature is to explain notation.
1819
1820 The following example demonstrates its use.
1821
1822 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
1823 \context Voice {
1824   \applyoutput
1825     #(add-balloon-text 'NoteHead "heads, or tails?"
1826     '(1 . -3))
1827   c8
1828 }
1829 @end lilypond
1830
1831 @noindent
1832 The function @code{add-balloon-text} takes the name of a grob, the
1833 label to print, and the position where to put the label relative to
1834 the object.  In the above example, the text ``heads or tails?'' ends
1835 3 spaces below and 1 space to the right of the marked head.
1836
1837 @cindex balloon
1838 @cindex notation, explaining
1839
1840 @seealso
1841
1842 Program reference: @internalsref{text-balloon-interface}.
1843
1844 Examples: @inputfileref{input/@/regression,balloon@/.ly}.
1845
1846
1847
1848
1849 @node Blank music sheet
1850 @subsection Blank music sheet
1851
1852 A blank music sheet can be produced also by using invisible notes, and
1853 removing @code{Bar_number_engraver}.
1854
1855
1856 @lilypond[quote,verbatim]
1857 emptymusic = {
1858   \repeat unfold 2 % Change this for more lines.
1859   { s1\break }
1860   \bar "|."
1861 }
1862 \new Score \with {
1863   \override TimeSignature #'transparent = ##t
1864   defaultBarType = #""
1865   \remove Bar_number_engraver
1866 } <<
1867   \context Staff \emptymusic
1868   \context TabStaff \emptymusic
1869 >>
1870 @end lilypond
1871
1872
1873 @node Hidden notes
1874 @subsection Hidden notes
1875
1876 @cindex Hidden notes
1877 @cindex Invisible notes
1878 @cindex Transparent notes
1879
1880 @cindex @code{\hideNotes}
1881 @cindex @code{\unHideNotes}
1882 Hidden (or invisible or transparent) notes can be useful in preparing theory
1883 or composition exercises.
1884
1885 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
1886 c4 d4
1887 \hideNotes
1888 e4 f4
1889 \unHideNotes
1890 g4 a
1891 @end lilypond
1892
1893 Hidden notes are also great for performing weird tricks.  For example,
1894 slurs cannot be attached to rests or spacer rests, but you may wish
1895 to include that in your score -- string instruments use this notation
1896 when doing pizzicato to indicate that the note should ring for as long
1897 as possible.
1898
1899 @lilypond[quote,raggedright,verbatim,relative=0,fragment]
1900 \clef bass
1901 << {
1902   c4^"pizz"( \hideNotes c)
1903   \unHideNotes c( \hideNotes c)
1904 } {
1905   s4 r s r
1906 } >>
1907 @end lilypond
1908
1909
1910 @node Shaped note heads 
1911 @subsection Shaped note heads 
1912
1913 In shaped note head notation, the shape of the note head corresponds
1914 to the harmonic function of a note in the scale.  This notation was
1915 popular in the 19th century American song books.
1916
1917 Shaped note heads can be produced by setting @code{\aikenHeads} or
1918 @code{\sacredHarpHeads}, depending on the style desired.
1919
1920 @lilypond[verbatim,relative=1,fragment]
1921   \aikenHeads
1922   c8 d4 e8 a2 g1
1923   \sacredHarpHeads
1924   c8 d4. e8 a2 g1
1925 @end lilypond
1926
1927 Shapes are determined on the step in the scale, where the base of the
1928 scale is determined by  the @code{\key} command
1929
1930 @findex \key
1931 @findex shapeNoteStyles
1932 @findex \aikenHeads
1933 @findex \sacredHarpHeads
1934
1935 Shaped note heads are implemented through the @code{shapeNoteStyles}
1936 property.  Its value is a vector of symbols.  The k-th element indicates
1937 the style to use for the k-th step of the scale.  Arbitrary
1938 combinations are possible, eg.,
1939
1940
1941 @lilypond[verbatim,relative=1,fragment]
1942   \set shapeNoteStyles  = ##(cross triangle fa #f mensural xcircle diamond)
1943   c8 d4. e8 a2 g1
1944 @end lilypond
1945
1946
1947 @node Easy Notation note heads
1948 @subsection Easy Notation note heads
1949
1950 @cindex easy notation
1951 @cindex Hal Leonard
1952
1953 The `easy play' note head includes a note name inside the head.  It is
1954 used in music for beginners
1955
1956 @lilypond[quote,raggedright,verbatim,fragment,staffsize=26]
1957   \setEasyHeads
1958   c'2 e'4 f' | g'1
1959 @end lilypond
1960
1961 The command @code{\setEasyHeads} overrides settings for the
1962 @internalsref{NoteHead} object.  To make the letters readable, it has
1963 to be printed in a large font size.  To print with a larger font, see
1964 @ref{Setting global staff size}.
1965
1966 @refcommands
1967
1968 @cindex @code{\setEasyHeads}
1969 @code{\setEasyHeads}
1970
1971
1972 @node Analysis brackets
1973 @subsection Analysis brackets
1974 @cindex brackets
1975 @cindex phrasing brackets
1976 @cindex musicological analysis
1977 @cindex note grouping bracket
1978
1979 Brackets are used in musical analysis to indicate structure in musical
1980 pieces.  LilyPond supports a simple form of nested horizontal
1981 brackets.  To use this, add the @internalsref{Horizontal_bracket_engraver}
1982 to @internalsref{Staff} context.  A bracket is started with
1983 @code{\startGroup} and closed with @code{\stopGroup}
1984
1985 @lilypond[quote,raggedright,verbatim]
1986 \score {
1987   \relative c'' {
1988     c4\startGroup\startGroup
1989     c4\stopGroup
1990     c4\startGroup
1991     c4\stopGroup\stopGroup
1992   }
1993   \layout {
1994     \context {
1995       \Staff \consists "Horizontal_bracket_engraver"
1996 }}}
1997 @end lilypond
1998
1999 @seealso
2000
2001 Program reference: @internalsref{HorizontalBracket}.
2002
2003 Examples: @inputfileref{input/@/regression,note@/-group@/-bracket@/.ly}.
2004
2005
2006
2007 @ignore
2008
2009 I don't think we need this info.
2010
2011 @n ode Stems
2012 @s ubsection Stems
2013
2014 Whenever a note is found, a @internalsref{Stem} object is created
2015 automatically.  For whole notes and rests, they are also created but
2016 made invisible.
2017
2018 @refcommands
2019
2020 @cindex @code{\stemUp}
2021 @code{\stemUp},
2022 @cindex @code{\stemDown}
2023 @code{\stemDown},
2024 @cindex @code{\stemNeutral}
2025 @code{\stemNeutral}.
2026
2027 @end ignore
2028
2029
2030 @node Coloring objects
2031 @subsection Coloring objects
2032
2033 @c FIXME: need link to missing list of colors
2034 Individual objects may be assigned colors.  You may use color names
2035 listed HERE
2036
2037 @lilypond[quote,raggedright,verbatim,fragment]
2038 \override NoteHead #'color = #red
2039 c4 c
2040 \override NoteHead #'color = #(x11-color 'LimeGreen)
2041 d
2042 \override Stem #'color = #blue
2043 e
2044 @end lilypond
2045
2046 The full range of colors defined for X11 can be accessed by using the
2047 scheme function x11-color.  The function takes one argument that can be a
2048 symbol
2049
2050 @example
2051 \override Beam #'color = #(x11-color 'MediumTurquoise)
2052 @end example
2053
2054 or a string
2055
2056 @example
2057 \override Beam #'color = #(x11-color "MediumTurquoise")
2058 @end example
2059
2060 The first form is quicker to write and is more efficient.  However, using
2061 the second form it is possible to access X11 colors by the multi-word
2062 form of its name
2063
2064 @example
2065 \override Beam #'color = #(x11-color "medium turquoise")
2066 @end example
2067
2068 If x11-color cannot make sense of the parameter then the color returned
2069 defaults to black.  It should be obvious from the final score that
2070 something is wrong.
2071
2072 This example, illustrates the use of x11-color.  Notice that the stem
2073 color remains black after being set to (x11-color 'Boggle), which is
2074 deliberate nonsense.
2075
2076 @lilypond[quote,raggedright,verbatim]
2077 {
2078   \override Staff.StaffSymbol #'color = #(x11-color 'SlateBlue2)
2079   \set Staff.instrument = \markup {
2080     \with-color #(x11-color 'navy) "Clarinet"
2081   }
2082   \time 2/4
2083   gis''8 a''
2084   \override Beam #'color = #(x11-color "medium turquoise")
2085   gis'' a''
2086   \override NoteHead #'color = #(x11-color "LimeGreen")
2087   gis'' a''
2088   \override Stem #'color = #(x11-color 'Boggle)
2089   gis'' a''
2090 }
2091 @end lilypond
2092
2093
2094 @refbugs
2095 Not all x11 colors are distinguishable in a web browser.  For web use
2096 normal colors are recommended. 
2097
2098 An x11 color is not necessarily exactly the same shade as a similarly
2099 named normal color. 
2100
2101
2102 @seealso
2103
2104 COLORLIST
2105
2106
2107
2108 @node Automatic notation
2109 @section Automatic notation
2110
2111 This section describes how to change the way that accidentals and
2112 beams are automatically displayed.
2113
2114 FIXME: this might get moved into Changing Defaults.  Please send
2115 opinions to lilypond-devel.  Thanks!  :)
2116
2117 @menu
2118 * Automatic accidentals::       
2119 * Setting automatic beam behavior::  
2120 @end menu
2121
2122 @node Automatic accidentals
2123 @subsection Automatic accidentals
2124 @cindex Automatic accidentals
2125
2126 Common rules for typesetting accidentals have been placed in a
2127 function.  This function is called as follows
2128
2129 @cindex @code{set-accidental-style}
2130 @example
2131 #(set-accidental-style 'STYLE #('CONTEXT#))
2132 @end example
2133
2134 The function can take two arguments: the name of the accidental style,
2135 and an optional argument that denotes the context that should be
2136 changed.  If no context name is supplied, @code{Staff} is the default,
2137 but you may wish to apply the accidental style to a single @code{Voice}
2138 instead.
2139
2140 The following accidental styles are supported
2141 @table @code
2142 @item default
2143 This is the default typesetting behavior.  It corresponds
2144 to 18th century common practice: Accidentals are
2145 remembered to the end of the measure in which they occur and
2146 only on their own octave.
2147
2148 @item voice
2149 The normal behavior is to remember the accidentals on
2150 Staff-level.  This variable, however, typesets accidentals
2151 individually for each voice.  Apart from that, the rule is similar to
2152 @code{default}.
2153
2154 As a result, accidentals from one voice do not get canceled in other
2155 voices, which is often an unwanted result
2156
2157 @lilypond[quote,raggedright,relative=1,fragment,verbatim]
2158 \context Staff <<
2159   #(set-accidental-style 'voice)
2160   <<
2161     { es g } \\
2162     { c, e }
2163 >> >>
2164 @end lilypond
2165
2166 The @code{voice} option should be used if the voices
2167 are to be read solely by individual musicians.  If the staff is to be
2168 used by one musician (e.g., a conductor) then
2169 @code{modern} or @code{modern-cautionary}
2170 should be used instead.
2171
2172 @item modern
2173 @cindex @code{modern} style accidentals
2174 This rule corresponds to the common practice in the 20th century.  This rule
2175 prints the same accidentals as @code{default}, but temporary
2176 accidentals also are canceled in other octaves.  Furthermore,
2177 in the same octave, they also get canceled in the following
2178 measure
2179
2180 @lilypond[quote,raggedright,fragment,verbatim]
2181 #(set-accidental-style 'modern)
2182 cis' c'' cis'2 | c'' c'
2183 @end lilypond
2184
2185 @item @code{modern-cautionary}
2186 @cindex @code{modern-cautionary}
2187 This rule is similar to @code{modern}, but the ``extra'' accidentals
2188 (the ones not typeset by @code{default}) are typeset as cautionary
2189 accidentals.  They are printed in reduced size or with parentheses
2190 @lilypond[quote,raggedright,fragment,verbatim]
2191 #(set-accidental-style 'modern-cautionary)
2192 cis' c'' cis'2 | c'' c'
2193 @end lilypond
2194
2195 @cindex @code{modern-voice}
2196 @item modern-voice
2197 This rule is used for multivoice accidentals to be read both by musicians
2198 playing one voice and musicians playing all voices.  Accidentals are
2199 typeset for each voice, but they @emph{are} canceled across voices in
2200 the same @internalsref{Staff}.
2201
2202 @cindex @code{modern-voice-cautionary}
2203 @item modern-voice-cautionary
2204 This rule is the same as @code{modern-voice}, but with the extra
2205 accidentals (the ones not typeset by @code{voice}) typeset
2206 as cautionaries.  Even though all accidentals typeset by
2207 @code{default} @emph{are} typeset by this variable,
2208 some of them are typeset as cautionaries.
2209
2210 @item piano
2211 @cindex @code{piano} accidentals
2212 This rule reflects 20th century practice for piano notation.  Very similar to
2213 @code{modern} but accidentals also get canceled
2214 across the staves in the same @internalsref{GrandStaff} or
2215 @internalsref{PianoStaff}.
2216
2217 @item piano-cautionary
2218 @cindex @code{#(set-accidental-style 'piano-cautionary)}
2219 Same as @code{#(set-accidental-style 'piano)} but with the extra
2220 accidentals typeset as cautionaries.
2221
2222 @item no-reset
2223 @cindex @code{no-reset} accidental style
2224 This is the same as @code{default} but with accidentals lasting
2225 ``forever'' and not only until the next measure
2226 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
2227 #(set-accidental-style 'no-reset)
2228 c1 cis cis c
2229 @end lilypond
2230
2231 @item forget
2232 This is sort of the opposite of @code{no-reset}: Accidentals
2233 are not remembered at all---and hence all accidentals are
2234 typeset relative to the key signature, regardless of what was
2235 before in the music
2236
2237 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
2238 #(set-accidental-style 'forget)
2239 \key d\major c4 c cis cis d d dis dis
2240 @end lilypond
2241 @end table
2242
2243
2244 @seealso
2245
2246 Program reference: @internalsref{Accidental_engraver},
2247 @internalsref{Accidental}, and @internalsref{AccidentalPlacement}.
2248
2249
2250 @refbugs
2251
2252 Simultaneous notes are considered to be entered in sequential
2253 mode.  This means that in a chord the accidentals are typeset as if the
2254 notes in the chord happened once at a time - in the order in which
2255 they appear in the input file.
2256
2257 This is a problem when accidentals in a chord depend on each other,
2258 which does not happen for the default accidental style.  The problem
2259 can be solved by manually inserting @code{!} and @code{?} for the
2260 problematic notes.
2261
2262
2263 @node Setting automatic beam behavior
2264 @subsection Setting automatic beam behavior
2265
2266 @cindex @code{autoBeamSettings}
2267 @cindex @code{(end * * * *)}
2268 @cindex @code{(begin * * * *)}
2269 @cindex automatic beams, tuning
2270 @cindex tuning automatic beaming
2271
2272 @c [TODO: use \applycontext]
2273
2274 In normal time signatures, automatic beams can start on any note but can
2275 only end in a few positions within the measure: beams can end on a beat,
2276 or at durations specified by the properties in
2277 @code{autoBeamSettings}.  The defaults for @code{autoBeamSettings}
2278 are defined in @file{scm/@/auto@/-beam@/.scm}.
2279
2280 The value of @code{autoBeamSettings} is changed with three functions,
2281 @example
2282 #(override-auto-beam-setting
2283    '(@var{be} @var{p} @var{q} @var{n} @var{m}) @var{a} @var{b}
2284    [@var{context}])
2285 #(score-override-auto-beam-setting
2286    '(@var{be} @var{p} @var{q} @var{n} @var{m}) @var{a} @var{b})
2287 #(revert-auto-beam-setting '(@var{be} @var{p} @var{q} @var{n} @var{m})
2288    [@var{context}])
2289 @end example
2290 Here, @var{be} is the symbol @code{begin} or @code{end}, and
2291 @var{context} is an optional context (default: @code{'Voice}).  It
2292 determines whether the rule applies to begin or end-points.  The
2293 quantity @var{p}/@var{q} refers to the length of the beamed notes (and
2294 `@code{* *}' designates notes of any length), @var{n}/@var{M} refers
2295 to a time signature (wildcards `@code{* *}' may be entered to
2296 designate all time signatures), @var{a}/@var{b} is a duration.  By
2297 default, this command changes settings for the current voice.  It is
2298 also possible to adjust settings at higher contexts, by adding a
2299 @var{context} argument.  @code{score-override-auto-beam-setting} is
2300 equal to @code{override-auto-beam-setting} with the argument
2301 @var{context} set to @code{'Score}.
2302
2303 For example, if automatic beams should end on the first quarter note, use
2304 the following
2305 @example
2306 #(override-auto-beam-setting '(end * * * *) 1 4 'Staff)
2307 @end example
2308 Since the duration of a quarter note is 1/4 of a whole note, it is
2309 entered as @code{(ly:make-moment 1 4)}.
2310
2311 If automatic beams should end on every quarter in 5/4 time, specify
2312 all endings
2313 @example
2314 #(override-auto-beam-setting '(end * * * *) 1 4 'Staff)
2315 #(override-auto-beam-setting '(end * * * *) 1 2 'Staff)
2316 #(override-auto-beam-setting '(end * * * *) 3 4 'Staff)
2317 #(override-auto-beam-setting '(end * * * *) 5 4 'Staff)
2318 @dots{}
2319 @end example
2320
2321 The same syntax can be used to specify beam starting points.  In this
2322 example, automatic beams can only end on a dotted quarter note
2323 @example
2324 #(override-auto-beam-setting '(end * * * *) 3 8)
2325 #(override-auto-beam-setting '(end * * * *) 1 2)
2326 #(override-auto-beam-setting '(end * * * *) 7 8)
2327 @end example
2328 In 4/4 time signature, this means that automatic beams could end only on
2329 3/8 and on the fourth beat of the measure (after 3/4, that is 2 times
2330 3/8, has passed within the measure).
2331
2332 Rules can also be restricted to specific time signatures.  A rule that
2333 should only be applied in @var{N}/@var{M} time signature is formed by
2334 replacing the second asterisks by @var{N} and @var{M}.  For example, a
2335 rule for 6/8 time exclusively looks like
2336 @example
2337 #(override-auto-beam-setting '(begin * * 6 8) @dots{})
2338 @end example
2339
2340 If a rule should be to applied only to certain types of beams, use the
2341 first pair of asterisks.  Beams are classified according to the
2342 shortest note they contain.  For a beam ending rule that only applies
2343 to beams with 32nd notes (and no shorter notes), use @code{(end 1 32 *
2344 *)}.
2345
2346 For example,
2347
2348 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
2349 \time 5/8
2350 #(override-auto-beam-setting '(end * * 5 8) 2 8)
2351 c8 c d d d
2352 \time 4/4
2353 e8 e f f e e d d
2354 \time 5/8
2355 c8 c d d d
2356 @end lilypond
2357
2358 @cindex automatic beam generation
2359 @cindex autobeam
2360 @cindex @code{autoBeaming}
2361 @cindex lyrics
2362
2363 If beams are used to indicate melismata in songs, then automatic
2364 beaming should be switched off.  This is done by setting
2365 @code{autoBeaming} to @code{#f}.
2366
2367 @refcommands
2368
2369 @cindex @code{\autoBeamOff}
2370 @code{\autoBeamOff},
2371 @cindex @code{\autoBeamOn}
2372 @code{\autoBeamOn}.
2373
2374
2375 @refbugs
2376
2377 If a score ends while an automatic beam has not been ended and is
2378 still accepting notes, this last beam will not be typeset at all.  The
2379 same holds polyphonic voices, entered with @code{<< @dots{} \\ @dots{}
2380 >>}.  If a polyphonic voice ends while an automatic beam is still
2381 accepting notes, it is not typeset.
2382
2383
2384