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