]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/learning/tweaks.itely
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / learning / tweaks.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2
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.  For details, see the Contributors'
8     Guide, node Updating translation committishes..
9 @end ignore
10
11 @c \version "2.16.0"
12
13 @node Tweaking output
14 @chapter Tweaking output
15
16 This chapter discusses how to modify output.  LilyPond is extremely
17 configurable; virtually every fragment of output may be changed.
18
19
20 @menu
21 * Tweaking basics::
22 * The Internals Reference manual::
23 * Appearance of objects::
24 * Placement of objects::
25 * Collisions of objects::
26 * Further tweaking::
27 @end menu
28
29 @node Tweaking basics
30 @section Tweaking basics
31
32 @menu
33 * Introduction to tweaks::
34 * Objects and interfaces::
35 * Naming conventions of objects and properties::
36 * Tweaking methods::
37 @end menu
38
39 @node Introduction to tweaks
40 @subsection Introduction to tweaks
41
42 @q{Tweaking} is a LilyPond term for the various methods available
43 to the user for modifying the actions taken during interpretation
44 of the input file and modifying the appearance of the printed
45 output.  Some tweaks are very easy to use; others are more
46 complex.  But taken together the methods available for tweaking
47 permit almost any desired appearance of the printed music to be
48 achieved.
49
50 In this section we cover the basic concepts required to understand
51 tweaking.  Later we give a variety of ready-made commands which can
52 simply be copied to obtain the same effect in your own scores, and
53 at the same time we show how these commands may be constructed so
54 that you may learn how to develop your own tweaks.
55
56 Before starting on this Chapter you may wish to review the section
57 @ref{Contexts and engravers}, as Contexts, Engravers, and the
58 Properties contained within them are fundamental to understanding
59 and constructing Tweaks.
60
61 @node Objects and interfaces
62 @subsection Objects and interfaces
63
64 @cindex object
65 @cindex grob
66 @cindex spanner
67 @cindex interface
68 @cindex properties, object
69 @cindex object properties
70 @cindex layout object
71 @cindex object, layout
72 @cindex interface
73
74 Tweaking involves modifying the internal operation and structures
75 of the LilyPond program, so we must first introduce some terms
76 which are used to describe those internal operations and
77 structures.
78
79 The term @q{Object} is a generic term used to refer to the
80 multitude of internal structures built by LilyPond during the
81 processing of an input file.  So when a command like @code{\new
82 Staff} is encountered a new object of type @code{Staff} is
83 constructed.  That @code{Staff} object then holds all the
84 properties associated with that particular staff, for example, its
85 name and its key signature, together with details of the engravers
86 which have been assigned to operate within that staff's context.
87 Similarly, there are objects to hold the properties of all other
88 contexts, such as @code{Voice} objects, @code{Score} objects,
89 @code{Lyrics} objects, as well as objects to represent all
90 notational elements such as bar lines,
91 note heads, ties, dynamics, etc.  Every object has its own set of
92 property values.
93
94 Some types of object are given special names.  Objects which represent
95 items of notation on the printed output such as note heads, stems,
96 slurs, ties, fingering, clefs, etc are called @q{Layout objects},
97 often known as @q{Graphical Objects}, or @q{Grobs} for short.  These
98 are still objects in the generic sense above, and so they too all have
99 properties associated with them, such as their position, size, color,
100 etc.
101
102 Some layout objects are still more specialized.  Phrasing slurs,
103 crescendo hairpins, ottava marks, and many other grobs are not
104 localized in a single place -- they have a starting point, an
105 ending point, and maybe other properties concerned with their
106 shape.  Objects with an extended shape like these are called
107 @q{Spanners}.
108
109 It remains to explain what @q{Interfaces} are.  Many objects, even
110 though they are quite different, share common features which need to
111 be processed in the same way.  For example, all grobs have a color, a
112 size, a position, etc, and all these properties are processed in the
113 same way during LilyPond's interpretation of the input file.  To
114 simplify these internal operations these common actions and properties
115 are grouped together in an object called a @code{grob-interface}.
116 There are many other groupings of common properties like this, each
117 one given a name ending in @code{interface}.  In total there are over
118 100 such interfaces.  We shall see later why this is of interest and
119 use to the user.
120
121 These, then, are the main terms relating to objects which we
122 shall use in this chapter.
123
124 @node Naming conventions of objects and properties
125 @subsection Naming conventions of objects and properties
126
127 @cindex naming conventions for objects
128 @cindex naming conventions for properties
129 @cindex objects, naming conventions
130 @cindex properties, naming conventions
131
132 We met some object naming conventions previously, in
133 @ref{Contexts and engravers}.  Here for reference is a list
134 of the most common object and property types together with
135 the conventions for naming them and a couple of examples of
136 some real names.  We have used @q{A} to stand for any capitalized
137 alphabetic character and @q{aaa} to stand for any number of
138 lower-case alphabetic characters.  Other characters are used
139 verbatim.
140
141 @multitable @columnfractions .33 .33 .33
142 @headitem Object/property type
143   @tab Naming convention
144   @tab Examples
145 @item Contexts
146   @tab Aaaa or AaaaAaaaAaaa
147   @tab Staff, GrandStaff
148 @item Layout Objects
149   @tab Aaaa or AaaaAaaaAaaa
150   @tab Slur, NoteHead
151 @item Engravers
152   @tab Aaaa_aaa_engraver
153   @tab Clef_engraver, Note_heads_engraver
154 @item Interfaces
155   @tab aaa-aaa-interface
156   @tab grob-interface, break-aligned-interface
157 @item Context Properties
158   @tab aaa or aaaAaaaAaaa
159   @tab alignAboveContext, skipBars
160 @item Layout Object Properties
161   @tab aaa or aaa-aaa-aaa
162   @tab direction, beam-thickness
163 @end multitable
164
165 As we shall see shortly, the properties of different types of
166 object are modified by different commands, so it is useful to
167 be able to recognize the type of object from the names of its
168 properties.
169
170
171 @node Tweaking methods
172 @subsection Tweaking methods
173
174 @cindex tweaking methods
175
176 @strong{\override command}
177
178 @cindex override command
179 @cindex override syntax
180
181 @funindex \override
182 @funindex override
183
184 We have already met the commands @code{\set} and @code{\with}, used to
185 change the properties of @strong{contexts} and to remove and add
186 @strong{engravers}, in @ref{Modifying context properties}, and
187 @ref{Adding and removing engravers}.  We must now introduce some more
188 important commands.
189
190 The command to change the properties of @strong{layout objects} is
191 @code{\override}.  Because this command has to modify
192 internal properties deep within LilyPond its syntax is not
193 as simple as the commands you have used so far.  It needs to
194 know precisely which property of which object in which context
195 has to be modified, and what its new value is to be.  Let's see
196 how this is done.
197
198 The general syntax of this command is:
199
200 @example
201 \override @var{Context}.@var{LayoutObject} #'@var{layout-property} =
202 #@var{value}
203 @end example
204
205 @noindent
206 This will set the property with the name @var{layout-property} of the
207 layout object with the name @var{LayoutObject}, which is a member of
208 the @var{Context} context, to the value @var{value}.
209
210 The @var{Context} can be omitted (and usually is) when the
211 required context is unambiguously implied and is one of lowest
212 level contexts, i.e., @code{Voice}, @code{ChordNames} or
213 @code{Lyrics}, and we shall omit it in many of the following
214 examples.  We shall see later when it must be specified.
215
216 Later sections deal comprehensively with properties and their
217 values, see @ref{Types of properties}.  But in this section we shall 
218 use just a few simple properties and values which are easily
219 understood in order to illustrate the format and use of these
220 commands.
221
222 For now, don't worry about the @code{#'}, which must precede the
223 layout property, and the@tie{}@code{#}, which must precede the value.
224 These must always be present in exactly this form.  This is the
225 most common command used in tweaking, and most of the rest of
226 this chapter will be directed to presenting examples of how it is
227 used.  Here is a simple example to change the color of the
228 note head:
229
230 @cindex color property, example
231 @cindex NoteHead, example of overriding
232
233 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
234 c4 d
235 \override NoteHead #'color = #red
236 e4 f |
237 \override NoteHead #'color = #green
238 g4 a b c |
239 @end lilypond
240
241 @strong{\revert command}
242
243 @cindex revert command
244
245 @funindex \revert
246 @funindex revert
247
248 Once overridden, the property retains its new value until it is
249 overridden again or a @code{\revert} command is encountered.
250 The @code{\revert} command has the following syntax and causes
251 the value of the property to revert to its original default
252 value; note, not its previous value if several @code{\override}
253 commands have been issued.
254
255 @example
256 \revert @var{Context}.@var{LayoutObject} #'@var{layout-property}
257 @end example
258
259 Again, just like @var{Context} in the @code{\override} command,
260 @var{Context} is often not needed.  It will be omitted
261 in many of the following examples.  Here we revert the color
262 of the note head to the default value for the final two notes:
263
264 @cindex color property, example
265 @cindex NoteHead, example of overriding
266
267 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
268 c4 d
269 \override NoteHead #'color = #red
270 e4 f |
271 \override NoteHead #'color = #green
272 g4 a
273 \revert NoteHead #'color
274 b4 c |
275 @end lilypond
276
277 @strong{\once prefix}
278
279 @funindex \once
280 @funindex once
281
282 Both the @code{\override} and the @code{\set} commands may be prefixed
283 by @code{\once}.  This causes the following @code{\override} or
284 @code{\set} command to be effective only during the current musical
285 moment before the property reverts back to its previous value (this can
286 be different from the default if another @code{\override} is still in
287 effect).  Using the same example, we can change the color of a single
288 note like this:
289
290 @cindex color property, example
291 @cindex NoteHead, example of overriding
292
293 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
294 c4 d
295 \override NoteHead #'color = #red
296 e4 f |
297 \once \override NoteHead #'color = #green
298 g4 a
299 \revert NoteHead #'color
300 b c |
301 @end lilypond
302
303 @strong{\overrideProperty command}
304
305 @cindex overrideProperty command
306
307 @funindex \overrideProperty
308 @funindex overrideProperty
309
310 There is another form of the override command,
311 @code{\overrideProperty}, which is occasionally required.
312 We mention it here for completeness, but for details see
313 @rextend{Difficult tweaks}.
314 @c Maybe explain in a later iteration  -td
315
316 @strong{\tweak command}
317
318 @cindex tweak command
319
320 @funindex \tweak
321 @funindex tweak
322
323 The final tweaking command which is available is @code{\tweak}.  This
324 should be used when several objects occur at the same musical moment,
325 but you only want to change the properties of selected ones, such as a
326 single note within a chord.  Using @code{\override} would affect all the
327 notes within a chord, whereas @code{\tweak} affects just the following
328 item in the input stream.
329
330 Here's an example.  Suppose we wish to change the size of the
331 middle note head (the E) in a C major chord.  Let's first see what
332 @code{\once \override} would do:
333
334 @cindex font-size property, example
335 @cindex NoteHead, example of overriding
336
337 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
338 <c e g>4
339 \once \override NoteHead #'font-size = #-3
340 <c e g>4
341 <c e g>4
342 @end lilypond
343
344 We see the override affects @emph{all} the note heads in the chord.
345 This is because all the notes of a chord occur at the same
346 @emph{musical moment}, and the action of @code{\once} is to
347 apply the override to all layout objects of the type specified
348 which occur at the same musical moment as the @code{\override}
349 command itself.
350
351 The @code{\tweak} command operates in a different way.  It acts on
352 the immediately following item in the input stream.  In its simplest
353 form, it is effective only on objects which are created directly
354 from the following item, essentially note heads and articulations.
355
356 So to return to our example, the size of the middle note of
357 a chord would be changed in this way:
358
359 @cindex font-size property, example
360 @cindex @code{\tweak}, example
361
362 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
363 <c e g>4
364 <c \tweak #'font-size #-3 e g>4
365 @end lilypond
366
367 Note that the syntax of @code{\tweak} is different from that of the
368 @code{\override} command.  The context should not be specified; in
369 fact, it would generate an error to do so.  Both context and layout
370 object are implied by the following item in the input stream.  Note
371 also that an equals sign should not be present.  So the simple form
372 of the @code{\tweak} command is
373
374 @example
375 \tweak #'@var{layout-property} #@var{value}
376 @end example
377
378 A @code{\tweak} command can also be used to modify just one in
379 a series of articulations, as shown here:
380
381 @cindex color property, example
382 @cindex @code{\tweak}, example
383
384 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
385 a4^"Black"
386   -\tweak #'color #red ^"Red"
387   -\tweak #'color #green _"Green"
388 @end lilypond
389
390 @noindent
391 Note that the @code{\tweak} command must be preceded by an articulation
392 mark since the tweaked expression needs to be applied as an articulation
393 itself.  In case of multiple direction overrides (@code{^} or @code{_}),
394 the leftmost override wins since it is applied last.
395
396 @cindex @code{\tweak}, Accidental
397 @cindex @code{\tweak}, specific layout object
398
399 Objects such as stems and accidentals are created later, and not
400 directly from the following event.  It is still possible to use
401 @code{\tweak} on such indirectly created objects by explicitly naming
402 the layout object, provided that LilyPond can trace its origin back to
403 the original event:
404
405 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
406 <\tweak Accidental #'color #red   cis4
407  \tweak Accidental #'color #green es
408                                   g>
409 @end lilypond
410
411 This long form of the @code{\tweak} command can be described as
412 @example
413 \tweak @var{layout-object} #'@var{layout-property} @var{value}
414 @end example
415
416 @cindex tuplets, nested
417 @cindex triplets, nested
418 @cindex bracket, tuplet
419 @cindex bracket, triplet
420 @cindex tuplet bracket
421 @cindex triplet bracket
422
423 @funindex TupletBracket
424
425 The @code{\tweak} command must also be used to change the
426 appearance of one of a set of nested tuplets which begin at the
427 same musical moment.  In the following example, the long tuplet
428 bracket and the first of the three short brackets begin at the
429 same musical moment, so any @code{\override} command would apply
430 to both of them.  In the example, @code{\tweak} is used to
431 distinguish between them.  The first @code{\tweak} command
432 specifies that the long tuplet bracket is to be placed above the
433 notes and the second one specifies that the tuplet number is to be
434 printed in red on the first short tuplet bracket.
435
436 @cindex @code{\tweak}, example
437 @cindex direction property, example
438 @cindex color property, example
439
440 @lilypond[quote,ragged-right,verbatim,fragment,relative=2]
441 \tweak #'direction #up
442 \times 4/3 {
443   \tweak #'color #red
444   \times 2/3 { c8[ c c] }
445   \times 2/3 { c8[ c c] }
446   \times 2/3 { c8[ c c] }
447 }
448 @end lilypond
449
450 If nested tuplets do not begin at the same moment, their
451 appearance may be modified in the usual way with
452 @code{\override} commands:
453
454 @cindex text property, example
455 @cindex tuplet-number function, example
456 @cindex transparent property, example
457 @cindex TupletNumber, example of overriding
458
459 @c NOTE Tuplet brackets collide if notes are high on staff
460 @c See issue 509
461 @lilypond[quote,ragged-right,verbatim,fragment,relative=1]
462 \times 2/3 { c8[ c c] }
463 \once \override TupletNumber
464   #'text = #tuplet-number::calc-fraction-text
465 \times 2/3 {
466   c8[ c]
467   c8[ c]
468   \once \override TupletNumber #'transparent = ##t
469   \times 2/3 { c8[ c c] }
470   \times 2/3 { c8[ c c] }
471 }
472 @end lilypond
473
474
475 @seealso
476 Notation Reference:
477 @ruser{The tweak command}.
478
479
480 @node The Internals Reference manual
481 @section The Internals Reference manual
482
483 @cindex Internals Reference
484
485 @menu
486 * Properties of layout objects::
487 * Properties found in interfaces::
488 * Types of properties::
489 @end menu
490
491 @node Properties of layout objects
492 @subsection Properties of layout objects
493
494 @cindex properties of layout objects
495 @cindex properties of grobs
496 @cindex grobs, properties of
497 @cindex layout objects, properties of
498 @cindex Internals Reference manual
499
500 Suppose you have a slur in a score which, to your mind,
501 appears too thin and you'd like to draw it a little heavier.
502 How do you go about doing this?  You know from the statements
503 earlier about the flexibility of LilyPond that such a thing
504 should be possible, and you would probably guess that an
505 @code{\override} command would be needed.  But is there a
506 heaviness property for a slur, and if there is, how might it
507 be modified?  This is where the Internals Reference manual
508 comes in.  It contains all the information you might need to
509 construct this and all other @code{\override} commands.
510
511 Before we look at the Internals Reference a word of warning.
512 This is a @strong{reference} document, which means there is
513 little or no explanation contained within it: its purpose is
514 to present information precisely and concisely.  This
515 means it might look daunting at first sight.  Don't worry!
516 The guidance and explanation presented here will enable you
517 to extract the information from the Internals Reference for
518 yourself with just a little practice.
519
520 @cindex override example
521 @cindex Internals Reference, example of using
522 @cindex @code{\addlyrics} example
523
524 Let's use a concrete example with a simple fragment of real
525 music:
526
527 @c Mozart, Die Zauberflöte Nr.7 Duett
528
529 @lilypond[quote,verbatim,relative=2]
530 {
531   \key es \major
532   \time 6/8
533   {
534     r4 bes8 bes[( g]) g |
535     g8[( es]) es d[( f]) as |
536     as8 g
537   }
538   \addlyrics {
539     The man who | feels love's sweet e -- | mo -- tion
540   }
541 }
542 @end lilypond
543
544 Suppose now that we decide we would like the slurs to be a
545 little heavier.  Is this possible?  The slur is certainly a
546 layout object, so the question is, @q{Is there a property
547 belonging to a slur which controls the heaviness?}  To answer
548 this we must look in the Internals Reference, or IR for short.
549
550 The IR for the version of LilyPond you are using may be found
551 on the LilyPond website at @uref{http://lilypond.org}.  Go to the
552 documentation page and click on the Internals Reference link.
553 For learning purposes you should use the standard HTML version,
554 not the @q{one big page} or the PDF.  For the next few
555 paragraphs to make sense you will need to actually do this
556 as you read.
557
558 Under the heading @strong{Top} you will see five links.  Select
559 the link to the @emph{Backend}, which is where information about
560 layout objects is to be found.  There, under the heading
561 @strong{Backend}, select the link to @emph{All layout objects}.
562 The page that appears lists all the layout objects used in your
563 version of LilyPond, in alphabetic order.  Select the link to
564 Slur, and the properties of Slurs are listed.
565
566 An alternative way of finding this page is from the Notation
567 Reference.  On one of the pages that deals with slurs you may find a
568 link to the Internals Reference.  This link will take you directly to
569 this page, but if you have an idea about the name of the layout object
570 to be tweaked, it is easier to go straight to the IR and search there.
571
572 This Slur page in the IR tells us first that Slur objects are created
573 by the Slur_engraver.  Then it lists the standard settings.  Note
574 these are @strong{not} in alphabetic order.  Browse down them looking
575 for a property that might control the heaviness of slurs, and you
576 should find
577
578 @example
579 @code{thickness} (number)
580      @code{1.2}
581      Line thickness, generally measured in @code{line-thickness}
582 @end example
583
584 This looks a good bet to change the heaviness.  It tells us that
585 the value of @code{thickness} is a simple @emph{number},
586 that the default value is 1.2, and that the units are
587 in another property called @code{line-thickness}.
588
589 As we said earlier, there are few to no explanations in the IR,
590 but we already have enough information to try changing the
591 slur thickness.  We see that the name of the layout object
592 is @code{Slur}, that the name of the property to change is
593 @code{thickness} and that the new value should be a number
594 somewhat larger than 1.2 if we are to make slurs thicker.
595
596 We can now construct the @code{\override} command by simply
597 substituting the values we have found for the names, omitting
598 the context.  Let's use a very large value for the thickness
599 at first, so we can be sure the command is working.  We get:
600
601 @example
602 \override Slur #'thickness = #5.0
603 @end example
604
605 Don't forget the @code{#'} preceding the
606 property name and a@tie{}@code{#} preceding the new value!
607
608 The final question is, @q{Where should this command be
609 placed?}  While you are unsure and learning, the best
610 answer is, @q{Within the music, before the first slur and
611 close to it.}  Let's do that:
612
613 @cindex Slur example of overriding
614 @cindex thickness property, example
615
616 @lilypond[quote,verbatim,relative=2]
617 {
618   \key es \major
619   \time 6/8
620   {
621     % Increase thickness of all following slurs from 1.2 to 5.0
622     \override Slur #'thickness = #5.0
623     r4 bes8 bes[( g]) g |
624     g8[( es]) es d[( f]) as |
625     as8 g
626   }
627   \addlyrics {
628     The man who | feels love's sweet e -- | mo -- tion
629   }
630 }
631 @end lilypond
632
633 @noindent
634 and we see that the slur is indeed heavier.
635
636 So this is the basic way of constructing @code{\override}
637 commands.  There are a few more complications that we
638 shall meet in later sections, but you now know all the
639 essentials required to make up your own -- but you will
640 still need some practice.  This is provided in the examples
641 which follow.
642
643 @subheading Finding the context
644
645 @cindex context, finding
646 @cindex context, identifying correct
647
648 But first, what if we had needed to specify the Context?
649 What should it be?  We could guess that slurs are in
650 the Voice context, as they are clearly closely associated
651 with individual lines of music, but can we be sure?  To
652 find out, go back to the top of the IR page describing the
653 Slur, where it says @q{Slur objects are created by: Slur
654 engraver}.  So slurs will be created in whichever context
655 the @code{Slur_engraver} is in.  Follow the link to the
656 @code{Slur_engraver} page.  At the very bottom it tells
657 us that @code{Slur_engraver} is part of five Voice contexts,
658 including the standard voice context, @code{Voice}, so our
659 guess was correct.  And because @code{Voice} is one of the
660 lowest level contexts which is implied unambiguously by
661 the fact that we are entering notes, we can omit it in this
662 location.
663
664 @subheading Overriding once only
665
666 @cindex overriding once only
667 @cindex once override
668
669 @funindex \once
670 @funindex once
671
672 As you can see, @emph{all} the slurs are thicker in the final example
673 above.  But what if we wanted just the first slur to be thicker?  This
674 is achieved with the @code{\once} command.  Placed immediately before
675 the @code{\override} command it causes it to change only the slur
676 which begins on the @strong{immediately following} note.  If the
677 immediately following note does not begin a slur the command has no
678 effect at all -- it is not remembered until a slur is encountered, it
679 is simply discarded.  So the command with @code{\once} must be
680 repositioned as follows:
681
682 @cindex Slur, example of overriding
683 @cindex thickness property, example
684
685 @lilypond[quote,verbatim,relative=2]
686 {
687   \key es \major
688   \time 6/8
689   {
690     r4 bes8
691     % Increase thickness of immediately following slur only
692     \once \override Slur #'thickness = #5.0
693     bes8[( g]) g |
694     g8[( es]) es d[( f]) as |
695     as8 g
696   }
697   \addlyrics {
698     The man who | feels love's sweet e -- | mo -- tion
699   }
700 }
701 @end lilypond
702
703 @noindent
704 Now only the first slur is made heavier.
705
706 The @code{\once} command can also be used before the @code{\set}
707 command.
708
709 @subheading Reverting
710
711 @cindex revert
712 @cindex default properties, reverting to
713
714 @funindex \revert
715 @funindex revert
716
717 Finally, what if we wanted just the first two slurs to be
718 heavier?  Well, we could use two commands, each preceded by
719 @code{\once} placed immediately before each of the notes where
720 the slurs begin:
721
722 @cindex Slur, example of overriding
723 @cindex thickness property, example
724
725 @lilypond[quote,verbatim,relative=2]
726 {
727   \key es \major
728   \time 6/8
729   {
730     r4 bes8
731     % Increase thickness of immediately following slur only
732     \once \override Slur #'thickness = #5.0
733     bes[( g]) g |
734     % Increase thickness of immediately following slur only
735     \once \override Slur #'thickness = #5.0
736     g8[( es]) es d[( f]) as |
737     as8 g
738   }
739   \addlyrics {
740     The man who | feels love's sweet e -- | mo -- tion
741   }
742 }
743 @end lilypond
744
745 @noindent
746 or we could omit the @code{\once} command and use the @code{\revert}
747 command to return the @code{thickness} property to its default value
748 after the second slur:
749
750 @cindex Slur, example of overriding
751 @cindex thickness property, example
752
753 @lilypond[quote,verbatim,relative=2]
754 {
755   \key es \major
756   \time 6/8
757   {
758     r4 bes8
759     % Increase thickness of all following slurs from 1.2 to 5.0
760     \override Slur #'thickness = #5.0
761     bes[( g]) g |
762     g8[( es]) es
763     % Revert thickness of all following slurs to default of 1.2
764     \revert Slur #'thickness
765     d8[( f]) as |
766     as8 g
767   }
768   \addlyrics {
769     The man who | feels love's sweet e -- | mo -- tion
770   }
771 }
772 @end lilypond
773
774 @noindent
775 The @code{\revert} command can be used to return any property
776 changed with @code{\override} back to its default value.
777 You may use whichever method best suits what you want to do.
778
779 That concludes our introduction to the IR, and the basic
780 method of tweaking.  Several examples follow in the later
781 sections of this Chapter, partly to introduce you to some of the
782 additional features of the IR, and partly to give you more
783 practice in extracting information from it.  These examples will
784 contain progressively fewer words of guidance and explanation.
785
786
787 @node Properties found in interfaces
788 @subsection Properties found in interfaces
789
790 @cindex interface
791 @cindex interface properties
792 @cindex properties in interfaces
793
794 Suppose now that we wish to print the lyrics in italics.  What form of
795 @code{\override} command do we need to do this?  We first look in the
796 IR page listing @q{All layout objects}, as before, and look for an
797 object that might control lyrics.  We find @code{LyricText}, which
798 looks right.  Clicking on this shows the settable properties for lyric
799 text.  These include the @code{font-series} and @code{font-size}, but
800 nothing that might give an italic shape.  This is because the shape
801 property is one that is common to all font objects, so, rather than
802 including it in every layout object, it is grouped together with other
803 similar common properties and placed in an @strong{Interface}, the
804 @code{font-interface}.
805
806 So now we need to learn how to find the properties of interfaces,
807 and to discover what objects use these interface properties.
808
809 Look again at the IR page which describes LyricText.  At the bottom of
810 the page is a list of clickable interfaces which LyricText supports.
811 The list has several items, including @code{font-interface}.  Clicking
812 on this brings up the properties associated with this interface, which
813 are also properties of all the objects which support it, including
814 LyricText.
815
816 Now we see all the user-settable properties which control fonts,
817 including @code{font-shape(symbol)}, where @code{symbol} can be
818 set to @code{upright}, @code{italics} or @code{caps}.
819
820 You will notice that @code{font-series} and @code{font-size} are also
821 listed there.  This immediately raises the question: Why are the
822 common font properties @code{font-series} and @code{font-size} listed
823 under @code{LyricText} as well as under the interface
824 @code{font-interface} but @code{font-shape} is not?  The answer is
825 that @code{font-series} and @code{font-size} are changed from their
826 global default values when a @code{LyricText} object is created, but
827 @code{font-shape} is not.  The entries in @code{LyricText} then tell
828 you the values for those two properties which apply to
829 @code{LyricText}.  Other objects which support @code{font-interface}
830 will set these properties differently when they are created.
831
832 Let's see if we can now construct the @code{\override} command
833 to change the lyrics to italics.  The object is @code{LyricText},
834 the property is @code{font-shape} and the value is
835 @code{italic}.  As before, we'll omit the context.
836
837 As an aside, although it is an important one, note that because the
838 values of @code{font-shape} are symbols they must be introduced with a
839 single apostrophe, @code{'}.  That is why apostrophes are needed
840 before @code{thickness} in the earlier example and @code{font-shape}.
841 These are both symbols too.  Symbols are then read internally by
842 LilyPond.  Some of them are the names of properties, like
843 @code{thickness} or @code{font-shape}, others are used as values that
844 can be given to properties, like @code{italic}.  Note the distinction
845 from arbitrary text strings, which would appear as @code{"a text
846 string"}; for more details about symbols and strings, see
847 @rextend{Scheme tutorial}.
848
849 So we see that the @code{\override} command needed to print the lyrics
850 in italics is:
851
852 @example
853 \override LyricText #'font-shape = #'italic
854 @end example
855
856 @noindent
857 This should be placed just in front of the lyrics we wish to affect,
858 like so:
859
860 @cindex font-shape property, example
861 @cindex italic, example
862 @cindex LyricText, example of overriding
863 @cindex @code{\addlyrics}, example
864
865 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
866 {
867   \key es \major
868   \time 6/8
869   {
870     r4 bes8 bes[( g]) g |
871     g8[( es]) es d[( f]) as |
872     as8 g
873   }
874   \addlyrics {
875     \override LyricText #'font-shape = #'italic
876     The man who | feels love's sweet e -- | mo -- tion
877   }
878 }
879 @end lilypond
880
881 @noindent
882 and the lyrics are all printed in italics.
883
884 @subheading Specifying the context in lyric mode
885
886 @cindex context, specifying in lyric mode
887 @cindex lyric mode, specifying context
888
889 In the case of lyrics, if you try specifying the context in the
890 format given earlier the command will fail.  A syllable
891 entered in lyricmode is terminated by either a space,
892 a newline or a digit.  All other characters are included
893 as part of the syllable.  For this reason a space or newline
894 must appear before the terminating @code{@}} to prevent it being
895 included as part of the final syllable.  Similarly,
896 spaces must be inserted before and after the
897 period or dot, @q{.}, separating the context name from the
898 object name, as otherwise the two names are run together and
899 the interpreter cannot recognize them.  So the command should be:
900
901 @example
902 \override Lyrics . LyricText #'font-shape = #'italic
903 @end example
904
905 @warning{In lyrics always leave whitespace between the final
906 syllable and the terminating brace.}
907
908 @warning{In overrides in lyrics always place spaces around
909 the dot between the context name and the object name.}
910
911
912 @seealso
913 Extending: @rextend{Scheme tutorial}.
914
915
916 @node Types of properties
917 @subsection Types of properties
918
919 @cindex property types
920
921 So far we have seen two types of property: @code{number} and
922 @code{symbol}.  To be valid, the value given to a property
923 must be of the correct type and obey the rules for that type.
924 The type of property is always shown in brackets after the
925 property name in the IR.  Here is a list of the types you may
926 need, together with the rules for that type, and some examples.
927 You must always add a hash symbol, @code{#}, of course,
928 to the front of these values when they are entered in the
929 @code{\override} command.
930
931 @multitable @columnfractions .2 .45 .35
932 @headitem Property type
933   @tab Rules
934   @tab Examples
935 @item Boolean
936   @tab Either True or False, represented by #t or #f
937   @tab @code{#t}, @code{#f}
938 @item Dimension (in staff space)
939   @tab A positive decimal number (in units of staff space)
940   @tab @code{2.5}, @code{0.34}
941 @item Direction
942   @tab A valid direction constant or its numerical equivalent (decimal
943 values between -1 and 1 are allowed)
944   @tab @code{LEFT}, @code{CENTER}, @code{UP},
945        @code{1}, @w{@code{-1}}
946 @item Integer
947   @tab A positive whole number
948   @tab @code{3}, @code{1}
949 @item List
950   @tab A set of values separated by spaces, enclosed in parentheses
951 and preceded by an apostrophe
952   @tab @code{'(left-edge staff-bar)}, @code{'(1)},
953        @code{'(1.0 0.25 0.5)}
954 @item Markup
955   @tab Any valid markup
956   @tab @code{\markup @{ \italic "cresc." @}}
957 @item Moment
958   @tab A fraction of a whole note constructed with the
959 make-moment function
960   @tab @code{(ly:make-moment 1 4)},
961        @code{(ly:make-moment 3 8)}
962 @item Number
963   @tab Any positive or negative decimal value
964   @tab @code{3.5}, @w{@code{-2.45}}
965 @item Pair (of numbers)
966   @tab Two numbers separated by a @q{space . space} and enclosed
967 in brackets preceded by an apostrophe
968   @tab @code{'(2 . 3.5)}, @code{'(0.1 . -3.2)}
969 @item Symbol
970   @tab Any of the set of permitted symbols for that property,
971 preceded by an apostrophe
972   @tab @code{'italic}, @code{'inside}
973 @item Unknown
974   @tab A procedure, or @code{#f} to cause no action
975   @tab @code{bend::print}, @code{ly:text-interface::print},
976        @code{#f}
977 @item Vector
978   @tab A list of three items enclosed in parentheses and preceded
979 by apostrophe-hash, @code{'#}.
980   @tab @code{'#(#t #t #f)}
981 @end multitable
982
983
984 @seealso
985 Extending: @rextend{Scheme tutorial}.
986
987
988 @node Appearance of objects
989 @section Appearance of objects
990
991 Let us now put what we have learned into practice with a few
992 examples which show how tweaks may be used to change the
993 appearance of the printed music.
994
995 @menu
996 * Visibility and color of objects::
997 * Size of objects::
998 * Length and thickness of objects::
999 @end menu
1000
1001 @node Visibility and color of objects
1002 @subsection Visibility and color of objects
1003
1004 In the educational use of music we might wish to print a score
1005 with certain elements omitted as an exercise for the student,
1006 who is required to supply them.  As a simple example,
1007 let us suppose the exercise is to supply the missing bar lines
1008 in a piece of music.  But the bar lines are normally inserted
1009 automatically.  How do we prevent them printing?
1010
1011 Before we tackle this, let us remember that object properties are
1012 grouped in what are called @emph{interfaces} -- see @ref{Properties
1013 found in interfaces}.  This is simply to group together those
1014 properties that may be used together to tweak a graphical object -- if
1015 one of them is allowed for an object, so are the others.  Some objects
1016 then use the properties in some interfaces, others use them from other
1017 interfaces.  The interfaces which contain the properties used by a
1018 particular grob are listed in the IR at the bottom of the page
1019 describing that grob, and those properties may be viewed by looking at
1020 those interfaces.
1021
1022 We explained how to find information about grobs in @ref{Properties of
1023 layout objects}.  Using the same approach, we go to the IR to find the
1024 layout object which prints bar lines.  Going via @emph{Backend} and
1025 @emph{All layout objects} we find there is a layout object called
1026 @code{BarLine}.  Its properties include two that control its
1027 visibility: @code{break-visibility} and @code{stencil}.  Barline also
1028 supports a number of interfaces, including the @code{grob-interface},
1029 where we find the @code{transparent} and the @code{color} properties.
1030 All of these can affect the visibility of bar lines (and, of course,
1031 by extension, many other layout objects too.)  Let's consider each of
1032 these in turn.
1033
1034 @subheading stencil
1035
1036 @cindex stencil property
1037
1038 This property controls the appearance of the bar lines by specifying
1039 the symbol (glyph) which should be printed.  In common
1040 with many other properties, it can be set to print nothing by
1041 setting its value to @code{#f}.  Let's try it, as before, omitting
1042 the implied Context, @code{Voice}:
1043
1044 @cindex BarLine, example of overriding
1045 @cindex stencil property, example
1046
1047 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1048 {
1049   \time 12/16
1050   \override BarLine #'stencil = ##f
1051   c4 b8 c d16 c d8 |
1052   g,8 a16 b8 c d4 e16 |
1053   e8
1054 }
1055 @end lilypond
1056
1057 The bar lines are still printed.  What is wrong?  Go back to the IR
1058 and look again at the page giving the properties of BarLine.  At the
1059 top of the page it says @qq{Barline objects are created by:
1060 Bar_engraver}.  Go to the @code{Bar_engraver} page.  At the bottom it
1061 gives a list of Contexts in which the bar engraver operates.  All of
1062 them are of the type @code{Staff}, so the reason the @code{\override}
1063 command failed to work as expected is because @code{Barline} is not in
1064 the default @code{Voice} context.  If the context is specified
1065 incorrectly, the command simply does not work.  No error message is
1066 produced, and nothing is logged in the log file.  Let's try correcting
1067 it by adding the correct context:
1068
1069 @cindex BarLine, example of overriding
1070 @cindex stencil property, example
1071
1072 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1073 {
1074   \time 12/16
1075   \override Staff.BarLine #'stencil = ##f
1076   c4 b8 c d16 c d8 |
1077   g,8 a16 b8 c d4 e16 |
1078   e8
1079 }
1080 @end lilypond
1081
1082 Now the bar lines have vanished.
1083
1084 Note, though, that setting the @code{stencil} property to @code{#f}
1085 will cause errors when the dimensions of the object are required for
1086 correct processing.  For example, errors will be generated if the
1087 @code{stencil} property of the @code{NoteHead} object is set to
1088 @code{#f}.  If this is the case, you can instead use the
1089 @code{point-stencil} function, which sets the stencil to a object
1090 with zero size:
1091
1092 @lilypond[quote,verbatim,relative=2]
1093 {
1094   c4 c
1095   \once \override NoteHead #'stencil = #point-stencil
1096   c4 c
1097 }
1098 @end lilypond
1099
1100 @subheading break-visibility
1101
1102 @cindex break-visibility property
1103
1104 We see from the @code{BarLine} properties in the IR that the
1105 @code{break-visibility} property requires a vector of three booleans.
1106 These control respectively whether bar lines are printed at the end of
1107 a line, in the middle of lines, and at the beginning of lines.  For
1108 our example we want all bar lines to be suppressed, so the value we
1109 need is @code{'#(#f #f #f)}.  Let's try that, remembering to include
1110 the @code{Staff} context.  Note also that in writing this value we
1111 have @code{#'#} before the opening bracket.  The @code{'#} is required
1112 as part of the value to introduce a vector, and the first@tie{}@code{#} is
1113 required, as always, to precede the value itself in the
1114 @code{\override} command.
1115
1116 @cindex BarLine, example of overriding
1117 @cindex break-visibility property, example
1118
1119 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1120 {
1121   \time 12/16
1122   \override Staff.BarLine #'break-visibility = #'#(#f #f #f)
1123   c4 b8 c d16 c d8 |
1124   g,8 a16 b8 c d4 e16 |
1125   e8
1126 }
1127 @end lilypond
1128
1129 And we see this too removes all the bar lines.
1130
1131 @subheading transparent
1132
1133 @cindex transparent property
1134 @cindex transparency
1135
1136 We see from the properties specified in the @code{grob-interface} page
1137 in the IR that the @code{transparent} property is a boolean.  This
1138 should be set to @code{#t} to make the grob transparent.  In this next
1139 example let us make the time signature invisible rather than the bar
1140 lines.  To do this we need to find the grob name for the time
1141 signature.  Back to the @q{All layout objects} page in the IR to find
1142 the properties of the @code{TimeSignature} layout object.  This is
1143 produced by the @code{Time_signature_engraver} which you can check
1144 also lives in the @code{Staff} context and also supports the
1145 @code{grob-interface}.  So the command to make the time signature
1146 transparent is:
1147
1148 @cindex TimeSignature, example of overriding
1149 @cindex transparent property, example
1150
1151 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1152 {
1153   \time 12/16
1154   \override Staff.TimeSignature #'transparent = ##t
1155   c4 b8 c d16 c d8 |
1156   g,8 a16 b8 c d4 e16 |
1157   e8
1158 }
1159 @end lilypond
1160
1161 @noindent
1162 The time signature is gone, but this command leaves a gap where
1163 the time signature should be.  Maybe this is what is wanted for
1164 an exercise for the student to fill it in, but in other
1165 circumstances a gap might be undesirable.  To remove it, the
1166 stencil for the time signature should be set to @code{#f}
1167 instead:
1168
1169 @cindex TimeSignature, example of overriding
1170 @cindex stencil property, example
1171
1172 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1173 {
1174   \time 12/16
1175   \override Staff.TimeSignature #'stencil = ##f
1176   c4 b8 c d16 c d8 |
1177   g,8 a16 b8 c d4 e16 |
1178   e8
1179 }
1180 @end lilypond
1181
1182 @noindent
1183 and the difference is obvious: setting the stencil to @code{#f}
1184 removes the object entirely; making the object @code{transparent}
1185 leaves it where it is, but makes it invisible.
1186
1187 @subheading color
1188
1189 @cindex color property
1190
1191 Finally let us try making the bar lines invisible by coloring
1192 them white.  (There is a difficulty with this in that the
1193 white bar line may or may not blank out the staff lines where
1194 they cross.  You may see in some of the examples below that this
1195 happens unpredictably.  The details of why this is so and how to
1196 control it are covered in @ruser{Painting objects white}.  But at
1197 the moment we are learning about color, so please just accept this
1198 limitation for now.)
1199
1200 The @code{grob-interface} specifies that the
1201 color property value is a list, but there is no
1202 explanation of what that list should be.  The list it
1203 requires is actually a list of values in internal units,
1204 but, to avoid having to know what these are, several ways
1205 are provided to specify colors.  The first way is to use one
1206 of the @q{normal} colors listed in the first table in
1207 @ruser{List of colors}.  To set the bar lines to white
1208 we write:
1209
1210 @cindex BarLine, example of overriding
1211 @cindex color property, example
1212
1213 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1214 {
1215   \time 12/16
1216   \override Staff.BarLine #'color = #white
1217   c4 b8 c d16 c d8 |
1218   g,8 a16 b8 c d4 e16 |
1219   e8
1220 }
1221 @end lilypond
1222
1223 @noindent
1224 and again, we see the bar lines are not visible.  Note that
1225 @emph{white} is not preceded by an apostrophe -- it is not
1226 a symbol, but a @emph{function}.  When called, it provides
1227 the list of internal values required to set the color to
1228 white.  The other colors in the normal list are functions
1229 too.  To convince yourself this is working you might like
1230 to change the color to one of the other functions in the
1231 list.
1232
1233 @cindex color, X11
1234 @cindex X11 colors
1235
1236 @funindex x11-color
1237
1238 The second way of changing the color is to use the list of
1239 X11 color names in the second list in @ruser{List of colors}.
1240 However, these must be preceded by another function, which
1241 converts X11 color names into the list of internal values,
1242 @code{x11-color}, like this:
1243
1244 @cindex BarLine, example of overriding
1245 @cindex color property, example
1246
1247 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1248 {
1249   \time 12/16
1250   \override Staff.BarLine #'color = #(x11-color 'white)
1251   c4 b8 c d16 c d8 |
1252   g,8 a16 b8 c d4 e16 |
1253   e8
1254 }
1255 @end lilypond
1256
1257 @noindent
1258 Note that in this case the function @code{x11-color} takes
1259 a symbol as an argument, so the symbol must be preceded by
1260 an apostrophe and the two enclosed in brackets.
1261
1262 @cindex rgb colors
1263 @cindex color, rgb
1264
1265 @funindex rgb-color
1266
1267 There is yet a third function, one which converts RGB values into
1268 internal colors -- the @code{rgb-color} function.  This takes
1269 three arguments giving the intensities of the red, green and
1270 blue colors.  These take values in the range 0 to 1.  So to
1271 set the color to red the value should be @code{(rgb-color 1 0 0)}
1272 and to white it should be @code{(rgb-color 1 1 1)}:
1273
1274 @cindex BarLine, example of overriding
1275 @cindex color property, example
1276
1277 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1278 {
1279   \time 12/16
1280   \override Staff.BarLine #'color = #(rgb-color 1 1 1)
1281   c4 b8 c d16 c d8 |
1282   g,8 a16 b8 c d4 e16 |
1283   e8
1284 }
1285 @end lilypond
1286
1287 Finally, there is also a grey scale available as part of the
1288 X11 set of colors.  These range from black, @code{'grey0'},
1289 to white, @code{'grey100}, in steps of 1.  Let's illustrate
1290 this by setting all the layout objects in our example to
1291 various shades of grey:
1292
1293 @cindex StaffSymbol, example of overriding
1294 @cindex TimeSignature, example of overriding
1295 @cindex Clef, example of overriding
1296 @cindex NoteHead, example of overriding
1297 @cindex Stem, example of overriding
1298 @cindex BarLine, example of overriding
1299 @cindex color property, example
1300 @cindex x11-color, example of using
1301
1302 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1303 {
1304   \time 12/16
1305   \override Staff.StaffSymbol   #'color = #(x11-color 'grey30)
1306   \override Staff.TimeSignature #'color = #(x11-color 'grey60)
1307   \override Staff.Clef          #'color = #(x11-color 'grey60)
1308   \override Voice.NoteHead      #'color = #(x11-color 'grey85)
1309   \override Voice.Stem          #'color = #(x11-color 'grey85)
1310   \override Staff.BarLine       #'color = #(x11-color 'grey10)
1311   c4 b8 c d16 c d8 |
1312   g,8 a16 b8 c d4 e16 |
1313   e8
1314 }
1315 @end lilypond
1316
1317 @noindent
1318 Note the contexts associated with each of the layout objects.
1319 It is important to get these right, or the commands will not
1320 work!  Remember, the context is the one in which the appropriate
1321 engraver is placed.  The default context for engravers can be
1322 found by starting from the layout object, going from there to
1323 the engraver which produces it, and on the engraver page in the
1324 IR it tells you in which context the engraver will normally be
1325 found.
1326
1327
1328 @node Size of objects
1329 @subsection Size of objects
1330
1331 @cindex changing size of objects
1332 @cindex size of objects
1333 @cindex objects, size of
1334 @cindex objects, changing size of
1335
1336 Let us begin by looking again at the earlier example
1337 see @ref{Nesting music expressions}) which showed
1338 how to introduce a new temporary staff, as in an @rglos{ossia}.
1339
1340 @cindex alignAboveContext property, example
1341 @cindex @code{\with}, example
1342
1343 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1344 \new Staff ="main" {
1345   \relative g' {
1346     r4 g8 g c4 c8 d |
1347     e4 r8
1348     <<
1349       { f8 c c }
1350       \new Staff \with {
1351         alignAboveContext = #"main" }
1352       { f8 f c }
1353     >>
1354     r4 |
1355   }
1356 }
1357 @end lilypond
1358
1359 Ossia are normally written without clef and time signature, and
1360 are usually printed slightly smaller than the main staff.  We
1361 already know now how to remove the clef and time signature --
1362 we simply set the stencil of each to @code{#f}, as follows:
1363
1364 @cindex alignAboveContext property, example
1365 @cindex @code{\with}, example
1366 @cindex stencil property, example
1367 @cindex Clef, example of overriding
1368 @cindex TimeSignature, example of overriding
1369
1370 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1371 \new Staff ="main" {
1372   \relative g' {
1373     r4 g8 g c4 c8 d |
1374     e4 r8
1375     <<
1376       { f8 c c }
1377       \new Staff \with {
1378         alignAboveContext = #"main"
1379       }
1380       {
1381         \override Staff.Clef #'stencil = ##f
1382         \override Staff.TimeSignature #'stencil = ##f
1383         { f8 f c }
1384       }
1385     >>
1386     r4 |
1387   }
1388 }
1389 @end lilypond
1390
1391 @noindent
1392 where the extra pair of braces after the @code{\with} clause are
1393 required to ensure the enclosed overrides and music are applied
1394 to the ossia staff.
1395
1396 But what is the difference between modifying the staff context by
1397 using @code{\with} and modifying the stencils of the clef and the
1398 time signature with \override?  The main difference is that
1399 changes made in a @code{\with} clause are made at the time the
1400 context is created, and remain in force as the @strong{default}
1401 values for the duration of that context, whereas
1402 @code{\set} or @code{\override} commands embedded in the
1403 music are dynamic -- they make changes synchronized with
1404 a particular point in the music.  If changes are unset or
1405 reverted using @code{\unset} or @code{\revert} they return to
1406 their default values, which will be the ones set in the
1407 @code{\with} clause, or if none have been set there, the normal
1408 default values.
1409
1410 Some context properties can be modified only in @code{\with} clauses.
1411 These are those properties which cannot sensibly be changed after the
1412 context has been created.  @code{alignAboveContext} and its partner,
1413 @code{alignBelowContext}, are two such properties -- once the staff
1414 has been created its alignment is decided and it would make no sense
1415 to try to change it later.
1416
1417 The default values of layout object properties can also be set
1418 in @code{\with} clauses.  Simply use the normal @code{\override}
1419 command leaving out the context name, since this is unambiguously
1420 defined as the context which the @code{\with} clause is modifying.
1421 If fact, an error will be generated if a context is specified
1422 in this location.
1423
1424 So we could replace the example above with
1425
1426 @cindex alignAboveContext property, example
1427 @cindex @code{\with}, example
1428 @cindex Clef, example of overriding
1429 @cindex TimeSignature, example of overriding
1430
1431 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1432 \new Staff ="main" {
1433   \relative g' {
1434     r4 g8 g c4 c8 d |
1435     e4 r8
1436     <<
1437       { f8 c c }
1438       \new Staff \with {
1439         alignAboveContext = #"main"
1440         % Don't print clefs in this staff
1441         \override Clef #'stencil = ##f
1442         % Don't print time signatures in this staff
1443         \override TimeSignature #'stencil = ##f
1444       }
1445       { f8 f c }
1446     >>
1447     r4 |
1448   }
1449 }
1450 @end lilypond
1451
1452 Finally we come to changing the size of layout objects.
1453
1454 Some layout objects are created as glyphs selected from a typeface
1455 font.  These include note heads, accidentals, markup, clefs, time
1456 signatures, dynamics and lyrics.  Their size is changed by modifying
1457 the @code{font-size} property, as we shall shortly see.  Other layout
1458 objects such as slurs and ties -- in general, spanner objects -- are
1459 drawn individually, so there is no @code{font-size} associated with
1460 them.  These objects generally derive their size from the objects to
1461 which they are attached, so usually there is no need to change their
1462 size manually.  Still other properties such as the length of stems and
1463 bar lines, thickness of beams and other lines, and the separation of
1464 staff lines all need to be modified in special ways.
1465
1466 Returning to the ossia example, let us first change the font-size.
1467 We can do this in two ways.  We can either change the size of the
1468 fonts of each object type, like @code{NoteHead}s with commands
1469 like
1470
1471 @example
1472 \override NoteHead #'font-size = #-2
1473 @end example
1474
1475 or we can change the size of all fonts by setting a special
1476 property, @code{fontSize}, using @code{\set}, or by including
1477 it in a @code{\with} clause (but without the @code{\set}).
1478
1479 @example
1480 \set fontSize = #-2
1481 @end example
1482
1483 Both of these statements would cause the font size to be reduced
1484 by 2 steps from its previous value, where each
1485 step reduces or increases the size by approximately 12%.
1486
1487 Let's try it in our ossia example:
1488
1489 @cindex alignAboveContext property, example
1490 @cindex @code{\with}, example
1491 @cindex Clef, example of overriding
1492 @cindex TimeSignature, example of overriding
1493 @cindex fontSize property, example
1494
1495 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1496 \new Staff ="main" {
1497   \relative g' {
1498     r4 g8 g c4 c8 d |
1499     e4 r8
1500     <<
1501       { f8 c c }
1502       \new Staff \with {
1503         alignAboveContext = #"main"
1504         \override Clef #'stencil = ##f
1505         \override TimeSignature #'stencil = ##f
1506         % Reduce all font sizes by ~24%
1507         fontSize = #-2
1508       }
1509       { f8 f c }
1510     >>
1511     r4 |
1512   }
1513 }
1514 @end lilypond
1515
1516 This is still not quite right.  The note heads and flags are
1517 smaller, but the stems are too long in proportion and the
1518 staff lines are spaced too widely apart.  These need to be
1519 scaled down in proportion to the font reduction.  The next
1520 sub-section discusses how this is done.
1521
1522 @node Length and thickness of objects
1523 @subsection Length and thickness of objects
1524
1525 @cindex distances
1526 @cindex thickness
1527 @cindex length
1528 @cindex magstep
1529 @cindex size, changing
1530 @cindex stem length, changing
1531 @cindex staff line spacing, changing
1532
1533 Distances and lengths in LilyPond are generally measured in
1534 staff-spaces, the distance between adjacent lines in the staff,
1535 (or occasionally half staff spaces) while most @code{thickness}
1536 properties are measured in units of an internal property called
1537 @code{line-thickness.}  For example, by default, the lines of
1538 hairpins are given a thickness of 1 unit of @code{line-thickness},
1539 while the @code{thickness} of a note stem is 1.3.  Note, though,
1540 that some thickness properties are different; for example, the
1541 thickness of beams is controlled by the value of the
1542 @code{beam-thickness} property, which is measured in staff-spaces.
1543
1544 So how are lengths to be scaled in proportion to the font size?
1545 This can be done with the help of a special function called
1546 @code{magstep} provided for exactly this purpose.  It takes
1547 one argument, the change in font size (#-2 in the example above)
1548 and returns a scaling factor suitable for reducing other
1549 objects in proportion.  It is used like this:
1550
1551 @cindex alignAboveContext property, example
1552 @cindex @code{\with}, example
1553 @cindex Clef, example of overriding
1554 @cindex TimeSignature, example of overriding
1555 @cindex fontSize property, example
1556 @cindex StaffSymbol, example of overriding
1557 @cindex magstep function, example of using
1558 @cindex staff-space property, example
1559 @cindex stencil property, example
1560
1561 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1562 \new Staff ="main" {
1563   \relative g' {
1564     r4 g8 g c4 c8 d |
1565     e4 r8
1566     <<
1567       { f8 c c }
1568       \new Staff \with {
1569         alignAboveContext = #"main"
1570         \override Clef #'stencil = ##f
1571         \override TimeSignature #'stencil = ##f
1572         fontSize = #-2
1573         % Reduce stem length and line spacing to match
1574         \override StaffSymbol #'staff-space = #(magstep -2)
1575       }
1576       { f8 f c }
1577     >>
1578     r4 |
1579   }
1580 }
1581 @end lilypond
1582
1583 @noindent
1584 Since the length of stems and many other length-related properties are
1585 always calculated relative to the value of the @code{staff-space}
1586 property these are automatically scaled down in length too.  Note that
1587 this affects only the vertical scale of the ossia -- the horizontal
1588 scale is determined by the layout of the main music in order to remain
1589 synchronized with it, so it is not affected by any of these changes in
1590 size.  Of course, if the scale of all the main music were changed in
1591 this way then the horizontal spacing would be affected.  This is
1592 discussed later in the layout section.
1593
1594 This, then, completes the creation of an ossia.  The sizes and
1595 lengths of all other objects may be modified in analogous ways.
1596
1597 For small changes in scale, as in the example above, the
1598 thickness of the various drawn lines such as bar lines,
1599 beams, hairpins, slurs, etc does not usually require global
1600 adjustment.  If the thickness of any particular layout object
1601 needs to be adjusted this can be best achieved by overriding its
1602 @code{thickness} property.  An example of changing the thickness
1603 of slurs was shown above in @ref{Properties of layout objects}.
1604 The thickness of all drawn objects (i.e., those not produced
1605 from a font) may be changed in the same way.
1606
1607
1608 @node Placement of objects
1609 @section Placement of objects
1610
1611 @menu
1612 * Automatic behavior::
1613 * Within-staff objects::
1614 * Outside-staff objects::
1615 @end menu
1616
1617
1618 @node Automatic behavior
1619 @subsection Automatic behavior
1620
1621 @cindex within-staff objects
1622 @cindex outside-staff objects
1623 @cindex objects, within-staff
1624 @cindex objects, outside-staff
1625
1626 There are some objects in musical notation that belong to
1627 the staff and there are other objects that should be
1628 placed outside the staff.  These are called within-staff
1629 objects and outside-staff objects respectively.
1630
1631 Within-staff objects are those that are located on the staff
1632 -- note heads, stems, accidentals, etc.  The positions of
1633 these are usually fixed by the music itself -- they are
1634 vertically positioned on specific lines of the staff or are
1635 tied to other objects that are so positioned.  Collisions of
1636 note heads, stems and accidentals in closely set chords are
1637 normally avoided automatically.  There are commands and
1638 overrides which can modify this automatic behavior, as we
1639 shall shortly see.
1640
1641 Objects belonging outside the staff include things such as
1642 rehearsal marks, text and dynamic markings.  LilyPond's rule for
1643 the vertical placement of outside-staff objects is to place them
1644 as close to the staff as possible but not so close that they
1645 collide with any other object.  LilyPond uses the
1646 @code{outside-staff-priority} property to determine the order in
1647 which the objects should be placed, as follows.
1648
1649 First, LilyPond places all the within-staff objects.
1650 Then it sorts the outside-staff objects according to their
1651 @code{outside-staff-priority}.  The outside-staff objects are
1652 taken one by one, beginning with the object with the lowest
1653 @code{outside-staff-priority}, and placed so that they do not
1654 collide with any objects that have already been placed.  That is,
1655 if two outside-staff grobs are competing for the same space, the
1656 one with the lower @code{outside-staff-priority} will be placed
1657 closer to the staff.  If two objects have the same
1658 @code{outside-staff-priority} the one encountered first will be
1659 placed closer to the staff.
1660
1661 In the following example all the markup texts have the same
1662 priority (since it is not explicitly set).  Note that @q{Text3}
1663 is automatically positioned close to the staff again, nestling
1664 under @q{Text2}.
1665
1666 @cindex markup example
1667
1668 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1669 c2^"Text1"
1670 c2^"Text2" |
1671 c2^"Text3"
1672 c2^"Text4" |
1673 @end lilypond
1674
1675 Staves are also positioned, by default, as closely together as
1676 possible (subject to a minimum separation).  If notes project
1677 a long way towards an adjacent staff they will force the
1678 staves further apart only if an overlap of the notation
1679 would otherwise occur.  The following example demonstrates
1680 this @q{nestling} of the notes on adjacent staves:
1681
1682 @lilypond[quote,ragged-right,verbatim]
1683 <<
1684   \new Staff {
1685     \relative c' { c4 a, }
1686   }
1687   \new Staff {
1688     \relative c'''' { c4 a, }
1689   }
1690 >>
1691 @end lilypond
1692
1693
1694 @node Within-staff objects
1695 @subsection Within-staff objects
1696
1697 We have already seen how the commands @code{\voiceXXX} affect
1698 the direction of slurs, ties, fingering and
1699 everything else which depends on the direction of the stems.
1700 These commands are essential when writing polyphonic music to
1701 permit interweaving melodic lines to be distinguished.
1702 But occasionally it may be necessary to override this automatic
1703 behavior.  This can be done for whole sections of music or even
1704 for an individual note.  The property which controls this
1705 behavior is the @code{direction} property of each layout object.
1706 We first explain what this does, and then introduce a number of
1707 ready-made commands which avoid your having to code explicit
1708 overrides for the more common modifications.
1709
1710 Some layout objects like slurs and ties curve, bend or point
1711 either up or down; others like stems and flags also move to
1712 right or left when they point up or down.  This is controlled
1713 automatically when @code{direction} is set.
1714
1715 @cindex down
1716 @cindex up
1717 @cindex center
1718 @cindex neutral
1719
1720 The following example shows in bar 1 the default behavior of stems,
1721 with those on high notes pointing down and those on low notes pointing
1722 up, followed by four notes with all stems forced down, four notes with
1723 all stems forced up, and finally four notes reverted back to the
1724 default behavior.
1725
1726 @cindex Stem, example of overriding
1727 @cindex direction property, example
1728
1729 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1730 a4 g c a |
1731 \override Stem #'direction = #DOWN
1732 a4 g c a |
1733 \override Stem #'direction = #UP
1734 a4 g c a |
1735 \revert Stem #'direction
1736 a4 g c a |
1737 @end lilypond
1738
1739 Here we use the constants @code{DOWN} and @code{UP}.
1740 These have the values @w{@code{-1}} and @code{+1} respectively, and
1741 these numerical values may be used instead.  The value @code{0}
1742 may also be used in some cases.  It is simply treated as meaning
1743 @code{UP} for stems, but for some objects it means @q{center}.
1744 There is a constant, @code{CENTER} which has the value @code{0}.
1745
1746 However, these explicit overrides are not usually used, as there are
1747 simpler equivalent predefined commands available.  Here is a table of
1748 the commonest.  The meaning of each is stated where it is not obvious.
1749
1750 @multitable @columnfractions .2 .2 .25 .35
1751 @headitem Down/Left
1752   @tab Up/Right
1753   @tab Revert
1754   @tab Effect
1755 @item @code{\arpeggioArrowDown}
1756   @tab @code{\arpeggioArrowUp}
1757   @tab @code{\arpeggioNormal}
1758   @tab Arrow is at bottom, at top, or no arrow
1759 @item @code{\dotsDown}
1760   @tab @code{\dotsUp}
1761   @tab @code{\dotsNeutral}
1762   @tab Direction of movement to avoid staff lines
1763 @item @code{\dynamicDown}
1764   @tab @code{\dynamicUp}
1765   @tab @code{\dynamicNeutral}
1766   @tab
1767 @item @code{\phrasingSlurDown}
1768   @tab @code{\phrasingSlurUp}
1769   @tab @code{\phrasingSlurNeutral}
1770   @tab Note: distinct from slur commands
1771 @item @code{\slurDown}
1772   @tab @code{\slurUp}
1773   @tab @code{\slurNeutral}
1774   @tab
1775 @item @code{\stemDown}
1776   @tab @code{\stemUp}
1777   @tab @code{\stemNeutral}
1778   @tab
1779 @item @code{\textSpannerDown}
1780   @tab @code{\textSpannerUp}
1781   @tab @code{\textSpannerNeutral}
1782   @tab Text entered as spanner is below/above staff
1783 @item @code{\tieDown}
1784   @tab @code{\tieUp}
1785   @tab @code{\tieNeutral}
1786   @tab
1787 @item @code{\tupletDown}
1788   @tab @code{\tupletUp}
1789   @tab @code{\tupletNeutral}
1790   @tab Tuplets are below/above notes
1791 @end multitable
1792
1793 Note that these predefined commands may @strong{not} be
1794 preceded by @code{\once}.  If you wish to limit the
1795 effect to a single note you must either use the equivalent
1796 @code{\once \override} command or use the predefined command
1797 followed after the affected note by the corresponding
1798 @code{\xxxNeutral} command.
1799
1800 @unnumberedsubsubsec Fingering
1801
1802 @cindex fingering, placement
1803 @cindex fingering, chords
1804
1805 The placement of fingering on single notes can also be controlled
1806 by the @code{direction} property, but changing @code{direction}
1807 has no effect on chords.  As we shall see, there are special
1808 commands which allow the fingering of individual notes
1809 of chords to be controlled, with the fingering being placed
1810 above, below, to the left or to the right of each note.
1811
1812 First, here's the effect of @code{direction} on the fingering
1813 attached to single notes.  The first bar shows the default
1814 behaviour, and the following two bars shows the effect of
1815 specifying @code{DOWN} and @code{UP}:
1816
1817 @cindex Fingering, example of overriding
1818 @cindex direction property, example
1819
1820 @lilypond[quote,verbatim,relative=2]
1821 c4-5 a-3 f-1 c'-5 |
1822 \override Fingering #'direction = #DOWN
1823 c4-5 a-3 f-1 c'-5 |
1824 \override Fingering #'direction = #UP
1825 c4-5 a-3 f-1 c'-5 |
1826 @end lilypond
1827
1828 However, overriding the @code{direction} property is not the
1829 easiest way of manually setting the fingering above or below
1830 the notes; using @code{_} or @code{^} instead of @code{-} before
1831 the fingering number is usually preferable.  Here is the previous
1832 example using this method:
1833
1834 @cindex fingering example
1835
1836 @lilypond[quote,verbatim,relative=2]
1837 c4-5 a-3 f-1 c'-5 |
1838 c4_5 a_3 f_1 c'_5 |
1839 c4^5 a^3 f^1 c'^5 |
1840 @end lilypond
1841
1842 The @code{direction} property is ignored for chords, but the
1843 directional prefixes, @code{_} and @code{^} do work.  By default,
1844 the fingering is automatically placed both above and below the
1845 notes of a chord, as shown:
1846
1847 @cindex fingering example
1848
1849 @lilypond[quote,verbatim,relative=2]
1850 <c-5 g-3>4
1851 <c-5 g-3 e-2>4
1852 <c-5 g-3 e-2 c-1>4
1853 @end lilypond
1854
1855 @noindent
1856 but this may be overridden to manually force all or any of the
1857 individual fingering numbers above or below:
1858
1859 @cindex fingering example
1860
1861 @lilypond[quote,verbatim,relative=2]
1862 <c-5 g-3 e-2 c-1>4
1863 <c^5 g_3 e_2 c_1>4
1864 <c^5 g^3 e^2 c_1>4
1865 @end lilypond
1866
1867 Even greater control over the placement of fingering of the
1868 individual notes in a chord is possible by using the
1869 @code{\set fingeringOrientations} command.  The format of this
1870 command is:
1871
1872 @example
1873 @code{\set fingeringOrientations = #'([up] [left/right] [down])}
1874 @end example
1875
1876 @noindent
1877 @code{\set} is used because @code{fingeringOrientations} is a
1878 property of the @code{Voice} context, created and used by the
1879 @code{New_fingering_engraver}.
1880
1881 The property may be set to a list of one to three values.
1882 It controls whether fingerings may be placed above (if
1883 @code{up} appears in the list), below (if @code{down} appears),
1884 to the left (if @code{left} appears, or to the right
1885 (if @code{right} appears).  Conversely, if a location is not
1886 listed, no fingering is placed there.  LilyPond takes these
1887 constraints and works out the best placement for the fingering
1888 of the notes of the following chords.  Note that @code{left} and
1889 @code{right} are mutually exclusive -- fingering may be placed
1890 only on one side or the other, not both.
1891
1892 @warning{To control the placement of the fingering of a single
1893 note using this command it is necessary to write it as a single
1894 note chord by placing angle brackets round it.}
1895
1896 Here are a few examples:
1897
1898 @cindex fingering example
1899 @cindex @code{\set}, example of using
1900 @cindex fingeringOrientations property, example
1901
1902 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
1903 \set fingeringOrientations = #'(left)
1904 <f-2>4
1905 <c-1 e-2 g-3 b-5>4
1906 \set fingeringOrientations = #'(left)
1907 <f-2>4
1908 <c-1 e-2 g-3 b-5>4 |
1909 \set fingeringOrientations = #'(up left down)
1910 <f-2>4
1911 <c-1 e-2 g-3 b-5>4
1912 \set fingeringOrientations = #'(up left)
1913 <f-2>4
1914 <c-1 e-2 g-3 b-5>4 |
1915 \set fingeringOrientations = #'(right)
1916 <f-2>4
1917 <c-1 e-2 g-3 b-5>4
1918 @end lilypond
1919
1920 @noindent
1921 If the fingering seems a little crowded the @code{font-size}
1922 could be reduced.  The default value can be seen from the
1923 @code{Fingering} object in the IR to be @w{@code{-5}}, so let's
1924 try @w{@code{-7}}:
1925
1926 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
1927 \override Fingering #'font-size = #-7
1928 \set fingeringOrientations = #'(left)
1929 <f-2>4
1930 <c-1 e-2 g-3 b-5>4
1931 \set fingeringOrientations = #'(left)
1932 <f-2>4
1933 <c-1 e-2 g-3 b-5>4 |
1934 \set fingeringOrientations = #'(up left down)
1935 <f-2>4
1936 <c-1 e-2 g-3 b-5>4
1937 \set fingeringOrientations = #'(up left)
1938 <f-2>4
1939 <c-1 e-2 g-3 b-5>4 |
1940 \set fingeringOrientations = #'(right)
1941 <f-2>4
1942 <c-1 e-2 g-3 b-5>4
1943 @end lilypond
1944
1945 @node Outside-staff objects
1946 @subsection Outside-staff objects
1947
1948 Outside-staff objects are automatically placed to avoid collisions.
1949 Objects with the lower value of the @code{outside-staff-priority}
1950 property are placed nearer to the staff, and other outside-staff
1951 objects are then raised as far as necessary to avoid collisions.
1952 The @code{outside-staff-priority} is defined in the
1953 @code{grob-interface} and so is a property of all layout objects.
1954 By default it is set to @code{#f} for all within-staff objects,
1955 and to a numerical value appropriate to each outside-staff object
1956 when the object is created.  The following table shows the default
1957 numerical values for some of the commonest outside-staff objects.
1958
1959 @cindex spanners
1960
1961 Note the unusual names for some of the objects: spanner objects
1962 are automatically created to control the vertical positioning of
1963 grobs which (might) start and end at different musical moments, so
1964 changing the @code{outside-staff-priority} of the underlying grob
1965 will have no effect.  For example, changing
1966 @code{outside-staff-priority} of the @code{Hairpin} object will
1967 have no effect on the vertical positioning of hairpins -- you must
1968 change @code{outside-staff-priority} of the associated
1969 @code{DynamicLineSpanner} object instead.  This override must be
1970 placed at the start of the spanner, which might include several
1971 linked hairpins and dynamics.
1972
1973 @multitable @columnfractions .3 .3 .3
1974 @headitem Layout Object
1975   @tab Priority
1976   @tab Controls position of:
1977 @item @code{RehearsalMark}
1978   @tab @code{1500}
1979   @tab Rehearsal marks
1980 @item @code{MetronomeMark}
1981   @tab @code{1000}
1982   @tab Metronome marks
1983 @item @code{VoltaBracketSpanner}
1984   @tab @code{600}
1985   @tab Volta brackets
1986 @item @code{TextScript}
1987   @tab @code{450}
1988   @tab Markup text
1989 @item @code{MultiMeasureRestText}
1990   @tab @code{450}
1991   @tab Markup text over full-bar rests
1992 @item @code{OttavaBracket}
1993   @tab @code{400}
1994   @tab Ottava brackets
1995 @item @code{TextSpanner}
1996   @tab @code{350}
1997   @tab Text spanners
1998 @item @code{DynamicLineSpanner}
1999   @tab @code{250}
2000   @tab All dynamic markings
2001 @item @code{BarNumber}
2002   @tab @code{ 100}
2003   @tab Bar numbers
2004 @item @code{TrillSpanner}
2005   @tab @code{50}
2006   @tab Spanning trills
2007 @end multitable
2008
2009 Here is an example showing the default placement of some of
2010 these.
2011
2012 @cindex text spanner
2013 @cindex ottava bracket
2014
2015 @funindex \startTextSpan
2016 @funindex startTextSpan
2017 @funindex \stopTextSpan
2018 @funindex stopTextSpan
2019
2020 @cindex TextSpanner, example of overriding
2021 @cindex bound-details property, example
2022
2023 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
2024 % Set details for later Text Spanner
2025 \override TextSpanner #'(bound-details left text)
2026     = \markup { \small \bold Slower }
2027 % Place dynamics above staff
2028 \dynamicUp
2029 % Start Ottava Bracket
2030 \ottava #1
2031 c'4 \startTextSpan
2032 % Add Dynamic Text and hairpin
2033 c4\pp\<
2034 c4
2035 % Add Text Script
2036 c4^Text |
2037 c4 c
2038 % Add Dynamic Text and terminate hairpin
2039 c4\ff c \stopTextSpan |
2040 % Stop Ottava Bracket
2041 \ottava #0
2042 c,4 c c c |
2043 @end lilypond
2044
2045 This example also shows how to create Text Spanners --
2046 text with extender lines above a section of music.  The
2047 spanner extends from the @code{\startTextSpan} command to
2048 the @code{\stopTextSpan} command, and the format of the
2049 text is defined by the @code{\override TextSpanner} command.
2050 For more details see @ruser{Text spanners}.
2051
2052 It also shows how ottava brackets are created.
2053
2054 @cindex tweaking bar number placement
2055 @cindex bar numbers, tweaking placement
2056 @cindex tweaking metronome mark placement
2057 @cindex metronome mark, tweaking placement
2058 @cindex tweaking rehearsal mark placement
2059 @cindex rehearsal marks, tweaking placement
2060
2061 If the default values of @code{outside-staff-priority} do not give you
2062 the placing you want, the priority of any of the objects may be
2063 overridden.  Suppose we would like the ottava bracket to be placed
2064 below the text spanner in the example above.  All we need to do is to
2065 look up the priority of @code{OttavaBracket} in the IR or in the
2066 tables above, and reduce it to a value lower than that of a
2067 @code{TextSpanner}, remembering that @code{OttavaBracket} is created
2068 in the @code{Staff} context:
2069
2070 @cindex TextSpanner, example of overriding
2071 @cindex bound-details property, example
2072
2073 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
2074 % Set details for later Text Spanner
2075 \override TextSpanner #'(bound-details left text)
2076     = \markup { \small \bold Slower }
2077 % Place dynamics above staff
2078 \dynamicUp
2079 % Place following Ottava Bracket below Text Spanners
2080 \once \override Staff.OttavaBracket #'outside-staff-priority = #340
2081 % Start Ottava Bracket
2082 \ottava #1
2083 c'4 \startTextSpan
2084 % Add Dynamic Text
2085 c4\pp
2086 % Add Dynamic Line Spanner
2087 c4\<
2088 % Add Text Script
2089 c4^Text |
2090 c4 c
2091 % Add Dynamic Text
2092 c4\ff c \stopTextSpan |
2093 % Stop Ottava Bracket
2094 \ottava #0
2095 c,4 c c c |
2096 @end lilypond
2097
2098 Note that some of these objects, in particular bar numbers,
2099 metronome marks and rehearsal marks, live by default in the
2100 @code{Score} context, so be sure to use the correct context
2101 when these are being overriden.
2102
2103 @cindex slurs and outside-staff-priority
2104 @cindex slurs and articulations
2105 @cindex articulations and slurs
2106
2107 Slurs by default are classed as within-staff objects, but
2108 they often appear above the staff if the notes to
2109 which they are attached are high on the staff.  This can push
2110 outside-staff objects such as articulations too high, as the slur
2111 will be placed first.  The @code{avoid-slur} property of the
2112 articulation can be set to @code{'inside} to bring the articulation
2113 inside the slur, but the @code{avoid-slur} property is effective
2114 only if the @code{outside-staff-priority} is also set to @code{#f}.
2115 Alternatively, the @code{outside-staff-priority} of the slur
2116 can be set to a numerical value to cause it to be placed along with
2117 other outside-staff objects according to that value.  Here's an
2118 example showing the effect of the two methods:
2119
2120 @lilypond[quote,verbatim,relative=2]
2121 c4( c^\markup { \tiny \sharp } d4.) c8 |
2122 c4(
2123 \once \override TextScript #'avoid-slur = #'inside
2124 \once \override TextScript #'outside-staff-priority = ##f
2125 c4^\markup { \tiny \sharp } d4.) c8 |
2126 \once \override Slur #'outside-staff-priority = #500
2127 c4( c^\markup { \tiny \sharp } d4.) c8 |
2128 @end lilypond
2129
2130 Changing the @code{outside-staff-priority} can also be used to
2131 control the vertical placement of individual objects, although
2132 the results may not always be desirable.  Suppose we would
2133 like @qq{Text3} to be placed above @qq{Text4} in the example
2134 under Automatic behavior, above (see @ref{Automatic behavior}).
2135 All we need to do is to look up the priority of @code{TextScript}
2136 in the IR or in the tables above, and increase the priority of
2137 @qq{Text3} to a higher value:
2138
2139 @cindex TextScript, example of overriding
2140 @cindex outside-staff-priority property, example
2141
2142 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
2143 c2^"Text1"
2144 c2^"Text2" |
2145 \once \override TextScript #'outside-staff-priority = #500
2146 c2^"Text3"
2147 c2^"Text4" |
2148 @end lilypond
2149
2150 This certainly lifts @qq{Text3} above @qq{Text4} but it also lifts it
2151 above @qq{Text2}, and @qq{Text4} now drops down.  Perhaps this is not
2152 so good.  What we would really like to do is to position all the
2153 annotation at the same distance above the staff.  To do this, we
2154 clearly will need to space the notes out horizontally to make more
2155 room for the text.  This is done using the @code{textLengthOn}
2156 command.
2157
2158 @subheading \textLengthOn
2159
2160 @cindex notes, spreading out with text
2161
2162 @funindex \textLengthOn
2163 @funindex textLengthOn
2164 @funindex \textLengthOff
2165 @funindex textLengthOff
2166
2167 By default, text produced by markup takes up no horizontal space
2168 as far as laying out the music is concerned.  The @code{\textLengthOn}
2169 command reverses this behavior, causing the notes to be spaced
2170 out as far as is necessary to accommodate the text:
2171
2172 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
2173 \textLengthOn  % Cause notes to space out to accommodate text
2174 c2^"Text1"
2175 c2^"Text2" |
2176 c2^"Text3"
2177 c2^"Text4" |
2178 @end lilypond
2179
2180 The command to revert to the default behavior is
2181 @code{\textLengthOff}.  Remember @code{\once} only works with
2182 @code{\override}, @code{\set}, @code{\revert} or @code{unset},
2183 so cannot be used with @code{\textLengthOn}.
2184
2185 @cindex markup text, allowing collisions
2186
2187 Markup text will also avoid notes which project above the staff.
2188 If this is not desired, the automatic displacement upwards may
2189 be turned off by setting the priority to @code{#f}.  Here's an
2190 example to show how markup text interacts with such notes.
2191
2192 @cindex TextScript, example of overriding
2193 @cindex outside-staff-priority property, example
2194
2195 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
2196 % This markup is short enough to fit without collision
2197 c2^"Tex" c'' |
2198 R1 |
2199
2200 % This is too long to fit, so it is displaced upwards
2201 c,,2^"Text" c'' |
2202 R1 |
2203
2204 % Turn off collision avoidance
2205 \once \override TextScript #'outside-staff-priority = ##f
2206 c,,2^"Long Text   " c'' |
2207 R1 |
2208
2209 % Turn off collision avoidance
2210 \once \override TextScript #'outside-staff-priority = ##f
2211 \textLengthOn        % and turn on textLengthOn
2212 c,,2^"Long Text   "  % Spaces at end are honored
2213 c''2 |
2214 @end lilypond
2215
2216
2217 @subheading Dynamics
2218
2219 @cindex tweaking dynamics placement
2220 @cindex dynamics, tweaking placement
2221
2222 Dynamic markings will normally be positioned beneath the
2223 staff, but may be positioned above with the @code{dynamicUp}
2224 command.  They will be positioned vertically relative to the
2225 note to which they are attached, and will float below (or above)
2226 all within-staff objects such as phrasing slurs and bar numbers.
2227 This can give quite acceptable results, as this example
2228 shows:
2229
2230 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
2231 \clef "bass"
2232 \key aes \major
2233 \time 9/8
2234 \dynamicUp
2235 bes4.~\f\< \( bes4 bes8 des4\ff\> c16 bes\! |
2236 ees,2.~\)\mf ees4 r8 |
2237 @end lilypond
2238
2239 However, if the notes and attached dynamics are close
2240 together the automatic placement will avoid collisions
2241 by displacing later dynamic markings further away, but this may
2242 not be the optimum placement, as this rather artificial example
2243 shows:
2244
2245 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
2246 \dynamicUp
2247 a4\f b\mf c\mp b\p
2248 @end lilypond
2249
2250 @noindent
2251 Should a similar situation arise in @q{real} music, it may be
2252 preferable to space out the notes a little further, so the dynamic
2253 markings can all fit at the same vertical distance from the staff.  We
2254 were able to do this for markup text by using the @code{\textLengthOn}
2255 command, but there is no equivalent command for dynamic marks.  So we
2256 shall have to work out how to do this using @code{\override} commands.
2257
2258 @subheading Grob sizing
2259
2260 @cindex grob sizing
2261 @cindex sizing grobs
2262
2263 First we must learn how grobs are sized.  All grobs have a
2264 reference point defined within them which is used to position
2265 them relative to their parent object.  This point in the grob
2266 is then positioned at a horizontal distance, @code{X-offset},
2267 and at a vertical distance, @code{Y-offset}, from its parent.
2268 The horizontal extent of the object is given by a pair of
2269 numbers, @code{X-extent}, which say where the left and right
2270 edges are relative to the reference point.  The vertical extent
2271 is similarly defined by a pair of numbers, @code{Y-extent}.
2272 These are properties of all grobs which support the
2273 @code{grob-interface}.
2274
2275 @cindex @code{extra-spacing-width}
2276
2277 By default, outside-staff objects are given a width of zero so
2278 that they may overlap in the horizontal direction.  This is done
2279 by the trick of adding infinity to the leftmost extent and
2280 minus infinity to the rightmost extent by setting the
2281 @code{extra-spacing-width} to @code{'(+inf.0 . -inf.0)}.  So
2282 to ensure they do not overlap in the horizontal direction we
2283 must override this value of @code{extra-spacing-width} to
2284 @code{'(0 . 0)} so the true width shines through.  This is
2285 the command to do this for dynamic text:
2286
2287 @example
2288 \override DynamicText #'extra-spacing-width = #'(0 . 0)
2289 @end example
2290
2291 @noindent
2292 Let's see if this works in our previous example:
2293
2294 @cindex DynamicText, example of overriding
2295 @cindex extra-spacing-width property, example
2296
2297 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
2298 \dynamicUp
2299 \override DynamicText #'extra-spacing-width = #'(0 . 0)
2300 a4\f b\mf c\mp b\p |
2301 @end lilypond
2302
2303 @noindent
2304 Well, it has certainly stopped the dynamic marks being
2305 displaced, but two problems remain.  The marks should be
2306 spaced a little further apart and it would be better
2307 if they were all the same distance from the staff.
2308 We can solve the first problem easily.  Instead of making
2309 the @code{extra-spacing-width} zero we could add a little
2310 more to it.  The units are the space between two staff
2311 lines, so moving the left edge half a unit to the left and the
2312 right edge half a unit to the right should do it:
2313
2314 @cindex DynamicText, example of overriding
2315 @cindex extra-spacing-width property, example
2316
2317 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
2318 \dynamicUp
2319 % Extend width by 1 staff space
2320 \override DynamicText #'extra-spacing-width = #'(-0.5 . 0.5)
2321 a4\f b\mf c\mp b\p
2322 @end lilypond
2323
2324 @noindent
2325 This looks better, but maybe we would prefer the dynamic marks
2326 to be aligned along the same baseline rather than going up and
2327 down with the notes.  The property to do this is
2328 @code{staff-padding} which is covered in the following section.
2329
2330
2331 @node Collisions of objects
2332 @section Collisions of objects
2333
2334 @menu
2335 * Moving objects::
2336 * Fixing overlapping notation::
2337 * Real music example::
2338 @end menu
2339
2340 @node Moving objects
2341 @subsection Moving objects
2342
2343 @cindex moving overlapping objects
2344 @cindex moving colliding objects
2345 @cindex moving colliding grobs
2346 @cindex objects, moving colliding
2347 @cindex grobs, moving colliding
2348
2349 This may come as a surprise, but LilyPond is not perfect.  Some
2350 notation elements can overlap.  This is unfortunate, but in fact
2351 rather rare.  Usually the need to move objects is for clarity or
2352 aesthetic reasons -- they would look better with a little more
2353 or a little less space around them.
2354
2355 There are three main approaches to resolving overlapping
2356 notation.  They should be considered in the following order:
2357
2358 @enumerate
2359 @item
2360 The @strong{direction} of one of the overlapping objects may
2361 be changed using the predefined commands listed above for
2362 within-staff objects (see @ref{Within-staff objects}).
2363 Stems, slurs, beams, ties, dynamics, text and tuplets may be
2364 repositioned easily in this way.  The limitation is that you
2365 have a choice of only two positions, and neither may be
2366 suitable.
2367
2368 @item
2369 The @strong{object properties}, which LilyPond uses when positioning
2370 layout objects, may be modified using @code{\override}.  The
2371 advantages of making changes to this type of property are (a) that
2372 some other objects will be moved automatically if necessary to make
2373 room and (b) the single override can apply to all instances of the
2374 same type of object.  Such properties include:
2375
2376 @itemize
2377
2378 @item
2379 @code{direction}
2380
2381 This has already been covered in some detail -- see
2382 @ref{Within-staff objects}.
2383
2384 @item
2385 @code{padding}, @code{right-padding}, @code{staff-padding}
2386
2387 @cindex padding
2388 @cindex padding property
2389 @cindex right-padding property
2390 @cindex staff-padding property
2391
2392 As an object is being positioned the value of its @code{padding}
2393 property specifies the gap that must be left between itself and the
2394 nearest edge of the object against which it is being positioned.  Note
2395 that it is the @code{padding} value of the object @strong{being
2396 placed} that is used; the @code{padding} value of the object which is
2397 already placed is ignored.  Gaps specified by @code{padding} can be
2398 applied to all objects which support the
2399 @code{side-position-interface}.
2400
2401 Instead of @code{padding}, the placement of groups of accidentals
2402 is controlled by @code{right-padding}.  This property is to be found
2403 in the @code{AccidentalPlacement} object which, note, lives in the
2404 @strong{Staff} context.  In the typesetting process the note heads
2405 are typeset first and then the accidentals, if any, are added to the
2406 left of the note heads using the @code{right-padding} property to determine
2407 the separation from the note heads and between individual accidentals.
2408 So only the @code{right-padding} property of the @code{AccidentalPlacement}
2409 object has any effect on the placement of the accidentals.
2410
2411 The @code{staff-padding} property is closely related to the
2412 @code{padding} property: @code{padding} controls the minimum amount of
2413 space between any object which supports the
2414 @code{side-position-interface} and the nearest other object (generally
2415 the note or the staff lines); @code{staff-padding} applies only to
2416 those objects which are always set outside the staff -- it controls
2417 the minimum amount of space that should be inserted between that
2418 object and the staff.  Note that @code{staff-padding} has no effect on
2419 objects which are positioned relative to the note rather than the
2420 staff, even though it may be overridden without error for such objects
2421 -- it is simply ignored.
2422
2423 To discover which padding property is required for the object you wish
2424 to reposition, you need to return to the IR and look up the object's
2425 properties.  Be aware that the padding properties might not be located
2426 in the obvious object, so look in objects that appear to be related.
2427
2428 All padding values are measured in staff spaces.  For most
2429 objects, this value is set by default to be around 1.0 or less
2430 (it varies with each object).  It may be overridden if a larger
2431 (or smaller) gap is required.
2432
2433 @item
2434 @code{self-alignment-X}
2435
2436 @cindex self-alignment-X property
2437
2438 This property can be used to align the object to the left, to
2439 the right, or to center it with respect to the parent object's
2440 reference point.  It may be used with all objects which support
2441 the @code{self-alignment-interface}.  In general these are objects
2442 that contain text.  The values are @code{LEFT}, @code{RIGHT}
2443 or @code{CENTER}.  Alternatively, a numerical value between
2444 @w{@code{-1}} and @code{+1} may be specified, where @w{@code{-1}} is
2445 left-aligned, @code{+1} is right-aligned, and numbers in between
2446 move the text progressively from left-aligned to right-aligned.
2447 Numerical values greater than @code{1} may be specified to move
2448 the text even further to the left, or less than @w{@code{-1}} to
2449 move the text even further to the right.  A change of @code{1}
2450 in the value corresponds to a movement of half the text's length.
2451
2452 @item
2453 @code{extra-spacing-width}
2454
2455 @cindex extra-spacing-width property
2456
2457 This property is available for all objects which support the
2458 @code{item-interface}.  It takes two numbers, the first is added
2459 to the leftmost extent and the second is added to the rightmost
2460 extent.  Negative numbers move the edge to the left, positive to
2461 the right, so to widen an object the first number must be negative,
2462 the second positive.  Note that not all objects honor both
2463 numbers.  For example, the @code{Accidental} object only takes
2464 notice of the first (left edge) number.
2465
2466 @item
2467 @code{staff-position}
2468
2469 @cindex staff-position property
2470
2471 @code{staff-position} is a property of the
2472 @code{staff-symbol-referencer-interface}, which is supported by
2473 objects which are positioned relative to the staff.  It specifies
2474 the vertical position of the object relative to the center line
2475 of the staff in half staff-spaces.  It is useful in resolving
2476 collisions between layout objects like multi-measure rests, ties
2477 and notes in different voices.
2478
2479 @item
2480 @code{force-hshift}
2481
2482 @cindex force-hshift property
2483
2484 Closely spaced notes in a chord, or notes occurring at the same
2485 time in different voices, are arranged in two, occasionally more,
2486 columns to prevent the note heads overlapping.  These are called
2487 note columns, and an object called @code{NoteColumn} is created
2488 to lay out the notes in that column.
2489
2490 The @code{force-hshift} property is a property of a @code{NoteColumn}
2491 (actually of the @code{note-column-interface}).  Changing it permits a
2492 note column to be moved in units appropriate to a note column,
2493 viz. the note head width of the first voice note.  It should be used
2494 in complex situations where the normal @code{\shiftOn} commands (see
2495 @ref{Explicitly instantiating voices}) do not resolve the note
2496 conflict.  It is preferable to the @code{extra-offset} property for
2497 this purpose as there is no need to work out the distance in
2498 staff-spaces, and moving the notes into or out of a @code{NoteColumn}
2499 affects other actions such as merging note heads.
2500
2501 @end itemize
2502
2503 @item
2504 Finally, when all else fails, objects may be manually repositioned
2505 relative to the staff center line vertically, or by displacing them by
2506 any distance to a new position.  The disadvantages are that the
2507 correct values for the repositioning have to be worked out, often by
2508 trial and error, for every object individually, and, because the
2509 movement is done after LilyPond has placed all other objects, the user
2510 is responsible for avoiding any collisions that might ensue.  But the
2511 main difficulty with this approach is that the repositioning values
2512 may need to be reworked if the music is later modified.  The
2513 properties that can be used for this type of manual repositioning are:
2514
2515 @table @code
2516 @item extra-offset
2517
2518 @cindex extra-offset property
2519
2520 This property applies to any layout object supporting the
2521 @code{grob-interface}.  It takes a pair of numbers which specify the
2522 extra displacement in the horizontal and vertical directions.
2523 Negative numbers move the object to the left or down.  The units are
2524 staff-spaces.  The extra displacement is made after the typesetting of
2525 objects is finished, so an object may be repositioned anywhere without
2526 affecting anything else.
2527
2528 @item positions
2529
2530 @cindex positions property
2531
2532 This is most useful for manually adjusting the slope and height
2533 of beams, slurs, and tuplets.  It takes a pair of numbers
2534 giving the position of the left and right ends of the beam, slur,
2535 etc. relative to the center line of the staff.  Units are
2536 staff-spaces.  Note, though, that slurs and phrasing slurs cannot
2537 be repositioned by arbitrarily large amounts.  LilyPond first
2538 generates a list of possible positions for the slur and by default
2539 finds the slur that @qq{looks best}.  If the @code{positions}
2540 property has been overridden the slur that is closest to the
2541 requested positions is selected from the list.
2542 @end table
2543
2544 @end enumerate
2545
2546 A particular object may not have all of these properties.
2547 It is necessary to go to the IR to look up which properties
2548 are available for the object in question.
2549
2550 Here is a list of the objects which are most likely to be
2551 involved in collisions, together with the name of the object which
2552 should be looked up in the IR in order to discover which properties
2553 should be used to move them.
2554
2555 @multitable @columnfractions .5 .5
2556 @headitem Object type           @tab Object name
2557 @item Articulations             @tab @code{Script}
2558 @item Beams                     @tab @code{Beam}
2559 @item Dynamics (vertically)     @tab @code{DynamicLineSpanner}
2560 @item Dynamics (horizontally)   @tab @code{DynamicText}
2561 @item Fingerings                @tab @code{Fingering}
2562 @item Rehearsal / Text marks    @tab @code{RehearsalMark}
2563 @item Slurs                     @tab @code{Slur}
2564 @item Text e.g. @code{^"text"}  @tab @code{TextScript}
2565 @item Ties                      @tab @code{Tie}
2566 @item Tuplets                   @tab @code{TupletBracket}
2567 @end multitable
2568
2569
2570 @node Fixing overlapping notation
2571 @subsection Fixing overlapping notation
2572
2573 Let's now see how the properties in the previous section can
2574 help to resolve overlapping notation.
2575
2576 @subheading padding property
2577
2578 @cindex padding
2579 @cindex fixing overlapping notation
2580 @cindex overlapping notation
2581
2582 The @code{padding} property can be set to increase
2583 (or decrease) the distance between symbols that are printed
2584 above or below notes.
2585
2586 @cindex Script, example of overriding
2587 @cindex padding property, example
2588
2589 @lilypond[quote,fragment,relative=1,verbatim]
2590 c2\fermata
2591 \override Script #'padding = #3
2592 b2\fermata
2593 @end lilypond
2594
2595 @cindex MetronomeMark, example of overriding
2596 @cindex padding property, example
2597
2598 @lilypond[quote,fragment,relative=1,verbatim]
2599 % This will not work, see below
2600 \override MetronomeMark #'padding = #3
2601 \tempo 4 = 120
2602 c1 |
2603 % This works
2604 \override Score.MetronomeMark #'padding = #3
2605 \tempo 4 = 80
2606 d1 |
2607 @end lilypond
2608
2609 Note in the second example how important it is to figure out what
2610 context handles a certain object.  Since the @code{MetronomeMark}
2611 object is handled in the @code{Score} context, property changes in the
2612 @code{Voice} context will not be noticed.  For more details, see
2613 @ruser{Modifying properties}.
2614
2615 If the @code{padding} property of an object is increased when that
2616 object is in a stack of objects being positioned according to
2617 their @code{outside-staff-priority}, then that object and all
2618 objects outside it are moved.
2619
2620
2621 @subheading right-padding
2622
2623 @cindex right-padding property
2624
2625 The @code{right-padding} property affects the spacing between the
2626 accidental and the note to which it applies.  It is not often
2627 required, but the default spacing may be wrong for certain special
2628 accidental glyphs or combination of glyphs used in some microtonal
2629 music.  These have to be entered by overriding the accidental
2630 stencil with a markup containing the desired symbol(s), like this:
2631
2632 @cindex Accidental, example of overriding
2633 @cindex text property, example
2634 @cindex stencil property, example
2635 @cindex AccidentalPlacement, example of overriding
2636 @cindex right-padding property, example
2637
2638 @lilypond[quote,ragged-right,verbatim]
2639 sesquisharp = \markup { \sesquisharp }
2640 \relative c'' {
2641   c4
2642   % This prints a sesquisharp but the spacing is too small
2643   \once \override Accidental
2644     #'stencil = #ly:text-interface::print
2645   \once \override Accidental #'text = #sesquisharp
2646   cis4 c
2647   % This improves the spacing
2648   \once \override Score.AccidentalPlacement #'right-padding = #0.6
2649   \once \override Accidental
2650     #'stencil = #ly:text-interface::print
2651   \once \override Accidental #'text = #sesquisharp
2652   cis4 |
2653 }
2654 @end lilypond
2655
2656 @noindent
2657 This necessarily uses an override for the accidental stencil which
2658 will not be covered until later.  The stencil type must be a
2659 procedure, here changed to print the contents of the @code{text}
2660 property of @code{Accidental}, which itself is set to be a
2661 sesquisharp sign.  This sign is then moved further away from the
2662 note head by overriding @code{right-padding}.
2663
2664 @noindent
2665
2666 @subheading staff-padding property
2667
2668 @cindex aligning objects on a baseline
2669 @cindex objects, aligning on a baseline
2670
2671 @code{staff-padding} can be used to align objects such as dynamics
2672 along a baseline at a fixed height above the staff, rather than at a
2673 height dependent on the position of the note to which they are
2674 attached.  It is not a property of @code{DynamicText} but of
2675 @code{DynamicLineSpanner}.  This is because the baseline should apply
2676 equally to @strong{all} dynamics, including those created as extended
2677 spanners.  So this is the way to align the dynamic marks in the
2678 example taken from the previous section:
2679
2680 @cindex DynamicText, example of overriding
2681 @cindex extra-spacing-width property, example
2682 @cindex DynamicLineSpanner, example of overriding
2683 @cindex staff-padding property, example
2684
2685 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
2686 \dynamicUp
2687 % Extend width by 1 unit
2688 \override DynamicText #'extra-spacing-width = #'(-0.5 . 0.5)
2689 % Align dynamics to a base line 2 units above staff
2690 \override DynamicLineSpanner #'staff-padding = #2
2691 a4\f b\mf c\mp b\p
2692 @end lilypond
2693
2694
2695 @subheading self-alignment-X property
2696
2697 The following example shows how this can resolve the collision
2698 of a string fingering object with a note's stem by aligning the
2699 right edge with the reference point of the parent note:
2700
2701 @cindex StringNumber, example of overriding
2702 @cindex self-alignment-X property, example
2703
2704 @lilypond[quote,fragment,ragged-right,verbatim,relative=3]
2705 \voiceOne
2706 <a\2>
2707 \once \override StringNumber #'self-alignment-X = #RIGHT
2708 <a\2>
2709 @end lilypond
2710
2711 @subheading staff-position property
2712
2713 @cindex object collision within a staff
2714
2715 Multimeasure rests in one voice can collide with notes in another.
2716 Since these rests are typeset centered between the bar lines, it
2717 would require significant effort for LilyPond to figure out which
2718 other notes might collide with it, since all the current collision
2719 handling between notes and between notes and rests is done only
2720 for notes and rests that occur at the same time.  Here's an
2721 example of a collision of this type:
2722
2723 @lilypond[quote,verbatim,fragment,ragged-right, relative=1]
2724 << { c4 c c c } \\ { R1 } >>
2725 @end lilypond
2726
2727 The best solution here is to move the multimeasure rest down, since
2728 the rest is in voice two.  The default in @code{\voiceTwo} (i.e. in
2729 the second voice of a @code{<<@{...@} \\ @{...@}>>} construct) is that
2730 @code{staff-position} is set to -4 for MultiMeasureRest, so we need to
2731 move it, say, four half-staff spaces down to @w{@code{-8}}.
2732
2733 @cindex MultiMeasureRest, example of overriding
2734 @cindex staff-position property, example
2735
2736 @lilypond[quote,verbatim,fragment,ragged-right, relative=1]
2737 <<
2738   { c4 c c c }
2739   \\
2740   \override MultiMeasureRest #'staff-position = #-8
2741   { R1 }
2742 >>
2743 @end lilypond
2744
2745 This is better than using, for example, @code{extra-offset},
2746 because the ledger line above the rest is inserted automatically.
2747
2748 @subheading extra-offset property
2749
2750 @cindex positioning objects
2751 @cindex positioning grobs
2752 @cindex objects, positioning
2753 @cindex grobs, positioning
2754
2755 The @code{extra-offset} property provides complete control over the
2756 positioning of an object both horizontally and vertically.
2757
2758 In the following example, the second fingering is moved a little to
2759 the left, and 1.8 staff space downwards:
2760
2761 @cindex Fingering, example of overriding
2762 @cindex extra-offset property, example
2763
2764 @lilypond[quote,fragment,relative=1,verbatim]
2765 \stemUp
2766 f4-5
2767 \once \override Fingering #'extra-offset = #'(-0.3 . -1.8)
2768 f4-5
2769 @end lilypond
2770
2771
2772 @subheading positions property
2773
2774 @cindex controlling tuplets, slurs, phrasing slurs, and beams manually
2775 @cindex manually controlling tuplets, slurs, phrasing slurs, and beams
2776 @cindex tuplet beams, controlling manually
2777 @cindex slurs, controlling manually
2778 @cindex phrasing slurs, controlling manually
2779 @cindex beams, controlling manually
2780
2781 The @code{positions} property allows the position and slope of
2782 tuplets, slurs, phrasing slurs and beams to be controlled manually.
2783 Here's an example which has an ugly phrasing slur due to its trying to
2784 avoid the slur on the acciaccatura.
2785
2786 @lilypond[quote,verbatim,fragment,ragged-right,relative=1]
2787 r4 \acciaccatura e8\( d8 c~ c d c d\)
2788 @end lilypond
2789
2790 @noindent
2791 We could simply move the phrasing slur above the notes, and this
2792 would be the preferred solution:
2793
2794 @lilypond[quote,verbatim,fragment,ragged-right,relative=1]
2795 r4
2796 \phrasingSlurUp
2797 \acciaccatura e8\( d8 c~ c d c d\)
2798 @end lilypond
2799
2800 @noindent
2801 But if there were some reason why this could not be done the
2802 other alternative would be to move the left end of the phrasing
2803 slur down a little using the @code{positions} property.  This
2804 also resolves the rather nasty shape.
2805
2806 @cindex PhrasingSlur, example of overriding
2807 @cindex positions property, example
2808
2809 @lilypond[quote,verbatim,fragment,ragged-right,relative=1]
2810 r4
2811 \once \override PhrasingSlur #'positions = #'(-4 . -3)
2812 \acciaccatura e8\( d8 c~ c d c d\)
2813 @end lilypond
2814
2815 Here's a further example.  We see that the beams
2816 collide with the ties:
2817
2818 @lilypond[quote,verbatim,fragment,ragged-right]
2819 {
2820   \time 4/2
2821   <<
2822     { c'1 ~ c'2. e'8 f' }
2823     \\
2824     { e''8 e'' e'' e''  e'' e'' e'' e''  f''2 g'' }
2825   >>
2826   <<
2827     { c'1 ~ c'2. e'8 f' }
2828     \\
2829     { e''8 e'' e'' e''  e'' e'' e'' e''  f''2 g'' }
2830   >>
2831 }
2832 @end lilypond
2833
2834 @noindent
2835 This can be resolved by manually moving both ends of the beam
2836 up from their position at 1.81 staff-spaces below the center line to,
2837 say, 1:
2838
2839 @cindex Beam, example of overriding
2840 @cindex positions property, example
2841
2842 @lilypond[quote,verbatim,fragment,ragged-right]
2843 {
2844   \time 4/2
2845   <<
2846     { c'1 ~ c'2. e'8 f' }
2847     \\
2848     {
2849       \override Beam #'positions = #'(-1 . -1)
2850       e''8 e'' e'' e''  e'' e'' e'' e''  f''2 g''
2851     }
2852   >>
2853   <<
2854     { c'1 ~ c'2. e'8 f' }
2855     \\
2856     { e''8 e'' e'' e''  e'' e'' e'' e''  f''2 g'' }
2857   >>
2858 }
2859 @end lilypond
2860
2861 @noindent
2862 Note that the override continues to apply in the first voice of
2863 the second measure of eighth notes, but not to any of the beams in the
2864 second voice.
2865
2866 @subheading force-hshift property
2867
2868 We can now see how to apply the final corrections to the Chopin
2869 example introduced at the end of @ref{I'm hearing Voices}, which
2870 was left looking like this:
2871
2872 @lilypond[quote,verbatim,fragment,ragged-right]
2873 \new Staff \relative c'' {
2874   \key aes \major
2875   <<
2876     { c2 aes4. bes8 }
2877     \\
2878     { <ees, c>2 des }
2879     \\
2880     \\
2881     { aes'2 f4 fes }
2882   >> |
2883   <c ees aes c>1 |
2884 }
2885 @end lilypond
2886
2887 @noindent
2888 The inner note of the first chord (i.e. the A-flat in the fourth
2889 Voice) need not be shifted away from the note column of the higher
2890 note.  To correct this we set @code{force-hshift}, which is a property
2891 of @code{NoteColumn}, of this note to zero.
2892
2893 In the second chord we prefer the F to line up with the A and the
2894 lowest note to be positioned slightly right to avoid a collision of
2895 stems.  We achieve this by setting @code{force-hshift} in the
2896 @code{NoteColumn} of the low D-flat to move it to the right by half
2897 a staff-space.
2898
2899 Here's the final result:
2900
2901 @cindex NoteColumn, example of overriding
2902 @cindex force-hshift property, example
2903
2904 @lilypond[quote,verbatim,fragment,ragged-right]
2905 \new Staff \relative c'' {
2906   \key aes \major
2907   <<
2908     { c2 aes4. bes8 }
2909     \\
2910     {
2911       <ees, c>2
2912       \once \override NoteColumn #'force-hshift = #0.5
2913       des2
2914     }
2915     \\
2916     \\
2917     {
2918       \override NoteColumn #'force-hshift = #0
2919       aes'2 f4 fes
2920     }
2921   >> |
2922   <c ees aes c>1 |
2923 }
2924 @end lilypond
2925
2926
2927 @node Real music example
2928 @subsection Real music example
2929
2930 We end this section on Tweaks by showing the steps to be taken to
2931 deal with a tricky example which needs several tweaks to produce
2932 the desired output.  The example has been deliberately chosen to
2933 illustrate the use of the Notation Reference to resolve unusual
2934 problems with notation.  It is not representative of the more usual
2935 engraving process, so please do not let these difficulties put
2936 you off!  Fortunately, difficulties like these are not very common!
2937
2938 The example is from Chopin's Première Ballade, Op. 23, bars 6 to
2939 9, the transition from the opening Lento to Moderato.
2940 Here, first, is what we want the output to look like, but to avoid
2941 over-complicating the example too much we have left out the
2942 dynamics, fingering and pedalling.
2943
2944 @c The following should appear as music without code
2945 @c This example should not be indexed
2946 @c line-width ensures no break
2947 @lilypond[quote,ragged-right,line-width=6\in]
2948 rhMusic = \relative c'' {
2949   \new Voice {
2950     r2 c4.\( g8 |
2951     \once \override Tie #'staff-position = #3.5
2952     bes1~ |
2953     \bar "||"
2954     \time 6/4
2955     \mergeDifferentlyHeadedOn
2956     \mergeDifferentlyDottedOn
2957     bes2.^\markup { \bold "Moderato" } r8
2958     <<
2959       { c,8 d fis bes a }
2960       \new Voice {
2961         \voiceTwo
2962         c,8~
2963         % Reposition the c2 to the right of the merged note
2964         \once \override NoteColumn #'force-hshift = #1.0
2965         % Move the c2 out of the main note column
2966         % so the merge will work
2967         \shiftOnn
2968         c2
2969       }
2970       \new Voice {
2971         \voiceThree
2972         s8
2973         % Stem on the d2 must be down to permit merging
2974         \stemDown
2975         % Stem on the d2 should be invisible
2976         \tweak Stem #'transparent ##t
2977         \tweak Flag #'transparent ##t
2978         d2
2979       }
2980       \new Voice {
2981         \voiceFour
2982         s4 fis4.
2983       }
2984     >> |
2985     \mergeDifferentlyHeadedOff
2986     \mergeDifferentlyDottedOff
2987     g2.\)
2988   }
2989 }
2990
2991 lhMusic = \relative c' {
2992   r2 <c g ees>2( |
2993   <d g, d>1)\arpeggio |
2994   r2. d,,4 r4 r |
2995   r4
2996 }
2997
2998 \score {
2999   \new PianoStaff <<
3000     \new Staff = "RH"  <<
3001       \key g \minor
3002       \rhMusic
3003     >>
3004     \new Staff = "LH" <<
3005       \key g \minor
3006       \clef "bass"
3007       \lhMusic
3008     >>
3009   >>
3010 }
3011 @end lilypond
3012
3013 We note first that the right hand part in the third bar
3014 requires four voices.  These are the five beamed eighth notes,
3015 the tied C, the half-note D which is merged with the eighth note
3016 D, and the dotted quarter note F-sharp, which is also merged with
3017 the eighth note at the same pitch.  Everything else is in a single
3018 voice, so the easiest way is to introduce these extra three voices
3019 temporarily at the time they are needed.  If you have forgotten
3020 how to do this, look at @ref{I'm hearing Voices} and @ref{Explicitly
3021 instantiating voices}.  Here we choose to use explicitly instantiated
3022 voices for the polyphonic passage, as LilyPond is better able to
3023 avoid collisions if all voices are instantiated explicitly in this
3024 way.
3025
3026 So let us begin by entering the notes as two variables, setting up
3027 the staff structure in a score block, and seeing what LilyPond
3028 produces by default:
3029
3030 @c line-width ensures no break
3031 @lilypond[quote,verbatim,ragged-right,line-width=6\in]
3032 rhMusic = \relative c'' {
3033   \new Voice {
3034     r2 c4. g8 |
3035     bes1~ |
3036     \time 6/4
3037     bes2. r8
3038     % Start polyphonic section of four voices
3039     <<
3040       { c,8 d fis bes a }  % continuation of main voice
3041       \new Voice {
3042         \voiceTwo
3043         c,8~ c2
3044       }
3045       \new Voice {
3046         \voiceThree
3047         s8 d2
3048       }
3049       \new Voice {
3050         \voiceFour
3051         s4 fis4.
3052       }
3053     >> |
3054     g2.  % continuation of main voice
3055   }
3056 }
3057
3058 lhMusic = \relative c' {
3059   r2 <c g ees>2 |
3060   <d g, d>1 |
3061   r2. d,,4 r4 r |
3062   r4
3063 }
3064
3065 \score {
3066   \new PianoStaff <<
3067     \new Staff = "RH"  <<
3068       \key g \minor
3069       \rhMusic
3070     >>
3071     \new Staff = "LH" <<
3072       \key g \minor
3073       \clef "bass"
3074       \lhMusic
3075     >>
3076   >>
3077 }
3078 @end lilypond
3079
3080 All the notes are right, but the appearance is far from
3081 satisfactory.  The tie collides with the change in time signature,
3082 some notes are not merged together, and several notation elements
3083 are missing.  Let's first deal with the easier things.  We can
3084 easily add the left hand slur and the right hand phrasing slur,
3085 since these were all covered in the Tutorial.  Doing this gives:
3086
3087 @c line-width ensures no break
3088 @lilypond[quote,verbatim,ragged-right,line-width=6\in]
3089 rhMusic = \relative c'' {
3090   \new Voice {
3091     r2 c4.\( g8 |
3092     bes1~ |
3093     \time 6/4
3094     bes2. r8
3095     % Start polyphonic section of four voices
3096     <<
3097       { c,8 d fis bes a }  % continuation of main voice
3098       \new Voice {
3099         \voiceTwo
3100         c,8~ c2
3101       }
3102       \new Voice {
3103         \voiceThree
3104         s8 d2
3105       }
3106       \new Voice {
3107         \voiceFour
3108         s4 fis4.
3109       }
3110     >> |
3111     g2.\)  % continuation of main voice
3112   }
3113 }
3114
3115 lhMusic = \relative c' {
3116   r2 <c g ees>2( |
3117   <d g, d>1) |
3118   r2. d,,4 r4 r |
3119   r4
3120 }
3121
3122 \score {
3123   \new PianoStaff <<
3124     \new Staff = "RH"  <<
3125       \key g \minor
3126       \rhMusic
3127     >>
3128     \new Staff = "LH" <<
3129       \key g \minor
3130       \clef "bass"
3131       \lhMusic
3132     >>
3133   >>
3134 }
3135 @end lilypond
3136
3137 The first bar is now correct.  The second bar contains an arpeggio and
3138 is terminated by a double bar line.  How do we do these, as they have
3139 not been mentioned in this Learning Manual?  This is where we need to
3140 turn to the Notation Reference.  Looking up @q{arpeggio} and @q{bar
3141 line} in the index quickly shows us that an arpeggio is produced by
3142 appending @code{\arpeggio} to a chord, and a double bar line is
3143 produced by the @code{\bar "||"} command.  That's easily done.  We
3144 next need to correct the collision of the tie with the time signature.
3145 This is best done by moving the tie upwards.  Moving objects was
3146 covered earlier in @ref{Moving objects}, which says that objects
3147 positioned relative to the staff can be moved vertically by overriding
3148 their @code{staff-position} property, which is specified in half staff
3149 spaces relative to the center line of the staff.  So the following
3150 override placed just before the first tied note would move the tie up
3151 to 3.5 half staff spaces above the center line:
3152
3153 @code{\once \override Tie #'staff-position = #3.5}
3154
3155 This completes bar two, giving:
3156
3157 @c line-width ensures no break
3158 @lilypond[quote,verbatim,ragged-right,line-width=6\in]
3159 rhMusic = \relative c'' {
3160   \new Voice {
3161     r2 c4.\( g8 |
3162     \once \override Tie #'staff-position = #3.5
3163     bes1~ |
3164     \bar "||"
3165     \time 6/4
3166     bes2. r8
3167     % Start polyphonic section of four voices
3168     <<
3169       { c,8 d fis bes a }  % continuation of main voice
3170       \new Voice {
3171         \voiceTwo
3172         c,8~ c2
3173       }
3174       \new Voice {
3175         \voiceThree
3176         s8 d2
3177       }
3178       \new Voice {
3179         \voiceFour
3180         s4 fis4.
3181       }
3182     >> |
3183     g2.\)  % continuation of main voice
3184   }
3185 }
3186
3187 lhMusic = \relative c' {
3188   r2 <c g ees>2( |
3189   <d g, d>1)\arpeggio |
3190   r2. d,,4 r4 r |
3191   r4
3192 }
3193
3194 \score {
3195   \new PianoStaff <<
3196     \new Staff = "RH"  <<
3197       \key g \minor
3198       \rhMusic
3199     >>
3200     \new Staff = "LH" <<
3201       \key g \minor
3202       \clef "bass"
3203       \lhMusic
3204     >>
3205   >>
3206 }
3207 @end lilypond
3208
3209 On to bar three and the start of the Moderato section.  The tutorial
3210 showed how to add bold text with the @code{\markup} command, so
3211 adding @qq{Moderato} in bold is easy.  But how do we merge notes in
3212 different voices together?  This is where we need to turn again to
3213 the Notation Reference for help.  A search for @qq{merge} in the
3214 Notation Reference index quickly leads us to the commands for merging
3215 differently headed and differently dotted notes in
3216 @ruser{Collision resolution}.  In our example we need to merge both
3217 types of note for the duration of the polyphonic section in bar 3,
3218 so using the information we find in the Notation Reference we add
3219
3220 @example
3221 \mergeDifferentlyHeadedOn
3222 \mergeDifferentlyDottedOn
3223 @end example
3224
3225 @noindent
3226 to the start of that section and
3227
3228 @example
3229 \mergeDifferentlyHeadedOff
3230 \mergeDifferentlyDottedOff
3231 @end example
3232
3233 @noindent
3234 to the end, giving:
3235
3236 @c line-width ensures no break
3237 @lilypond[quote,ragged-right,line-width=6\in]
3238 rhMusic = \relative c'' {
3239   \new Voice {
3240     r2 c4.\( g8 |
3241     \once \override Tie #'staff-position = #3.5
3242     bes1~ |
3243     \bar "||"
3244     \time 6/4
3245     bes2.^\markup { \bold "Moderato" } r8
3246     \mergeDifferentlyHeadedOn
3247     \mergeDifferentlyDottedOn
3248     % Start polyphonic section of four voices
3249     <<
3250       { c,8 d fis bes a }  % continuation of main voice
3251       \new Voice {
3252         \voiceTwo
3253         c,8~ c2
3254       }
3255       \new Voice {
3256         \voiceThree
3257         s8 d2
3258       }
3259       \new Voice {
3260         \voiceFour
3261         s4 fis4.
3262       }
3263     >> |
3264     \mergeDifferentlyHeadedOff
3265     \mergeDifferentlyDottedOff
3266     g2.\)  % continuation of main voice
3267   }
3268 }
3269
3270 lhMusic = \relative c' {
3271   r2 <c g ees>2( |
3272   <d g, d>1)\arpeggio |
3273   r2. d,,4 r4 r |
3274   r4
3275 }
3276
3277 \score {
3278   \new PianoStaff <<
3279     \new Staff = "RH"  <<
3280       \key g \minor
3281       \rhMusic
3282     >>
3283     \new Staff = "LH" <<
3284       \key g \minor
3285       \clef "bass"
3286       \lhMusic
3287     >>
3288   >>
3289 }
3290 @end lilypond
3291
3292 These overrides have merged the two F-sharp notes, but not the two
3293 on D.  Why not?  The answer is there in the same section in the
3294 Notation Reference -- notes being merged must have stems in
3295 opposite directions and two notes cannot be merged successfully if
3296 there is a third note in the same note column.  Here the two D's
3297 both have upward stems and there is a third note -- the C.  We know
3298 how to change the stem direction using @code{\stemDown}, and
3299 the Notation Reference also says how to move the C -- apply a shift
3300 using one of the @code{\shift} commands.  But which one?
3301 The C is in voice two which has shift off, and the two D's are in
3302 voices one and three, which have shift off and shift on,
3303 respectively.  So we have to shift the C a further level still
3304 using @code{\shiftOnn} to avoid it interfering with the two D's.
3305 Applying these changes gives:
3306
3307 @cindex Tie, example of overriding
3308 @cindex staff-position property, example
3309
3310 @c line-width ensures no break
3311 @lilypond[quote,verbatim,ragged-right,line-width=6\in]
3312 rhMusic = \relative c'' {
3313   \new Voice {
3314     r2 c4.\( g8 |
3315     \once \override Tie #'staff-position = #3.5
3316     bes1~ |
3317     \bar "||"
3318     \time 6/4
3319     bes2.^\markup { \bold "Moderato" } r8
3320     \mergeDifferentlyHeadedOn
3321     \mergeDifferentlyDottedOn
3322     % Start polyphonic section of four voices
3323     <<
3324       { c,8 d fis bes a }  % continuation of main voice
3325       \new Voice {
3326         \voiceTwo
3327         % Move the c2 out of the main note column
3328         % so the merge will work
3329         c,8~ \shiftOnn c2
3330       }
3331       \new Voice {
3332         \voiceThree
3333         % Stem on the d2 must be down to permit merging
3334         s8 \stemDown d2
3335       }
3336       \new Voice {
3337         \voiceFour
3338         s4 fis4.
3339       }
3340     >> |
3341     \mergeDifferentlyHeadedOff
3342     \mergeDifferentlyDottedOff
3343     g2.\)  % continuation of main voice
3344   }
3345 }
3346
3347 lhMusic = \relative c' {
3348   r2 <c g ees>2( |
3349   <d g, d>1)\arpeggio |
3350   r2. d,,4 r4 r |
3351   r4
3352 }
3353
3354 \score {
3355   \new PianoStaff <<
3356     \new Staff = "RH"  <<
3357       \key g \minor
3358       \rhMusic
3359     >>
3360     \new Staff = "LH" <<
3361       \key g \minor
3362       \clef "bass"
3363       \lhMusic
3364     >>
3365   >>
3366 }
3367 @end lilypond
3368
3369 Nearly there.  Only two problems remain: The downward stem on the
3370 merged D should not be there, and the C would be better positioned
3371 to the right of the D's.  We know how to do both of these from the
3372 earlier tweaks: we make the stem transparent, and move the C with
3373 the @code{force-hshift} property.  Here's the final result:
3374
3375 @cindex NoteColumn, example of overriding
3376 @cindex force-hshift property, example
3377 @cindex Stem, example of overriding
3378 @cindex transparent property, example
3379
3380 @c line-width ensures no break
3381 @lilypond[quote,verbatim,ragged-right,line-width=6\in]
3382 rhMusic = \relative c'' {
3383   \new Voice {
3384     r2 c4.\( g8 |
3385     \once \override Tie #'staff-position = #3.5
3386     bes1~ |
3387     \bar "||"
3388     \time 6/4
3389     bes2.^\markup { \bold "Moderato" } r8
3390     \mergeDifferentlyHeadedOn
3391     \mergeDifferentlyDottedOn
3392     % Start polyphonic section of four voices
3393     <<
3394       { c,8 d fis bes a }  % continuation of main voice
3395       \new Voice {
3396         \voiceTwo
3397         c,8~
3398         % Reposition the c2 to the right of the merged note
3399         \once \override NoteColumn #'force-hshift = #1.0
3400         % Move the c2 out of the main note column
3401         % so the merge will work
3402         \shiftOnn
3403         c2
3404       }
3405       \new Voice {
3406         \voiceThree
3407         s8
3408         % Stem on the d2 must be down to permit merging
3409         \stemDown
3410         % Stem on the d2 should be invisible
3411         \tweak Stem #'transparent ##t
3412         \tweak Flag #'transparent ##t
3413         d2
3414       }
3415       \new Voice {
3416         \voiceFour
3417         s4 fis4.
3418       }
3419     >> |
3420     \mergeDifferentlyHeadedOff
3421     \mergeDifferentlyDottedOff
3422     g2.\)  % continuation of main voice
3423   }
3424 }
3425
3426 lhMusic = \relative c' {
3427   r2 <c g ees>2( |
3428   <d g, d>1)\arpeggio |
3429   r2. d,,4 r4 r |
3430   r4
3431 }
3432
3433 \score {
3434   \new PianoStaff <<
3435     \new Staff = "RH"  <<
3436       \key g \minor
3437       \rhMusic
3438     >>
3439     \new Staff = "LH" <<
3440       \key g \minor
3441       \clef "bass"
3442       \lhMusic
3443     >>
3444   >>
3445 }
3446 @end lilypond
3447
3448
3449 @node Further tweaking
3450 @section Further tweaking
3451
3452 @menu
3453 * Other uses for tweaks::
3454 * Using variables for tweaks::
3455 * Style sheets::
3456 * Other sources of information::
3457 * Advanced tweaks with Scheme::
3458 @end menu
3459
3460 @node Other uses for tweaks
3461 @subsection Other uses for tweaks
3462
3463 @cindex transparent property, use of
3464 @cindex objects, making invisible
3465 @cindex removing objects
3466 @cindex objects, removing
3467 @cindex hiding objects
3468 @cindex objects, hiding
3469 @cindex invisible objects
3470 @cindex objects, invisible
3471 @cindex tying notes across voices
3472
3473 @subheading Tying notes across voices
3474
3475 The following example demonstrates how to connect notes in
3476 different voices using ties.  Normally, only two notes in the
3477 same voice can be connected with ties.  By using two voices,
3478 with the tied notes in one of them
3479
3480 @lilypond[quote,fragment,relative=2]
3481 << { b8~ b\noBeam } \\ { b8[ g] } >>
3482 @end lilypond
3483
3484 @noindent
3485 and blanking the first up-stem in that voice, the tie appears to
3486 cross voices:
3487
3488 @cindex Stem, example of overriding
3489 @cindex transparent property, example
3490
3491 @lilypond[quote,fragment,relative=2,verbatim]
3492 <<
3493   {
3494     \tweak Stem #'transparent ##t
3495     \tweak Flag #'transparent ##t
3496     b8~ b\noBeam
3497   }
3498 \\
3499   { b8[ g] }
3500 >>
3501 @end lilypond
3502
3503 To make sure that the just-blanked stem doesn't squeeze the tie
3504 too much, we can lengthen the stem by setting the
3505 @code{length} to @code{8},
3506
3507 @lilypond[quote,fragment,relative=2,verbatim]
3508 <<
3509   {
3510     \tweak Stem #'transparent ##t
3511     \tweak Flag #'transparent ##t
3512     \tweak Stem #'length #8
3513     b8~ b\noBeam
3514   }
3515 \\
3516   { b8[ g] }
3517 >>
3518 @end lilypond
3519
3520 @subheading Simulating a fermata in MIDI
3521
3522 @cindex stencil property, use of
3523 @cindex fermata, implementing in MIDI
3524
3525 For outside-staff objects it is usually better to override the
3526 object's @code{stencil} property rather than its @code{transparent}
3527 property when you wish to remove it from the printed output.
3528 Setting the @code{stencil} property of an object to @code{#f} will
3529 remove that object entirely from the printed output.  This means it
3530 has no effect on the placement of other objects placed relative to
3531 it.
3532
3533 For example, if we wished to change the metronome setting in order
3534 to simulate a fermata in the MIDI output we would not want the
3535 metronome markings to appear in the printed output, and we would
3536 not want it to influence the spacing between the two systems or
3537 the positions of adjacent annotations on the staff.  So setting
3538 its @code{stencil} property to @code{#f} would be the best way.
3539 We show here the effect of the two methods:
3540
3541 @cindex MetronomeMark, example of overriding
3542 @cindex transparent property, example
3543
3544 @lilypond[quote,verbatim,ragged-right]
3545 \score {
3546   \relative c'' {
3547     % Visible tempo marking
3548     \tempo 4=120
3549     a4 a a
3550     \once \override Score.MetronomeMark #'transparent = ##t
3551     % Invisible tempo marking to lengthen fermata in MIDI
3552     \tempo 4=80
3553     a4\fermata |
3554     % New tempo for next section
3555     \tempo 4=100
3556     a4 a a a |
3557   }
3558   \layout { }
3559   \midi { }
3560 }
3561 @end lilypond
3562
3563 @cindex MetronomeMark, example of overriding
3564 @cindex stencil property, example
3565
3566 @lilypond[quote,verbatim,ragged-right]
3567 \score {
3568   \relative c'' {
3569     % Visible tempo marking
3570     \tempo 4=120
3571     a4 a a
3572     \once \override Score.MetronomeMark #'stencil = ##f
3573     % Invisible tempo marking to lengthen fermata in MIDI
3574     \tempo 4=80
3575     a4\fermata |
3576     % New tempo for next section
3577     \tempo 4=100
3578     a4 a a a |
3579   }
3580   \layout { }
3581   \midi { }
3582 }
3583 @end lilypond
3584
3585 @noindent
3586 Both methods remove the metronome mark which lengthens the fermata
3587 from the printed output, and both affect the MIDI timing as
3588 required, but the transparent metronome mark in the first line
3589 forces the following tempo indication too high while the
3590 second (with the stencil removed) does not.
3591
3592 @seealso
3593 Music Glossary:
3594 @rglos{system}.
3595
3596 @node Using variables for tweaks
3597 @subsection Using variables for tweaks
3598
3599 @cindex variables, using for tweaks
3600 @cindex using variables for tweaks
3601 @cindex tweaks, using variables for
3602
3603 Override commands are often long and tedious to type, and they
3604 have to be absolutely correct.  If the same overrides are to be
3605 used many times it may be worth defining variables to hold them.
3606
3607 Suppose we wish to emphasize certain words in lyrics by printing
3608 them in bold italics.  The @code{\italic} and @code{\bold}
3609 commands only work within lyrics if they are embedded, together with
3610 the word or words to be modified, within a @code{\markup} block,
3611 which makes them tedious to enter.  The need to embed the words
3612 themselves prevents their use in simple variables.  As an
3613 alternative can we use @code{\override} and @code{\revert} commands?
3614
3615 @example
3616 @code{\override Lyrics . LyricText #'font-shape = #'italic}
3617 @code{\override Lyrics . LyricText #'font-series = #'bold}
3618
3619 @code{\revert Lyrics . LyricText #'font-shape}
3620 @code{\revert Lyrics . LyricText #'font-series}
3621 @end example
3622
3623 These would also be extremely tedious to enter if there were many
3624 words requiring emphasis.  But we @emph{can} define these as two
3625 variables and use those to bracket the words to be emphasized.
3626 Another advantage of using variables for these overrides is that
3627 the spaces around the dot are not necessary, since they are not
3628 being interpreted in @code{\lyricmode} directly.  Here's an example
3629 of this, although in practice  we would choose shorter names
3630 for the variables to make them quicker to type:
3631
3632 @cindex LyricText, example of overriding
3633 @cindex font-shape property, example
3634 @cindex font-series property, example
3635
3636 @lilypond[quote,verbatim]
3637 emphasize = {
3638   \override Lyrics.LyricText #'font-shape = #'italic
3639   \override Lyrics.LyricText #'font-series = #'bold
3640 }
3641
3642 normal = {
3643   \revert Lyrics.LyricText #'font-shape
3644   \revert Lyrics.LyricText #'font-series
3645 }
3646
3647 global = { \key c \major \time 4/4 \partial 4 }
3648
3649 SopranoMusic = \relative c' { c4 | e4. e8 g4 g    | a4   a   g  }
3650 AltoMusic    = \relative c' { c4 | c4. c8 e4 e    | f4   f   e  }
3651 TenorMusic   = \relative c  { e4 | g4. g8 c4.  b8 | a8 b c d e4 }
3652 BassMusic    = \relative c  { c4 | c4. c8 c4 c    | f8 g a b c4 }
3653
3654 VerseOne = \lyrics {
3655   E -- | ter -- nal \emphasize Fa -- ther, | \normal strong to save,
3656 }
3657
3658 VerseTwo = \lyricmode {
3659   O | \once \emphasize Christ, whose voice the | wa -- ters heard,
3660 }
3661
3662 VerseThree = \lyricmode {
3663   O | \emphasize Ho -- ly Spi -- rit, | \normal who didst brood
3664 }
3665
3666 VerseFour = \lyricmode {
3667   O | \emphasize Tri -- ni -- ty \normal of | love and pow'r
3668 }
3669
3670 \score {
3671   \new ChoirStaff <<
3672     \new Staff <<
3673       \clef "treble"
3674       \new Voice = "Soprano"  { \voiceOne \global \SopranoMusic }
3675       \new Voice = "Alto" { \voiceTwo \AltoMusic }
3676       \new Lyrics \lyricsto "Soprano" { \VerseOne }
3677       \new Lyrics \lyricsto "Soprano" { \VerseTwo }
3678       \new Lyrics \lyricsto "Soprano" { \VerseThree }
3679       \new Lyrics \lyricsto "Soprano" { \VerseFour }
3680     >>
3681     \new Staff <<
3682       \clef "bass"
3683       \new Voice = "Tenor" { \voiceOne \TenorMusic }
3684       \new Voice = "Bass"  { \voiceTwo \BassMusic }
3685     >>
3686   >>
3687 }
3688 @end lilypond
3689
3690
3691 @node Style sheets
3692 @subsection Style sheets
3693
3694 The output that LilyPond produces can be heavily modified; see
3695 @ref{Tweaking output}, for details.  But what if you have many
3696 input files that you want to apply your tweaks to?  Or what if you
3697 simply want to separate your tweaks from the actual music?  This
3698 is quite easy to do.
3699
3700 Let's look at an example.  Don't worry if you don't understand
3701 the parts with all the @code{#()}.  This is explained in
3702 @ref{Advanced tweaks with Scheme}.
3703
3704 @lilypond[quote,verbatim,ragged-right]
3705 mpdolce =
3706 #(make-dynamic-script
3707   #{ \markup { \hspace #0
3708                \translate #'(5 . 0)
3709                \line { \dynamic "mp"
3710                        \text \italic "dolce" } }
3711   #})
3712
3713 inst =
3714 #(define-music-function
3715      (parser location string)
3716      (string?)
3717    #{ ^\markup \bold \box #string #})
3718
3719 \relative c'' {
3720   \tempo 4=50
3721   a4.\mpdolce d8 cis4--\glissando a |
3722   b4 bes a2 |
3723   \inst "Clarinet"
3724   cis4.\< d8 e4 fis |
3725   g8(\! fis)-. e( d)-. cis2 |
3726 }
3727 @end lilypond
3728
3729 Let's do something about the @code{mpdolce} and @code{inst} definitions.
3730 They produce the output we desire, but we might want to use them in
3731 another piece.  We could simply copy-and-paste them at the top of every
3732 file, but that's an annoyance.  It also leaves those definitions in our
3733 input files, and I personally find all the @code{#()} somewhat ugly.
3734 Let's hide them in another file:
3735
3736 @example
3737 %%% save this to a file called "definitions.ily"
3738 mpdolce =
3739 #(make-dynamic-script
3740   #@{ \markup @{ \hspace #0
3741                \translate #'(5 . 0)
3742                \line @{ \dynamic "mp"
3743                        \text \italic "dolce" @} @}
3744   #@})
3745
3746 inst =
3747 #(define-music-function
3748      (parser location string)
3749      (string?)
3750    #@{ ^\markup \bold \box #string #@})
3751 @end example
3752
3753 We will refer to this file using the @code{\include} command near
3754 the top of the music file.  (The extension @file{.ily} is used to
3755 distinguish this included file, which is not meant to be compiled
3756 on its own, from the main file.)
3757 Now let's modify our music (let's save this file as @file{music.ly}).
3758
3759 @c  We have to do this awkward example/lilypond-non-verbatim
3760 @c  because we can't do the \include stuff in the manual.
3761
3762 @example
3763 \include "definitions.ily"
3764
3765 \relative c'' @{
3766   \tempo 4=50
3767   a4.\mpdolce d8 cis4--\glissando a |
3768   b4 bes a2 |
3769   \inst "Clarinet"
3770   cis4.\< d8 e4 fis |
3771   g8(\! fis)-. e( d)-. cis2 |
3772 @}
3773 @end example
3774
3775 @lilypond[quote,ragged-right]
3776 mpdolce =
3777 #(make-dynamic-script
3778   #{ \markup { \hspace #0
3779                \translate #'(5 . 0)
3780                \line { \dynamic "mp"
3781                        \text \italic "dolce" } }
3782   #})
3783
3784 inst =
3785 #(define-music-function
3786      (parser location string)
3787      (string?)
3788    #{ ^\markup \bold \box #string #})
3789
3790 \relative c'' {
3791   \tempo 4=50
3792   a4.\mpdolce d8 cis4--\glissando a |
3793   b4 bes a2 |
3794   \inst "Clarinet"
3795   cis4.\< d8 e4 fis |
3796   g8(\! fis)-. e( d)-. cis2 |
3797 }
3798 @end lilypond
3799
3800 That looks better, but let's make a few changes.  The glissando is hard
3801 to see, so let's make it thicker and closer to the note heads.  Let's
3802 put the metronome marking above the clef, instead of over the first
3803 note.  And finally, my composition professor hates @q{C} time signatures,
3804 so we'd better make that @q{4/4} instead.
3805
3806 Don't change @file{music.ly}, though.  Replace our @file{definitions.ily}
3807 with this:
3808
3809 @example
3810 %%%  definitions.ily
3811 mpdolce =
3812 #(make-dynamic-script
3813   #@{ \markup @{ \hspace #0
3814                \translate #'(5 . 0)
3815                \line @{ \dynamic "mp"
3816                        \text \italic "dolce" @} @}
3817   #@})
3818
3819 inst =
3820 #(define-music-function
3821      (parser location string)
3822      (string?)
3823    #@{ ^\markup \bold \box #string #@})
3824
3825 \layout@{
3826   \context @{
3827     \Score
3828     \override MetronomeMark #'extra-offset = #'(-9 . 0)
3829     \override MetronomeMark #'padding = #'3
3830   @}
3831   \context @{
3832     \Staff
3833     \override TimeSignature #'style = #'numbered
3834   @}
3835   \context @{
3836     \Voice
3837     \override Glissando #'thickness = #3
3838     \override Glissando #'gap = #0.1
3839   @}
3840 @}
3841 @end example
3842
3843 @lilypond[quote,ragged-right]
3844 mpdolce =
3845 #(make-dynamic-script
3846   #{ \markup { \hspace #0
3847                \translate #'(5 . 0)
3848                \line { \dynamic "mp"
3849                        \text \italic "dolce" } }
3850   #})
3851
3852 inst =
3853 #(define-music-function
3854      (parser location string)
3855      (string?)
3856    #{ ^\markup \bold \box #string #})
3857
3858 \layout{
3859   \context {
3860     \Score
3861     \override MetronomeMark #'extra-offset = #'(-9 . 0)
3862     \override MetronomeMark #'padding = #'3
3863   }
3864   \context {
3865     \Staff
3866     \override TimeSignature #'style = #'numbered
3867   }
3868   \context {
3869     \Voice
3870     \override Glissando #'thickness = #3
3871     \override Glissando #'gap = #0.1
3872   }
3873 }
3874
3875 \relative c'' {
3876   \tempo 4=50
3877   a4.\mpdolce d8 cis4--\glissando a |
3878   b4 bes a2 |
3879   \inst "Clarinet"
3880   cis4.\< d8 e4 fis |
3881   g8(\! fis)-. e( d)-. cis2 |
3882 }
3883 @end lilypond
3884
3885 That looks nicer!  But now suppose that I want to publish this
3886 piece.  My composition professor doesn't like @q{C} time
3887 signatures, but I'm somewhat fond of them.  Let's copy the
3888 current @file{definitions.ily} to @file{web-publish.ily} and
3889 modify that.  Since this music is aimed at producing a pdf which
3890 will be displayed on the screen, we'll also increase the
3891 overall size of the output.
3892
3893 @example
3894 %%%  definitions.ily
3895 mpdolce =
3896 #(make-dynamic-script
3897   #@{ \markup @{ \hspace #0
3898                \translate #'(5 . 0)
3899                \line @{ \dynamic "mp"
3900                        \text \italic "dolce" @} @}
3901   #@})
3902
3903 inst =
3904 #(define-music-function
3905      (parser location string)
3906      (string?)
3907    #@{ ^\markup \bold \box #string #@})
3908
3909 #(set-global-staff-size 23)
3910
3911 \layout@{
3912   \context @{
3913     \Score
3914     \override MetronomeMark #'extra-offset = #'(-9 . 0)
3915     \override MetronomeMark #'padding = #'3
3916   @}
3917   \context @{
3918     \Staff
3919   @}
3920   \context @{
3921     \Voice
3922     \override Glissando #'thickness = #3
3923     \override Glissando #'gap = #0.1
3924   @}
3925 @}
3926 @end example
3927
3928 @lilypond[quote,ragged-right]
3929 mpdolce =
3930 #(make-dynamic-script
3931   #{ \markup { \hspace #0
3932                \translate #'(5 . 0)
3933                \line { \dynamic "mp"
3934                        \text \italic "dolce" } }
3935   #})
3936
3937 inst =
3938 #(define-music-function
3939      (parser location string)
3940      (string?)
3941    #{ ^\markup \bold \box #string #})
3942
3943 #(set-global-staff-size 23)
3944
3945 \layout{
3946   \context { \Score
3947     \override MetronomeMark #'extra-offset = #'(-9 . 0)
3948     \override MetronomeMark #'padding = #'3
3949   }
3950   \context { \Voice
3951     \override Glissando #'thickness = #3
3952     \override Glissando #'gap = #0.1
3953   }
3954 }
3955
3956 \relative c'' {
3957   \tempo 4=50
3958   a4.\mpdolce d8 cis4--\glissando a |
3959   b4 bes a2 |
3960   \inst "Clarinet"
3961   cis4.\< d8 e4 fis |
3962   g8(\! fis)-. e( d)-. cis2 |
3963 }
3964 @end lilypond
3965
3966 Now in our music, I simply replace
3967 @code{\include "definitions.ily"} with
3968 @code{\include "web-publish.ily"}.  Of course, we could make this
3969 even more convenient.  We could make a @file{definitions.ily} file which
3970 contains only the definitions of @code{mpdolce} and @code{inst}, a
3971 @file{web-publish.ily} file which contains only the @code{\layout}
3972 section listed above, and a @file{university.ily} file which
3973 contains only the tweaks to produce the output that my professor
3974 prefers.  The top of @file{music.ly} would then look like this:
3975
3976 @example
3977 \include "definitions.ily"
3978
3979 %%%  Only uncomment one of these two lines!
3980 \include "web-publish.ily"
3981 %\include "university.ily"
3982 @end example
3983
3984 This approach can be useful even if you are only producing
3985 one set of parts.  I use half a dozen different
3986 @q{style sheet} files for my projects.  I begin every music
3987 file with @code{\include "../global.ily"}, which contains
3988
3989 @example
3990 %%%   global.ily
3991 \version @w{"@version{}"}
3992
3993 #(ly:set-option 'point-and-click #f)
3994
3995 \include "../init/init-defs.ly"
3996 \include "../init/init-layout.ly"
3997 \include "../init/init-headers.ly"
3998 \include "../init/init-paper.ly"
3999 @end example
4000
4001
4002 @node Other sources of information
4003 @subsection Other sources of information
4004
4005 The Internals Reference documentation contains a lot of information
4006 about LilyPond, but even more information can be gathered by
4007 looking at the internal LilyPond files.  To explore these, you must
4008 first find the directory appropriate to your system.  The location
4009 of this directory depends (a) on whether you obtained LilyPond
4010 by downloading a precompiled binary from lilypond.org
4011 or whether you installed it from a package manager (i.e.
4012 distributed with GNU/Linux, or installed under fink or cygwin) or
4013 compiled it from source, and (b) on which operating system it is
4014 being used:
4015
4016 @strong{Downloaded from lilypond.org}
4017
4018 @itemize @bullet
4019 @item GNU/Linux
4020
4021 Navigate to
4022 @example
4023 @file{@var{INSTALLDIR}/lilypond/usr/@/share/lilypond/current/}
4024 @end example
4025
4026 @item MacOS X
4027
4028 Navigate to
4029 @example
4030 @file{@var{INSTALLDIR}/LilyPond.app/Contents/@/Resources/share/lilypond/current/}
4031 @end example
4032
4033 by either @code{cd}-ing into this directory from the
4034 Terminal, or control-clicking on the LilyPond application and
4035 selecting @q{Show Package Contents}.
4036
4037 @item Windows
4038
4039 Using Windows Explorer, navigate to
4040 @example
4041 @file{@var{INSTALLDIR}/LilyPond/usr/@/share/lilypond/current/}
4042 @end example
4043
4044 @end itemize
4045
4046 @strong{Installed from a package manager or compiled from source}
4047
4048 Navigate to
4049 @file{@var{PREFIX}/share/lilypond/@var{X.Y.Z}/}, where
4050 @var{PREFIX} is set by your package manager or @code{configure}
4051 script, and @var{X.Y.Z} is the LilyPond version number.
4052
4053 @smallspace
4054
4055 Within this directory the two interesting subdirectories are
4056
4057 @itemize
4058 @item @file{ly/} - contains files in LilyPond format
4059 @item @file{scm/} - contains files in Scheme format
4060 @end itemize
4061
4062 Let's begin by looking at some files in @file{ly/}.
4063 Open @file{ly/property-init.ly} in a text editor.  The one
4064 you normally use for @code{.ly} files will be fine.  This file
4065 contains the definitions of all the standard LilyPond predefined
4066 commands, such as @code{\stemUp} and @code{\slurDotted}.  You will
4067 see that these are nothing more than definitions of variables
4068 containing one or a group of @code{\override} commands.  For
4069 example, @code{/tieDotted} is defined to be:
4070
4071 @example
4072 tieDotted = @{
4073   \override Tie #'dash-period = #0.75
4074   \override Tie #'dash-fraction = #0.1
4075 @}
4076 @end example
4077
4078 If you do not like the default values these predefined commands can
4079 be redefined easily, just like any other variable, at the
4080 head of your input file.
4081
4082 The following are the most useful files to be found in
4083 @file{ly/}:
4084
4085 @multitable @columnfractions .4 .6
4086 @headitem Filename
4087   @tab Contents
4088 @item @file{ly/engraver-init.ly}
4089   @tab Definitions of engraver Contexts
4090 @item @file{ly/paper-defaults-init.ly}
4091   @tab Specifications of paper-related defaults
4092 @item @file{ly/performer-init.ly}
4093   @tab Definitions of performer Contexts
4094 @item @file{ly/property-init.ly}
4095   @tab Definitions of all common predefined commands
4096 @item @file{ly/spanner-init.ly}
4097   @tab Definitions of spanner-related predefined commands
4098 @end multitable
4099
4100 Other settings (such as the definitions of markup commands) are
4101 stored as @file{.scm} (Scheme) files.  The Scheme programming
4102 language is used to provide a programmable interface into
4103 LilyPond internal operation.  Further explanation of these files
4104 is currently outside the scope of this manual, as a knowledge of
4105 the Scheme language is required.  Users should be warned that
4106 a substantial amount of technical knowledge or time is required
4107 to understand Scheme and these files (see @rextend{Scheme tutorial}).
4108
4109 If you have this knowledge, the Scheme files which may be of
4110 interest are:
4111
4112 @multitable @columnfractions .4 .6
4113 @headitem Filename
4114   @tab Contents
4115 @item @file{scm/auto-beam.scm}
4116   @tab Sub-beaming defaults
4117 @item @file{scm/define-grobs.scm}
4118   @tab Default settings for grob properties
4119 @item @file{scm/define-markup-commands.scm}
4120   @tab Specify all markup commands
4121 @item @file{scm/midi.scm}
4122   @tab Default settings for MIDI output
4123 @item @file{scm/output-lib.scm}
4124   @tab Settings that affect appearance of frets, colors,
4125        accidentals, bar lines, etc
4126 @item @file{scm/parser-clef.scm}
4127   @tab Definitions of supported clefs
4128 @item @file{scm/script.scm}
4129   @tab Default settings for articulations
4130 @end multitable
4131
4132
4133 @node Advanced tweaks with Scheme
4134 @subsection Advanced tweaks with Scheme
4135
4136 Although many things are possible with the @code{\override} and
4137 @code{\tweak} commands, an even more powerful way of modifying
4138 the action of LilyPond is available through a programmable
4139 interface to the LilyPond internal operation.  Code written in
4140 the Scheme programming language can be incorporated directly in
4141 the internal operation of LilyPond.  Of course, at least a basic
4142 knowledge of programming in Scheme is required to do this, and an
4143 introduction is provided in the @rextend{Scheme tutorial}.
4144
4145 As an illustration of one of the many possibilities, instead of
4146 setting a property to a constant it can be set to a Scheme
4147 procedure which is then called whenever that property is accessed
4148 by LilyPond.  The property can then be set dynamically to a value
4149 determined by the procedure at the time it is called.  In this
4150 example we color the note head in accordance with its position on
4151 the staff.
4152
4153 @cindex x11-color function, example of using
4154 @cindex NoteHead, example of overriding
4155 @cindex color property, setting to Scheme procedure
4156
4157 @lilypond[quote,verbatim,ragged-right]
4158 #(define (color-notehead grob)
4159    "Color the notehead according to its position on the staff."
4160    (let ((mod-position (modulo (ly:grob-property grob 'staff-position)
4161                                7)))
4162      (case mod-position
4163        ;;   Return rainbow colors
4164        ((1) (x11-color 'red    ))  ; for C
4165        ((2) (x11-color 'orange ))  ; for D
4166        ((3) (x11-color 'yellow ))  ; for E
4167        ((4) (x11-color 'green  ))  ; for F
4168        ((5) (x11-color 'blue   ))  ; for G
4169        ((6) (x11-color 'purple ))  ; for A
4170        ((0) (x11-color 'violet ))  ; for B
4171        )))
4172
4173 \relative c' {
4174   % Arrange to obtain color from color-notehead procedure
4175   \override NoteHead #'color = #color-notehead
4176   a2 b | c2 d | e2 f | g2 a |
4177 }
4178 @end lilypond
4179
4180 Further examples showing the use of these programmable interfaces
4181 can be found in @rextend{Callback functions}.
4182
4183
4184