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