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