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