]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/tweaks.itely
Merge branch 'master' of /home/lilycvs/git/lily/
[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 @node Tweaking output
11 @chapter Tweaking output
12
13 This chapter discusses how to modify output.  LilyPond is extremely
14 configurable; virtually every fragment of output may be changed.
15
16 TODO: This chapter is still under development and this version is
17 not yet complete.  Don't translate yet!
18
19
20
21 @menu
22 * Tweaking basics::             
23 * The Internals Reference manual::  
24 * Appearance of objects::       
25 * Placement of objects::        
26 * Collisions of objects::       
27 * Page layout::                 
28 * Further tweaking::            
29 @end menu
30
31 @node Tweaking basics
32 @section Tweaking basics
33
34 @menu
35 * Introduction to tweaks::      
36 * Objects and interfaces::      
37 * Naming conventions of objects and properties::  
38 * Tweaking methods::            
39 @end menu
40
41 @node Introduction to tweaks
42 @subsection Introduction to tweaks
43
44 @q{Tweaking} is a LilyPond term for the various methods available
45 to the user for modifying the actions taken during interpretation
46 of the input file and modifying the appearance of the printed 
47 output.  Some tweaks are very easy to use; others are more 
48 complex.  But taken together the methods available for tweaking 
49 permit almost any desired appearance of the printed music to be 
50 achieved.
51
52 In this section we cover the basic concepts required to understand
53 tweaking.  Later we give a variety of potted commands which can
54 simply be copied to obtain the same effect in your own scores, and
55 at the same time we show how these commands may be constructed so 
56 that you may learn how to develop your own tweaks.
57
58 Before starting on this Chapter you may wish to review the section
59 @ref{Contexts and engravers}, as Contexts, Engravers, and the
60 Properties contained within them are fundamental to understanding
61 and constructing Tweaks.
62
63 @node Objects and interfaces
64 @subsection Objects and interfaces
65
66 @cindex Objects
67 @cindex Grobs
68 @cindex Spanners
69 @cindex Interfaces
70
71 Tweaking involves modifying the internal operation and structures
72 of the LilyPond program, so we must first introduce some terms
73 which are used to describe those internal operations and 
74 structures.
75
76 The term @q{Object} is a generic term used to refer to the
77 multitude of internal structures built by LilyPond during the
78 processing of an input file.  So when a command like @code{\new
79 Staff} is encountered a new object of type @code{Staff} is
80 constructed.  That @code{Staff} object then holds all the
81 properties associated with that particular staff, for example, its
82 name and its key signature, together with details of the engravers
83 which have been assigned to operate within that staff's context.
84 Similarly, there are @code{Voice} objects, @code{Score} objects,
85 @code{Lyric} objects, and objects to represent barlines,
86 noteheads, ties, dynamics, etc, each with their own set of
87 properties.
88
89 Some types of object are given special names.  Objects which
90 represent items of notation on the printed output such as
91 noteheads, stems, slurs, ties, fingering, clefs, etc are called
92 @q{Layout objects}, often known as @q{Graphical Objects}, or
93 @q{Grobs} for short.  These are still objects in the generic sense
94 above, and so they too all have properties associated with them,
95 such as their position, size, color, etc.
96
97 Some layout objects are still more specialised.  Phrasing slurs,
98 crescendo hairpins, ottavo marks, and many other grobs are not
99 localised in a single place -- they have a starting point, an
100 ending point, and maybe other properties concerned with their
101 shape.  Objects with an extended shape like these are called
102 @q{Spanners}.
103
104 It remains to explain what @q{Interfaces} are.  Many objects,
105 even though they are quite different, share common features 
106 which need to be processed in the same way.
107 For example, all grobs have a color, a size, a position, etc,
108 and all these properties are processed in the same way during
109 LilyPond's
110 interpretation of the input file.  To simplify these internal
111 operations these common actions and properties are grouped 
112 together in an object called a @code{grob-interface}.  There
113 are many other groupings of common properties like this, each 
114 one given a name ending in @code{-interface}.  In total there
115 are over 100 such interfaces.  We shall see later why this is
116 of interest and use to the user.
117
118 These, then, are the main terms relating to objects which we 
119 shall use in this chapter.
120
121 @node Naming conventions of objects and properties
122 @subsection Naming conventions of objects and properties
123
124 We met some object naming conventions previously, in 
125 @ref{Contexts and engravers}.  Here for reference is a list
126 of the most common object and property types together with 
127 the conventions for naming them and a couple of examples of 
128 some real names.  We have used A to stand for any capitalised
129 alphabetic character and aaa to stand for any number of
130 lower-case alphabetic characters.  Other characters are used
131 verbatim. 
132
133 @multitable @columnfractions .33 .33 .33
134 @headitem Object/property type           
135   @tab Naming convention
136   @tab Example
137 @item Contexts, Layout Objects     
138   @tab Aaaa or AaaaAaaaAaaa
139   @tab Staff, GrandStaff, 
140 @item Engravers
141   @tab Aaaa_aaa_engraver
142   @tab Clef_engraver, Note_heads_engraver
143 @item Interfaces
144   @tab aaa-aaa-interface
145   @tab grob-interface, break-aligned-interface 
146 @item Context Properties
147   @tab aaa or aaaAaaaAaaa
148   @tab alignAboveContext, skipBars
149 @item Layout Object Properties
150   @tab aaa or aaa-aaa-aaa
151   @tab direction, beam-thickness
152 @end multitable
153
154 As we shall see shortly, the properties of different types of 
155 object are modified by different commands, so it is useful to
156 be able to recognise the type of object from the names of its
157 properties.
158
159
160 @node Tweaking methods
161 @subsection Tweaking methods
162
163 We have already met the commands @code{\set} and @code{\with},
164 used to change the properties of @strong{contexts} and to remove
165 and add @strong{engravers}, in
166 @ref{Modifying context properties} and @ref{Adding
167 and removing engravers}.  We now must meet one more command.
168
169 The command to change the properties of @strong{layout objects} is
170 @code{\override}.  Because this command has to modify
171 internal properties deep within LilyPond its syntax is not
172 as simple as the commands you have met so far.  It needs to
173 know precisely which property of which object in which context
174 has to be modified, and what its new value is to be.  Let's see
175 how this is done.
176
177 The general syntax of this command is:
178
179 @example
180 \override @emph{context}.@emph{layout_object} #'@emph{layout_property} = #@emph{value}
181 @end example
182
183 @noindent
184 This will set the property with the name @emph{layout_property}
185 of the layout object with the name 
186 @emph{layout_object}, which is a member of the @emph{context}
187 context, to the value @emph{value}.
188
189 The @emph{context} can be omitted (and usually is) when the
190 required context is unambiguously implied and is one of lowest
191 level contexts, i.e., @code{Voice}, @code{ChordNames} or
192 @code{Lyrics}, and we shall omit it in many of the following
193 examples.  We shall see later when it must be specified.
194
195 For now, don't worry about the @code{#'}, which must precede the
196 layout property, and the @code{#}, which must precede the value.
197 These must always be present in exactly this form.  This is the
198 most common command used in tweaking, and most of the rest of
199 this chapter will be directed to presenting examples of how it is
200 used.
201
202 Once overridden, the property retains its new value until it is
203 overridden again or a @code{\revert} command is encountered.
204 The @code{\revert} command has the following syntax and causes
205 the value of the property to revert to its original default
206 value; note, not its previous value if several @code{\override}
207 commands have been issued.
208
209 @example
210 \revert @emph{context}.@emph{layout_object} #'@emph{layout_property}
211 @end example
212
213 Again, just like @emph{context} in the @code{\override} command,
214 @emph{context} is often not needed.  It will be omitted
215 in many of the following examples.
216
217 There is another form of the override command, 
218 @code{\overrideProperty}, which is occasionally required.
219 We mention it here for completeness, but for details see 
220 @ruser{Difficult tweaks}.
221 @c Maybe explain in a later iteration  -td
222
223 The final tweaking command which is available is @code{\tweak}.
224 It is not really a new command but a shorthand for an 
225 @code{\override} command which must be used in a few special
226 circumstances.  Again, we shall not discuss or use it here.  
227 You may find the details in 
228 @ruser{Objects connected to the input}.
229 @c Maybe explain in a later iteration  -td
230
231 @node The Internals Reference manual
232 @section The Internals Reference manual
233
234 @cindex Internals Reference
235
236 @menu
237 * Properties of layout objects::  
238 * Properties found in interfaces::  
239 * Types of properties::         
240 @end menu
241
242 @node Properties of layout objects
243 @subsection Properties of layout objects
244
245 @cindex properties of layout objects
246 @cindex properties of grobs
247 @cindex grobs, properties of
248 @cindex layout objects, properties of
249
250 Suppose you have a slur in a score which, to your mind,
251 appears too thin and you'd like to draw it a little heavier.
252 How do you go about doing this?  You know from the statements
253 earlier about the flexibility of LilyPond that such a thing
254 should be possible, and you would probably guess that an
255 @code{\override} command would be needed.  But is there a
256 heaviness property for a slur, and if there is, how might it 
257 be modified?  This is where the Internals Reference manual
258 comes in.  It contains all the information you might need to
259 construct this and all other @code{\override} commands.
260
261 Before we look at the Internals Reference a word of warning.
262 This is a @strong{reference} document, which means there is
263 little or no explanation contained within it: its purpose is
264 to present information precisely and concisely.  This
265 means it might look daunting at first sight.  Don't worry!
266 The guidance and explanation presented here will enable you
267 to extract the information from the Internals Reference for
268 yourself with just a little practice.
269
270 @cindex override example
271 @cindex Internals Reference, example of using
272
273 Let's use a concrete example with a simple fragment of real
274 music:
275
276 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
277 {
278   \time 6/8
279   {
280     r4 b8 b[( g]) g | 
281     g[( e]) e d[( f]) a | 
282     a g
283   }
284   \addlyrics {
285     The man who feels love's sweet e -- mo -- tion 
286   }
287 }
288 @end lilypond 
289
290 Suppose now that we decide we would like the slurs to be a
291 little heavier.  Is this possible?  The slur is certainly a
292 layout object, so the question is, @q{Is there a property
293 belonging to a slur which controls the heaviness?}  To answer
294 this we must look in the Internals Reference, or IR for short.
295
296 The IR for the version of LilyPond you are using may be found
297 on the LilyPond website at @uref{http://lilypond.org}.  Go to the
298 documentation page and click on the Internals Reference link.
299 For learning purposes you should use the standard html version,
300 not the @q{one big page} or the PDF.  For the next few
301 paragraphs to make sense you will need to actually do this
302 as you read.
303
304 Under the heading @strong{Top} you will see five links.  Select
305 the link to the @emph{Backend}, which is where information about
306 layout objects is to be found.  There, under the heading 
307 @strong{Backend}, select the link to @emph{All layout objects}.
308 The page that appears lists all the layout objects used in your
309 version of LilyPond, in alphabetic order.  Select the link to
310 Slur, and the properties of Slurs are listed.
311
312 (An alternative way of finding this page is from the Notation
313 Reference.  On one of the pages that deals with slurs you may
314 find a link to the Internals Reference.  This link will
315 take you directly to this page, but often it is easier to go
316 straight to the IR and search there.)
317
318 This Slur page in the IR tells us first that Slur objects are 
319 created by the 
320 Slur_engraver.  Then it lists the standard settings.  Note
321 these are @strong{not} in alphabetic order.  Browse down
322 them looking for a property that might control the heaviness
323 of slurs, and you should find
324
325 @example
326 @code{thickness} (number)
327      @code{1.2}
328      Line thickness, generally measured in @code{line-thickness}
329 @end example
330
331 This looks a good bet to change the heaviness. It tells us that
332 the value of @code{thickness} is a simple @emph{number},
333 that the default value is 1.2, and that the units are
334 in another property called @code{line-thickness}.
335
336 As we said earlier, there are few to no explanations in the IR,
337 but we already have enough information to try changing the
338 slur thickness.  We see that the name of the layout object 
339 is @code{Slur}, that the name of the property to change is
340 @code{thickness} and that the new value should be a number
341 somewhat larger than 1.2 if we are to make slurs thicker.
342
343 We can now construct the @code{\override} command by simply
344 substituting the values we have found for the names, omitting
345 the context.  Let's use a very large value for the thickness 
346 at first, so we can be sure the command is working.  We get:
347
348 @example
349   \override Slur #'thickness = #5.0
350 @end example 
351
352 Don't forget the @code{#'} preceding the
353 property name and and @code{#} preceding the new value!
354
355 The final question is, @q{Where should this command be
356 placed?}  While you are unsure and learning, the best 
357 answer is, @q{Within the music, before the first slur and
358 close to it.}  Let's do that:
359
360 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
361 {
362   \time 6/8
363   {
364     % Increase thickness of all following slurs from 1.2 to 5.0
365     \override Slur #'thickness = #5.0
366     r4 b8 b[( g]) g |
367     g[( e]) e d[( f]) a |
368     a g
369   }
370   \addlyrics {
371     The man who feels love's sweet e -- mo -- tion 
372   }
373 }
374 @end lilypond 
375
376 @noindent
377 and we see that the slur is indeed heavier.
378
379 So this is the basic way of constructing @code{\override}
380 commands.  There are a few more complications that we
381 shall meet in later sections, but you now know all the
382 essentials required to make up your own -- but you will
383 still need some practice.  This is provided in the examples
384 which follow.
385
386 @subheading Finding the context
387 @cindex context, finding
388
389 But first, what if we had needed to specify the Context?  
390 What should it be?  We could guess that slurs are in
391 the Voice context, as they are clearly closely associated
392 with individual lines of music, but can we be sure?  To
393 find out, go back to the top of the IR page describing the
394 Slur, where it says @q{Slur objects are created by: Slur
395 engraver}.  So slurs will be created in whichever context
396 the @code{Slur_engraver} is in.  Follow the link to the
397 @code{Slur_engraver} page.  At the very bottom it tells
398 us that @code{Slur_engraver} is part of five Voice contexts,
399 including the standard voice context, @code{Voice}, so our
400 guess was correct.  And because @code{Voice} is one of the
401 lowest level contexts which is implied unambiguously by 
402 the fact that we are entering notes, we can omit it in this 
403 location.
404
405 @subheading Overriding once only
406
407 @cindex overriding once only
408 @cindex once override
409 @funindex \once
410
411 As you can see, @emph{all} the slurs are thicker in the
412 final example above.  But what if we
413 wanted just the first slur to be thicker?  This is achieved
414 with the @code{\once} command.  Placed immediately before
415 the @code{\override} command it causes it to change only the
416 slur which begins on the @strong{immediately following} note.
417 If the
418 immediately following note does not begin a slur the command
419 has no effect at all -- it is not remembered until a slur
420 is encountered, it is simply discarded.  So the command with
421 @code{\once} must be
422 repositioned as follows:
423
424 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
425 {
426   \time 6/8
427   {
428     r4 b8
429     % Increase thickness of immediately following slur only
430     \once \override Slur #'thickness = #5.0
431     b[( g]) g | 
432     g[( e]) e d[( f]) a | 
433     a g 
434   }
435   \addlyrics {
436     The man who feels love's sweet e -- mo -- tion 
437   }
438 }
439 @end lilypond 
440
441 @noindent
442 Now only the first slur is made heavier.
443
444 The @code{\once} command can also be used before @code{\set}
445 and @code{\unset}, and before the command to be introduced
446 in the following section -- @code{revert}.
447  
448 @subheading Reverting
449
450 @cindex revert
451 @cindex default properties, reverting
452 @funindex \revert
453
454 Finally, what if we wanted just the first two slurs to be
455 heavier?  Well, we could use two commands, each preceded by
456 @code{\once} placed immediately before each of the notes where
457 the slurs begin:
458
459 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
460 {
461   \time 6/8
462   {
463     r4 b8
464     % Increase thickness of immediately following slur only
465     \once \override Slur #'thickness = #5.0
466     b[( g]) g |
467     % Increase thickness of immediately following slur only
468     \once \override Slur #'thickness = #5.0
469     g[( e]) e d[( f]) a | 
470     a g
471   }
472   \addlyrics {
473     The man who feels love's sweet e -- mo -- tion 
474   }
475 }
476 @end lilypond 
477
478 @noindent
479 or we could omit the @code{\once} command and use the
480 @code{\revert} command
481 to return the @code{thickness} property to its default value
482 after the second slur:
483
484 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
485 {
486   \time 6/8
487   {
488     r4 b8
489     % Increase thickness of all following slurs from 1.2 to 5.0
490     \override Slur #'thickness = #5.0
491     b[( g]) g |
492     g[( e]) 
493     % Revert thickness of all following slurs to default of 1.2
494     \revert Slur #'thickness
495     e d[( f]) a | 
496     a g
497   }
498   \addlyrics {
499     The man who feels love's sweet e -- mo -- tion 
500   }
501 }
502 @end lilypond
503
504 @noindent
505 The @code{\revert} command can be used to return any property
506 changed with @code{\override} back to its default value.
507 You may use whichever method best suits what you want to do.
508
509 That concludes our introduction to the IR, and the basic
510 method of tweaking.  Several examples follow in the later
511 sections of this Chapter, partly to introduce you to some of the
512 additional features of the IR, and partly to give you more 
513 practice in extracting information from it.  These examples will
514 contain progressively fewer words of guidance and explanation. 
515
516 @node Properties found in interfaces
517 @subsection Properties found in interfaces
518
519 @cindex interface properties
520 @cindex properties in interfaces
521
522 Suppose now that we wish to print the lyrics in italics.  What
523 form of @code{\override} command do we need to do this?
524 We first look in the IR page listing @q{All layout objects}, as
525 before, and look for an object that might control lyrics.  We
526 find @code{LyricText}, which looks right.  Clicking on this shows
527 the settable properties for lyric text.  These include the 
528 @code{font-series} and @code{font-size}, but nothing that might
529 give an italic shape.   
530 This is because the shape property is one that is common to all
531 font objects, so, rather than including it in every layout
532 object, it is grouped together with other similar common
533 properties and placed in an @strong{Interface}, the
534 @code{font-interface}.
535
536 So now we need to learn how to find the properties of interfaces,
537 and to discover what objects use these interface properties.
538
539 Look again at the IR page which describes LyricText.  At the
540 bottom of the page is a list of clickable (in the html versions
541 of the IR) interfaces which LyricText supports.  The list has 
542 seven items, including @code{font-interface}.
543 Clicking on this brings up the properties associated
544 with this interface, which are also properties of all the objects
545 which support it, including LyricText.
546
547 Now we see all the user-settable properties which control fonts,
548 including @code{font-shape(symbol)}, where @code{symbol} can be
549 set to @code{upright}, @code{italics} or @code{caps}.
550
551 You will notice that that @code{font-series} and @code{font-size}
552 are also listed there.
553 This immediately raises the question: Why are the common font
554 properties @code{font-series} and @code{font-size} listed under
555 @code{LyricText} as well as under the interface
556 @code{font-interface} but @code{font-shape} is not?  The answer
557 is that @code{font-series} and @code{font-size} are changed
558 from their global default values when a @code{LyricText} object
559 is created, but @code{font-shape} is not.  The entries in
560 @code{LyricText} then tell you the values for those two
561 properties which apply to @code{LyricText}.  Other objects
562 which support @code{font-interface} will set these
563 properties diferently when they are created.
564
565 Let's see if we can now construct the @code{\override} command
566 to change the lyrics to italics.  The object is @code{LyricText},
567 the property is @code{font-shape} and the value is
568 @code{italic}.  As before, we'll omit the context.
569
570 As an aside, although it is an important one, note that because 
571 the values of
572 @code{font-shape} are symbols they must be introduced with a
573 single apostrophe, @code{'}.  That is why apostrophes
574 are needed before @code{thickness} in the earlier example
575 and @code{font-shape}.  These are both symbols too.
576 Symbols are special names which are known internally to 
577 LilyPond.  Some of them are the names of properties,
578 like @code{thickness} or @code{font-shape}, others are in
579 effect special values that can be given to properties, like
580 @code{italic}.  Note the distinction from arbitary
581 text strings, which would appear as @code{"a text string"}.
582
583 Ok, so the @code{\override} command we need to print the lyrics
584 in italics should be
585
586 @example
587   \override LyricText #'font-shape = #'italic
588 @end example
589
590 @noindent
591 and this should be placed just in front of and close to the
592 lyrics which it should affect, like this:
593
594 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
595 {
596   \time 6/8
597   {
598     r4 b8 b[( g]) g |
599     g[( e]) e d[( f]) a |
600     a g
601   }
602   \addlyrics {
603     \override LyricText #'font-shape = #'italic
604     The man who feels love's sweet e -- mo -- tion 
605   }
606 }
607 @end lilypond
608
609 @noindent
610 and the lyrics are all printed in italics.
611
612 @subheading Specifying context in lyric mode
613 @cindex context, specifying in lyric mode
614
615 In the case of lyrics, if you try specifying the context in the 
616 format given earlier the command will fail.  A syllable
617 entered in lyricmode is terminated by either a space,
618 a newline or a digit.  All other characters are included 
619 as part of the syllable.  For this reason a space or newline
620 must appear before the terminating @code{@}} to prevent it being
621 included as part of the final syllable.  Similarly,
622 spaces must be inserted before and after the
623 period or dot, @q{.}, separating the context name from the
624 object name, as otherwise the two names are run together and
625 the interpreter cannot recognise them.  So the command should be:
626
627 @example
628   \override Lyrics . LyricText #'font-shape = #'italic
629 @end example
630
631 @warning{In lyrics always leave whitespace between the final
632 syllable and the terminating brace.}
633
634 @warning{In overrides in lyrics always place spaces around
635 the dot between the context name and the object name.}
636
637 @node Types of properties
638 @subsection Types of properties
639
640 @cindex Property types
641
642 So far we have seen two types of property: @code{number} and
643 @code{symbol}.  To be valid, the value given to a property
644 must be of the correct type and obey the rules for that type.
645 The type of property is always shown in brackets after the
646 property name in the IR.  Here is a list of the types you may 
647 need, together with the rules for that type, and some examples.
648 You must always add a hash symbol, @code{#}, of course,
649 to the front of these values when they are entered in the 
650 @code{\override} command.
651
652 @multitable @columnfractions .2 .45 .35
653 @headitem Property type           
654   @tab Rules
655   @tab Examples
656 @item Boolean
657   @tab Either True or False, represented by #t or #f
658   @tab @code{#t}, @code{#f}
659 @item Dimension (in staff space)
660   @tab A positive decimal number (in units of staff space)
661   @tab @code{2.5}, @code{0.34}
662 @item Direction
663   @tab A valid direction constant or its numerical equivalent
664   @tab @code{#LEFT}, @code{#CENTER}, @code{#UP},
665        @code{1}, @code{-1}
666 @item Integer
667   @tab A positive whole number
668   @tab @code{3}, @code{1}
669 @item List
670   @tab A bracketed set of items separated by spaces,
671 preceded by an apostrophe
672   @tab @code{'(left-edge staff-bar)}, @code{'(1)},
673        @code{'(1.0 0.25 0.5)}
674 @item Markup
675   @tab Any valid markup
676   @tab @code{\markup @{ \italic "cresc." @}}
677 @item Moment
678   @tab A fraction of a whole note constructed with the 
679 make-moment function
680   @tab @code{(ly:make-moment 1 4)},
681        @code{(ly:make-moment 3 8)}
682 @item Number
683   @tab Any positive or negative decimal value
684   @tab @code{3.5}, @code{-2.45}
685 @item Pair (of numbers)
686   @tab Two numbers separated by a @q{space . space} and enclosed
687 in brackets preceded by an apostrophe
688   @tab @code{'(2 . 3.5)}, @code{'(0.1 . -3.2)}
689 @item Symbol
690   @tab Any of the set of permitted symbols for that property,
691 preceded by an apostrophe
692   @tab @code{'italic}, @code{'inside}
693 @item Unknown
694   @tab A procedure or @code{#f} (to cause no action)
695   @tab @code{bend::print}, @code{ly:text-interface::print},
696        @code{#f}
697 @item Vector
698   @tab A list of three items enclosed in brackets and preceded
699 by a hash sign, @code{#}.
700   @tab @code{#(#t #t #f)}
701 @end multitable
702
703 @node Appearance of objects
704 @section Appearance of objects
705
706 Let us now put what we have learnt into practice with a few
707 examples which show how tweaks may be used to change the 
708 appearance of the printed music.
709
710 @menu
711 * Visibility and color of objects::  
712 * Size of objects::             
713 @end menu
714
715 @node Visibility and color of objects
716 @subsection Visibility and color of objects
717
718 In the educational use of music we might wish to print a score
719 with certain elements omitted as an exercise for the student,
720 who is required to supply them.  As a simple example,
721 let us suppose the exercise is to supply the missing barlines 
722 in a piece of music.  But the barlines are normally inserted
723 automatically.  How do we prevent them printing?
724
725 As before, we go to the IR to find the layout object which prints
726 barlines.  Going via @emph{Backend} and @emph{All layout objects}
727 we find there
728 is a layout object called @code{BarLine}.  Its properties include
729 two that control its visibility: @code{break-visibility} and
730 @code{stencil}.  Barline also supports a number of interfaces,
731 including the @code{grob-interface}, where we find the
732 @code{transparent} and the @code{color} properties.  All
733 of these can affect the visibility of barlines (and, of course,
734 by extension, many other layout objects too.)  Let's consider
735 each of these in turn.
736
737 @subheading stencil
738 @cindex stencil property
739
740 This property controls the appearance of the barlines by specifying
741 the symbol (glyph) which should be printed.  In common
742 with many other properties, it can be set to print nothing by 
743 setting its value to @code{#f}.  Let's try it, as before, omitting
744 the implied Context, @code{Voice}:
745
746 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
747 {
748   \time 12/16
749   \override BarLine #'stencil = ##f
750   c4 b8 c d16 c d8 |
751   g, a16 b8 c d4 e16 |
752   e8
753 }
754 @end lilypond
755
756 The barlines are still printed.  What is wrong?  Go back to the
757 IR and look again at the page giving the properties of BarLine.
758 At the top of the page it says @qq{Barline objects are created
759 by: Bar_engraver}.  Go to the @code{Bar_engraver} page.
760 At the bottom
761 it gives a list of Contexts in which the bar engraver operates.
762 All of them are of the type @code{Staff}, so the reason the
763 @code{\override} command failed to work as expected is because
764 @code{Barline} is not in the default @code{Voice} context.
765 If the context
766 is specified wrongly, the command simply does not work.  No
767 error message is produced, and nothing is logged in the log
768 file.  Let's try correcting it by adding the correct context:
769
770 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
771 {
772   \time 12/16
773   \override Staff.BarLine #'stencil = ##f
774   c4 b8 c d16 c d8 |
775   g, a16 b8 c d4 e16 |
776   e8
777 }
778 @end lilypond
779
780 Now the barlines have vanished.
781
782 @subheading break-visibility
783
784 @cindex break-visibility property
785
786 We see from the @code{BarLine} properties in the IR that the
787 @code{break-visibility} property requires a vector of three
788 booleans.
789 These control respectively whether barlines are printed at
790 the end of a line, in the middle of lines, and at the beginning
791 of lines.  For our example we want all barlines to be suppressed,
792 so the value we need is @code{#(#f #f #f)}.
793 Let's try that, remembering
794 to include the @code{Staff} context.  Note also that in writing
795 this value we have two hash signs before the opening bracket.
796 One is required as part of the value to introduce a vector, 
797 and one is required, as always, to precede the value itself in 
798 the @code{\override} command.
799
800 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
801 {
802   \time 12/16
803   \override Staff.BarLine #'break-visibility = ##(#f #f #f)
804   c4 b8 c d16 c d8 |
805   g, a16 b8 c d4 e16 |
806   e8
807 }
808 @end lilypond
809
810 And we see this too removes all the barlines.
811
812 @subheading transparent
813 @cindex transparent property
814
815 We see from the properties specified in the @code{grob-interface}
816 page in the IR that the @code{transparent} property is a boolean.
817 This
818 should be set to @code{#t} to make the grob transparent.
819 In this next example let us make the time signature invisible 
820 rather than the barlines.  
821 To do this we need to find the grob name for the time signature.
822 Back to
823 the @q{All layout objects} page in the IR to find the properties
824 of the @code{TimeSignature} layout object.  This is produced by
825 the @code{Time_signature_engraver} which you can check also lives
826 in the @code{Staff} context and also supports the
827 @code{grob-interface}.  So the command to make the time signature
828 transparent is:
829
830 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
831 {
832   \time 12/16
833   \override Staff.TimeSignature #'transparent = ##t
834   c4 b8 c d16 c d8 |
835   g, a16 b8 c d4 e16 |
836   e8
837 }
838 @end lilypond
839
840 @noindent
841 The time signature is gone, but this command leaves a gap where 
842 the time signature should be.  Maybe this is what is wanted for
843 an exercise for the student to fill it in, but in other 
844 circumstances a gap might be undesirable.  To remove it, the 
845 stencil for the time signature should be set to @code{#f}
846 instead:
847
848 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
849 {
850   \time 12/16
851   \override Staff.TimeSignature #'stencil = ##f
852   c4 b8 c d16 c d8 |
853   g, a16 b8 c d4 e16 |
854   e8
855 }
856 @end lilypond
857
858 @noindent
859 and the difference is obvious: setting the stencil to @code{#f}
860 removes the object entirely; making the object @code{transparent}
861 leaves it where it is, but makes it invisible.
862
863 @subheading color
864 @cindex color property
865
866 Finally we could make the barlines invisible by coloring
867 them white.  The @code{grob-interface} specifies that the
868 color property value is a list, but there is no
869 explanation of what that list should be.  The list it
870 requires is actually a list of values in internal units,
871 but, to avoid having to know what these are, several ways
872 are provided to specify colors.  The first way is to use one
873 of the @q{normal} colours listed in the first table in
874 @ruser{List of colors}.  To set the barlines to white
875 we write:
876
877 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
878 {
879   \time 12/16
880   \override Staff.BarLine #'color = #white
881   c4 b8 c d16 c d8 |
882   g, a16 b8 c d4 e16 |
883   e8
884 }
885 @end lilypond
886
887 @noindent
888 and again, we see the barlines are not visible.  Note that
889 @emph{white} is not preceded by an apostrophe -- it is not
890 a symbol, but a @emph{function}.  When called, it provides
891 the list of internal values required to set the color to
892 white.  The other colors in the normal list are functions
893 too.  To convince yourself this is working you might like 
894 to change the color to one of the other functions in the
895 list.
896
897 @cindex color, X11
898 @cindex X11 colors
899
900 The second way of changing the color is to use the list of
901 X11 color names in the second list in @ruser{List of colors}.
902 However, these must be preceded by another function, which
903 converts X11 color names into the list of internal values,
904 @code{x11-color}, like this:
905
906 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
907 {
908   \time 12/16
909   \override Staff.BarLine #'color = #(x11-color 'white)
910   c4 b8 c d16 c d8 |
911   g, a16 b8 c d4 e16 |
912   e8
913 }
914 @end lilypond
915
916 @noindent
917 Note that in this case the function @code{x11-color} takes
918 a symbol as an argument, so the symbol must be preceded by
919 an apostrophe and the two enclosed in brackets.
920
921 @cindex rgb colors
922 @cindex color, rgb
923
924 There is yet a third function, one which converts RGB values into
925 internal colors -- the @code{rgb-color} function.  This takes
926 three arguments giving the intensities of the red, green and 
927 blue colors.  These take values in the range 0 to 1.  So to
928 set the color to red the value should be @code{(rgb-color 1 0 0)}
929 and to white it should be @code{(rgb-color 1 1 1)}:
930
931 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
932 {
933   \time 12/16
934   \override Staff.BarLine #'color = #(rgb-color 1 1 1)
935   c4 b8 c d16 c d8 |
936   g, a16 b8 c d4 e16 |
937   e8
938 }
939 @end lilypond
940
941 Finally, there is also a grey scale available as part of the
942 X11 set of colors.  These range from black, @code{'grey0'},
943 to white, @code{'grey100}, in steps of 1.  Let's illustrate
944 this by setting all the layout objects in our example to
945 various shades of grey:
946
947 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
948 {
949   \time 12/16
950   \override Staff.StaffSymbol   #'color = #(x11-color 'grey30)
951   \override Staff.TimeSignature #'color = #(x11-color 'grey60)
952   \override Staff.Clef          #'color = #(x11-color 'grey60)
953   \override Voice.NoteHead      #'color = #(x11-color 'grey85)
954   \override Voice.Stem          #'color = #(x11-color 'grey85)
955   \override Staff.BarLine       #'color = #(x11-color 'grey10)
956   c4 b8 c d16 c d8 |
957   g, a16 b8 c d4 e16 |
958   e8
959 }
960 @end lilypond
961
962 @noindent
963 Note the contexts associated with each of the layout objects.
964 It is important to get these right, or the commands will not
965 work!  Remember, the context is the one in which the appropriate
966 engraver is placed.  The default context for engravers can be
967 found by starting from the layout object, going from there to
968 the engraver which produces it, and on the engraver page in the
969 IR it tells you in which context the engraver will normally be 
970 found.  
971
972
973 @node Size of objects
974 @subsection Size of objects
975
976 Let us begin by looking again at the earlier example 
977 see @ref{Nesting music expressions}) which showed
978 how to introduce a new temporary staff, as in an @rglos{ossia}.
979
980 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
981 \new Staff ="main" {
982        \relative g' {
983          r4 g8 g c4 c8 d |
984          e4 r8
985          <<
986            { f c c }
987            \new Staff \with {
988              alignAboveContext = "main" }
989            { f8 f c }
990          >>
991          r4 |
992        }
993      }
994 @end lilypond
995
996 Ossia are normally written without clef and time signature, and
997 are usually printed slightly smaller than the main staff.  We
998 already know now how to remove the clef and time signature --
999 we simply set the stencil of each to @code{#f}, as follows:
1000
1001 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1002 \new Staff ="main" {
1003   \relative g' {
1004     r4 g8 g c4 c8 d |
1005     e4 r8
1006     <<
1007       { f c c }
1008       \new Staff \with {
1009         alignAboveContext = "main" 
1010       }
1011       {
1012         \override Staff.Clef #'stencil = ##f
1013         \override Staff.TimeSignature #'stencil = ##f
1014         { f8 f c }
1015       }
1016     >>
1017     r4 |
1018   }
1019 }
1020 @end lilypond
1021
1022 @noindent
1023 where the extra pair of braces after the @code{\with} clause are
1024 required to ensure the enclosed overrrides and music are applied
1025 to the ossia staff.
1026
1027 But what is the difference between modifying the staff context by 
1028 using @code{\with} and modifying the stencils of the clef and the
1029 time signature with \override?  The main difference is that 
1030 changes made in a @code{\with} clause are made at the time the
1031 context is created, and remain in force as the @strong{default}
1032 values for the duration of that context, whereas
1033 @code{\set} or @code{\override} commands embedded in the
1034 music are dynamic -- they make changes synchronised with
1035 a particular point in the music.  If changes are unset or
1036 reverted using @code{\unset} or @code{\revert} they return to
1037 their default values, which will be the ones set in the 
1038 @code{\with} clause, or if none have been set there, the normal
1039 default values.
1040
1041 Some context properties
1042 can be modified only in @code{\with} clauses.  These are those
1043 properties which cannot sensibly be changed after the context 
1044 has been created.  @code{alignAboveContext} and its partner,
1045 @code{alignBelowContext}, are two such properties -- once the
1046 staff has been created its alignment is decided and it would
1047 make no sense to try to change it later.
1048
1049 The default values of layout object properties can also be set
1050 in @code{\with} clauses.  Simply use the normal @code{\override}
1051 command leaving out the context name, since this is unambiguously
1052 defined as the context which the @code{\with} clause is modifying.
1053 If fact, an error will be generated if a context is specified
1054 in this location.
1055
1056 So we could replace the example above with
1057
1058 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1059 \new Staff ="main" {
1060   \relative g' {
1061     r4 g8 g c4 c8 d |
1062     e4 r8
1063     <<
1064       { f c c }
1065       \new Staff \with {
1066         alignAboveContext = "main" 
1067         % Don't print clefs in this staff
1068         \override Clef #'stencil = ##f
1069         % Don't print time signatures in this staff
1070         \override TimeSignature #'stencil = ##f
1071       }
1072         { f8 f c }
1073     >>
1074     r4 |
1075   }
1076 }
1077 @end lilypond
1078
1079 Finally we come to changing the size of layout objects.
1080
1081 Some layout objects are created as glyphs selected from
1082 a typeface font.  These include noteheads, accidentals, markup, 
1083 clefs, time signatures, dynamics and lyrics.  
1084 Their size is changed by modifying the
1085 @code{font-size} property, as we shall shortly see.  Other
1086 layout objects such as slurs and ties -- in general, spanner
1087 objects -- are drawn individually, so there is no 
1088 @code{font-size}
1089 associated with them.  These objects generally derive their
1090 size from the objects to which they are attached, so usually
1091 there is no need to change their size manually.  Still other 
1092 properties such as the length of stems and barlines, thickness 
1093 of beams and other lines, and the separation of staff lines all 
1094 need to be modified in special ways. 
1095
1096 Returning to the ossia example, let us first change the font-size.
1097 We can do this in two ways.  We can either change the size of the
1098 fonts of each object type, like @code{NoteHead}s with commands
1099 like
1100
1101 @example
1102 \override NoteHead #'font-size = #-2
1103 @end example
1104
1105 or we can change the size of all fonts by setting a special
1106 property, @code{fontSize}, using @code{\set}, or by including
1107 it in a @code{\with} clause (but without the @code{\set}).
1108
1109 @example
1110 \set fontSize = #-2
1111 @end example
1112
1113 Both of these statements would cause the font size to be reduced
1114 by 2 steps from its previous value, where each
1115 step reduces or increases the size by approximately 12%.
1116
1117 Let's try it in our ossia example:
1118
1119 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1120 \new Staff ="main" {
1121   \relative g' {
1122     r4 g8 g c4 c8 d |
1123     e4 r8
1124     <<
1125       { f c c }
1126       \new Staff \with {
1127         alignAboveContext = "main" 
1128         \override Clef #'stencil = ##f
1129         \override TimeSignature #'stencil = ##f
1130         % Reduce all font sizes by ~24%
1131         fontSize = #-2
1132       }
1133         { f8 f c }
1134     >>
1135     r4 |
1136   }
1137 }
1138 @end lilypond
1139
1140 This is still not quite right.  The noteheads and flags are 
1141 smaller, but the stems are too long in proportion and the
1142 staff lines are spaced too widely apart.  These need to be
1143 scaled down in proportion to the font reduction.
1144
1145 @cindex magstep
1146 @cindex size, changing
1147 @cindex stem length, changing
1148 @cindex staff line spacing, changing
1149
1150 This can be done with the help of a special function called
1151 @code{magstep} provided for exactly this purpose.  It takes
1152 one argument, the change in font size (#-2 in the example above)
1153 and returns a scaling factor suitable for reducing other
1154 objects in proportion.  It is used like this:
1155
1156 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1157 \new Staff ="main" {
1158   \relative g' {
1159     r4 g8 g c4 c8 d |
1160     e4 r8
1161     <<
1162       { f c c }
1163       \new Staff \with {
1164         alignAboveContext = "main" 
1165         \override Clef #'stencil = ##f
1166         \override TimeSignature #'stencil = ##f
1167         fontSize = #-2
1168         % Reduce stems and line spacing to match
1169         \override StaffSymbol #'staff-space = #(magstep -2)
1170       }
1171         { f8 f c }
1172     >>
1173     r4 |
1174   }
1175 }
1176 @end lilypond
1177
1178 @noindent
1179 Since the length of stems and many other length-related properties
1180 are always calculated relative to the
1181 value of the @code{staff-space} property these are automatically
1182 scaled down in length too.  Note that this affects only the
1183 vertical scale of the ossia -- the horizontal scale is determined 
1184 by the layout of the main music in order to remain synchronised 
1185 with it, so it is not affected by any of these changes in size.
1186 Of course, if the scale of all the main music were changed in this
1187 way then the horizontal spacing would be affected.  This is 
1188 discussed later in the layout section.
1189
1190 This, then, completes the creation of an ossia.  The sizes of all
1191 other objects may be modified in analogous ways.
1192
1193 @node Placement of objects
1194 @section Placement of objects
1195
1196 @menu
1197 * Automatic behaviour::         
1198 * Within-staff objects::        
1199 * Outside staff objects::       
1200 @end menu
1201
1202
1203 @node Automatic behaviour
1204 @subsection Automatic behaviour
1205
1206 There are some objects in musical notation that belong to
1207 the staff and there are other objects that should be 
1208 placed outside the staff.  These are called within-staff
1209 objects and outside-staff objects respectively.
1210
1211 Within-staff objects are those that are located on the staff
1212 -- note heads, stems, accidentals, etc.  The positions of
1213 these are usually fixed by the music itself -- they are
1214 vertically positioned on specific lines of the staff or are 
1215 tied to other objects that are so positioned.  Collisions of
1216 noteheads, stems and accidentals in closely set chords are
1217 normally avoided automatically.  There are commands and
1218 overrides which can modify this automatic behaviour, as we
1219 shall shortly see.
1220
1221 Objects belonging outside the staff include things such as
1222 rehearsal marks, text and dynamic markings.  LilyPond's rule for
1223 the vertical placement of outside-staff objects is to place them
1224 as close to the staff as possible but not so close that they
1225 collide with any other object.  LilyPond uses the
1226 @code{outside-staff-priority} property to determine the order in
1227 which the objects should be placed, as follows.
1228
1229 First, LilyPond places all the within-staff objects.
1230 Then it sorts the outside-staff objects according to their 
1231 @code{outside-staff-priority}.  The outside-staff objects are
1232 taken one by one, beginning with the object with the lowest
1233 @code{outside-staff-priority}, and placed so that they do not
1234 collide with any objects that have already been placed. That is, 
1235 if two outside-staff grobs are competing for the same space, the 
1236 one with the lower @code{outside-staff-priority} will be placed
1237 closer to the staff.  If two objects have the same
1238 @code{outside-staff-priority} the one encountered first will be
1239 placed closer to the staff.
1240
1241 In the following example all the markup texts have the same 
1242 priority (since it is not explicity set).  Note that @q{Text3}
1243 is automatically positioned close to the staff again, nestling
1244 under @q{Text2}.
1245
1246 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1247 c2^"Text1"
1248 c^"Text2"
1249 c^"Text3"
1250 c^"Text4"
1251 @end lilypond
1252
1253 Staves are also positioned, by default, as closely together as
1254 possible (subject to a minimum separation).  If notes project
1255 a long way towards an adjacent staff they will force the
1256 staves further apart only if an overlap of the notation
1257 would otherwise occur.  The following example demonstrates
1258 this @q{nestling} of the notes on adjacent staves:
1259
1260 @lilypond[quote,ragged-right,verbatim]
1261 <<
1262   \new Staff {
1263     \relative c' { c a, }
1264   }
1265   \new Staff {
1266     \relative c'''' { c a, }
1267   }
1268 >>
1269 @end lilypond 
1270
1271
1272 @node Within-staff objects
1273 @subsection Within-staff objects
1274
1275 We have already seen how the commands @code{\voiceXXX} affect
1276 the direction of slurs, ties, fingering and 
1277 everything else which depends on the direction of the stems.
1278 These commands are essential when writing polyphonic music to
1279 permit interweaving melodic lines to be distinguished.
1280 But occasionally it may be necessary to override this automatic
1281 behaviour.  This can be done for whole sections of music or even
1282 for an individual note.  The property which controls this
1283 behaviour is the @code{direction} property of each layout object.
1284 We first explain what this does, and then introduce a number of
1285 ready-made commands which avoid your having to code explicit
1286 overrides for the more common modifications.
1287
1288 Some layout objects like slurs and ties curve, bend or point 
1289 either up or down; others like stems and flags also move to
1290 right or left when they point up or down.  This is controlled
1291 automatically when @code{direction} is set.
1292
1293 The following example shows in bar 1 the default behaviour of 
1294 stems, 
1295 with those on high notes pointing down and those on low notes
1296 pointing up, followed by four notes with all stems forced down, 
1297 four notes with all stems forced up, and finally four notes
1298 reverted back to the default behaviour.
1299
1300 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1301 a4 g c a
1302 \override Stem #'direction = #DOWN
1303 a g c a
1304 \override Stem #'direction = #UP
1305 a g c a
1306 \revert Stem #'direction
1307 a g c a
1308 @end lilypond
1309
1310 Here we use the constants @code{DOWN} and @code{UP}.
1311 These have the values @code{-1} and @code{+1} respectively, and
1312 these numerical values may be used instead.  The value @code{0}
1313 may also be used in some cases.  It is simply treated as meaning
1314 @code{UP} for stems, but for some objects it means @q{center}.
1315 There is a constant, @code{CENTER} which has the value @code{0}.
1316
1317 However, these explicit overrides are not usually used, as there
1318 are simpler equivalent predefined commands available.  
1319 Here is a table of the commonest.  The meaning of each is stated
1320 where it is not obvious.
1321
1322 @multitable @columnfractions .2 .2 .2 .4
1323 @headitem Down/Left           
1324   @tab Up/Right
1325   @tab Revert
1326   @tab Effect
1327 @item @code{\arpeggioDown}
1328   @tab @code{\arpeggioUp}
1329   @tab @code{\arpeggioNeutral}
1330   @tab Arrow is at bottom, at top, or no arrow
1331 @item @code{\dotsDown}
1332   @tab @code{\dotsUp}
1333   @tab @code{\dotsNeutral}
1334   @tab Direction of movement to avoid staff lines
1335 @item @code{\dynamicDown}
1336   @tab @code{\dynamicUp}
1337   @tab @code{\dynamicNeutral}
1338   @tab
1339 @item @code{\phrasingSlurDown}
1340   @tab @code{\phrasingSlurUp}
1341   @tab @code{\phrasingSlurNeutral}
1342   @tab Note: distinct from slur commands
1343 @item @code{\slurDown}
1344   @tab @code{\slurUp}
1345   @tab @code{\slurNeutral}
1346   @tab
1347 @item @code{\stemDown}
1348   @tab @code{\stemUp}
1349   @tab @code{\stemNeutral}
1350   @tab
1351 @item @code{\textSpannerDown}
1352   @tab @code{\textSpannerUp}
1353   @tab @code{\textSpannerNeutral}
1354   @tab Text entered as spanner is below/above staff
1355 @item @code{\tieDown}
1356   @tab @code{\tieUp}
1357   @tab @code{\tieNeutral}
1358   @tab
1359 @item @code{\tupletDown}
1360   @tab @code{\tupletUp}
1361   @tab @code{\tupletNeutral}
1362   @tab Tuplets are below/above notes
1363 @end multitable
1364
1365 Note that these predefined commands may @strong{not} be
1366 preceded by @code{\once}.  If you wish to limit the
1367 effect to a single note you must either use the equivalent
1368 @code{\once \override} command or use the predefined command
1369 followed after the affected note by the corresponding 
1370 @code{\xxxNeutral} command.
1371
1372 @subheading Fingering
1373 @cindex fingering, placement
1374
1375 The placement of fingering is also affected by the value
1376 of its @code{direction} property, but there are special
1377 commands which allow the fingering of individual notes
1378 of chords to be controlled, with the fingering being placed
1379 above, below, to the left or to the right of each note.
1380
1381 First, here's the effect of @code{direction} on fingering,
1382 the first bar shows the default, then the effect of specifying
1383 @code{DOWN} and @code{UP}:
1384
1385 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1386 c-5 a-3 f-1 c'-5
1387 \override Fingering #'direction = #DOWN
1388 c-5 a-3 f-1 c'-5
1389 \override Fingering #'direction = #UP
1390 c-5 a-3 f-1 c'-5
1391 @end lilypond
1392
1393 This is how to control fingering on single notes, but the 
1394 @code{direction}
1395 property is ignored for chords.  Instead, by default, the
1396 fingering is automatically placed both above and below the 
1397 notes of a chord, as shown:
1398
1399 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1400 <c-5 g-3>
1401 <c-5 g-3 e-2>
1402 <c-5 g-3 e-2 c-1>
1403 @end lilypond
1404
1405 Greater control over the placement of fingering of the 
1406 individual notes in a chord is possible by using
1407 the @code{\set fingeringOrientations} command.  The format of
1408 this command is
1409
1410 @example
1411 @code{\set fingeringOrientations = #'([up] [left/right] [down])}
1412 @end example
1413
1414 @noindent
1415 @code{\set} is used because @code{fingeringOrientations} is a
1416 property of the @code{Voice} context, created and used by the
1417 @code{New_fingering_engraver}.
1418
1419 The property may be set to a list of one to three values.
1420 It controls whether fingerings may be placed above (if 
1421 @code{up} appears in the list), below (if @code{down} appears),
1422 to the left (if @code{left} appears, or to the right
1423 (if @code{right} appears).  Conversely, if a location is not
1424 listed, no fingering is placed there.  LilyPond takes these 
1425 contraints and works out the best placement for the fingering
1426 of the notes of the following chords.  Note that @code{left} and
1427 @code{right} are mutually exclusive -- fingering may be placed
1428 only on one side or the other, not both.
1429
1430 To control the placement of the fingering of a single note 
1431 using this command it is necessary to write it as a single 
1432 note chord by placing angle brackets round it.
1433   
1434 Here are a few examples:
1435
1436 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
1437 \set fingeringOrientations = #'(left)
1438 <f-2>
1439 < c-1  e-2 g-3 b-5 > 4
1440 \set fingeringOrientations = #'(left)
1441 <f-2>
1442 < c-1  e-2 g-3 b-5 > 4
1443 \set fingeringOrientations = #'(up left down)
1444 <f-2>
1445 < c-1  e-2 g-3 b-5 > 4
1446 \set fingeringOrientations = #'(up left)
1447 <f-2>
1448 < c-1  e-2 g-3 b-5 > 4
1449 \set fingeringOrientations = #'(right)
1450 <f-2>
1451 < c-1  e-2 g-3 b-5 > 4
1452 @end lilypond 
1453
1454 @noindent
1455 If the fingering seems a little crowded the @code{font-size}
1456 could be reduced.  The default value can be seen from the
1457 @code{Fingering} object in the IR to be @code{-5}, so let's
1458 try @code{-7}:
1459
1460 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
1461 \override Fingering #'font-size = #-7
1462 \set fingeringOrientations = #'(left)
1463 <f-2>
1464 < c-1  e-2 g-3 b-5 > 4
1465 \set fingeringOrientations = #'(left)
1466 <f-2>
1467 < c-1  e-2 g-3 b-5 > 4
1468 \set fingeringOrientations = #'(up left down)
1469 <f-2>
1470 < c-1  e-2 g-3 b-5 > 4
1471 \set fingeringOrientations = #'(up left)
1472 <f-2>
1473 < c-1  e-2 g-3 b-5 > 4
1474 \set fingeringOrientations = #'(right)
1475 <f-2>
1476 < c-1  e-2 g-3 b-5 > 4
1477 @end lilypond
1478
1479 @node Outside staff objects
1480 @subsection Outside staff objects
1481
1482 Outside-staff objects are automatically placed to avoid collisions.
1483 Objects with the lower value of @code{outside-staff-priority}
1484 property are placed nearer to the staff, and other outside-staff
1485 objects are then raised as far as necessary to avoid collisions.
1486 The @code{outside-staff-priority} is defined in the
1487 @code{grob-interface} and so is a property of all layout objects.
1488 It is set to @code{#f} (the default) for all within-staff objects,
1489 and is set explicitly to the default numerical value appropriate
1490 to the each object as it is created.  The following table shows
1491 the default numerical values for some of the commonest
1492 outside-staff objects.  Others may be found in the object
1493 properties listed in the IR.
1494
1495 TODO Distinguish between Staff and Score objects when it
1496 is clear how to do this
1497
1498 @multitable @columnfractions .3 .3
1499 @headitem Layout Object           @tab Priority
1500 @item @code{BarNumber}            @tab @code{ 100}
1501 @item @code{DynamicLineSpanner}   @tab @code{ 250}
1502 @item @code{DynamicText}          @tab @code{ 250}
1503 @item @code{MetronomeMark}        @tab @code{1000}
1504 @item @code{OttavaBracket}        @tab @code{ 400}
1505 @item @code{RehearsalMark}        @tab @code{1500}
1506 @item @code{TextScript}           @tab @code{ 450}
1507 @item @code{TextSpanner}          @tab @code{ 350}
1508 @end multitable
1509
1510 Here is an example showing the default placement of these.
1511
1512 @cindex text spanner
1513 @cindex ottava bracket
1514
1515 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
1516 % Set details for later Text Spanner
1517 \override TextSpanner #'bound-details #'left #'text
1518     = \markup { \small \bold Slower }
1519 % Place dynamics above staff
1520 \dynamicUp
1521 % Start Ottava Bracket
1522 #(set-octavation 1)
1523 c' \startTextSpan
1524 % Add Dynamic Text
1525 c\pp
1526 % Add Dynamic Line Spanner
1527 c\<
1528 % Add Metronome Mark
1529 \tempo 4 = 72
1530 % Add Text Script
1531 c^Text
1532 c c
1533 % Add Dynamic Text
1534 c\ff c \stopTextSpan
1535 % Stop Ottava Bracket
1536 #(set-octavation 0)
1537 c, c c c
1538 @end lilypond
1539
1540 This example also shows how to create Text Spanners -- 
1541 text with extender lines above a section of music.  The
1542 spanner extends from the @code{\startTextSpan} command to
1543 the @code{\stopTextSpan} command, and the format of the
1544 text is defined by the @code{\override TextSpanner} command.
1545 For more details see @ruser{Text spanners}.
1546
1547 It also shows how ottava brackets are created.
1548
1549 Note that bar numbers and rehearsal marks are not shown.  
1550 By default these are created in the @code{Score} context 
1551 and their @code{outside-staff-priority} is ignored
1552 relative to the rest of these layout objects, which are
1553 created in the @code{Staff} context.
1554 If you wish to place bar numbers or rehearsal marks
1555 in accordance with the value of their
1556 @code{outside-staff-priority} the @code{Bar_number_engraver}
1557 or @code{Mark_engraver} should be removed
1558 from the @code{Score} context and placed in the top
1559 @code{Staff} context.
1560
1561 If this ordering does not give you the placing you want, the
1562 priority of the objects may be overridden.  Suppose we would
1563 like @qq{Text3} to be placed above @qq{Text4} in the example
1564 under Automatic behaviour, above (see @ref{Automatic behaviour}).
1565 All we need to do is to look up the priority of @code{TextScript}
1566 in the IR or in the table above, and increase the priority of
1567 @qq{Text3} to a higher value:
1568
1569 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1570 c2^"Text1"
1571 c^"Text2"
1572 \once \override TextScript #'outside-staff-priority = #500
1573 c^"Text3"
1574 c^"Text4"
1575 @end lilypond
1576
1577 This certainly lifts @qq{Text3} above @qq{Text4} but it also
1578 lifts it above @qq{Text2}, and @qq{Text4} now drops down.
1579 Perhaps this is not so good.  Can we instead position them all
1580 at the same distance from the staff?  To do this, we clearly
1581 will need to space the notes out horizontally to make more
1582 room for the text.  This is done using the @code{fatText}
1583 command.
1584
1585 @subheading \fatText
1586
1587 @funindex \fatText
1588 @cindex notes, spreading out with text
1589
1590 By default, text produced by markup takes up no horizontal space
1591 as far as laying out the music is concerned.  The @code{\fatText}
1592 command reverses this behaviour, causing the notes to be spaced 
1593 out as far as is necessary to accommodate the text:
1594
1595 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1596 \fatText  % Cause notes to space out to accommodate text
1597 c2^"Text1"
1598 c^"Text2"
1599 c^"Text3"
1600 c^"Text4"
1601 @end lilypond  
1602
1603 The command to revert to the default behaviour is 
1604 @code{\emptyText}.  Remember @code{\once} only works with
1605 @code{\override}, @code{\set}, @code{\revert} or @code{unset},
1606 so cannot be used with @code{\fatText}.
1607
1608 Markup text will also avoid notes which project above the staff.
1609 If this is not desired, the automatic displacement upwards may
1610 be turned off by setting the priority to @code{#f}.  Here's an
1611 example to show how markup text interacts with such notes.
1612
1613 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1614 % This markup is short enough to fit without collision
1615 c2^"Tex"
1616 c''2
1617 R1
1618 % This is too long to fit, so it is displaced upwards
1619 c,,2^"Text"
1620 c''2
1621 R1
1622 % Turn off collision avoidance
1623 \once \override TextScript #'outside-staff-priority = ##f
1624 c,,2^"Long Text   "
1625 c''2
1626 R1
1627 % Turn off collision avoidance
1628 \once \override TextScript #'outside-staff-priority = ##f
1629 \fatText  % and turn on fatText
1630 c,,2^"Long Text   "  % Spaces at end are honoured
1631 c''2
1632 @end lilypond
1633
1634
1635 @subheading Dynamics
1636
1637 Dynamic markings will normally be positioned beneath the
1638 staff, but may be positioned above with the @code{dynamicUp}
1639 command.  They will be positioned vertically relative to the
1640 note to which they are attached, and will float below (or above)
1641 all within-staff objects such as phrasing slurs and bar numbers.
1642 This can give quite acceptable results, as this example
1643 shows:
1644
1645 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
1646 \clef "bass"
1647 \key aes \major
1648 \time 9/8
1649 \dynamicUp
1650 bes4.~\f\< \( bes4 bes8 des4\ff\> c16 bes\! |
1651 ees,2.~\)\mf ees4 r8 |
1652 @end lilypond
1653
1654 However, if the notes and attached dynamics are close
1655 together the automatic placement will avoid collisions
1656 by displacing later dynamic markings further away, but this may 
1657 not be the optimum placement, as this rather artificial example
1658 shows:
1659
1660 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1661 \dynamicUp
1662 a4\f b\mf c\mp b\p
1663 @end lilypond
1664
1665 @noindent
1666 Should a similar situation arise in @q{real} music, it may
1667 be preferable to space out the notes
1668 a little further, so the dynamic markings can all fit at the
1669 same vertical distance from the staff.  We were able to do this
1670 for markup text by using the @code{\fatText} command, but there
1671 is no equivalent command for dynamic marks.  So we shall have to
1672 work out how to do this using @code{\override} commands.
1673
1674 @subheading Grob sizing
1675
1676 @cindex grob sizing
1677 @cindex sizing grobs
1678 @cindex @code{X-offset}
1679 @cindex @code{Y-offset}
1680 @cindex @code{X-extent}
1681 @cindex @code{Y-extent}
1682
1683 First we must learn how grobs are sized.  All grobs have a
1684 reference point defined within them which is used to position 
1685 them relative to their parent object.  This point in the grob
1686 is then positioned at a horizontal distance, @code{X-offset},
1687 and at a vertical distance, @code{Y-offset}, from its parent.
1688 The horizontal extent of the object is given by a pair of
1689 numbers, @code{X-extent}, which say where the left and right
1690 edges are relative to the reference point.  The vertical extent
1691 is similarly defined by a pair of numbers, @code{Y-extent}.
1692 These are properties of all grobs which support the 
1693 @code{grob-interface}.
1694
1695 @cindex @code{extra-spacing-width}
1696
1697 By default, outside-staff objects are given a width of zero so
1698 that they may overlap in the horizontal direction.  This is done
1699 by by the trick of adding infinity to the leftmost extent and 
1700 minus infinity to the rightmost extent by setting the 
1701 @code{extra-spacing-width} to @code{'(+inf.0 . -inf.0)}.  So
1702 to ensure they do not overlap in the horizontal direction we
1703 must override this value of @code{extra-spacing-width} to
1704 @code{'(0 . 0)} so the true width shines through.  This is
1705 the command to do this for dynamic text:
1706
1707 @example
1708 \override DynamicText #'extra-spacing-width = #'(0 . 0)
1709 @end example
1710
1711 @noindent
1712 Let's see if this works in our previous example:
1713
1714 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1715 \dynamicUp
1716 \override DynamicText #'extra-spacing-width = #'(0 . 0)
1717 a4\f b\mf c\mp b\p
1718 @end lilypond
1719
1720 @noindent
1721 Well, it has certainly stopped the dynamic marks being
1722 displaced, but two problems remain.  The marks should be
1723 spaced a little further apart and it would be better
1724 if they were all the same distance from the staff.
1725 We can solve the first problem easily.  Instead of making
1726 the @code{extra-spacing-width} zero we could add a little
1727 more to it.  The units are the space between two staff
1728 lines, so moving the left edge half a unit to the left and the
1729 right edge half a unit to the right should do it:
1730
1731 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
1732 \dynamicUp
1733 % Extend width by 1 staff space
1734 \override DynamicText #'extra-spacing-width = #'(-0.5 . 0.5)
1735 a4\f b\mf c\mp b\p
1736 @end lilypond
1737
1738 @noindent
1739 This looks better, but maybe we would prefer the dynamic marks
1740 to be aligned along the same baseline rather than going up and
1741 down with the notes.  The property to do this is
1742 @code{staff-padding} which is covered in the following section.
1743
1744
1745 @node Collisions of objects
1746 @section Collisions of objects
1747
1748 @menu
1749 * Moving objects::              
1750 * Fixing overlapping notation::  
1751 * Real music example::          
1752 @end menu
1753
1754 @node Moving objects
1755 @subsection Moving objects
1756
1757 This may come as a surprise, but LilyPond is not perfect.  Some
1758 notation elements can overlap.  This is unfortunate, but in fact
1759 rather rare.  Usually the need to move objects is for clarity or
1760 aesthetic reasons -- they would look better with a little more
1761 or a little less space around them.
1762
1763 There are three main main approaches to resolving overlapping
1764 notation.  They should be considered in the following order:
1765
1766 @enumerate
1767 @item
1768 The @strong{direction} of one of the overlapping objects may
1769 be changed using the predefined commands listed above for
1770 within-staff objects (see @ref{Within-staff objects}).
1771 Stems, slurs, beams, ties, dynamics, text and tuplets may be
1772 repositioned easily in this way.  The limitation is that you
1773 have a choice of only two positions, and neither may be
1774 suitable.
1775
1776 @item
1777 The @strong{object properties}, which LilyPond uses
1778 when positioning layout objects, may be modified using
1779 @code{\override}.  The advantages
1780 of making changes to this type of property are (a) that some
1781 other objects will be moved automatically if necessary to make
1782 room and (b) the single override can apply to all instances of
1783 the same type of object.  Such properties include:
1784 @itemize
1785
1786 @item
1787 @code{direction}
1788
1789 This has already been covered in some detail -- see
1790 @ref{Within-staff objects}.
1791
1792 @item
1793 @code{padding}, @code{left-padding},
1794 @code{right-padding}, @code{staff-padding}
1795
1796 @cindex left-padding property
1797 @cindex padding property
1798 @cindex right-padding property
1799 @cindex staff-padding property
1800 As an object is being positioned the value of its @code{padding}
1801 property specifies the gap that must be left between itself and
1802 the nearest edge of the object against which it is being
1803 positioned.  Note that it is the @code{padding} value of the object
1804 @strong{being placed} that is used;
1805 the @code{padding} value of the object which is already placed is
1806 ignored.  Gaps specified by @code{padding} can be applied
1807 to all objects which support the @code{side-position-interface}.
1808
1809 Instead of @code{padding}, the placement of groups of accidentals
1810 is controlled by @code{left-padding} and @code{right-padding}.
1811 These properties are to be found in the @code{AccidentalPlacement}
1812 object which, note, lives in the @strong{staff} context.  Because
1813 accidentals are always positioned after and to the left of
1814 noteheads only the @code{right-padding} property has any effect.
1815
1816 The @code{staff-padding} property is closely related to the
1817 @code{padding} property:  @code{padding}
1818 controls the minimum amount of space between any object which
1819 supports the @code{side-position-interface} and the nearest
1820 other object (generally the note or the staff lines);
1821 @code{staff-padding} applies only to those objects which are always
1822 set outside the staff -- it controls the minimum amount of space
1823 that should be inserted between that object and the staff.  Note
1824 that @code{staff-padding} has no effect on objects which are
1825 positioned relative to the note rather than the staff, even though
1826 it may be overridden without error for such objects -- it is simply
1827 ignored.
1828
1829 To discover which padding property is required for the object
1830 you wish to reposition, you
1831 need to return to the IR and look up the object's properties.
1832 Be aware that the padding properties might not be located in the
1833 obvious object, so look in objects that appear to be related.
1834
1835 All padding values are measured in staff spaces.  For most
1836 objects, this value is set by default to be around 1.0 or less
1837 (it varies with each object).  It may be overridden if a larger
1838 (or smaller) gap is required.
1839
1840 @item
1841 @code{self-alignment-X}
1842
1843 @cindex self-alignment-X property
1844 This property aligns the object to the left, to the right, or
1845 centers it with respect to the parent object's reference point.
1846 It may be used with all objects which support the
1847 @code{self-alignment-interface}.  In general these are objects
1848 that contain text.  The values are @code{LEFT}, @code{RIGHT}
1849 or @code{CENTER}.  The movement is limited by the length of the
1850 object.  Any numerical value between @code{-1} and @code{+1} may
1851 also be specified, where @code{-1} is left-aligned, @code{+1}
1852 is right-aligned, and numbers in between move the text
1853 progressively from left-aligned to right-aligned.
1854
1855 @item
1856 @code{extra-spacing-width}
1857
1858 @cindex extra-spacing-width property
1859 This property is available for all objects which support the
1860 @code{item-interface}.  It takes two numbers, the first is added
1861 to the leftmost extent and the second is added to the rightmost
1862 extent.  Negative numbers move the edge to the left, positive to
1863 the right, so to widen an object the first number must be negative,
1864 the second positive.  Note that not all objects honour both
1865 numbers.  For example, the @code{Accidental} object only takes
1866 notice of the first (left edge) number.
1867
1868 @item
1869 @code{staff-position}
1870
1871 @cindex staff-position property
1872 @code{staff-position} is a property of the
1873 @code{staff-symbol-referencer-interface}, which is supported by
1874 objects which are positioned relative to the staff.  It specifies
1875 the vertical position of the object relative to the center line
1876 of the staff in half staff-spaces.  It is useful in resolving
1877 collisions between layout objects like multi-measure rests, ties
1878 and notes in different voices.
1879
1880 @item
1881 @code{force-hshift}
1882
1883 @cindex force-hshift property
1884
1885 Closely spaced notes in a chord, or notes occuring at the same
1886 time in different voices, are arranged in two, occasionally more,
1887 columns to prevent the noteheads overlapping.  These are called
1888 note columns, and an object called @code{NoteColumn} is created
1889 to lay out the notes in that column.
1890
1891 The @code{force-hshift}
1892 property is a property of a @code{NoteColumn} (actually of the
1893 @code{note-column-interface}).  Changing it permits a note column
1894 to be moved in units appropriate to a note column, viz. the note
1895 head width of the first voice note.  It should be used in
1896 complex situations where the normal @code{\shiftOn} commands (see
1897 @ref{Explicitly instantiating voices}) do
1898 not resolve the note conflict.  It is preferable to the
1899 @code{extra-offset} property for this purpose as there is no need
1900 to work out the distance in staff-spaces, and moving the notes
1901 into or out of a @code{NoteColumn} affects other actions such as
1902 merging noteheads.
1903
1904 @end itemize
1905
1906 Objects do not all have all of these properties in general.
1907 It is necessary to go to the IR to look up which properties
1908 are available for the object in question.
1909
1910 @item
1911 Finally, when all else fails, objects may be manually repositioned
1912 relative to the staff center line verically, or by
1913 displacing them by any distance to a new position.  The
1914 disadvantages are that the correct values for the repositioning
1915 have to be worked out, often by trial and error, for every object
1916 individually, and, because the movement is done after LilyPond has
1917 placed all other objects, the user is responsible for avoiding any
1918 collisions that might ensue.  But the main difficulty with this
1919 approach is that the repositioning values may need to be reworked
1920 if the music is later modified.  The properties that can be used
1921 for this type of manual repositioning are:
1922
1923 @table @code
1924 @item extra-offset
1925 @cindex extra-offset property
1926 This property applies to any layout object
1927 supporting the @code{grob-interface}.  It takes a pair of
1928 numbers which specify the extra displacement in the horizontal and
1929 vertical directions.  Negative numbers move the object to
1930 the left or down.  The units are staff-spaces.  The extra
1931 displacement is made after the typesetting of objects is
1932 finished, so an object may be repositioned anywhere without
1933 affecting anything else.
1934
1935 @item positions
1936 @cindex positions property
1937 This is most useful for manually adjusting the slope and height
1938 of beams, slurs, and tuplets.   It takes a pair of numbers
1939 giving the position of the left and right ends of the beam, slur,
1940 etc. relative to the center line of the staff.  Units are
1941 staff-spaces.
1942 @end table
1943
1944 Objects do not all have all of these properties in general.
1945 It is necessary to go to the IR to look up which properties
1946 are available for the object in question.
1947
1948 @end enumerate
1949
1950 Here is a list of the objects which are most likely to be
1951 involved in collisions, together with the name of the object which
1952 should be looked up in the IR in order to discover which properties
1953 should be used to move them.
1954
1955 @multitable @columnfractions .5 .5
1956 @headitem Object type           @tab Object name
1957 @item Articulations             @tab @code{Script}
1958 @item Beams                     @tab @code{Beam}
1959 @item Dynamics (vertically)     @tab @code{DynamicLineSpanner}
1960 @item Dynamics (horizontally)   @tab @code{DynamicText}
1961 @item Fingerings                @tab @code{Fingering}
1962 @item Rehearsal / Text marks    @tab @code{RehearsalMark}
1963 @item Slurs                     @tab @code{Slur}
1964 @item Text e.g. @code{^"text"}  @tab @code{TextScript}
1965 @item Ties                      @tab @code{Tie}
1966 @item Tuplets                   @tab @code{TupletBracket}
1967 @end multitable
1968
1969
1970 @node Fixing overlapping notation
1971 @subsection Fixing overlapping notation
1972
1973 Let's now see how the properties in the previous section can
1974 help to resolve overlapping notation.
1975
1976 @subheading padding property
1977 @cindex padding property
1978
1979 The @code{padding} property can be set to increase
1980 (or decrease) the distance between symbols that are printed
1981 above or below notes.
1982
1983 @lilypond[quote,fragment,relative=1,verbatim]
1984 c2\fermata
1985 \override Script #'padding = #3
1986 b2\fermata
1987 @end lilypond
1988
1989 @lilypond[quote,fragment,relative=1,verbatim]
1990 % This will not work, see below:
1991 \override MetronomeMark #'padding = #3
1992 \tempo 4=120
1993 c1
1994 % This works:
1995 \override Score.MetronomeMark #'padding = #3
1996 \tempo 4=80
1997 d1
1998 @end lilypond
1999
2000 Note in the second example how important it is to figure out what
2001 context handles a certain object.  Since the @code{MetronomeMark} object
2002 is handled in the @code{Score} context, property changes in the
2003 @code{Voice} context will not be noticed.  For more details, see
2004 @ruser{Constructing a tweak}.
2005
2006 @subheading left-padding and right-padding properties
2007 @cindex left-padding property
2008 @cindex right-padding property
2009
2010 TODO Example of this - at the moment I can't find one! -td
2011
2012 @subheading staff-padding property
2013 @cindex staff-padding property
2014
2015 @code{staff-padding} can be used to align objects such as dynamics
2016 along a baseline at a fixed height above the staff, rather than
2017 at a height dependent on the position of the note to which they
2018 are attached.  It is not a property of
2019 @code{DynamicText} but of @code{DynamicLineSpanner}.
2020 This is because the baseline should apply equally to @strong{all}
2021 dynamics, including those created as extended spanners.
2022 So this is the way to align the dynamic marks in the example
2023 taken from the previous section:
2024
2025 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
2026 \dynamicUp
2027 % Extend width by 1 unit
2028 \override DynamicText #'extra-spacing-width = #'(-0.5 . 0.5)
2029 % Align dynamics to a base line 2 units above staff
2030 \override DynamicLineSpanner #'staff-padding = #2
2031 a4\f b\mf c\mp b\p
2032 @end lilypond
2033
2034
2035 @subheading self-alignment-X property
2036 @cindex self-alignment-X property
2037
2038 The following example shows how this can resolve the collision
2039 of a string fingering object with a note's stem by aligning the
2040 right edge with the reference point of the parent note:
2041
2042 @lilypond[quote,fragment,ragged-right,verbatim,relative=3]
2043 \voiceOne
2044 < a \2 >
2045 \once \override StringNumber #'self-alignment-X = #RIGHT
2046 < a \2 >
2047 @end lilypond
2048
2049 @subheading staff-position property
2050 @cindex staff-position property
2051
2052 Multimeasure rests in one voice can collide with notes in another.
2053 Since these rests are typeset centered between the bar lines, it
2054 would require significant effort for LilyPond to figure out which
2055 other notes might collide with it, since all the current collision
2056 handling between notes and between notes and rests is done only
2057 for notes and rests that occur at the same time.  Here's an
2058 example of a collision of this type:
2059
2060 @lilypond[quote,verbatim,fragment,ragged-right, relative=1]
2061 << {c c c c} \\ {R1} >>
2062 @end lilypond
2063
2064 The best solution here is to move the multimeasure rest down,
2065 since the rest is in voice two.
2066 The default in @code{\voiceTwo} (i.e. in the second voice of a
2067 @code{<<@{...@} \\ @{...@}>>} construct)
2068 is that @code{staff-position} is set to -4 for MultiMeasureRest,
2069 so we need to move it, say, four half-staff spaces down to
2070 @code{-8}.
2071
2072 @lilypond[quote,verbatim,fragment,ragged-right, relative=1]
2073 <<
2074   {c c c c}
2075 \\
2076   \override MultiMeasureRest #'staff-position = #-8
2077   {R1}
2078 >>
2079 @end lilypond
2080
2081 This is better than using, for example, @code{extra-offset},
2082 because the ledger line above the rest is inserted automatically.
2083
2084 @subheading extra-offset property
2085 @cindex extra-offset property
2086
2087 The @code{extra-offset} property provides complete control over the
2088 positioning of an object both horizontally and vertically.
2089
2090 In the following example, the second fingering is moved a little to
2091 the left, and 1.8 staff space downwards:
2092
2093 @lilypond[quote,fragment,relative=1,verbatim]
2094 \stemUp
2095 f-5
2096 \once \override Fingering
2097     #'extra-offset = #'(-0.3 . -1.8)
2098 f-5
2099 @end lilypond
2100
2101
2102 @subheading force-hshift property
2103 @cindex force-hshift property
2104 @c FIXME: formatting stuff  (ie not important right now IMO)
2105 @c @a nchor Chopin finally corrected TODOgp
2106
2107 We can now see how to apply the final corrections to the Chopin
2108 example introduced at the end of @ref{I'm hearing Voices}, which
2109 was left looking like this:
2110
2111 @lilypond[quote,verbatim,fragment,ragged-right]
2112 \new Staff \relative c'' {
2113   \key aes \major
2114   <<
2115     { c2 aes4. bes8 } \\
2116     { aes2 f4 fes   } \\
2117     { \voiceFour
2118       <ees c>2
2119       des2
2120     }
2121   >> |
2122   <c ees aes c>1 |
2123 }
2124 @end lilypond
2125
2126 @noindent
2127 The lower two notes of the first chord (i.e,
2128 those in the third voice) should not be shifted away from the
2129 note column of the higher two notes.  To correct this we set
2130 @code{force-hshift}, which is a property of
2131 @code{NoteColumn}, of these notes to zero.
2132 The lower note of the second chord is best placed just to the
2133 right of the higher notes.  We achieve this by setting
2134 @code{force-hshift} of this note to 0.5, ie half a notehead's
2135 width to the right of the note column of the higher notes.
2136
2137 Here's the final result:
2138
2139 @lilypond[quote,verbatim,fragment,ragged-right]
2140 \new Staff \relative c'' {
2141   \key aes \major
2142   <<
2143     { c2 aes4. bes8 } \\
2144     { aes2 f4 fes   } \\
2145     { \voiceFour
2146       \once \override NoteColumn #'force-hshift = #0 <ees c>2
2147       \once \override NoteColumn #'force-hshift = #0.5 des2
2148     }
2149   >> |
2150   <c ees aes c>1 |
2151 }
2152 @end lilypond
2153
2154
2155 @subheading positions property
2156 @cindex positions property
2157
2158 The @code{positions} property allows the position and slope of
2159  tuplets, slurs, phrasing slurs and beams to be controlled
2160 manually.  Here's an example which has an ugly phrasing slur
2161 due to its trying to avoid the slur on the acciaccatura.
2162
2163 @lilypond[quote,verbatim,fragment,ragged-right,relative=1]
2164 r4  \acciaccatura e8\( d8 c ~c d c d\)
2165 @end lilypond
2166
2167 @noindent
2168 We could simply move the phrasing slur above the notes, and this
2169 would be the preferred solution:
2170
2171 @lilypond[quote,verbatim,fragment,ragged-right,relative=1]
2172 r4
2173 \phrasingSlurUp
2174 \acciaccatura e8\( d8 c ~c d c d\)
2175 @end lilypond
2176
2177 @noindent
2178 but if there were some reason why this could not be done the
2179 other alternative would be to move the left end of the phrasing
2180 slur down a little using the @code{positions} property.  This
2181 also resolves the rather nasty shape.
2182
2183 @lilypond[quote,verbatim,fragment,ragged-right,relative=1]
2184 r4
2185 \once \override PhrasingSlur #'positions = #'(-4 . -3)
2186 \acciaccatura
2187 e8\( d8 c ~c d c d\)
2188 @end lilypond
2189
2190 Here's a further example taken from the opening of the left-hand
2191 staff of Chopin's Prelude Op 28 No. 2.  We see that the beam
2192 collides with the upper notes:
2193
2194 @lilypond[quote,verbatim,fragment,ragged-right]
2195 {
2196 \clef "bass"
2197 << {b,8 ais, b, g,} \\ {e, g e, g} >>
2198 << {b,8 ais, b, g,} \\ {e, g e, g} >>
2199 }
2200 @end lilypond
2201
2202 @noindent
2203 This can only be resolved by manually moving both ends of the beam
2204 up from their position at 2 staff-spaces above the center line to,
2205 say, 3:
2206
2207 @lilypond[quote,verbatim,fragment,ragged-right]
2208 {
2209   \clef "bass"
2210   <<
2211     \override Beam #'positions = #'(3 . 3)
2212     {b,8 ais, b, g,}
2213   \\
2214     {e, g e, g}
2215   >>
2216   << {b,8 ais, b, g,} \\ {e, g e, g} >>
2217 }
2218 @end lilypond
2219
2220 @noindent
2221 Note that the override continues to apply in the first voice of
2222 the second block of quavers, but not to any of the beams in the
2223 second voice.
2224
2225 @node Real music example
2226 @subsection Real music example
2227
2228 We end this section on Tweaks by showing the steps to be taken to 
2229 deal with a tricky example which needs several tweaks to produce 
2230 the desired output.  The example has been deliberately chosen to 
2231 illustrate the use of the Notation Reference to resolve unusual 
2232 problems with notation.  It is not representative of more usual 
2233 engraving process, so please do not let these difficulties put 
2234 you off!  Fortunately, difficulties like these are not very common!
2235
2236 The example is from Chopin's Première Ballade, Op. 23, bars 6 to
2237 9, the transition from the opening Lento to Moderato.
2238 Here, first, is what we want the output to look like, but to avoid
2239 over-complicating the example too much we have left out the
2240 dynamics, fingering and pedalling.
2241
2242 @c The following should appear as music without code
2243 @lilypond[quote,ragged-right]
2244 rhMusic = \relative c'' {
2245   r2
2246   c4.\( g8 |
2247   \once \override Tie #'staff-position = #3.5
2248   bes1~ |
2249   \bar "||"
2250   \time 6/4
2251   \override Staff.NoteCollision #'merge-differently-headed = ##t
2252   \override Staff.NoteCollision #'merge-differently-dotted = ##t
2253   bes2.^\markup {\bold "Moderato"} r8
2254   <<
2255     {c,8[ d fis bes a] | }
2256   \\
2257     % Reposition the c2 to the right of the merged note
2258     {c,8~ \once \override NoteColumn #'force-hshift = #1.0
2259     % Move the c2 out of the main note column so the merge will work
2260     \shiftOnn c2}
2261   \\
2262     % Stem on the d2 must be down to permit merging
2263     {s8 \stemDown \once \override Stem #'transparent = ##t d2}
2264   \\
2265     {s4 fis4.}
2266   >>
2267   \revert Staff.NoteCollision #'merge-differently-headed
2268   \revert Staff.NoteCollision #'merge-differently-dotted
2269   g2.\)
2270 }
2271
2272 lhMusic = \relative c' {
2273   r2 <c g ees>2( |
2274   <d g, d>1)\arpeggio |
2275   r2. d,,4 r4 r |
2276   r4
2277 }
2278
2279 \score {
2280   \new PianoStaff <<
2281     \new Staff = "RH"  <<
2282       \key g \minor
2283       \rhMusic
2284     >>
2285     \new Staff = "LH" <<
2286       \key g \minor
2287       \clef "bass"
2288       \lhMusic
2289     >>
2290   >>
2291 }
2292 @end lilypond
2293
2294 We note first that the right hand part in the third bar
2295 requires four voices.  These are the five beamed eighth notes,
2296 the tied C, the half-note D which is merged with the eighth note
2297 D, and the dotted quarter note F-sharp, which is also merged with
2298 the eighth note at the same pitch.  Everything else is in a single
2299 voice, so the easiest way is to introduce these four voices
2300 temporarily at the time they are needed.  If you have forgotten
2301 how to do this, look at @ref{I'm hearing Voices}.  Let us begin
2302 by entering the notes as two variables and setting up the staff
2303 structure in a score block, and see what LilyPond produces by
2304 default:
2305
2306 @lilypond[quote,verbatim,ragged-right]
2307 rhMusic = \relative c'' {
2308   r2 c4. g8 |
2309   bes1~ |
2310   \time 6/4
2311   bes2. r8
2312   % Start polyphonic section of four voices
2313   <<
2314     {c,8 d fis bes a | }
2315   \\
2316     {c,8~ c2 | }
2317   \\
2318     {s8 d2 | }
2319   \\
2320     {s4 fis4. | }
2321   >>
2322   g2.
2323 }
2324
2325 lhMusic = \relative c' {
2326   r2 <c g ees>2 |
2327   <d g, d>1 |
2328   r2. d,,4 r4 r |
2329   r4
2330 }
2331
2332 \score {
2333   \new PianoStaff <<
2334     \new Staff = "RH"  <<
2335       \key g \minor
2336       \rhMusic
2337     >>
2338     \new Staff = "LH" <<
2339       \key g \minor
2340       \clef "bass"
2341       \lhMusic
2342     >>
2343   >>
2344 }
2345 @end lilypond
2346
2347 All the notes are right, but the appearance is far from
2348 satisfactory.  The tie clashes with the change in time signature,
2349 the beaming in the third bar is wrong, the notes are not
2350 merged together, and several notation elements are missing.  
2351 Let's first deal with the easier things.
2352 We can correct the beaming by inserting a beam
2353 manually, and we can easily add the left hand slur and the right 
2354 hand phrasing slur, since these were all covered in the Tutorial.
2355 Doing this gives:
2356
2357 @lilypond[quote,verbatim,ragged-right]
2358 rhMusic = \relative c'' {
2359   r2 c4.\( g8 |
2360   bes1~ |
2361   \time 6/4
2362   bes2. r8
2363   % Start polyphonic section of four voices
2364   <<
2365     {c,8[ d fis bes a] | }
2366   \\
2367     {c,8~ c2 | }
2368   \\
2369     {s8 d2 | }
2370   \\
2371     {s4 fis4. | }
2372   >>
2373   g2.\)
2374 }
2375
2376 lhMusic = \relative c' {
2377   r2 <c g ees>2( |
2378   <d g, d>1) |
2379   r2. d,,4 r4 r |
2380   r4
2381 }
2382
2383 \score {
2384   \new PianoStaff <<
2385     \new Staff = "RH"  <<
2386       \key g \minor
2387       \rhMusic
2388     >>
2389     \new Staff = "LH" <<
2390       \key g \minor
2391       \clef "bass"
2392       \lhMusic
2393     >>
2394   >>
2395 }
2396 @end lilypond
2397
2398 The first bar is now correct.  The second bar contains an arpeggio
2399 and is terminated by a double barline.  How do we do these, as they
2400 have not been mentioned in this Learning Manual?  This is where
2401 we need to turn to the Notation Reference.  Looking up @q{arpeggio}
2402 and @q{barline} in the
2403 index quickly shows us that an arpeggio is produced by appending
2404 @code{\arpeggio} to a chord, and a double barline is produced by
2405 the @code{\bar "||"} command.  That's easily done.  We next need
2406 to correct the collision of the tie with the time signature.  This
2407 is best done by moving the tie upwards.  Moving objects was covered
2408 earlier in @ref{Moving objects}, which says that objects positioned
2409 relative to the staff can be moved by overriding their
2410 @code{staff-position} property, which is specified in half staff
2411 spaces relative to the center line of the staff.  So the following
2412 override placed just before the first tied note would move the tie
2413 up to 3.5 half staff spaces above the center line:
2414
2415 @code{\once \override Tie #'staff-position = #3.5}
2416
2417 This completes bar two, giving:
2418
2419 @lilypond[quote,verbatim,ragged-right]
2420 rhMusic = \relative c'' {
2421   r2 c4.\( g8 |
2422   \once \override Tie #'staff-position = #3.5
2423   bes1~ |
2424   \bar "||"
2425   \time 6/4
2426   bes2. r8
2427   % Start polyphonic section of four voices
2428   <<
2429     {c,8[ d fis bes a] | }
2430   \\
2431     {c,8~ c2 | }
2432   \\
2433     {s8 d2 | }
2434   \\
2435     {s4 fis4. | }
2436   >>
2437   g2.\)
2438 }
2439
2440 lhMusic = \relative c' {
2441   r2 <c g ees>2( |
2442   <d g, d>1)\arpeggio |
2443   r2. d,,4 r4 r |
2444   r4
2445 }
2446
2447 \score {
2448   \new PianoStaff <<
2449     \new Staff = "RH"  <<
2450       \key g \minor
2451       \rhMusic
2452     >>
2453     \new Staff = "LH" <<
2454       \key g \minor
2455       \clef "bass"
2456       \lhMusic
2457     >>
2458   >>
2459 }
2460 @end lilypond
2461
2462 On to bar three and the start of the Moderato section.  The
2463 tutorial showed how to add embolded text with the
2464 @code{\markup} command, so adding @q{Moderato} in bold is easy.
2465 But how do we merge notes in different voices together?  The
2466 index in the Notation Reference does not mention merging,
2467 but a search of the text for @q{merge} quickly leads us to
2468 the overrides for merging differently headed and differently
2469 dotted notes in @ruser{Collision Resolution}.  In our
2470 example we need to merge both types of note for the duration
2471 of the polyphonic section in bar 3, so using the information
2472 in the Notation Reference we add
2473
2474 @example
2475 \override Staff.NoteCollision #'merge-differently-headed = ##t
2476 \override Staff.NoteCollision #'merge-differently-dotted = ##t
2477 @end example
2478
2479 @noindent
2480 to the start of that section and
2481
2482 @example
2483 \revert Staff.NoteCollision #'merge-differently-headed
2484 \revert Staff.NoteCollision #'merge-differently-dotted
2485 @end example
2486
2487 @noindent
2488 to the end, giving:
2489
2490 @lilypond[quote,verbatim,ragged-right]
2491 rhMusic = \relative c'' {
2492   r2 c4.\( g8 |
2493   \once \override Tie #'staff-position = #3.5
2494   bes1~ |
2495   \bar "||"
2496   \time 6/4
2497   bes2.^\markup {\bold "Moderato"} r8
2498   \override Staff.NoteCollision #'merge-differently-headed = ##t
2499   \override Staff.NoteCollision #'merge-differently-dotted = ##t
2500   % Start polyphonic section of four voices
2501   <<
2502     {c,8[ d fis bes a] | }
2503   \\
2504     {c,8~ c2 | }
2505   \\
2506     {s8 d2 | }
2507   \\
2508     {s4 fis4. | }
2509   >>
2510   \revert Staff.NoteCollision #'merge-differently-headed
2511   \revert Staff.NoteCollision #'merge-differently-dotted  
2512   g2.\)
2513 }
2514
2515 lhMusic = \relative c' {
2516   r2 <c g ees>2( |
2517   <d g, d>1)\arpeggio |
2518   r2. d,,4 r4 r |
2519   r4
2520 }
2521
2522 \score {
2523   \new PianoStaff <<
2524     \new Staff = "RH"  <<
2525       \key g \minor
2526       \rhMusic
2527     >>
2528     \new Staff = "LH" <<
2529       \key g \minor
2530       \clef "bass"
2531       \lhMusic
2532     >>
2533   >>
2534 }
2535 @end lilypond
2536
2537 These overrides have merged the two F-sharp notes, but not the two 
2538 on D.  Why not?  The answer is there in the same section in the
2539 Notation Reference -- notes being merged must have stems in 
2540 opposite directions and two notes cannot be merged successfully if 
2541 there is a third note in the same note column.  Here the two D's 
2542 both have upward stems and there is a third note -- the C.  We know
2543 how to change the stem direction using @code{\stemDown}, and
2544 the Notation Reference also says how to move the C -- apply a shift
2545 using one of the @code{\shift} commands.  But which one?
2546 The C is in voice two which has shift off, and the two D's are in
2547 voices one and three, which have shift off and shift on,
2548 respectively.  So we have to shift the C a further level still
2549 using @code{\shiftOnn} to avoid it interferring with the two D's.  
2550 Applying these changes gives:
2551
2552 @lilypond[quote,verbatim,ragged-right]
2553 rhMusic = \relative c'' {
2554   r2 c4.\( g8 |
2555   \once \override Tie #'staff-position = #3.5
2556   bes1~ |
2557   \bar "||"
2558   \time 6/4
2559   bes2.^\markup {\bold "Moderato"} r8
2560   \override Staff.NoteCollision #'merge-differently-headed = ##t
2561   \override Staff.NoteCollision #'merge-differently-dotted = ##t
2562   % Start polyphonic section of four voices
2563   <<
2564     {c,8[ d fis bes a] | }
2565   \\
2566     % Move the c2 out of the main note column so the merge will work
2567     {c,8~ \shiftOnn c2 | }
2568   \\
2569     % Stem on the d2 must be down to permit merging
2570     {s8 \stemDown d2 | }
2571   \\
2572     {s4 fis4. | }
2573   >>
2574   \revert Staff.NoteCollision #'merge-differently-headed
2575   \revert Staff.NoteCollision #'merge-differently-dotted
2576   g2.\)
2577 }
2578
2579 lhMusic = \relative c' {
2580   r2 <c g ees>2( |
2581   <d g, d>1)\arpeggio |
2582   r2. d,,4 r4 r |
2583   r4
2584 }
2585
2586 \score {
2587   \new PianoStaff <<
2588     \new Staff = "RH"  <<
2589       \key g \minor
2590       \rhMusic
2591     >>
2592     \new Staff = "LH" <<
2593       \key g \minor
2594       \clef "bass"
2595       \lhMusic
2596     >>
2597   >>
2598 }
2599 @end lilypond
2600
2601 Nearly there.  Only two problems remain: The downward stem on the
2602 merged D should not be there, and the C would be better positioned
2603 to the right of the D's.  We know how to do both of these from the
2604 earlier tweaks: we make the stem transparent, and move the C with
2605 the @code{force-hshift} property.  Here's the final result:
2606
2607 @lilypond[quote,verbatim,ragged-right]
2608 rhMusic = \relative c'' {
2609   r2
2610   c4.\( g8 |
2611   \once \override Tie #'staff-position = #3.5
2612   bes1~ |
2613   \bar "||"
2614   \time 6/4
2615   bes2.^\markup {\bold "Moderato"} r8
2616   \override Staff.NoteCollision #'merge-differently-headed = ##t
2617   \override Staff.NoteCollision #'merge-differently-dotted = ##t
2618   <<
2619     {c,8[ d fis bes a] | }
2620   \\
2621     % Reposition the c2 to the right of the merged note
2622     {c,8~ \once \override NoteColumn #'force-hshift = #1.0
2623     % Move the c2 out of the main note column so the merge will work
2624     \shiftOnn c2}
2625   \\
2626     % Stem on the d2 must be down to permit merging
2627     {s8 \stemDown \once \override Stem #'transparent = ##t d2}
2628   \\
2629     {s4 fis4.}
2630   >>
2631   \revert Staff.NoteCollision #'merge-differently-headed
2632   \revert Staff.NoteCollision #'merge-differently-dotted
2633   g2.\)
2634 }
2635
2636 lhMusic = \relative c' {
2637   r2 <c g ees>2( |
2638   <d g, d>1)\arpeggio |
2639   r2. d,,4 r4 r |
2640   r4
2641 }
2642
2643 \score {
2644   \new PianoStaff <<
2645     \new Staff = "RH"  <<
2646       \key g \minor
2647       \rhMusic
2648     >>
2649     \new Staff = "LH" <<
2650       \key g \minor
2651       \clef "bass"
2652       \lhMusic
2653     >>
2654   >>
2655 }
2656 @end lilypond
2657
2658
2659 @node Page layout
2660 @section Page layout
2661
2662 @menu
2663 * Introduction to layout::      
2664 * Global sizes::                
2665 * Line breaks::                 
2666 * Page breaks::                 
2667 * Fitting music onto fewer pages::  
2668 @end menu
2669
2670 @node Introduction to layout
2671 @subsection Introduction to layout
2672
2673 The global paper layout is determined by three factors: 
2674 the page layout, the line breaks, and the spacing. These all 
2675 influence each other. The choice of spacing determines how 
2676 densely each system of music is set. This influences where line 
2677 breaks are chosen, and thus ultimately, how many pages a piece 
2678 of music takes.
2679
2680 Settings which influence layout may be placed in two blocks.
2681 The @code{\paper @{...@}} block is placed outside any
2682 @code{\score @{...@}} blocks and contains settings that
2683 relate to the entire document.  The @code{\layout @{...@}}
2684 block is placed within a @code{\score @{...@}} block and
2685 contains settings for that particular score.  If you have
2686 only one @code{\score @{...@}} block the two have the same
2687 effect.  In general the commands shown in this section can
2688 be placed in either.
2689
2690 Much more detail on the options for tweaking the laying out
2691 of music are contained in @ruser{Spacing issues}.
2692
2693 @node Global sizes
2694 @subsection Global sizes
2695
2696 TODO Check all these examples
2697
2698 The default @strong{paper size} which LilyPond assumes in laying
2699 out the music is A4.  This may be changed in two ways:
2700
2701 @example
2702 #(set-default-paper-size "a6")
2703
2704 \paper @{
2705 #(set-paper-size "letter")
2706 @}
2707 @end example
2708
2709 @noindent
2710 The first command sets the size of all pages. The second command
2711 sets the size of the pages to which the \paper block applies -- if
2712 the \paper block is at the top of the file, then it will apply
2713 to all pages.  Support for the following paper sizes is available:
2714 a6, a5, a4, a3, legal, letter, 11x17 (also known as tabloid).
2715 Setting the paper size automatically sets suitable margins and
2716 line length.
2717
2718 If the symbol @code{landscape} is supplied as an argument to
2719 @code{set-default-paper-size}, the pages will be rotated by 90
2720 degrees, and wider line widths will be set correspondingly, e.g.
2721
2722 @example
2723 #(set-default-paper-size "a6" 'landscape)
2724 @end example
2725
2726 The default @strong{staff size} is set to 20 points.
2727 This may be changed in two ways:
2728
2729 @example
2730 #(set-global-staff-size 14)
2731
2732 \paper @{
2733 #(set-global-staff-size 16)
2734 @}
2735 @end example
2736
2737 @noindent
2738 The first command sets the size in all pages. The second command
2739 sets the size in the pages to which the \paper block applies -\96 if
2740 the \paper block is at the top of the file, then it will apply
2741 to all pages.  All the fonts are automatically scaled to suit
2742 the new value of the staff size.
2743
2744 @node Line breaks
2745 @subsection Line breaks
2746
2747 Line breaks are normally determined automatically. They are chosen
2748 so that lines look neither cramped nor loose, and consecutive
2749 lines have similar density.  Occasionally you might want to
2750 override the automatic breaks; you can do this by specifying
2751 @code{\break}. This will force a line break at this point.  However,
2752 line breaks can only occur at the end of @q{complete} bars, i.e.,
2753 where there are no notes or tuplets left @q{hanging} over the bar
2754 line.  If you want to have a line break where there is no bar line,
2755 you can force an invisible bar line by entering @code{\bar ""},
2756 although again there must be no notes left hanging over in any of
2757 the staves at this point, or it will be ignored.
2758
2759 The opposite command, @code{\noBreak}, forbids a line break at the
2760 bar line where it is inserted.
2761
2762 The most basic settings influencing line spacing are @code{indent}
2763 and @code{line-width}. They are set in the @code{\layout} block.
2764 They control the indentation of the first line of music, and the
2765 lengths of the lines.
2766
2767 If @code{ragged-right} is set to true in the @code{\layout} block,
2768 then systems end at their natural horizontal length, instead of
2769 being spread horizontally to fill the whole line. This is useful
2770 for short fragments, and for checking how tight the natural
2771 spacing is.
2772
2773 The option @code{ragged-last} is similar to @code{ragged-right},
2774 but affects only the last line of the piece.
2775
2776 @example
2777 \layout @{
2778 indent = #0
2779 line-width = #150
2780 ragged-last = ##t
2781 @}
2782 @end example
2783
2784 @node Page breaks
2785 @subsection Page breaks
2786
2787 The default page breaking may be overriden by inserting 
2788 @code{\pageBreak} or @code{\noPageBreak} commands.
2789 These commands are analogous to the @code{\break} and 
2790 @code{\noBreak} commands discused above and force or forbid 
2791 a page-break at the point where they are inserted.
2792 Of course, the @code{\pageBreak} command also forces a line break.
2793 Like @code{\break}, the @code{\pageBreak} command is effective only
2794 at the end of a @q{complete} bar as defined above.  For more
2795 details see @ruser{Page breaking} and following sections.
2796
2797 There are also analogous settings to @code{ragged-right} and
2798 @code{ragged-last} which have the same effect on vertical spacing:
2799 @code{ragged-bottom} and @code{ragged-last-bottom}.  If set to
2800 @code{##t} the systems on all pages or just the last page
2801 respectively will not be justified vertically.
2802
2803 For more details see @ruser{Vertical spacing}.
2804
2805 @node Fitting music onto fewer pages
2806 @subsection Fitting music onto fewer pages
2807
2808 Sometimes you can end up with one or two staves on a second
2809 (or third, or fourth...) page.  This is annoying, especially
2810 if you look at previous pages and it looks like there is plenty
2811 of room left on those.
2812
2813 When investigating layout issues, @code{annotate-spacing} is
2814 an invaluable tool.  This command prints the values of various
2815 layout spacing commands; see @ruser{Displaying spacing}, for more
2816 details.  From the output of @code{annotate-spacing}, we can
2817 see which margins we may wish to alter.
2818
2819 Other than margins, there are a few other options to save space:
2820
2821 @itemize
2822 @item
2823 You may tell LilyPond to place systems as close together as
2824 possible (to fit as many systems as possible onto a page), but
2825 then to space those systems out so that there is no blank
2826 space at the bottom of the page.
2827
2828 @example
2829 \paper @{
2830   between-system-padding = #0.1
2831   between-system-space = #0.1
2832   ragged-last-bottom = ##f
2833   ragged-bottom = ##f
2834 @}
2835 @end example
2836
2837 @item
2838 You may force the number of systems (i.e., if LilyPond wants
2839 to typeset some music with 11 systems, you could force it to
2840 use 10).
2841
2842 @example
2843 \paper @{
2844   system-count = #10
2845 @}
2846 @end example
2847
2848 @item
2849 Avoid (or reduce) objects which increase the vertical size of
2850 a system.  For example, volta repeats (or alternate repeats)
2851 require extra space.  If these repeats are spread over two
2852 systems, they will take up more space than one system with
2853 the volta repeats and another system without.
2854
2855 Another example is moving dynamics which @q{stick out} of
2856 a system, as in the second bar here:
2857
2858 @lilypond[verbatim,quote,fragment,ragged-right,relative=1]
2859 e4 c g\f c
2860 \override DynamicText #'extra-offset = #'( -2.2 . 2.0)
2861 e4 c g\f c
2862 @end lilypond
2863
2864 @item
2865 Alter the horizontal spacing via @code{SpacingSpanner}.  See
2866 @ruser{Changing horizontal spacing}, for more details.  Here's
2867 an example first showing the default behaviour:
2868
2869 @lilypond[verbatim,quote,ragged-right]
2870 \score {
2871   \relative c'' {
2872     g4 e e2 |
2873     f4 d d2 |
2874     c4 d e f |
2875     g4 g g2 |
2876     g4 e e2 |
2877   }
2878 }
2879 @end lilypond
2880
2881 @noindent
2882 and now with @code{common-shortest-duration} increased from the
2883 value of @code{1/4} (a quarter note is the most common in this
2884 example) to @code{1/2}:
2885
2886 @lilypond[verbatim,quote,ragged-right]
2887 \score {
2888   \relative c'' {
2889     g4 e e2 |
2890     f4 d d2 |
2891     c4 d e f |
2892     g4 g g2 |
2893     g4 e e2 |
2894   }
2895   \layout {
2896     \context {
2897       \Score
2898       \override SpacingSpanner
2899                 #'common-shortest-duration = #(ly:make-moment 1 2)
2900     }
2901   }
2902 }
2903 @end lilypond
2904
2905 @noindent
2906 Note that this override cannot be modified dynamically, so it must
2907 always be placed in a @code{\context@{..@}} block so that it applies
2908 to the whole score.
2909
2910 TODO Add description of using \context in this way earlier if it is
2911 not already anywhere  -td
2912
2913 @end itemize
2914
2915 TODO  Mention line-thickness somewhere else and move this there
2916
2917 @cindex Tweaks, distances
2918 @cindex Distances
2919
2920 Distances in LilyPond are measured in staff-spaces, while most
2921 thickness properties are measured in line-thickness.  Some
2922 properties are different; for example, the thickness of beams
2923 are measured in staff-spaces.  For more information, see the
2924 relevant portion of the program reference.
2925
2926
2927
2928 @node Further tweaking
2929 @section Further tweaking
2930
2931 @menu
2932 * Other uses for tweaks::       
2933 * Other sources of information::  
2934 * Advanced tweaks with Scheme::  
2935 * Avoiding tweaks with slower processing::  
2936 @end menu
2937
2938 @node Other uses for tweaks
2939 @subsection Other uses for tweaks
2940
2941 @itemize
2942
2943 @item
2944 Setting the @code{transparent} property will cause an object to be printed
2945 in @q{invisible ink}: the object is not printed, but all its other
2946 behavior is retained.  The object still takes up space, it takes part in
2947 collisions, and slurs, ties, and beams can be attached to it.
2948
2949 @cindex transparent objects
2950 @cindex removing objects
2951 @cindex hiding objects
2952 @cindex invisible objects
2953 The following example demonstrates how to connect different voices
2954 using ties.  Normally, ties only connect two notes in the same
2955 voice.  By introducing a tie in a different voice,
2956
2957 @lilypond[quote,fragment,relative=2]
2958 << {
2959   b8~ b8\noBeam
2960 } \\ {
2961   b[ g8]
2962 } >>
2963 @end lilypond
2964
2965 @noindent
2966 and blanking the first up-stem in that voice, the tie appears to cross
2967 voices:
2968
2969 @lilypond[quote,fragment,relative=2,verbatim]
2970 << {
2971   \once \override Stem #'transparent = ##t
2972   b8~ b8\noBeam
2973 } \\ {
2974   b[ g8]
2975 } >>
2976 @end lilypond
2977
2978 To make sure that the just-blanked stem doesn't squeeze the tie too much,
2979 we also lengthen the stem, by setting the @code{length} to
2980 @code{8},
2981
2982 @lilypond[quote,fragment,relative=2,verbatim]
2983 << {
2984   \once \override Stem #'transparent = ##t
2985   \once \override Stem #'length = #8
2986   b8~ b8\noBeam
2987 } \\ {
2988   b[ g8]
2989 } >>
2990 @end lilypond
2991
2992 @end itemize
2993
2994
2995 @node Other sources of information
2996 @subsection Other sources of information
2997
2998 The Internals Reference documentation contains a lot of information
2999 about LilyPond, but even more information can be gathered from
3000 looking at the internal LilyPond files.
3001
3002 TODO Show example, then explain where to find ly/propert-ly.
3003
3004 Some default settings (such as the definitions for
3005 @code{\header@{@}}s) are stored as @code{.ly} files.  Other
3006 settings (such as the definitions of markup commands) are
3007 stored as @code{.scm} (Scheme) files.  Further explanation is
3008 outside the scope of this manual; users should be warned that
3009 a substantial amount of technical knowledge or time is required
3010 to understand these files.
3011
3012 @itemize
3013
3014 @item Linux: @file{@var{installdir}/lilypond/usr/share/lilypond/current/}
3015
3016 @item OSX:
3017 @file{@var{installdir}/LilyPond.app/Contents/Resources/share/lilypond/current/}.
3018 To access this, either @code{cd} into this directory from the
3019 Terminal, or control-click on the LilyPond application and select
3020 @q{Show Package Contents}.
3021
3022 @item Windows: @file{@var{installdir}/LilyPond/usr/share/lilypond/current/}
3023
3024 @end itemize
3025
3026 The @file{ly/} and @file{scm/} directories will be of
3027 particular interest.  Files such as @file{ly/property-init.ly} and
3028 @file{ly/declarations-init.ly} define all the common tweaks.
3029
3030
3031 @node Advanced tweaks with Scheme
3032 @subsection Advanced tweaks with Scheme
3033
3034 We have seen how LilyPond output can be heavily modified using
3035 commands like
3036 @code{\override TextScript #'extra-offset = ( 1 . -1)}.  But
3037 we have even more power if we use Scheme.  For a full explantion
3038 of this, see the @ref{Scheme tutorial}, and
3039 @ruser{Interfaces for programmers}.
3040
3041 We can use Scheme to simply @code{\override} commands,
3042
3043 TODO Check this is a valid example with skylining
3044
3045 @lilypond[quote,verbatim,ragged-right]
3046 padText = #(define-music-function (parser location padding) (number?)
3047 #{
3048   \once \override TextScript #'padding = #$padding
3049 #})
3050
3051 \relative c''' {
3052   c4^"piu mosso" b a b
3053   \padText #1.8
3054   c4^"piu mosso" d e f
3055   \padText #2.6
3056   c4^"piu mosso" fis a g
3057 }
3058 @end lilypond
3059
3060 We can use it to create new commands,
3061
3062 TODO Check this is a valid example with skylining
3063
3064 @lilypond[quote,verbatim,ragged-right]
3065 tempoMark = #(define-music-function (parser location padding marktext)
3066                                     (number? string?)
3067 #{
3068   \once \override Score . RehearsalMark #'padding = $padding
3069   \once \override Score . RehearsalMark #'extra-spacing-width = #'(+inf.0 . -inf.0)
3070   \mark \markup { \bold $marktext }
3071 #})
3072
3073 \relative c'' {
3074   c2 e
3075   \tempoMark #3.0 #"Allegro"
3076   g c
3077 }
3078 @end lilypond
3079
3080 Even music expressions can be passed in.
3081
3082 @lilypond[quote,verbatim,ragged-right]
3083 pattern = #(define-music-function (parser location x y) (ly:music? ly:music?)
3084 #{
3085   $x e8 a b $y b a e
3086 #})
3087
3088 \relative c''{
3089   \pattern c8 c8\f
3090   \pattern {d16 dis} { ais16-> b\p }
3091 }
3092 @end lilypond
3093
3094
3095 @node Avoiding tweaks with slower processing
3096 @subsection Avoiding tweaks with slower processing
3097
3098 LilyPond can perform extra checks while it processes files.  These
3099 commands will take extra time, but the result may require fewer
3100 manual tweaks.
3101
3102 @example
3103 %%  makes sure text scripts and lyrics are within the paper margins
3104 \override Score.PaperColumn #'keep-inside-line = ##t 
3105 \override Score.NonMusicalPaperColumn #'keep-inside-line = ##t
3106 @end example
3107
3108 In some cases (see issue 246), this must be done before
3109 @code{\override} commands can be processed.
3110
3111 @verbatim
3112 \new Score \with {
3113     \override PaperColumn #'keep-inside-line = ##t 
3114     \override NonMusicalPaperColumn #'keep-inside-line = ##t
3115   } {
3116    ..
3117 }
3118 @end verbatim
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131