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