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