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