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