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