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