]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/advanced-notation.itely
Added markup example to Text spanners.
[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.  You must add extra spaces to the end of
888 the name to avoid a collision.
889
890
891 @node Instrument transpositions
892 @subsection Instrument transpositions
893
894 @cindex transposition, MIDI
895 @cindex transposition, instrument
896
897 The key of a transposing instrument can also be specified.  This
898 applies to many wind instruments, for example, clarinets (B-flat, A, and
899 E-flat), horn (F) and trumpet (B-flat, C, D, and E-flat).
900
901 The transposition is entered after the keyword @code{\transposition}
902
903 @example
904 \transposition bes   %% B-flat clarinet
905 @end example
906
907 @noindent
908 This command sets the property @code{instrumentTransposition}.  The value of
909 this property is used for MIDI output and quotations.  It does not
910 affect how notes are printed in the current staff.  To change the printed
911 output, see @ref{Transpose}.
912
913 The pitch to use for @code{\transposition} should correspond to the
914 transposition of the notes.  For example, when entering a score in
915 concert pitch, typically all voices are entered in C, so
916 they should be entered as
917
918 @example
919 clarinet = @{
920   \transposition c'
921   ...
922 @}
923 saxophone = @{
924   \transposition c'
925   ...
926 @}
927 @end example
928
929 The command @code{\transposition} should be used when the music is
930 entered from a (transposed) orchestral part.  For example, in
931 classical horn parts, the tuning of the instrument is often changed
932 during a piece.  When copying the notes from the part, use
933 @code{\transposition}, e.g.,
934
935 @example
936 \transposition d'
937 c'4^"in D"
938 ...
939 \transposition g'
940 c'4^"in G"
941 ...
942 @end example
943
944
945 @node Ottava brackets
946 @subsection Ottava brackets
947
948 `Ottava' brackets introduce an extra transposition of an octave for
949 the staff.  They are created by invoking the function
950 @code{set-octavation}
951
952 @cindex ottava
953 @cindex 15ma
954 @cindex octavation
955
956 @lilypond[quote,raggedright,verbatim,fragment]
957 \relative c''' {
958   a2 b
959   #(set-octavation 1)
960   a b
961   #(set-octavation 0)
962   a b
963 }
964 @end lilypond
965
966 The @code{set-octavation} function also takes -1 (for 8va bassa) and 2
967 (for 15ma) as arguments.  Internally the function sets the properties
968 @code{ottavation} (e.g., to @code{"8va"}) and
969 @code{centralCPosition}.  For overriding the text of the bracket, set
970 @code{ottavation} after invoking @code{set-octavation}, i.e.,
971
972 @lilypond[quote,raggedright,verbatim]
973 {
974   #(set-octavation 1)
975   \set Staff.ottavation = #"8"
976   c'''
977 }
978 @end lilypond
979
980
981 @seealso
982
983 Program reference: @internalsref{OttavaBracket}.
984
985 Examples: @inputfileref{input/@/regression,ottava@/.ly},
986 @inputfileref{input/@/regression,ottava@/-broken@/.ly}.
987
988
989 @refbugs
990
991 @code{set-octavation} will get confused when clef changes happen
992 during an octavation bracket.
993
994
995 @node Different editions from one source
996 @subsection Different editions from one source
997
998 @cindex @code{\tag}
999 @cindex tag
1000
1001 The @code{\tag} command marks music expressions with a name.  These
1002 tagged expressions can be filtered out later.  With this mechanism it
1003 is possible to make different versions of the same music source.
1004
1005 In the following example, we see two versions of a piece of music, one
1006 for the full score, and one with cue notes for the instrumental part
1007
1008 @example
1009 c1
1010 <<
1011   \tag #'part <<
1012     R1 \\
1013     @{
1014       \set fontSize = #-1
1015       c4_"cue" f2 g4 @}
1016   >>
1017   \tag #'score R1
1018 >>
1019 c1
1020 @end example
1021
1022 The same can be applied to articulations, texts, etc.: they are
1023 made by prepending
1024 @example
1025 -\tag #@var{your-tag}
1026 @end example
1027 to an articulation, for example,
1028 @example
1029 c1-\tag #'part ^4
1030 @end example
1031
1032 This defines a note with a conditional fingering indication.
1033
1034 @cindex keepWithTag
1035 @cindex removeWithTag
1036 By applying the @code{\keepWithTag} and @code{\removeWithTag}
1037 commands, tagged expressions can be filtered.  For example,
1038 @example
1039 <<
1040   @var{the music}
1041   \keepWithTag #'score @var{the music}
1042   \keepWithTag #'part @var{the music}
1043 >>
1044 @end example
1045 would yield
1046
1047 @lilypondfile[raggedright,quote]{tag-filter.ly}
1048
1049 The argument of the @code{\tag} command should be a symbol, or a list
1050 of symbols, for example,
1051 @example
1052 \tag #'(original-part transposed-part) @dots{}
1053 @end example
1054
1055
1056 @seealso
1057
1058 Examples: @inputfileref{input/@/regression,tag@/-filter@/.ly}.
1059
1060
1061 @refbugs
1062
1063 Multiple rests are not merged if you create the score with both tagged
1064 sections.
1065  
1066
1067
1068 @node Orchestral music
1069 @section Orchestral music
1070
1071 Orchestral music involves some special notation, both in the full
1072 score and the individual parts.  This section explains how to tackle
1073 some common problems in orchestral music.
1074
1075 @menu
1076 * Automatic part combining::    
1077 * Hiding staves::               
1078 * Quoting other voices::        
1079 * Formatting cue notes::        
1080 * Aligning to cadenzas::        
1081 @end menu
1082
1083
1084 @node Automatic part combining
1085 @subsection Automatic part combining
1086 @cindex automatic part combining
1087 @cindex part combiner
1088
1089 Automatic part combining is used to merge two parts of music onto a
1090 staff.  It is aimed at typesetting orchestral scores.  When the two
1091 parts are identical for a period of time, only one is shown.  In
1092 places where the two parts differ, they are typeset as separate
1093 voices, and stem directions are set automatically.  Also, solo and
1094 @emph{a due} parts are identified and can be marked.
1095
1096 The syntax for part combining is
1097
1098 @example
1099 \partcombine @var{musicexpr1} @var{musicexpr2}
1100 @end example
1101
1102
1103 The following example demonstrates the basic functionality of the part
1104 combiner: putting parts on one staff, and setting stem directions and
1105 polyphony
1106
1107 @lilypond[quote,verbatim,raggedright,fragment]
1108 \new Staff \partcombine
1109   \relative g' { g g a( b) c c r r }
1110   \relative g' { g g r4 r e e g g }
1111 @end lilypond
1112
1113 The first @code{g} appears only once, although it was
1114 specified twice (once in each part).  Stem, slur, and tie directions are
1115 set automatically, depending whether there is a solo or unisono.  The
1116 first part (with context called @code{one}) always gets up stems, and
1117 `Solo', while the second (called @code{two}) always gets down stems and
1118 `Solo II'.
1119
1120 If you just want the merging parts, and not the textual markings, you
1121 may set the property @code{printPartCombineTexts} to false
1122
1123 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
1124 \new Staff <<
1125   \set Staff.printPartCombineTexts = ##f
1126   \partcombine
1127     \relative g' { g a( b) r }
1128     \relative g' { g r4 r f }
1129 >>
1130 @end lilypond
1131
1132 To change the text that is printed for solos or merging, you may
1133 set the @code{soloText}, @code{soloIIText}, and @code{aDueText}
1134 properties.
1135
1136 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
1137 \new Staff <<
1138   \set Score.soloText = #"ichi"
1139   \set Score.soloIIText = #"ni"
1140   \set Score.aDueText = #"tachi"
1141   \partcombine
1142     \relative g' { g4 g a( b) r }
1143     \relative g' { g4 g r r f }
1144 >>
1145 @end lilypond
1146
1147 Both arguments to @code{\partcombine} will be interpreted as
1148 @internalsref{Voice} contexts.  If using relative octaves,
1149 @code{\relative} should be specified for both music expressions, i.e.,
1150
1151 @example
1152 \partcombine
1153   \relative @dots{} @var{musicexpr1}
1154   \relative @dots{} @var{musicexpr2}
1155 @end example
1156
1157 @noindent
1158 A @code{\relative} section that is outside of @code{\partcombine} has
1159 no effect on the pitches of @var{musicexpr1} and @var{musicexpr2}.
1160
1161 @seealso
1162
1163 Program reference: @internalsref{PartCombineMusic}.
1164
1165 @refbugs
1166
1167 When @code{printPartCombineTexts} is set, when the two voices play the
1168 same notes on and off, the part combiner may typeset @code{a2} more
1169 than once in a measure.
1170
1171 @code{\partcombine} cannot be inside @code{\times}.
1172
1173 @code{\partcombine} cannot be inside @code{\relative}.
1174
1175 Internally, the @code{\partcombine} interprets both arguments as
1176 @code{Voice}s named @code{one} and @code{two}, and then decides when
1177 the parts can be combined.  Consequently, if the arguments switch to
1178 differently named @internalsref{Voice} contexts, the events in those
1179 will be ignored.
1180
1181
1182 @node Hiding staves
1183 @subsection Hiding staves
1184
1185 @cindex Frenched scores
1186 @cindex Hiding staves
1187
1188 In orchestral scores, staff lines that only have rests are usually
1189 removed; this saves some space.  This style is called `French Score'.
1190 For @internalsref{Lyrics},
1191 @internalsref{ChordNames} and @internalsref{FiguredBass}, this is
1192 switched on by default.  When the lines of these contexts turn out
1193 empty after the line-breaking process, they are removed.
1194
1195 For normal staves, a specialized @internalsref{Staff} context is
1196 available, which does the same: staves containing nothing (or only
1197 multi-measure rests) are removed.  The context definition is stored in
1198 @code{\RemoveEmptyStaffContext} variable.  Observe how the second staff
1199 in this example disappears in the second line
1200
1201 @lilypond[quote,raggedright,verbatim]
1202 \layout {
1203   \context { \RemoveEmptyStaffContext }
1204 }
1205
1206 {
1207   \relative c' <<
1208     \new Staff { e4 f g a \break c1 }
1209     \new Staff { c4 d e f \break R1 }
1210   >>
1211 }
1212 @end lilypond
1213
1214 The first system shows all staves in full.  If empty staves should be
1215 removed from the first system too, set @code{remove-first} to true in
1216 @internalsref{RemoveEmptyVerticalGroup}.
1217
1218 @example
1219 \override Score.RemoveEmptyVerticalGroup #'remove-first = ##t
1220 @end example
1221
1222 To remove other types of contexts, use @code{\AncientRemoveEmptyStaffContext}
1223 or @code{\RemoveEmptyRhythmicStaffContext}.
1224
1225 Another application is making ossia sections, i.e., alternative
1226 melodies on a separate piece of staff, with help of a Frenched
1227 staff.  See @inputfileref{input/@/test,ossia@/.ly} for an example.
1228
1229
1230 @node Quoting other voices
1231 @subsection Quoting other voices
1232
1233 With quotations, fragments of other parts can be inserted into a part
1234 directly.  Before a part can be quoted, it must be marked especially as
1235 quotable.  This is done with the @code{\addquote} command.
1236
1237 @example
1238 \addquote @var{name} @var{music}
1239 @end example
1240
1241
1242 @noindent
1243 Here, @var{name} is an identifying string.  The @var{music} is any kind
1244 of music.  Here is an example of @code{\addquote}
1245
1246 @example
1247 \addquote clarinet \relative c' @{
1248   f4 fis g gis
1249 @}
1250 @end example
1251
1252 This command must be entered at toplevel, i.e., outside any music
1253 blocks.
1254
1255 After calling @code{\addquote}, the quotation may then be done with
1256 @code{\quoteDuring} or @code{\cueDuring},
1257
1258 @example
1259 \quoteDuring #@var{name} @var{music}
1260 @end example
1261
1262 During a part, a piece of music can be quoted with the @code{\quoteDuring}
1263 command.
1264
1265 @example
1266 \quoteDuring #"clarinet" @{ s2. @}
1267 @end example
1268
1269 This would cite three quarter notes (the duration of @code{s2.})  of
1270 the previously added @code{clarinet} voice.
1271
1272
1273 More precisely, it takes the current time-step of the part being
1274 printed, and extracts the notes at the corresponding point of the
1275 @code{\addquote}d voice.  Therefore, the argument to @code{\addquote}
1276 should be the entire part of the voice to be quoted, including any
1277 rests at the beginning.
1278
1279 Quotations take into account the transposition of both source and target
1280 instruments, if they are specified using the @code{\transposition} command.
1281
1282 @lilypond[quote,raggedright,verbatim]
1283 \addquote clarinet \relative c' {
1284   \transposition bes
1285   f4 fis g gis
1286 }
1287
1288 {
1289   e'8 f'8 \quoteDuring #"clarinet" { s2 }
1290 }
1291 @end lilypond
1292
1293 The type of events that are present in cue notes can be trimmed with
1294 the @code{quotedEventTypes} property.  The default value is
1295 @code{(note-event rest-event)}, which means that only notes and
1296 rests of the cued voice end up in the @code{\quoteDuring}.
1297 Setting
1298
1299 @example
1300 \set Staff.quotedEventTypes =
1301        #'(note-event articulation-event dynamic-event)
1302 @end example
1303
1304 @noindent
1305 will quote notes (but no rests), together with scripts and dynamics.
1306
1307 @refbugs
1308
1309 Only the contents of the first @internalsref{Voice} occurring in an
1310 @code{\addquote} command will be considered for quotation, so
1311 @var{music} can not contain @code{\new} and @code{\context Voice}
1312 statements that would switch to a different Voice.
1313
1314 Quoting grace notes is broken and can even cause LilyPond to crash.
1315
1316 @seealso
1317
1318 In this manual: @ref{Instrument transpositions}.
1319
1320 Examples: @inputfileref{input/@/regression,quote@/.ly}
1321 @inputfileref{input/@/regression,quote@/-transposition@/.ly}
1322
1323 Program reference: @internalsref{QuoteMusic}.
1324
1325
1326 @node Formatting cue notes
1327 @subsection Formatting cue notes
1328
1329 The previous section deals with inserting notes from another voice.
1330 There is a more advanced music function called @code{\cueDuring},
1331 which makes formatting cue notes easier.
1332
1333 The syntax is
1334
1335 @example
1336   \cueDuring #@var{name} #@var{updown} @var{music}
1337 @end example
1338
1339 This will insert notes from the part @var{name} into a
1340 @internalsref{Voice} called @code{cue}.  This happens simultaneously
1341 with @var{music}, which usually is a rest.  When the cue notes start,
1342 the staff in effect becomes polyphonic for a moment.  The argument
1343 @var{updown} determines whether the cue notes should be notated as a
1344 first or second voice.
1345
1346
1347 @lilypond[verbatim,raggedright]
1348 smaller = {
1349   \set fontSize = #-2
1350   \override Stem #'length = #5.5
1351   \override Beam #'thickness = #0.384
1352   \override Beam #'space-function =
1353     #(lambda (beam mult) (* 0.8 (Beam::space_function beam mult)))
1354 }
1355
1356 \addquote clarinet \relative {
1357   R1*20
1358   r2 r8 c f f
1359
1360
1361 \new Staff \relative  <<
1362
1363   % setup a context for  cue  notes.
1364   \context Voice = cue { \smaller \skip 1*21 }
1365   
1366   \set Score.skipBars = ##t
1367   
1368   \new Voice {
1369     R1*20
1370     \cueDuring #"clarinet" #1 {
1371       R1
1372     }
1373     g4 g2. 
1374   }
1375 >>
1376 @end lilypond 
1377
1378
1379 Here are a couple of hints for successful cue notes
1380
1381 @itemize @bullet
1382 @item
1383 Cue notes have smaller font sizes.
1384 @item
1385  the cued part is marked with the instrument playing the cue.
1386 @item
1387  when the original part takes over again, this should be marked with
1388  the name of the original instrument.
1389
1390 @c really?  Are you sure about that last point?  I'll check after 3.0 -gp
1391
1392 @c Yes, this is good practice.  Otherwise, the start of the original
1393 @c part can only be seen from the font size.  This is not good enough
1394 @c for sight-reading.  It is possilbe to use other
1395 @c markers (eg. a big close-bracket over the staff) to indicate the cue notes are
1396 @c finished.
1397 @c -hwn
1398
1399
1400 Any other changes introduced by the cued part should also be
1401 undone.  For example, if the cued instrument plays in a different clef,
1402 the original clef should be stated once again.
1403
1404 @end itemize
1405
1406
1407 @node Aligning to cadenzas
1408 @subsection Aligning to cadenzas
1409
1410 In an orchestral context, cadenzas present a special problem:
1411 when constructing a score that includes a cadenza, all other
1412 instruments should skip just as many notes as the length of the
1413 cadenza, otherwise they will start too soon or too late.
1414
1415 A solution to this problem are the functions @code{mmrest-of-length}
1416 and @code{skip-of-length}.  These Scheme functions take a piece of music
1417 as argument, and generate a @code{\skip} or multi-rest, exactly as
1418 long as the piece.  The use of @code{mmrest-of-length} is demonstrated
1419 in the following example.
1420
1421 @lilypond[verbatim,raggedright,quote]
1422 cadenza = \relative c' {
1423   c4 d8 << { e f g } \\ { d4. } >>
1424   g4 f2 g4 g
1425 }
1426
1427 \new GrandStaff <<
1428   \new Staff { \cadenza c'4 }
1429   \new Staff {
1430     #(ly:export (mmrest-of-length cadenza))
1431     c'4
1432   }
1433 >>
1434 @end lilypond
1435
1436
1437
1438
1439 @node Contemporary notation
1440 @section Contemporary notation
1441
1442 In the 20th century, composers have greatly expanded the musical
1443 vocabulary.  With this expansion, many innovations in musical notation
1444 have been tried.  The book ``Music Notation in the 20th century'' by
1445 Kurt Stone gives a comprehensive overview (see @ref{Literature
1446 list}).  In general, the use of new, innovative notation makes a piece
1447 harder to understand and perform and its use should therefore be
1448 avoided.  For this reason, support for contemporary notation in
1449 LilyPond is limited.
1450
1451
1452 @menu
1453 * Polymetric notation::         
1454 * Time administration::         
1455 * Clusters::                    
1456 * Special fermatas::            
1457 * Special noteheads::           
1458 * Pitched trills::              
1459 * Feathered beams::             
1460 * Improvisation::               
1461 @end menu
1462
1463
1464 @node Polymetric notation
1465 @subsection Polymetric notation
1466
1467 Double time signatures are not supported explicitly, but they can be
1468 faked.  In the next example, the markup for the time signature is
1469 created with a markup text.  This markup text is inserted in the
1470 @internalsref{TimeSignature} grob.
1471
1472 @lilypond[verbatim,raggedright]
1473 % create 2/4 + 5/8
1474 tsMarkup =\markup {
1475   \number {
1476     \column { "2" "4" }
1477     \musicglyph #"scripts.stopped"
1478     \bracket \column { "5" "8" }
1479   }
1480 }
1481
1482 {
1483   \override Staff.TimeSignature #'print-function = #Text_interface::print
1484   \override Staff.TimeSignature #'text = #tsMarkup
1485   \time 3/2
1486   c'2 \bar ":" c'4 c'4.
1487 }
1488 @end lilypond
1489
1490 Each staff can also have its own time signature.  This is done by
1491 moving the @internalsref{Timing_translator} to the @internalsref{Staff}
1492 context.
1493
1494 @example
1495 \layout @{
1496   \context @{ \Score
1497      \remove "Timing_translator"
1498      \remove "Default_bar_line_engraver"
1499   @}
1500   \context @{
1501     \Staff
1502     \consists "Timing_translator"
1503     \consists "Default_bar_line_engraver"
1504   @}
1505     
1506 @}
1507 @end example
1508
1509
1510 Now, each staff has its own time signature.
1511 @example
1512 <<
1513   \new Staff @{
1514     \time 3/4
1515     c4 c c | c c c |
1516   @}
1517   \new Staff @{
1518     \time 2/4
1519     c4 c | c c | c c
1520   @}
1521   \new Staff @{
1522     \time 3/8
1523     c4. c8 c c c4. c8 c c
1524   @}
1525 >>
1526 @end example
1527
1528 @lilypond[quote,raggedright]
1529 \layout{
1530   \context{
1531      \Score
1532      \remove "Timing_translator"
1533      \remove "Default_bar_line_engraver"
1534     }
1535   \context{ \Staff
1536     \consists "Timing_translator"
1537     \consists "Default_bar_line_engraver"
1538   }
1539 }
1540
1541 \relative c' <<
1542   \new Staff {
1543     \time 3/4
1544     c4 c c | c c c |
1545   }
1546   \new Staff {
1547     \time 2/4
1548     c4 c | c c | c c
1549   }
1550   \new Staff {
1551     \time 3/8
1552     c4. c8 c c c4. c8 c c
1553   }
1554 >>
1555 @end lilypond
1556
1557
1558 A different form of polymetric notation is where note lengths have
1559 different values across staves.
1560
1561 This notation can be created by setting a common time signature for
1562 each staff but replacing it manually using
1563 @code{timeSignatureFraction} to the desired fraction.  Then the printed
1564 durations in each staff are scaled to the common time signature.
1565 The latter is done with @code{\compressMusic}, which is similar to
1566 @code{\times}, but does not create a tuplet bracket.
1567
1568
1569 In this example, music with the time signatures of 3/4, 9/8, and 10/8 are
1570 used in parallel.  In the second staff, shown durations are multiplied by
1571 2/3, so that 2/3 * 9/8 = 3/4, and in the third staff, shown durations are
1572 multiplied by 3/5, so that 3/5 * 10/8 = 3/4.
1573
1574 @lilypond[quote,raggedright,verbatim,fragment]
1575 \relative c' { <<
1576   \new Staff {
1577     \time 3/4
1578     c4 c c | c c c |
1579   }
1580   \new Staff {
1581     \time 3/4
1582     \set Staff.timeSignatureFraction = #'(9 . 8)
1583     \compressMusic #'(2 . 3)
1584       \repeat unfold 6 { c8[ c c] }
1585   }
1586   \new Staff {
1587     \time 3/4
1588     \set Staff.timeSignatureFraction = #'(10 . 8)
1589     \compressMusic #'(3 . 5) {
1590       \repeat unfold 2 { c8[ c c] }
1591       \repeat unfold 2 { c8[ c] }
1592       | c4. c4. \times 2/3 { c8 c c } c4
1593     }
1594   }
1595 >> }
1596 @end lilypond
1597
1598
1599
1600
1601 @refbugs
1602
1603 When using different time signatures in parallel, the spacing is
1604 aligned vertically, but bar lines distort the regular spacing.
1605
1606
1607 @node Time administration
1608 @subsection Time administration
1609
1610 @cindex Time administration
1611
1612 Time is administered by the @internalsref{Time_signature_engraver},
1613 which usually lives in the @internalsref{Score} context.  The
1614 bookkeeping deals with the following variables
1615
1616 @table @code
1617 @item currentBarNumber
1618 The measure number.
1619
1620 @item measureLength
1621 The length of the measures in the current time signature.  For a 4/4
1622 time this is@tie{}1, and for 6/8 it is 3/4.
1623
1624 @item measurePosition
1625 The point within the measure where we currently are.  This quantity
1626 is reset to@tie{}0 whenever it exceeds @code{measureLength}.  When that
1627 happens, @code{currentBarNumber} is incremented.
1628
1629 @item timing
1630 If set to true, the above variables are updated for every time
1631 step.  When set to false, the engraver stays in the current measure
1632 indefinitely.
1633 @end table
1634
1635 Timing can be changed by setting any of these variables explicitly.
1636 In the next example, the 4/4 time signature is printed, but
1637 @code{measureLength} is set to 5/4.  After a while, the measure is
1638 shortened by 1/8, by setting @code{measurePosition} to 7/8 at 2/4
1639 in the measure, so the next bar line will fall at 2/4 + 3/8.  The
1640 3/8 arises because 5/4 normally has 10/8, but we have manually
1641 set the measure position to be 7/8 and 10/8 - 7/8 = 3/8.
1642
1643 @lilypond[quote,raggedright,verbatim,relative,fragment]
1644 \set Score.measureLength = #(ly:make-moment 5 4)
1645 c1 c4
1646 c1 c4
1647 c4 c4
1648 \set Score.measurePosition = #(ly:make-moment 7 8)
1649 b8 b b
1650 c4 c1
1651 @end lilypond
1652
1653
1654
1655 @node Clusters
1656 @subsection Clusters
1657
1658 @cindex cluster
1659
1660 A cluster indicates a continuous range of pitches to be played.  They
1661 can be denoted as the envelope of a set of notes.  They are entered by
1662 applying the function @code{makeClusters} to a sequence of
1663 chords, e.g.,
1664 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1665 \makeClusters { <c e > <b f'> }
1666 @end lilypond
1667
1668 The following example (from
1669 @inputfileref{input/@/regression,cluster@/.ly}) shows what the result
1670 looks like
1671
1672 @lilypondfile[raggedright,quote]{cluster.ly}
1673
1674 Ordinary notes and clusters can be put together in the same staff,
1675 even simultaneously.  In such a case no attempt is made to
1676 automatically avoid collisions between ordinary notes and clusters.
1677
1678 @seealso
1679
1680 Program reference: @internalsref{ClusterSpanner},
1681 @internalsref{ClusterSpannerBeacon},
1682 @internalsref{Cluster_spanner_engraver}.
1683
1684 Examples: @inputfileref{input/@/regression,cluster@/.ly}.
1685
1686 @refbugs
1687
1688 Music expressions like @code{<< @{ g8 e8 @} a4 >>} are not printed
1689 accurately.  Use @code{<g a>8 <e a>8} instead.
1690
1691
1692
1693 @node Special fermatas
1694 @subsection Special fermatas
1695
1696 @cindex fermatas, special
1697
1698 In contemporary music notation, special fermata symbols denote breaks
1699 of differing lengths.  The following fermatas are supported
1700
1701 @lilypond[quote,raggedright]
1702 <<
1703   \oldaddlyrics {
1704     b'2
1705     ^\shortfermata
1706     _\shortfermata
1707     r
1708
1709     b'
1710     ^\fermata
1711     _\fermata
1712     r
1713
1714     b'
1715     ^\longfermata
1716     _\longfermata
1717     r
1718
1719     b'
1720     ^\verylongfermata
1721     _\verylongfermata
1722     r
1723   }
1724   \context Lyrics \lyricmode {
1725     \override LyricText #'font-family = #'typewriter
1726     "shortfermata" "fermata" "longfermata" "verylongfermata"
1727   }
1728 >>
1729 @end lilypond
1730
1731 See @ref{Articulations} for general instructions how to apply scripts
1732 such as fermatas to notes.
1733
1734
1735 @node Special noteheads
1736 @subsection Special noteheads
1737
1738 Different noteheads are used by various instruments for various
1739 meanings -- crosses are used for ``parlato'' with vocalists, stopped
1740 notes on guitar; diamonds are used for harmonics on string instruments,
1741 etc.  There is a shorthand (@code{\harmonic}) for diamond shapes; the
1742 other notehead styles are produced by tweaking the property
1743
1744 @lilypond[raggedright,relative=1,fragment,verbatim,quote]
1745 c4 d
1746 \override NoteHead #'style = #'cross
1747 e f
1748 \revert NoteHead #'style
1749 e d <c f\harmonic> <d a'\harmonic>
1750 @end lilypond
1751
1752 @noindent
1753 To see all notehead styles, please see
1754 @inputfileref{input/@/regression,note@/-head@/-style@/.ly}.
1755
1756
1757 @seealso
1758
1759 Program reference: @internalsref{NoteHead}.
1760
1761 @node Pitched trills
1762 @subsection Pitched trills
1763
1764 Trills that should be executed on an explicitly specified pitch can be
1765 typeset with the command @code{pitchedTrill}, 
1766
1767 @lilypond[raggedright,verbatim,fragment]
1768   \pitchedTrill c'4\startTrillSpan fis
1769   f'\stopTrillSpan
1770 @end lilypond
1771
1772 The first argument is the main note. The absolute pitch of the second
1773 is printed as a stemless note head in parentheses.
1774
1775 @refbugs
1776
1777 Relative octave mode ignores the octave of the second argument of
1778 @code{\pitchedTrill}.
1779
1780 @node Feathered beams
1781 @subsection Feathered beams
1782
1783 Feathered beams are not supported natively, but they can be faked by
1784 forcing two beams to overlap.  Here is an example,
1785
1786 @c don't change relative setting witout changing positions!
1787 @lilypond[raggedright,relative=1,fragment,verbatim,quote]
1788 \new Staff <<
1789   \new Voice
1790   {
1791     \stemUp
1792     \once \override Voice.Beam #'positions = #'(0 . 0.5)
1793     c8[ c c c c ]
1794   }
1795   \new Voice {
1796     \stemUp
1797     \once \override Voice.Beam #'positions = #'(0 . -0.5)
1798     c[ c c c c]
1799   }
1800 >>
1801 @end lilypond
1802
1803
1804 @node Improvisation
1805 @subsection Improvisation
1806
1807 Improvisation is sometimes denoted with slashed note heads.  Such note
1808 heads can be created by adding a @internalsref{Pitch_squash_engraver}
1809 to the @internalsref{Staff} or @internalsref{Voice} context.  Then, the
1810 following command
1811
1812 @example
1813 \set squashedPosition = #0
1814 \override NoteHead #'style = #'slash
1815 @end example
1816
1817 @noindent
1818 switches on the slashes.
1819
1820 There are shortcuts @code{\improvisationOn} (and an accompanying
1821 @code{\improvisationOff}) for this command sequence.  They are used in
1822 the following example
1823
1824 @lilypond[verbatim,raggedright,quote]
1825 \new Staff \with {
1826   \consists Pitch_squash_engraver
1827 } \transpose c c' {
1828   e8 e g a a16(bes)(a8) g \improvisationOn
1829   e8
1830   ~e2~e8 f4 fis8
1831   ~fis2 \improvisationOff a16(bes) a8 g e
1832 }
1833 @end lilypond
1834
1835
1836 @node Educational use
1837 @section Educational use
1838
1839 With the amount of control that LilyPond offers, one can make great
1840 teaching tools in addition to great musical scores.
1841
1842 @menu
1843 * Balloon help::                
1844 * Blank music sheet::           
1845 * Hidden notes::                
1846 * Shape note heads ::          
1847 * Easy Notation note heads::    
1848 * Analysis brackets::           
1849 * Coloring objects::            
1850 @end menu
1851
1852 @node Balloon help
1853 @subsection Balloon help
1854
1855 Elements of notation can be marked and named with the help of a square
1856 balloon.  The primary purpose of this feature is to explain notation.
1857
1858 The following example demonstrates its use.
1859
1860 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
1861 \context Voice {
1862   \applyoutput
1863     #(add-balloon-text 'NoteHead "heads, or tails?"
1864     '(1 . -3))
1865   c8
1866 }
1867 @end lilypond
1868
1869 @noindent
1870 The function @code{add-balloon-text} takes the name of a grob, the
1871 label to print, and the position where to put the label relative to
1872 the object.  In the above example, the text ``heads or tails?'' ends
1873 3 spaces below and 1 space to the right of the marked head.
1874
1875 @cindex balloon
1876 @cindex notation, explaining
1877
1878 @seealso
1879
1880 Program reference: @internalsref{text-balloon-interface}.
1881
1882 Examples: @inputfileref{input/@/regression,balloon@/.ly}.
1883
1884
1885
1886
1887 @node Blank music sheet
1888 @subsection Blank music sheet
1889
1890 A blank music sheet can be produced also by using invisible notes, and
1891 removing @code{Bar_number_engraver}.
1892
1893
1894 @lilypond[quote,verbatim]
1895 emptymusic = {
1896   \repeat unfold 2 % Change this for more lines.
1897   { s1\break }
1898   \bar "|."
1899 }
1900 \new Score \with {
1901   \override TimeSignature #'transparent = ##t
1902   defaultBarType = #""
1903   \remove Bar_number_engraver
1904 } <<
1905   \context Staff \emptymusic
1906   \context TabStaff \emptymusic
1907 >>
1908 @end lilypond
1909
1910
1911 @node Hidden notes
1912 @subsection Hidden notes
1913
1914 @cindex Hidden notes
1915 @cindex Invisible notes
1916 @cindex Transparent notes
1917
1918 @cindex @code{\hideNotes}
1919 @cindex @code{\unHideNotes}
1920 Hidden (or invisible or transparent) notes can be useful in preparing theory
1921 or composition exercises.
1922
1923 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
1924 c4 d4
1925 \hideNotes
1926 e4 f4
1927 \unHideNotes
1928 g4 a
1929 @end lilypond
1930
1931 Hidden notes are also great for performing weird tricks.  For example,
1932 slurs cannot be attached to rests or spacer rests, but you may wish
1933 to include that in your score -- string instruments use this notation
1934 when doing pizzicato to indicate that the note should ring for as long
1935 as possible.
1936
1937 @lilypond[quote,raggedright,verbatim,relative=0,fragment]
1938 \clef bass
1939 << {
1940   c4^"pizz"( \hideNotes c)
1941   \unHideNotes c( \hideNotes c)
1942 } {
1943   s4 r s r
1944 } >>
1945 @end lilypond
1946
1947
1948 @node Shape note heads 
1949 @subsection Shape note heads 
1950
1951 In shape note head notation, the shape of the note head corresponds
1952 to the harmonic function of a note in the scale.  This notation was
1953 popular in the 19th century American song books.
1954
1955 Shape note heads can be produced by setting @code{\aikenHeads} or
1956 @code{\sacredHarpHeads}, depending on the style desired.
1957
1958 @lilypond[verbatim,relative=1,fragment]
1959   \aikenHeads
1960   c8 d4 e8 a2 g1
1961   \sacredHarpHeads
1962   c8 d4. e8 a2 g1
1963 @end lilypond
1964
1965 Shapes are determined on the step in the scale, where the base of the
1966 scale is determined by  the @code{\key} command
1967
1968 @findex \key
1969 @findex shapeNoteStyles
1970 @findex \aikenHeads
1971 @findex \sacredHarpHeads
1972
1973 Shape note heads are implemented through the @code{shapeNoteStyles}
1974 property.  Its value is a vector of symbols.  The k-th element indicates
1975 the style to use for the k-th step of the scale.  Arbitrary
1976 combinations are possible, eg.,
1977
1978
1979 @lilypond[verbatim,relative=1,fragment]
1980   \set shapeNoteStyles  = ##(cross triangle fa #f mensural xcircle diamond)
1981   c8 d4. e8 a2 g1
1982 @end lilypond
1983
1984
1985 @node Easy Notation note heads
1986 @subsection Easy Notation note heads
1987
1988 @cindex easy notation
1989 @cindex Hal Leonard
1990
1991 The `easy play' note head includes a note name inside the head.  It is
1992 used in music for beginners
1993
1994 @lilypond[quote,raggedright,verbatim,fragment,staffsize=26]
1995   \setEasyHeads
1996   c'2 e'4 f' | g'1
1997 @end lilypond
1998
1999 The command @code{\setEasyHeads} overrides settings for the
2000 @internalsref{NoteHead} object.  To make the letters readable, it has
2001 to be printed in a large font size.  To print with a larger font, see
2002 @ref{Setting global staff size}.
2003
2004 @refcommands
2005
2006 @cindex @code{\setEasyHeads}
2007 @code{\setEasyHeads}
2008
2009
2010 @node Analysis brackets
2011 @subsection Analysis brackets
2012 @cindex brackets
2013 @cindex phrasing brackets
2014 @cindex musicological analysis
2015 @cindex note grouping bracket
2016
2017 Brackets are used in musical analysis to indicate structure in musical
2018 pieces.  LilyPond supports a simple form of nested horizontal
2019 brackets.  To use this, add the @internalsref{Horizontal_bracket_engraver}
2020 to @internalsref{Staff} context.  A bracket is started with
2021 @code{\startGroup} and closed with @code{\stopGroup}
2022
2023 @lilypond[quote,raggedright,verbatim]
2024 \score {
2025   \relative c'' {
2026     c4\startGroup\startGroup
2027     c4\stopGroup
2028     c4\startGroup
2029     c4\stopGroup\stopGroup
2030   }
2031   \layout {
2032     \context {
2033       \Staff \consists "Horizontal_bracket_engraver"
2034 }}}
2035 @end lilypond
2036
2037 @seealso
2038
2039 Program reference: @internalsref{HorizontalBracket}.
2040
2041 Examples: @inputfileref{input/@/regression,note@/-group@/-bracket@/.ly}.
2042
2043
2044
2045 @ignore
2046
2047 I don't think we need this info.
2048
2049 @n ode Stems
2050 @s ubsection Stems
2051
2052 Whenever a note is found, a @internalsref{Stem} object is created
2053 automatically.  For whole notes and rests, they are also created but
2054 made invisible.
2055
2056 @refcommands
2057
2058 @cindex @code{\stemUp}
2059 @code{\stemUp},
2060 @cindex @code{\stemDown}
2061 @code{\stemDown},
2062 @cindex @code{\stemNeutral}
2063 @code{\stemNeutral}.
2064
2065 @end ignore
2066
2067
2068 @node Coloring objects
2069 @subsection Coloring objects
2070
2071 Individual objects may be assigned colors.  You may use the
2072 color names listed in the @ref{List of colors}.
2073
2074 @lilypond[quote,raggedright,verbatim,fragment,relative=1]
2075 \override NoteHead #'color = #red
2076 c4 c
2077 \override NoteHead #'color = #(x11-color 'LimeGreen)
2078 d
2079 \override Stem #'color = #blue
2080 e
2081 @end lilypond
2082
2083 The full range of colors defined for X11 can be accessed by using the
2084 scheme function x11-color.  The function takes one argument that can be a
2085 symbol
2086
2087 @example
2088 \override Beam #'color = #(x11-color 'MediumTurquoise)
2089 @end example
2090
2091 or a string
2092
2093 @example
2094 \override Beam #'color = #(x11-color "MediumTurquoise")
2095 @end example
2096
2097 The first form is quicker to write and is more efficient.  However, using
2098 the second form it is possible to access X11 colors by the multi-word
2099 form of its name
2100
2101 @example
2102 \override Beam #'color = #(x11-color "medium turquoise")
2103 @end example
2104
2105 If x11-color cannot make sense of the parameter then the color returned
2106 defaults to black.  It should be obvious from the final score that
2107 something is wrong.
2108
2109 This example, illustrates the use of x11-color.  Notice that the stem
2110 color remains black after being set to (x11-color 'Boggle), which is
2111 deliberate nonsense.
2112
2113 @lilypond[quote,raggedright,verbatim]
2114 {
2115   \override Staff.StaffSymbol #'color = #(x11-color 'SlateBlue2)
2116   \set Staff.instrument = \markup {
2117     \with-color #(x11-color 'navy) "Clarinet"
2118   }
2119   \time 2/4
2120   gis''8 a''
2121   \override Beam #'color = #(x11-color "medium turquoise")
2122   gis'' a''
2123   \override NoteHead #'color = #(x11-color "LimeGreen")
2124   gis'' a''
2125   \override Stem #'color = #(x11-color 'Boggle)
2126   gis'' a''
2127 }
2128 @end lilypond
2129
2130
2131 @seealso
2132
2133 Appendix: @ref{List of colors}.
2134
2135
2136 @refbugs
2137 Not all x11 colors are distinguishable in a web browser.  For web use
2138 normal colors are recommended. 
2139
2140 An x11 color is not necessarily exactly the same shade as a similarly
2141 named normal color. 
2142
2143
2144 @node Automatic notation
2145 @section Automatic notation
2146
2147 This section describes how to change the way that accidentals and
2148 beams are automatically displayed.
2149
2150 FIXME: this might get moved into Changing Defaults.  Please send
2151 opinions to lilypond-devel.  Thanks!  :)
2152
2153 @menu
2154 * Automatic accidentals::       
2155 * Setting automatic beam behavior::  
2156 @end menu
2157
2158 @node Automatic accidentals
2159 @subsection Automatic accidentals
2160 @cindex Automatic accidentals
2161
2162 Common rules for typesetting accidentals have been placed in a
2163 function.  This function is called as follows
2164
2165 @cindex @code{set-accidental-style}
2166 @example
2167 #(set-accidental-style 'STYLE #('CONTEXT#))
2168 @end example
2169
2170 The function can take two arguments: the name of the accidental style,
2171 and an optional argument that denotes the context that should be
2172 changed.  If no context name is supplied, @code{Staff} is the default,
2173 but you may wish to apply the accidental style to a single @code{Voice}
2174 instead.
2175
2176 The following accidental styles are supported
2177 @table @code
2178 @item default
2179 This is the default typesetting behavior.  It corresponds
2180 to 18th century common practice: Accidentals are
2181 remembered to the end of the measure in which they occur and
2182 only on their own octave.
2183
2184 @item voice
2185 The normal behavior is to remember the accidentals on
2186 Staff-level.  This variable, however, typesets accidentals
2187 individually for each voice.  Apart from that, the rule is similar to
2188 @code{default}.
2189
2190 As a result, accidentals from one voice do not get canceled in other
2191 voices, which is often an unwanted result
2192
2193 @lilypond[quote,raggedright,relative=1,fragment,verbatim]
2194 \context Staff <<
2195   #(set-accidental-style 'voice)
2196   <<
2197     { es g } \\
2198     { c, e }
2199 >> >>
2200 @end lilypond
2201
2202 The @code{voice} option should be used if the voices
2203 are to be read solely by individual musicians.  If the staff is to be
2204 used by one musician (e.g., a conductor) then
2205 @code{modern} or @code{modern-cautionary}
2206 should be used instead.
2207
2208 @item modern
2209 @cindex @code{modern} style accidentals
2210 This rule corresponds to the common practice in the 20th century.  This rule
2211 prints the same accidentals as @code{default}, but temporary
2212 accidentals also are canceled in other octaves.  Furthermore,
2213 in the same octave, they also get canceled in the following
2214 measure
2215
2216 @lilypond[quote,raggedright,fragment,verbatim]
2217 #(set-accidental-style 'modern)
2218 cis' c'' cis'2 | c'' c'
2219 @end lilypond
2220
2221 @item @code{modern-cautionary}
2222 @cindex @code{modern-cautionary}
2223 This rule is similar to @code{modern}, but the ``extra'' accidentals
2224 (the ones not typeset by @code{default}) are typeset as cautionary
2225 accidentals.  They are printed in reduced size or with parentheses
2226 @lilypond[quote,raggedright,fragment,verbatim]
2227 #(set-accidental-style 'modern-cautionary)
2228 cis' c'' cis'2 | c'' c'
2229 @end lilypond
2230
2231 @cindex @code{modern-voice}
2232 @item modern-voice
2233 This rule is used for multivoice accidentals to be read both by musicians
2234 playing one voice and musicians playing all voices.  Accidentals are
2235 typeset for each voice, but they @emph{are} canceled across voices in
2236 the same @internalsref{Staff}.
2237
2238 @cindex @code{modern-voice-cautionary}
2239 @item modern-voice-cautionary
2240 This rule is the same as @code{modern-voice}, but with the extra
2241 accidentals (the ones not typeset by @code{voice}) typeset
2242 as cautionaries.  Even though all accidentals typeset by
2243 @code{default} @emph{are} typeset by this variable,
2244 some of them are typeset as cautionaries.
2245
2246 @item piano
2247 @cindex @code{piano} accidentals
2248 This rule reflects 20th century practice for piano notation.  Very similar to
2249 @code{modern} but accidentals also get canceled
2250 across the staves in the same @internalsref{GrandStaff} or
2251 @internalsref{PianoStaff}.
2252
2253 @item piano-cautionary
2254 @cindex @code{#(set-accidental-style 'piano-cautionary)}
2255 Same as @code{#(set-accidental-style 'piano)} but with the extra
2256 accidentals typeset as cautionaries.
2257
2258 @item no-reset
2259 @cindex @code{no-reset} accidental style
2260 This is the same as @code{default} but with accidentals lasting
2261 ``forever'' and not only until the next measure
2262 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
2263 #(set-accidental-style 'no-reset)
2264 c1 cis cis c
2265 @end lilypond
2266
2267 @item forget
2268 This is sort of the opposite of @code{no-reset}: Accidentals
2269 are not remembered at all---and hence all accidentals are
2270 typeset relative to the key signature, regardless of what was
2271 before in the music
2272
2273 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
2274 #(set-accidental-style 'forget)
2275 \key d\major c4 c cis cis d d dis dis
2276 @end lilypond
2277 @end table
2278
2279
2280 @seealso
2281
2282 Program reference: @internalsref{Accidental_engraver},
2283 @internalsref{Accidental}, and @internalsref{AccidentalPlacement}.
2284
2285
2286 @refbugs
2287
2288 Simultaneous notes are considered to be entered in sequential
2289 mode.  This means that in a chord the accidentals are typeset as if the
2290 notes in the chord happened once at a time - in the order in which
2291 they appear in the input file.
2292
2293 This is a problem when accidentals in a chord depend on each other,
2294 which does not happen for the default accidental style.  The problem
2295 can be solved by manually inserting @code{!} and @code{?} for the
2296 problematic notes.
2297
2298
2299 @node Setting automatic beam behavior
2300 @subsection Setting automatic beam behavior
2301
2302 @cindex @code{autoBeamSettings}
2303 @cindex @code{(end * * * *)}
2304 @cindex @code{(begin * * * *)}
2305 @cindex automatic beams, tuning
2306 @cindex tuning automatic beaming
2307
2308 @c [TODO: use \applycontext]
2309
2310 In normal time signatures, automatic beams can start on any note but can
2311 only end in a few positions within the measure: beams can end on a beat,
2312 or at durations specified by the properties in
2313 @code{autoBeamSettings}.  The properties in @code{autoBeamSettings}
2314 consist of a list of rules for where beams can begin and end.  The
2315 default @code{autoBeamSettings} rules are defined in
2316 @file{scm/@/auto@/-beam@/.scm}.
2317
2318 In order to add a rule to the list, use
2319 @example
2320 #(override-auto-beam-setting '(be p q n m) a b [context])
2321 @end example
2322
2323 @itemize @bullet
2324
2325 @item @code{be} is either "begin" or "end".
2326
2327 @item @code{b/q} is the duration of the note for which you want
2328 to add a rule.  A beam is considered to have the duration of its
2329 shortest note.  Set @code{p} and @code{q} to @code{'*'} to
2330 have this apply to any beam.
2331
2332 @item @code{n/m} is the position in the time signature to which
2333 this rule should apply.  Set @code{n} and @code{m} to @code{'*'}
2334 to have this apply in any time signature.
2335
2336 @item @code{a/b} is the position in the bar at which the beam should end.
2337
2338 @item @code{context} is optional, and it specifies the context at which
2339 the change should be made.  The default is @code{'Voice}.
2340 @code{#(score-override-auto-beam-setting '(A B C D) E F)} is equivalent to
2341 @code{#(override-auto-beam-setting '(A B C D) E F 'Score)}.
2342
2343 @end itemize
2344
2345 For example, if automatic beams should always end on the first quarter
2346 node, use
2347
2348 @example
2349 #(override-auto-beam-setting '(end * * * *) 1 4)
2350 @end example
2351
2352 You can force the beam settings to only take effect on beams whose shortest
2353 note is a certain duration
2354
2355 @lilypond[quote,fragment,raggedright,verbatim,relative=2]
2356 \time 2/4
2357 #(override-auto-beam-setting '(end 1 16 * *) 1 16)
2358 a16 a a a a a a a |
2359 a32 a a a a16 a a a a a |
2360 #(override-auto-beam-setting '(end 1 32 * *) 1 16)
2361 a32 a a a a16 a a a a a |
2362 @end lilypond
2363
2364 You can force the beam settings to only take effect in certain time
2365 signatures
2366
2367 @lilypond[quote,fragment,raggedright,verbatim,relative=2]
2368 \time 5/8
2369 #(override-auto-beam-setting '(end * * 5 8) 2 8)
2370 c8 c d d d
2371 \time 4/4
2372 e8 e f f e e d d
2373 \time 5/8
2374 c8 c d d d
2375 @end lilypond
2376
2377 You can also remove a previously set beam-ending rule by using
2378
2379 @example
2380 #(revert-auto-beam-setting '(be p q n m) a b [context])
2381 @end example
2382
2383 @noindent
2384 be, p, q, n, m, a, b and context are the same as above.  Note that the
2385 default rules are specified in @file{scm/@/auto@/-beam@/.scm},
2386 so you can revert rules that you did not explicitly create.
2387
2388 @lilypond[quote,fragment,raggedright,verbatim,relative=2]
2389 \time 4/4
2390 a16 a a a a a a a a a a a a a a a
2391 #(revert-auto-beam-setting '(end 1 16 4 4) 1 4)
2392 a16 a a a a a a a a a a a a a a a
2393 @end lilypond
2394
2395 The rule in a revert-auto-beam-setting statement must exactly match the
2396 original rule.  That is, no wildcard expansion is taken into account.
2397
2398 @lilypond[quote,fragment,raggedright,verbatim,relative=2]
2399 \time 1/4
2400 #(override-auto-beam-setting '(end 1 16 1 4) 1 8)
2401 a16 a a a
2402 #(revert-auto-beam-setting '(end 1 16 * *) 1 8) % this won't revert it!
2403 a a a a
2404 #(revert-auto-beam-setting '(end 1 16 1 4) 1 8) % this will
2405 a a a a
2406 @end lilypond
2407
2408
2409
2410 @c TODO:  old material -- not covered by above stuff, I think.
2411 If automatic beams should end on every quarter in 5/4 time, specify
2412 all endings
2413 @example
2414 #(override-auto-beam-setting '(end * * * *) 1 4 'Staff)
2415 #(override-auto-beam-setting '(end * * * *) 1 2 'Staff)
2416 #(override-auto-beam-setting '(end * * * *) 3 4 'Staff)
2417 #(override-auto-beam-setting '(end * * * *) 5 4 'Staff)
2418 @dots{}
2419 @end example
2420
2421 The same syntax can be used to specify beam starting points.  In this
2422 example, automatic beams can only end on a dotted quarter note
2423 @example
2424 #(override-auto-beam-setting '(end * * * *) 3 8)
2425 #(override-auto-beam-setting '(end * * * *) 1 2)
2426 #(override-auto-beam-setting '(end * * * *) 7 8)
2427 @end example
2428 In 4/4 time signature, this means that automatic beams could end only on
2429 3/8 and on the fourth beat of the measure (after 3/4, that is 2 times
2430 3/8, has passed within the measure).
2431
2432 @cindex automatic beam generation
2433 @cindex autobeam
2434 @cindex @code{autoBeaming}
2435 @cindex lyrics
2436
2437 If beams are used to indicate melismata in songs, then automatic
2438 beaming should be switched off with @code{\autoBeamOff}.
2439
2440
2441 @refcommands
2442
2443 @cindex @code{\autoBeamOff}
2444 @code{\autoBeamOff},
2445 @cindex @code{\autoBeamOn}
2446 @code{\autoBeamOn}.
2447
2448
2449 @refbugs
2450
2451 If a score ends while an automatic beam has not been ended and is
2452 still accepting notes, this last beam will not be typeset at all.  The
2453 same holds polyphonic voices, entered with @code{<< @dots{} \\ @dots{}
2454 >>}.  If a polyphonic voice ends while an automatic beam is still
2455 accepting notes, it is not typeset.
2456
2457
2458