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