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