]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/changing-defaults.itely
4c2c8a0a78f3af658bed683f2f68bbc96809c346
[lilypond.git] / Documentation / notation / changing-defaults.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2
3 @ignore
4     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  For details, see the Contributors'
8     Guide, node Updating translation committishes..
9 @end ignore
10
11 @c \version "2.19.7"
12
13 @node Changing defaults
14 @chapter Changing defaults
15
16 The purpose of LilyPond's design is to provide the finest quality
17 output by default.  Nevertheless, it may happen that you need to
18 change this default layout.  The layout is controlled through a large
19 number of @q{knobs and switches} collectively called @q{properties}.
20 A tutorial introduction to accessing and modifying these properties
21 can be found in the Learning Manual, see @rlearning{Tweaking output}.
22 This should be read first.  This chapter covers similar ground, but
23 in a style more appropriate to a reference manual.
24
25 @cindex Internals Reference
26
27 The definitive description of the controls available for tuning can
28 be found in a separate document: @rinternalsnamed{Top,the Internals
29 Reference}.  That manual lists all the variables, functions and
30 options available in LilyPond.  It is written as a HTML document,
31 which is available
32 @c leave the @uref as one long line.
33 @uref{http://@/lilypond@/.org/@/doc/@/stable/@/Documentation/@/internals/,on@/-line},
34 and is also included with the LilyPond documentation package.
35
36 Internally, LilyPond uses Scheme (a LISP dialect) to provide
37 infrastructure.  Overriding layout decisions in effect accesses the
38 program internals, which requires Scheme input.  Scheme elements are
39 introduced in a @file{.ly} file with the hash
40 mark@tie{}@code{#}.@footnote{@rextend{Scheme tutorial}, contains a
41 short tutorial on entering numbers, lists, strings, and symbols in
42 Scheme.}
43
44
45 @menu
46 * Interpretation contexts::
47 * Explaining the Internals Reference::
48 * Modifying properties::
49 * Useful concepts and properties::
50 * Advanced tweaks::
51 * Using music functions::
52 @end menu
53
54
55 @node Interpretation contexts
56 @section Interpretation contexts
57
58 This section describes what contexts are, and how to modify them.
59
60 @menu
61 * Contexts explained::
62 * Creating and referencing contexts::
63 * Keeping contexts alive::
64 * Modifying context plug-ins::
65 * Changing context default settings::
66 * Defining new contexts::
67 * Context layout order::
68 @end menu
69
70 @seealso
71 Learning Manual:
72 @rlearning{Contexts and engravers}.
73
74 Installed Files:
75 @file{ly/engraver-init.ly},
76 @file{ly/performer-init.ly}.
77
78 Snippets:
79 @rlsr{Contexts and engravers}.
80
81 Internals Reference:
82 @rinternals{Contexts},
83 @rinternals{Engravers and Performers}.
84
85
86 @node Contexts explained
87 @subsection Contexts explained
88
89 @ignore
90 @c TODO Rethink and rewrite
91
92 >> > > - list of contexts: my *danger unmaintainable*
93 >> > > alarm just went off.  I'm
94
95 I knew it would... And leaving out some of them is perfectly fine
96 with me.
97 I do think that a list like this, with the main contexts and a
98 brief
99 description of  what they do (perhaps also with a note about what
100 default
101 behavior is associated with each of them, but this may be
102 unmanageable),
103 should be there, and then we could simply list the remaining ones
104 without
105 further explanation and with links to the IR.
106 @end ignore
107
108 @c TODO Improve layout, order and consistency of wording -td
109
110 @c TODO Add introduction which explains contexts in generality  -td
111
112 @c TODO Describe propagation of property values -td
113
114 Contexts are arranged hierarchically:
115
116 @menu
117 * Output definitions - blueprints for contexts::
118 * Score - the master of all contexts::
119 * Top-level contexts - staff containers::
120 * Intermediate-level contexts - staves::
121 * Bottom-level contexts - voices::
122 @end menu
123
124 @node Output definitions - blueprints for contexts
125 @unnumberedsubsubsec Output definitions - blueprints for contexts
126
127 This section explains the relevance of output definitions when
128 working with contexts.  Examples for actual output definitions are
129 given later (see @ref{Changing all contexts of the same type}).
130
131 @cindex output definitions
132 @funindex \layout
133 While music written in a file may refer to context types and
134 names, contexts are created only when the music is actually being
135 interpreted.  LilyPond interprets music under control of an
136 @q{output definition} and may do so for several different output
137 definitions, resulting in different output.  The output definition
138 relevant for printing music is specified using @code{\layout}.
139
140 @funindex \midi
141 A much simpler output definition used for producing Midi output is
142 specified using @code{\midi}.  Several other output definitions
143 are used by LilyPond internally, like when using the part combiner
144 (@ref{Automatic part combining}) or creating music quotes
145 (@ref{Quoting other voices}).
146
147 Output definitions define the relation between contexts as well as
148 their respective default settings.  While most changes will
149 usually be made inside of a @code{\layout} block, Midi-related
150 settings will only have an effect when made within a @code{\midi}
151 block.
152
153 @funindex autoBeaming
154 Some settings affect several outputs: for example, if
155 @code{autoBeaming} is turned off in some context, beams count as
156 melismata for the purpose of matching music to lyrics as described
157 in @ref{Automatic syllable durations}.  This matching is done both
158 for printed output as well as for Midi.  If changes made to
159 @code{autoBeaming} within a context definition of a @code{\layout}
160 block are not repeated in the corresponding @code{\midi} block,
161 lyrics and music will get out of sync in Midi.
162
163 @seealso
164 Installed Files:
165 @file{ly/engraver-init.ly}.
166 @file{ly/performer-init.ly}.
167
168 @node Score - the master of all contexts
169 @unnumberedsubsubsec Score - the master of all contexts
170
171 This is the top level notation context.  No other context can
172 contain a Score context.  By default the Score context handles
173 the administration of time signatures and makes sure that items
174 such as clefs, time signatures, and key-signatures are aligned
175 across staves.
176
177 A Score context is instantiated implicitly when a
178 @code{\score @{@dots{}@}} block is processed.
179
180 @node Top-level contexts - staff containers
181 @unnumberedsubsubsec Top-level contexts - staff containers
182
183 @strong{@emph{StaffGroup}}
184
185 Groups staves while adding a bracket on the left side, grouping
186 the staves together.  The bar lines of the contained staves are
187 connected vertically.  @code{StaffGroup} only consists of a collection
188 of staves, with a bracket in front and spanning bar lines.
189
190 @strong{@emph{ChoirStaff}}
191
192 Identical to @code{StaffGroup} except that the bar lines of the
193 contained staves are not connected vertically.
194
195 @strong{@emph{GrandStaff}}
196
197 A group of staves, with a brace on the left side, grouping the
198 staves together.  The bar lines of the contained staves are
199 connected vertically.
200
201 @strong{@emph{PianoStaff}}
202
203 Just like @code{GrandStaff}, but with support for instrument names
204 to the left of each system.
205
206 @node Intermediate-level contexts - staves
207 @unnumberedsubsubsec Intermediate-level contexts - staves
208
209 @strong{@emph{Staff}}
210
211 Handles clefs, bar lines, keys, accidentals.  It can contain
212 @code{Voice} contexts.
213
214 @strong{@emph{RhythmicStaff}}
215
216 Like @code{Staff} but for printing rhythms.  Pitches are ignored
217 when engraving; the notes are printed on one line.  The MIDI
218 rendition retains pitches unchanged.
219
220 @strong{@emph{TabStaff}}
221
222 Context for generating tablature.  By default lays the music
223 expression out as a guitar tablature, printed on six lines.
224
225 @strong{@emph{DrumStaff}}
226
227 Handles typesetting for percussion.  Can contain @code{DrumVoice}
228
229 @strong{@emph{VaticanaStaff}}
230
231 Same as @code{Staff}, except that it is designed for typesetting
232 a piece in gregorian style.
233
234 @strong{@emph{MensuralStaff}}
235
236 Same as @code{Staff}, except that it is designed for typesetting
237 a piece in mensural style.
238
239 @node Bottom-level contexts - voices
240 @unnumberedsubsubsec Bottom-level contexts - voices
241
242 Voice-level contexts initialise certain properties and start
243 appropriate engravers.  A bottom-level context is one without
244 @code{defaultchild}.  While it is possible to let it
245 accept/@/contain subcontexts, they can only be created and entered
246 explicitly.
247
248 @strong{@emph{Voice}}
249
250 Corresponds to a voice on a staff.  This context handles the
251 conversion of dynamic signs, stems, beams, super- and sub-scripts,
252 slurs, ties, and rests.  You have to instantiate this explicitly
253 if you require multiple voices on the same staff.
254
255 @strong{@emph{VaticanaVoice}}
256
257 Same as @code{Voice}, except that it is designed for typesetting
258 a piece in gregorian style.
259
260 @strong{@emph{MensuralVoice}}
261
262 Same as @code{Voice}, with modifications for typesetting a piece in
263 mensural style.
264
265 @strong{@emph{Lyrics}}
266
267 Corresponds to a voice with lyrics.  Handles the printing of a
268 single line of lyrics.
269
270 @strong{@emph{DrumVoice}}
271
272 The voice context used in a percussion staff.
273
274 @strong{@emph{FiguredBass}}
275
276 The context in which @code{BassFigure} objects are created from
277 input entered in @code{\figuremode} mode.
278
279 @strong{@emph{TabVoice}}
280
281 The voice context used within a @code{TabStaff} context.  Usually
282 left to be created implicitly.
283
284 @strong{@emph{CueVoice}}
285
286 A voice context used to render notes of a reduced size, intended
287 primarily for adding cue notes to a staff, see @ref{Formatting
288 cue notes}.  Usually left to be created implicitly.
289
290 @strong{@emph{ChordNames}}
291
292 Typesets chord names.
293
294 @ignore
295 TODO
296
297 Then the following, which I don't know what to do with:
298
299     * GregorianTranscriptionVoice
300     * GregorianTranscriptionStaff
301
302     * FretBoards
303         Engraves fretboards from chords. Not easy... Not
304 documented.
305         There is now some documentation on FretBoards in the NR, under
306          instrument-specific notation -- cds.
307
308     * NoteNames
309
310     * Global
311         Hard coded entry point for LilyPond. Cannot be tuned.
312     * Devnull
313         Silently discards all musical information given to this
314 context.
315
316 @end ignore
317
318 @node Creating and referencing contexts
319 @subsection Creating and referencing contexts
320
321 @funindex \new
322 @funindex \context
323 @cindex new contexts
324 @cindex referencing contexts
325 @cindex Contexts, creating and referencing
326
327 LilyPond will create lower-level contexts automatically if a music
328 expression is encountered before a suitable context exists, but this
329 is usually successful only for simple scores or music fragments like
330 the ones in the documentation.  For more complex scores it is
331 advisable to specify all contexts explicitly with either the
332 @code{\new} or @code{\context} command.  The syntax of
333 these two commands is very similar:
334
335 @example
336 [\new | \context] @var{Context} [ = @var{name}] [@var{music-expression}]
337 @end example
338
339 @noindent
340 where either @code{\new} or @code{\context} may be specified.
341 @var{Context} is the type of context which is to be created,
342 @var{name} is an optional name to be given to the particular context
343 being created and @var{music-expression} is a single music expression
344 that is to be interpreted by the engravers and performers in this
345 context.
346
347 The @code{\new} prefix without a name is commonly used to create
348 scores with many staves:
349
350 @lilypond[quote,verbatim,relative=2]
351 <<
352   \new Staff {
353     % leave the Voice context to be created implicitly
354     c4 c
355   }
356   \new Staff {
357     d4 d
358   }
359 >>
360 @end lilypond
361
362 @noindent
363 and to place several voices into one staff:
364
365 @lilypond[quote,verbatim,relative=2]
366 <<
367   \new Staff <<
368     \new Voice {
369       \voiceOne
370       c8 c c4 c c
371     }
372     \new Voice {
373       \voiceTwo
374       g4 g g g
375     }
376   >>
377 >>
378 @end lilypond
379
380 @noindent
381 @code{\new} should always be used to specify unnamed contexts.
382
383 The difference between @code{\new} and @code{\context} is in the
384 action taken:
385
386 @itemize
387 @item
388 @code{\new} with or without a name will always create a fresh,
389 distinct, context, even if one with the same name already exists:
390
391 @lilypond[quote,verbatim,relative=2]
392 <<
393   \new Staff <<
394     \new Voice = "A" {
395       \voiceOne
396       c8 c c4 c c
397     }
398     \new Voice = "A" {
399       \voiceTwo
400       g4 g g g
401     }
402   >>
403 >>
404 @end lilypond
405
406 @item
407 @code{\context} with a name specified will create a distinct context
408 only if a context of the same type with the same name in the same
409 context hierarchy does not already exist.  Otherwise it will be taken
410 as a reference to that previously created context, and its music
411 expression will be passed to that context for interpretation.
412
413 One application of named contexts is in separating the score layout
414 from the musical content.  Either of these two forms is valid:
415
416 @lilypond[quote,verbatim]
417 \score {
418   <<
419     % score layout
420     \new Staff <<
421       \new Voice = "one" {
422         \voiceOne
423       }
424       \new Voice = "two" {
425         \voiceTwo
426       }
427     >>
428
429     % musical content
430     \context Voice = "one" {
431       \relative c'' {
432         c4 c c c
433       }
434     }
435     \context Voice = "two" {
436       \relative c'' {
437         g8 g g4 g g
438       }
439     }
440   >>
441 }
442 @end lilypond
443
444 @lilypond[quote,verbatim]
445 \score {
446   <<
447     % score layout
448     \new Staff <<
449       \context Voice = "one" {
450         \voiceOne
451       }
452       \context Voice = "two" {
453         \voiceTwo
454       }
455     >>
456
457     % musical content
458     \context Voice = "one" {
459       \relative c'' {
460         c4 c c c
461       }
462     }
463     \context Voice = "two" {
464       \relative c'' {
465         g8 g g4 g g
466       }
467     }
468   >>
469 }
470 @end lilypond
471
472 @noindent
473 Alternatively, variables may be employed to similar effect.  See
474 @rlearning{Organizing pieces with variables}.
475
476 @item
477 @code{\context} with no name will match the first of any previously
478 created contexts of the same type in the same context heirarchy,
479 even one that has been given a name, and its music expression will be
480 passed to that context for interpretation.  This form is rarely
481 useful.  However, @code{\context} with no name and no music expression
482 is used to set the context in which a Scheme procedure specified with
483 @code{\applyContext} is executed:
484
485 @example
486 \new Staff \relative c' @{
487   c1
488   \context Timing
489   \applyContext #(lambda (ctx)
490                    (newline)
491                    (display (ly:context-current-moment ctx)))
492   c1
493 @}
494 @end example
495
496 @end itemize
497
498 A context must be named if it is to be referenced later, for example
499 when lyrics are associated with music:
500
501 @example
502 \new Voice = "tenor" @var{music}
503 @dots{}
504 \new Lyrics \lyricsto "tenor" @var{lyrics}
505 @end example
506
507 @noindent
508 For details of associating lyrics with music see
509 @ref{Automatic syllable durations}.
510
511 The properties of all contexts of a particular type can be modified
512 in a @code{\layout} block (with a different syntax), see
513 @ref{Changing all contexts of the same type}.  This construct also
514 provides a means of keeping layout instructions separate from the
515 musical content.  If a single context is to be modified, a @code{\with}
516 block must be used, see @ref{Changing just one specific context}.
517
518 @seealso
519 Learning Manual:
520 @rlearning{Organizing pieces with variables}.
521
522 Notation Reference:
523 @ref{Changing just one specific context},
524 @ref{Automatic syllable durations}.
525
526
527 @node Keeping contexts alive
528 @subsection Keeping contexts alive
529
530 @cindex contexts, keeping alive
531 @cindex contexts, lifetime
532
533 Contexts are usually terminated at the first musical moment in
534 which they have nothing to do.  So @code{Voice} contexts die as
535 soon as they contain no events; @code{Staff} contexts die as soon
536 as all the @code{Voice} contexts within them contain no events; etc.
537 This can cause difficulties if earlier contexts which have died
538 have to be referenced, for example, when changing staves with
539 @code{\change} commands, associating lyrics with a voice with
540 @code{\lyricsto} commands, or when adding further musical events to
541 an earlier context.
542
543 There is an exception to this general rule: just one of the
544 @code{Voice} contexts in a @code{Staff} context or in a
545 @code{<<@dots{}>>} construct will always persist to the end of the
546 enclosing @code{Staff} context or @code{<<@dots{}>>} construct, even
547 though there may be periods when it has nothing to do.  The context
548 to persist in this way will be the first one encountered in the
549 first enclosed @code{@{@dots{}@}} construct, ignoring any in enclosed
550 @code{<<@dots{}>>} constructs.
551
552 Any context can be kept alive by ensuring it has something to do at
553 every musical moment.  @code{Staff} contexts are kept alive by
554 ensuring one of their voices is kept alive.  One way of doing this
555 is to add spacer rests to a voice in parallel with the real music.
556 These need to be added to every @code{Voice} context which needs to
557 be kept alive.  If several voices are to be used sporadically it is
558 safest to keep them all alive rather than attempting to rely on the
559 exceptions mentioned above.
560
561 In the following example, both voice A and voice B are kept alive
562 in this way for the duration of the piece:
563
564 @lilypond[quote,verbatim]
565 musicA = \relative c'' { d4 d d d }
566 musicB = \relative c'' { g4 g g g }
567 keepVoicesAlive = {
568   <<
569     \new Voice = "A" { s1*5 }  % Keep Voice "A" alive for 5 bars
570     \new Voice = "B" { s1*5 }  % Keep Voice "B" alive for 5 bars
571   >>
572 }
573
574 music = {
575   \context Voice = "A" {
576     \voiceOneStyle
577     \musicA
578   }
579   \context Voice = "B" {
580     \voiceTwoStyle
581     \musicB
582   }
583   \context Voice = "A" { \musicA }
584   \context Voice = "B" { \musicB }
585   \context Voice = "A" { \musicA }
586 }
587
588 \score {
589   \new Staff <<
590     \keepVoicesAlive
591     \music
592   >>
593 }
594 @end lilypond
595
596 @cindex lyrics, aligning with sporadic melody
597
598 The following example shows how a sporadic melody line with lyrics
599 might be written using this approach.  In a real situation the
600 melody and accompaniment would consist of several different
601 sections, of course.
602
603 @lilypond[quote,verbatim]
604 melody = \relative c'' { a4 a a a }
605 accompaniment = \relative c' { d4 d d d }
606 words = \lyricmode { These words fol -- low the mel -- o -- dy }
607 \score {
608   <<
609     \new Staff = "music" {
610       <<
611         \new Voice = "melody" {
612           \voiceOne
613           s1*4  % Keep Voice "melody" alive for 4 bars
614         }
615         {
616           \new Voice = "accompaniment" {
617             \voiceTwo
618             \accompaniment
619           }
620           <<
621             \context Voice = "melody" { \melody }
622             \context Voice = "accompaniment" { \accompaniment }
623           >>
624           \context Voice = "accompaniment" { \accompaniment }
625           <<
626             \context Voice = "melody" { \melody }
627             \context Voice = "accompaniment" { \accompaniment }
628           >>
629         }
630       >>
631     }
632     \new Lyrics \with { alignAboveContext = #"music" }
633     \lyricsto "melody" { \words }
634   >>
635 }
636 @end lilypond
637
638 An alternative way, which may be better in many circumstances, is
639 to keep the melody line alive by simply including spacer notes to
640 line it up correctly with the accompaniment:
641
642 @lilypond[quote,verbatim]
643 melody = \relative c'' {
644   s1  % skip a bar
645   a4 a a a
646   s1  % skip a bar
647   a4 a a a
648 }
649 accompaniment = \relative c' {
650   d4 d d d
651   d4 d d d
652   d4 d d d
653   d4 d d d
654 }
655 words = \lyricmode { These words fol -- low the mel -- o -- dy }
656
657 \score {
658   <<
659     \new Staff = "music" {
660       <<
661         \new Voice = "melody" {
662           \voiceOne
663           \melody
664         }
665         \new Voice = "accompaniment" {
666           \voiceTwo
667           \accompaniment
668         }
669       >>
670     }
671     \new Lyrics \with { alignAboveContext = #"music" }
672     \lyricsto "melody" { \words }
673   >>
674 }
675 @end lilypond
676
677
678 @node Modifying context plug-ins
679 @subsection Modifying context plug-ins
680
681 @c TODO Should this be Modifying engravers or Modifying contexts?
682
683 Notation contexts (like @code{Score} and @code{Staff}) not only store
684 properties, they also contain plug-ins called @q{engravers} that create
685 notation elements.  For example, the @code{Voice} context contains a
686 @code{Note_heads_engraver} and the @code{Staff} context contains a
687 @code{Key_engraver}.
688
689 For a full a description of each plug-in, see
690 @ifhtml
691 @rinternals{Engravers and Performers}.
692 @end ifhtml
693 @ifnothtml
694 Internals Reference @expansion{} Translation @expansion{} Engravers.
695 @end ifnothtml
696 Every context described in
697 @ifhtml
698 @rinternals{Contexts}
699 @end ifhtml
700 @ifnothtml
701 Internals Reference @expansion{} Translation @expansion{} Context.
702 @end ifnothtml
703 lists the engravers used for that context.
704
705
706 It can be useful to shuffle around these plug-ins.  This is done by
707 starting a new context with @code{\new} or @code{\context}, and
708 modifying it,
709
710 @funindex \with
711
712 @example
713 \new @var{context} \with @{
714   \consists @dots{}
715   \consists @dots{}
716   \remove @dots{}
717   \remove @dots{}
718   @emph{etc.}
719 @}
720 @{
721   @emph{@dots{}music@dots{}}
722 @}
723 @end example
724
725 @noindent
726 where the @dots{} should be the name of an engraver.  Here is a simple
727 example which removes @code{Time_signature_engraver} and
728 @code{Clef_engraver} from a @code{Staff} context,
729
730 @lilypond[quote,relative=1,verbatim]
731 <<
732   \new Staff {
733     f2 g
734   }
735   \new Staff \with {
736      \remove "Time_signature_engraver"
737      \remove "Clef_engraver"
738   } {
739     f2 g2
740   }
741 >>
742 @end lilypond
743
744 In the second staff there are no time signature or clef symbols.  This
745 is a rather crude method of making objects disappear since it will affect
746 the entire staff.  This method also influences the spacing, which may or
747 may not be desirable.  More sophisticated methods of blanking objects
748 are shown in @rlearning{Visibility and color of objects}.
749
750 The next example shows a practical application.  Bar lines and time
751 signatures are normally synchronized across the score.  This is done
752 by the @code{Timing_translator} and @code{Default_bar_line_engraver}.
753 This plug-in keeps an administration of time signature, location
754 within the measure, etc.  By moving these engraver from @code{Score} to
755 @code{Staff} context, we can have a score where each staff has its own
756 time signature.
757
758 @cindex polymetric scores
759 @cindex time signature, multiple
760
761 @lilypond[quote,verbatim]
762 \score {
763   <<
764     \new Staff \with {
765       \consists "Timing_translator"
766       \consists "Default_bar_line_engraver"
767     }
768     \relative c'' {
769         \time 3/4
770         c4 c c c c c
771     }
772   \new Staff \with {
773     \consists "Timing_translator"
774     \consists "Default_bar_line_engraver"
775   }
776   \relative c'' {
777       \time 2/4
778       c4 c c c c c
779   }
780 >>
781 \layout {
782   \context {
783     \Score
784     \remove "Timing_translator"
785     \remove "Default_bar_line_engraver"
786     }
787   }
788 }
789 @end lilypond
790
791 @knownissues
792
793 The order in which the engravers are specified is the order in
794 which they are called to carry out their processing.  Usually the
795 order in which the engravers are specified does not matter, but in
796 a few special cases the order is important, for example where one
797 engraver writes a property and another reads it, or where one
798 engraver creates a grob and another must process it.
799
800 The following orderings are important:
801
802 @itemize
803 @item
804 the @code{Bar_engraver} must normally be first,
805
806 @item
807 the @code{New_fingering_engraver} must come before the
808 @code{Script_column_engraver},
809
810 @item
811 the @code{Timing_translator} must come before the
812 @code{Bar_number_engraver}.
813
814 @end itemize
815
816 @seealso
817 Installed Files:
818 @file{ly/engraver-init.ly}.
819
820
821 @node Changing context default settings
822 @subsection Changing context default settings
823
824 @cindex default context properties, changing
825 @cindex context properties, changing defaults
826
827 Context and grob properties can be changed with @code{\set}
828 and @code{\override} commands, as described in
829 @ref{Modifying properties}.  These commands create music events,
830 making the changes take effect at the point in time the music
831 is being processed.
832
833 In contrast, this section explains how to change the @emph{default}
834 values of context and grob properties at the time the context is
835 created.  There are two ways of doing this.  One modifies the default
836 values in all contexts of a particular type, the other modifies the
837 default values in just one particular instance of a context.
838
839 @menu
840 * Changing all contexts of the same type::
841 * Changing just one specific context::
842 * Order of precedence::
843 @end menu
844
845 @node Changing all contexts of the same type
846 @unnumberedsubsubsec Changing all contexts of the same type
847
848 @cindex \context in \layout block
849 @funindex \context
850 @funindex \layout
851
852 The default context settings which are to be used for typesetting in
853 @code{Score}, @code{Staff}, @code{Voice} and other contexts may be
854 specified in a @code{\context} block within any @code{\layout}
855 block.
856
857 Settings for Midi output as opposed to typesetting will have to be
858 separately specified in @code{\midi} blocks (see @ref{Output
859 definitions - blueprints for contexts}).
860
861 The @code{\layout} block should be placed within the @code{\score}
862 block to which it is to apply, after the music.
863
864 @example
865 \layout @{
866   \context @{
867     \Voice
868     [context settings for all Voice contexts]
869   @}
870   \context @{
871     \Staff
872     [context settings for all Staff contexts]
873   @}
874 @}
875 @end example
876
877 The following types of settings may be specified:
878
879 @itemize
880 @item
881 An @code{\override} command, but with the context name omitted
882
883 @lilypond[quote,verbatim]
884 \score {
885   \relative c'' {
886     a4^"Thicker stems" a a a
887     a4 a a\ff a
888   }
889   \layout {
890     \context {
891       \Staff
892       \override Stem.thickness = #4.0
893     }
894   }
895 }
896 @end lilypond
897
898 @item
899 Directly setting a context property
900
901 @lilypond[quote,verbatim]
902 \score {
903   \relative c'' {
904     a4^"Smaller font" a a a
905     a4 a a\ff a
906   }
907   \layout {
908     \context {
909       \Staff
910       fontSize = #-4
911     }
912   }
913 }
914 @end lilypond
915
916 @item
917 A predefined command such as @code{\dynamicUp} or a music
918 expression like @code{\accidentalStyle dodecaphonic}
919
920 @lilypond[quote,verbatim]
921 \score {
922   \relative c'' {
923     a4^"Dynamics above" a a a
924     a4 a a\ff a
925   }
926   \layout {
927     \context {
928       \Voice
929       \dynamicUp
930     }
931     \context {
932       \Staff
933       \accidentalStyle dodecaphonic
934     }
935   }
936 }
937 @end lilypond
938
939 @item
940 A user-defined variable containing a @code{\with} block; for details
941 of the @code{\with} block see
942 @ref{Changing just one specific context}.
943
944 @lilypond[quote,verbatim]
945 StaffDefaults = \with {
946   fontSize = #-4
947 }
948
949 \score {
950   \new Staff {
951     \relative c'' {
952       a4^"Smaller font" a a a
953       a4 a a a
954     }
955   }
956   \layout {
957     \context {
958       \Staff
959       \StaffDefaults
960     }
961   }
962 }
963 @end lilypond
964
965 @end itemize
966
967 Property-setting commands can be placed in a @code{\layout} block
968 without being enclosed in a @code{\context} block.  Such settings
969 are equivalent to including the same property-setting commands at
970 the start of every context of the type specified.  If no context
971 is specified @emph{every} bottom-level context is affected, see
972 @ref{Bottom-level contexts - voices}.  The syntax of a
973 property-setting command in a @code{\layout} block is the same as
974 the same command written in the music stream.
975
976 @lilypond[quote,verbatim]
977 \score {
978   \new Staff {
979     \relative c'' {
980       a4^"Smaller font" a a a
981       a4 a a a
982     }
983   }
984   \layout {
985     \accidentalStyle dodecaphonic
986     \set fontSize = #-4
987     \override Voice.Stem.thickness = #4.0
988   }
989 }
990 @end lilypond
991
992
993 @node Changing just one specific context
994 @unnumberedsubsubsec Changing just one specific context
995
996 @cindex \with
997 @funindex \with
998
999 The context properties of just one specific context instance can be
1000 changed in a @code{\with} block.  All other context instances of the
1001 same type retain the default settings built into LilyPond and modified
1002 by any @code{\layout} block within scope.  The @code{\with} block
1003 must be placed immediately after the @code{\new} @var{context-type}
1004 command:
1005
1006 @example
1007 \new Staff \with @{ [context settings for this context instance only] @}
1008 @{
1009   @dots{}
1010 @}
1011 @end example
1012
1013 Since such a @q{context modification} is specified inside of
1014 music, it will affect @emph{all} outputs (typesetting @emph{and}
1015 Midi) as opposed to changes within an output definition.
1016
1017 The following types of settings may be specified:
1018
1019 @itemize
1020 @item
1021 An @code{\override} command, but with the context name omitted
1022
1023 @lilypond[quote,verbatim]
1024 \score {
1025   \new Staff {
1026     \new Voice \with { \override Stem.thickness = #4.0 }
1027     {
1028       \relative c'' {
1029         a4^"Thick stems" a a a
1030         a4 a a a
1031       }
1032     }
1033   }
1034 }
1035 @end lilypond
1036
1037 @item
1038 Directly setting a context property
1039
1040 @lilypond[quote,verbatim]
1041 \score {
1042   <<
1043     \new Staff {
1044       \relative c'' {
1045         a4^"Default font" a a a
1046         a4 a a a
1047       }
1048     }
1049     \new Staff \with { fontSize = #-4 }
1050     {
1051       \relative c'' {
1052         a4^"Smaller font" a a a
1053         a4 a a a
1054       }
1055     }
1056   >>
1057 }
1058 @end lilypond
1059
1060 @item
1061 A predefined command such as @code{\dynamicUp}
1062
1063 @lilypond[quote,verbatim]
1064 \score {
1065   <<
1066     \new Staff {
1067       \new Voice {
1068         \relative c'' {
1069           a4^"Dynamics below" a a a
1070           a4 a a\ff a
1071         }
1072       }
1073     }
1074     \new Staff \with { \accidentalStyle dodecaphonic }
1075     {
1076       \new Voice \with { \dynamicUp }
1077       {
1078         \relative c'' {
1079           a4^"Dynamics above" a a a
1080           a4 a a\ff a
1081         }
1082       }
1083     }
1084   >>
1085 }
1086 @end lilypond
1087
1088 @end itemize
1089
1090 @node Order of precedence
1091 @unnumberedsubsubsec Order of precedence
1092
1093 The value of a property which applies at a particular time is
1094 determined as follows:
1095
1096 @itemize
1097 @item
1098 if an @code{\override} or @code{\set} command in the input stream is
1099 in effect that value is used,
1100
1101 @item
1102 otherwise the default value taken from a @code{\with} statement
1103 on the context initiation statement is used,
1104
1105 @item
1106 otherwise the default value taken from the most recent appropriate
1107 @code{\context} block in the @code{\layout} or @code{\midi} blocks
1108 is used,
1109
1110 @item
1111 otherwise the LilyPond built-in default is used.
1112 @end itemize
1113
1114 @seealso
1115 Learning Manual:
1116 @rlearning{Modifying context properties}.
1117
1118 Notation Reference:
1119 @ref{Contexts explained},
1120 @ref{Bottom-level contexts - voices},
1121 @ref{The set command},
1122 @ref{The override command},
1123 @ref{The layout block,,The @code{@bs{}layout} block}.
1124
1125
1126 @node Defining new contexts
1127 @subsection Defining new contexts
1128
1129 @cindex contexts, defining new
1130 @cindex engravers, including in contexts
1131
1132 @funindex \alias
1133 @funindex alias
1134 @funindex \name
1135 @funindex name
1136 @funindex \type
1137 @funindex type
1138 @funindex \consists
1139 @funindex consists
1140 @funindex \accepts
1141 @funindex accepts
1142 @funindex \denies
1143 @funindex denies
1144
1145 Specific contexts, like @code{Staff} and @code{Voice}, are made from
1146 simple building blocks.  It is possible to create new types of
1147 contexts with different combinations of engraver plug-ins.
1148
1149 The next example shows how to build a different type of
1150 @code{Voice} context from scratch.  It will be similar to
1151 @code{Voice}, but only prints centered slash note heads.  It can be used
1152 to indicate improvisation in jazz pieces,
1153
1154 @lilypond[quote,ragged-right]
1155 \layout { \context {
1156   \name ImproVoice
1157   \type "Engraver_group"
1158   \consists "Note_heads_engraver"
1159   \consists "Rhythmic_column_engraver"
1160   \consists "Text_engraver"
1161   \consists "Pitch_squash_engraver"
1162   squashedPosition = #0
1163   \override NoteHead.style = #'slash
1164   \hide Stem
1165   \alias Voice
1166 }
1167 \context { \Staff
1168   \accepts "ImproVoice"
1169 }}
1170
1171 \relative c'' {
1172   a4 d8 bes8 \new ImproVoice { c4^"ad lib" c
1173    c4 c^"undress" c_"while playing :)" c }
1174   a1
1175 }
1176 @end lilypond
1177
1178
1179 These settings are defined within a @code{\context} block inside a
1180 @code{\layout} block,
1181
1182 @example
1183 \layout @{
1184   \context @{
1185     @dots{}
1186   @}
1187 @}
1188 @end example
1189
1190 In the following discussion, the example input shown should go in place
1191 of the @dots{} in the previous fragment.
1192
1193 First it is necessary to define a name for the new context:
1194
1195 @example
1196 \name ImproVoice
1197 @end example
1198
1199 Since it is similar to the @code{Voice} context, we want commands that
1200 work in (existing) @code{Voice} contexts to continue working.  This is
1201 achieved by giving the new context an alias of @code{Voice},
1202
1203 @example
1204 \alias Voice
1205 @end example
1206
1207 The context will print notes and instructive texts, so we need to add
1208 the engravers which provide this functionality, plus the engraver which
1209 groups notes, stems and rests which occur at the same musical moment
1210 into columns,
1211
1212 @example
1213 \consists "Note_heads_engraver"
1214 \consists "Text_engraver"
1215 \consists "Rhythmic_column_engraver"
1216 @end example
1217
1218 The note heads should all be placed on the center line,
1219
1220 @example
1221 \consists "Pitch_squash_engraver"
1222 squashedPosition = #0
1223 @end example
1224
1225 The @code{Pitch_squash_engraver} modifies note heads (created
1226 by the @code{Note_heads_engraver}) and sets their vertical
1227 position to the value of @code{squashedPosition}, in this
1228 case@tie{}@code{0}, the center line.
1229
1230 The notes look like a slash, and have no stem,
1231
1232 @example
1233 \override NoteHead.style = #'slash
1234 \hide Stem
1235 @end example
1236
1237 All these plug-ins have to communicate under the control of the
1238 context.  The mechanisms with which contexts communicate are
1239 established by declaring the context @code{\type}.  Within a
1240 @code{\layout} block, most contexts will be of type
1241 @code{Engraver_group}.  Some special contexts and contexts in
1242 @code{\midi} blocks use other context types.  Copying and
1243 modifying an existing context definition will also fill in the
1244 type.  Since this example creates a definition from scratch, it
1245 needs to be specified explicitly.
1246
1247 @example
1248 \type "Engraver_group"
1249 @end example
1250
1251 Put together, we get
1252
1253 @example
1254 \context @{
1255   \name ImproVoice
1256   \type "Engraver_group"
1257   \consists "Note_heads_engraver"
1258   \consists "Text_engraver"
1259   \consists "Rhythmic_column_engraver"
1260   \consists "Pitch_squash_engraver"
1261   squashedPosition = #0
1262   \override NoteHead.style = #'slash
1263   \hide Stem
1264   \alias Voice
1265 @}
1266 @end example
1267
1268 @funindex \accepts
1269 Contexts form hierarchies.  We want to place the @code{ImproVoice}
1270 context within the @code{Staff} context, just like normal @code{Voice}
1271 contexts.  Therefore, we modify the @code{Staff} definition with the
1272 @code{\accepts} command,
1273
1274 @example
1275 \context @{
1276   \Staff
1277   \accepts ImproVoice
1278 @}
1279 @end example
1280
1281 @funindex \denies
1282 The opposite of @code{\accepts} is @code{\denies},
1283 which is sometimes needed when reusing existing context definitions.
1284
1285 Putting both into a @code{\layout} block, like
1286
1287 @example
1288 \layout @{
1289   \context @{
1290     \name ImproVoice
1291     @dots{}
1292   @}
1293   \context @{
1294     \Staff
1295     \accepts "ImproVoice"
1296   @}
1297 @}
1298 @end example
1299
1300 Then the output at the start of this subsection can be entered as
1301
1302 @example
1303 \relative c'' @{
1304   a4 d8 bes8
1305   \new ImproVoice @{
1306     c4^"ad lib" c
1307     c4 c^"undress"
1308     c c_"while playing :)"
1309   @}
1310   a1
1311 @}
1312 @end example
1313
1314 To complete this example, changes affecting the context hierarchy
1315 should be repeated in a @code{\midi} block so that Midi output
1316 depends on the same context relations.
1317
1318 @seealso
1319
1320 Internals Reference:
1321 @rinternals{Note_heads_engraver},
1322 @rinternals{Text_engraver},
1323 @rinternals{Rhythmic_column_engraver},
1324 @rinternals{Pitch_squash_engraver}.
1325
1326
1327 @node Context layout order
1328 @subsection Context layout order
1329
1330 @cindex contexts, layout order
1331 @funindex \accepts
1332 @funindex \denies
1333
1334 Contexts are normally positioned in a system from top to bottom
1335 in the order in which they are encountered in the input file.  When
1336 contexts are nested, the outer context will include inner nested
1337 contexts as specified in the input file, provided the inner contexts
1338 are included in the outer context's @qq{accepts} list.  Nested
1339 contexts which are not included in the outer context's @qq{accepts}
1340 list will be repositioned below the outer context rather than nested
1341 within it.
1342
1343 The @qq{accepts} list of a context can be changed with the
1344 @code{\accepts} or @code{\denies} commands.  @code{\accepts} adds a
1345 context to the @qq{accepts} list and @code{\denies} removes a context
1346 from the list.
1347
1348 For example, a square-braced staff group is not usually found within a
1349 curved-braced staff with connecting staff bars, and a @code{GrandStaff}
1350 does not accept a @code{StaffGroup} inside it by default.
1351
1352 @lilypond[verbatim,quote]
1353 \score {
1354   \new GrandStaff <<
1355     \new StaffGroup <<
1356       \new Staff { c'1 }
1357       \new Staff { d'1 }
1358     >>
1359     \new Staff { \set Staff.instrumentName = bottom f'1 }
1360   >>
1361 }
1362 @end lilypond
1363
1364 However, by using the @code{\accepts} command, @code{StaffGroup} can be
1365 added to the @code{GrandStaff} context:
1366
1367 @lilypond[verbatim,quote]
1368 \score {
1369   \new GrandStaff <<
1370     \new StaffGroup <<
1371       \new Staff { c'1 }
1372       \new Staff { d'1 }
1373     >>
1374     \new Staff { \set Staff.instrumentName = bottom f'1 }
1375   >>
1376   \layout {
1377     \context {
1378       \GrandStaff
1379       \accepts "StaffGroup"
1380     }
1381   }
1382 }
1383 @end lilypond
1384
1385 @code{\denies} is mainly used when a new context is being based on
1386 another, but the required nesting differs.  For example, the
1387 @code{VaticanaStaff} context is based on the @code{Staff} context, but
1388 with the @code{VaticanaVoice} context substituted for the @code{Voice}
1389 context in the @qq{accepts} list.
1390
1391 @cindex contexts, implicit
1392 @cindex implicit contexts
1393 @funindex \defaultchild
1394
1395 Note that a context will be silently created implicitly if a
1396 command is encountered when there is no suitable context available
1397 to contain it.
1398
1399 Within a context definition, the type of subcontext to be
1400 implicitly created is specified using @code{\defaultchild}.  A
1401 number of music events require a @samp{Bottom} context: when such
1402 an event is encountered, subcontexts are created recursively until
1403 reaching a context with no @samp{defaultchild} setting.
1404
1405 Implicit context creation can at times give rise to unexpected new
1406 staves or scores.  Using @code{\new} to create contexts explicitly
1407 avoids those problems.
1408
1409 @cindex alignAboveContext
1410 @cindex alignBelowContext
1411 @funindex alignAboveContext
1412 @funindex alignBelowContext
1413
1414 Sometimes a context is required to exist for just a brief period, a
1415 good example being the staff context for an ossia.  This is usually
1416 achieved by introducing the context definition at the appropriate
1417 place in parallel with corresponding section of the main music.
1418 By default, the temporary context will be placed below all the
1419 existing contexts.  To reposition it above the context called
1420 @qq{main}, it should be defined like this:
1421
1422 @example
1423 @code{\new Staff \with @{ alignAboveContext = #"main" @} }
1424 @end example
1425
1426 A similar situation arises when positioning a temporary lyrics
1427 context within a multi-staved layout such as a @code{ChoirStaff},
1428 for example, when adding a second verse to a repeated section.
1429 By default the temporary lyrics context will be placed beneath the
1430 lower staves.  By defining the temporary lyrics context with
1431 @code{alignBelowContext} it can be positioned correctly beneath
1432 the (named) lyrics context containing the first verse.
1433
1434 Examples showing this repositioning of temporary contexts can be
1435 found elsewhere --- see @rlearning{Nesting music expressions},
1436 @ref{Modifying single staves} and @ref{Techniques specific to lyrics}.
1437
1438 @seealso
1439 Learning Manual:
1440 @rlearning{Nesting music expressions}.
1441
1442 Notation Reference:
1443 @ref{Modifying single staves},
1444 @ref{Techniques specific to lyrics}.
1445
1446 Application Usage:
1447 @rprogram{An extra staff appears}.
1448
1449 Installed Files:
1450 @file{ly/engraver-init.ly}.
1451
1452
1453 @node Explaining the Internals Reference
1454 @section Explaining the Internals Reference
1455
1456 @menu
1457 * Navigating the program reference::
1458 * Layout interfaces::
1459 * Determining the grob property::
1460 * Naming conventions::
1461 @end menu
1462
1463 @node Navigating the program reference
1464 @subsection Navigating the program reference
1465
1466 @c TODO remove this (it's in the LM)
1467 @c Replace with more factual directions
1468
1469 Suppose we want to move the fingering indication in the fragment
1470 below:
1471
1472 @lilypond[quote,relative=2,verbatim]
1473 c-2
1474 @end lilypond
1475
1476 If you visit the documentation on fingering instructions (in
1477 @ref{Fingering instructions}), you will notice:
1478
1479 @quotation
1480 @strong{See also}
1481
1482 Internals Reference: @rinternals{Fingering}.
1483
1484 @end quotation
1485
1486
1487 @c  outdated info; probably will delete.
1488 @ignore
1489 This fragment points to two parts of the program reference: a page
1490 on @code{FingeringEvent} and one on @code{Fingering}.
1491
1492 The page on @code{FingeringEvent} describes the properties of the music
1493 expression for the input @w{@code{-2}}.  The page contains many links
1494 forward.  For example, it says
1495
1496 @quotation
1497 Accepted by: @rinternals{Fingering_engraver},
1498 @end quotation
1499
1500 @noindent
1501 That link brings us to the documentation for the Engraver, the
1502 plug-in, which says
1503
1504 @quotation
1505 This engraver creates the following layout objects: @rinternals{Fingering}.
1506 @end quotation
1507
1508 In other words, once the @code{FingeringEvent}s are interpreted, the
1509 @code{Fingering_engraver} plug-in will process them.
1510 @end ignore
1511
1512 @ignore
1513 @c  I can't figure out what this is supposed to mean.  -gp
1514
1515 The @code{Fingering_engraver} is also listed to create
1516 @rinternals{Fingering} objects,
1517
1518 @c  old info?  it doesn't make any sense to me with our current docs.
1519 This is also the
1520 second bit of information listed under @b{See also} in the Notation
1521 manual.
1522 @end ignore
1523
1524 @ifnothtml
1525 The programmer's reference is available as an HTML document.  It is
1526 highly recommended that you read it in HTML form, either online or
1527 by downloading the HTML documentation.  This section will be much more
1528 difficult to understand if you are using the
1529 PDF manual.
1530 @end ifnothtml
1531
1532 Follow the link to @rinternals{Fingering}.  At the top of the
1533 page, you will see
1534
1535 @quotation
1536 Fingering objects are created by: @rinternals{Fingering_engraver} and
1537 @rinternals{New_fingering_engraver}.
1538 @end quotation
1539
1540 By following related links inside the program reference, we can follow the
1541 flow of information within the program:
1542
1543 @itemize
1544
1545 @item @rinternals{Fingering}:
1546 @rinternals{Fingering} objects are created by:
1547 @rinternals{Fingering_engraver}
1548
1549 @item @rinternals{Fingering_engraver}:
1550 Music types accepted: @rinternals{fingering-event}
1551
1552 @item @rinternals{fingering-event}:
1553 Music event type @code{fingering-event} is in Music expressions named
1554 @rinternals{FingeringEvent}
1555 @end itemize
1556
1557 This path goes against the flow of information in the program: it
1558 starts from the output, and ends at the input event.  You could
1559 also start at an input event, and read with the flow of
1560 information, eventually ending up at the output object(s).
1561
1562 The program reference can also be browsed like a normal document.  It
1563 contains chapters on
1564 @ifhtml
1565 @rinternals{Music definitions},
1566 @end ifhtml
1567 @ifnothtml
1568 @code{Music definitions}
1569 @end ifnothtml
1570 on @rinternals{Translation}, and the @rinternals{Backend}.  Every
1571 chapter lists all the definitions used and all properties that may be
1572 tuned.
1573
1574
1575 @node Layout interfaces
1576 @subsection Layout interfaces
1577
1578 @cindex interface, layout
1579 @cindex layout interface
1580 @cindex grob
1581
1582 The HTML page that we found in the previous section describes the
1583 layout object called @rinternals{Fingering}.  Such an object is a
1584 symbol within the score.  It has properties that store numbers (like
1585 thicknesses and directions), but also pointers to related objects.  A
1586 layout object is also called a @emph{Grob}, which is short for Graphical
1587 Object.  For more details about Grobs, see @rinternals{grob-interface}.
1588
1589 The page for @code{Fingering} lists the definitions for the
1590 @code{Fingering} object.  For example, the page says
1591
1592 @quotation
1593 @code{padding} (dimension, in staff space):
1594
1595 @code{0.5}
1596 @end quotation
1597
1598 @noindent
1599 which means that the number will be kept at a distance of at least 0.5
1600 of the note head.
1601
1602
1603 Each layout object may have several functions as a notational or
1604 typographical element.  For example, the Fingering object
1605 has the following aspects
1606
1607 @itemize
1608 @item
1609 Its size is independent of the horizontal spacing, unlike slurs or beams.
1610
1611 @item
1612 It is a piece of text.  Granted, it is usually a very short text.
1613
1614 @item
1615 That piece of text is typeset with a font, unlike slurs or beams.
1616
1617 @item
1618 Horizontally, the center of the symbol should be aligned to the
1619 center of the note head.
1620
1621 @item
1622 Vertically, the symbol is placed next to the note and the staff.
1623
1624 @item
1625 The vertical position is also coordinated with other superscript
1626 and subscript symbols.
1627 @end itemize
1628
1629 Each of these aspects is captured in so-called @emph{interface}s,
1630 which are listed on the @rinternals{Fingering} page at the bottom
1631
1632 @quotation
1633 This object supports the following interfaces:
1634 @rinternals{item-interface},
1635 @rinternals{self-alignment-interface},
1636 @rinternals{side-position-interface}, @rinternals{text-interface},
1637 @rinternals{text-script-interface}, @rinternals{font-interface},
1638 @rinternals{finger-interface}, and @rinternals{grob-interface}.
1639 @end quotation
1640
1641 Clicking any of the links will take you to the page of the respective
1642 object interface.  Each interface has a number of properties.  Some of
1643 them are not user-serviceable (@q{Internal properties}), but others
1644 can be modified.
1645
1646 We have been talking of @emph{the} @code{Fingering} object, but actually it
1647 does not amount to much.  The initialization file (see
1648 @rlearning{Other sources of information})
1649 @file{scm/define-grobs.scm} shows the soul of the @q{object},
1650
1651 @example
1652 (Fingering
1653   . ((padding . 0.5)
1654      (avoid-slur . around)
1655      (slur-padding . 0.2)
1656      (staff-padding . 0.5)
1657      (self-alignment-X . 0)
1658      (self-alignment-Y . 0)
1659      (script-priority . 100)
1660      (stencil . ,ly:text-interface::print)
1661      (direction . ,ly:script-interface::calc-direction)
1662      (font-encoding . fetaText)
1663      (font-size . -5)           ; don't overlap when next to heads.
1664      (meta . ((class . Item)
1665      (interfaces . (finger-interface
1666                     font-interface
1667                     text-script-interface
1668                     text-interface
1669                     side-position-interface
1670                     self-alignment-interface
1671                     item-interface))))))
1672 @end example
1673
1674 @noindent
1675 As you can see, the @code{Fingering} object is nothing more than a
1676 bunch of variable settings, and the webpage in the Internals Reference
1677 is directly generated from this definition.
1678
1679
1680 @node Determining the grob property
1681 @subsection Determining the grob property
1682
1683 @c TODO remove this (it's in the LM)
1684 @c Replace with more factual directions
1685
1686 Recall that we wanted to change the position of the @b{2} in
1687
1688 @lilypond[quote,relative=2,verbatim]
1689 c-2
1690 @end lilypond
1691
1692 Since the @b{2} is vertically positioned next to its note, we have to
1693 meddle with the interface associated with this positioning.  This is
1694 done using @code{side-position-interface}.  The page for this interface
1695 says
1696
1697 @quotation
1698 @code{side-position-interface}
1699
1700 Position a victim object (this one) next to other objects (the
1701 support).  The property @code{direction} signifies where to put the
1702 victim object relative to the support (left or right, up or down?)
1703 @end quotation
1704
1705 @cindex padding
1706 @noindent
1707 Below this description, the variable @code{padding} is described as
1708
1709 @quotation
1710 @table @code
1711 @item padding
1712 (dimension, in staff space)
1713
1714 Add this much extra space between objects that are next to each other.
1715 @end table
1716 @end quotation
1717
1718 By increasing the value of @code{padding}, we can move the
1719 fingering away from the note head.  The following command inserts
1720 3 staff spaces of white
1721 between the note and the fingering:
1722 @example
1723 \once \override Voice.Fingering.padding = #3
1724 @end example
1725
1726 Inserting this command before the Fingering object is created,
1727 i.e., before @code{c2}, yields the following result:
1728
1729 @lilypond[quote,relative=2,verbatim]
1730 \once \override Voice.Fingering.padding = #3
1731 c-2
1732 @end lilypond
1733
1734
1735 In this case, the context for this tweak is @code{Voice}.  This
1736 fact can also be deduced from the program reference, for the page for
1737 the @rinternals{Fingering_engraver} plug-in says
1738
1739 @quotation
1740 Fingering_engraver is part of contexts: @dots{} @rinternals{Voice}
1741 @end quotation
1742
1743
1744 @node Naming conventions
1745 @subsection Naming conventions
1746
1747 Another thing that is needed, is an overview of the various naming
1748 conventions:
1749
1750 @itemize
1751 @item scheme functions: lowercase-with-hyphens (incl. one-word
1752 names)
1753 @item scheme functions: ly:plus-scheme-style
1754 @item music events, music classes and music properties:
1755 as-scheme-functions
1756 @item Grob interfaces: scheme-style
1757 @item backend properties: scheme-style (but X and Y!)
1758 @item contexts (and MusicExpressions and grobs): Capitalized or
1759 CamelCase
1760 @item context properties: lowercaseFollowedByCamelCase
1761 @item engravers:
1762 Capitalized_followed_by_lowercase_and_with_underscores
1763 @end itemize
1764
1765 Questions to be answered:
1766 @itemize
1767 @item Which of these are conventions and which are rules?
1768 @item Which are rules of the underlying language, and which are
1769 LP-specific?
1770 @end itemize
1771
1772 @node Modifying properties
1773 @section Modifying properties
1774
1775 @c TODO change the menu and subsection node names to use
1776 @c backslash once the new macro to handle the refs
1777 @c is available.  Need to find and change all refs at
1778 @c the same time. -td
1779
1780 @menu
1781 * Overview of modifying properties::
1782 * The set command::
1783 * The override command::
1784 * The tweak command::
1785 * set versus override::
1786 * Modifying alists::
1787 @end menu
1788
1789
1790 @node Overview of modifying properties
1791 @subsection Overview of modifying properties
1792
1793 Each context is responsible for creating certain types of graphical
1794 objects.  The settings used for printing these objects are also stored by
1795 context.  By changing these settings, the appearance of objects can be
1796 altered.
1797
1798 There are two different kinds of properties stored in contexts:
1799 context properties and grob properties.  Context properties are
1800 properties that apply to the context as a whole and control
1801 how the context itself is displayed.  In contrast, grob properties
1802 apply to specific grob types that will be displayed in the context.
1803
1804 The @code{\set} and @code{\unset} commands are used to change values
1805 for context properties.  The @code{\override} and @code{\revert}
1806 commands are used to change values for grob properties.
1807
1808 @ignore
1809 The syntax for this is
1810
1811 @example
1812 \override @var{context}.@var{name} #'@var{property} = #@var{value}
1813 @end example
1814
1815 Here @var{name} is the name of a graphical object, like
1816 @code{Stem} or @code{NoteHead}, and @var{property} is an internal
1817 variable of the formatting system (@q{grob property} or @q{layout
1818 property}).  The latter is a symbol, so it must be quoted.  The
1819 subsection @ref{Modifying properties}, explains what to fill in
1820 for @var{name}, @var{property}, and @var{value}.  Here we only
1821 discuss the functionality of this command.
1822
1823 The command
1824
1825 @verbatim
1826 \override Staff.Stem.thickness = #4.0
1827 @end verbatim
1828
1829 @noindent
1830 makes stems thicker (the default is 1.3, with staff line thickness as a
1831 unit).  Since the command specifies @code{Staff} as context, it only
1832 applies to the current staff.  Other staves will keep their normal
1833 appearance.  Here we see the command in action:
1834
1835 @lilypond[quote,verbatim,relative=2]
1836 c4
1837 \override Staff.Stem.thickness = #4.0
1838 c4
1839 c4
1840 c4
1841 @end lilypond
1842
1843 The @code{\override} command changes the definition of the @code{Stem}
1844 within the current @code{Staff}.  After the command is interpreted
1845 all stems are thickened.
1846
1847 Analogous to @code{\set}, the @var{context} argument may be left out,
1848 causing the default context @code{Voice} to be used.  Adding
1849 @code{\once} applies the change during one timestep only.
1850
1851 @lilypond[quote,verbatim,relative=2]
1852 c4
1853 \once \override Stem.thickness = #4.0
1854 c4
1855 c4
1856 @end lilypond
1857
1858 The @code{\override} must be done before the object is
1859 started.  Therefore, when altering @emph{Spanner} objects such as slurs
1860 or beams, the @code{\override} command must be executed at the moment
1861 when the object is created.  In this example,
1862
1863 @lilypond[quote,verbatim,relative=2]
1864 \override Slur.thickness = #3.0
1865 c8[( c
1866 \override Beam.beam-thickness = #0.6
1867 c8 c])
1868 @end lilypond
1869
1870 @noindent
1871 the slur is fatter but the beam is not.  This is because the command for
1872 @code{Beam} comes after the Beam is started, so it has no effect.
1873
1874 Analogous to @code{\unset}, the @code{\revert} command for a context
1875 undoes an @code{\override} command; like with @code{\unset}, it only
1876 affects settings that were made in the same context.  In other words, the
1877 @code{\revert} in the next example does not do anything.
1878
1879 @example
1880 \override Voice.Stem.thickness = #4.0
1881 \revert Staff.Stem.thickness
1882 @end example
1883
1884 Some tweakable options are called @q{subproperties} and reside inside
1885 properties.  To tweak those, use commands of the form
1886
1887 @c leave this as a long long
1888 @example
1889 \override @var{context}.@var{name} #'@var{property} #'@var{subproperty} = #@var{value}
1890 @end example
1891
1892 @noindent
1893 such as
1894
1895 @example
1896 \override Stem.details.beamed-lengths = #'(4 4 3)
1897 @end example
1898
1899 @end ignore
1900
1901 @seealso
1902 Internals Reference:
1903 @rinternals{Backend},
1904 @rinternals{All layout objects},
1905 @rinternals{OverrideProperty},
1906 @rinternals{RevertProperty},
1907 @rinternals{PropertySet}.
1908
1909 @knownissues
1910 The back-end is not very strict in type-checking object properties.
1911 Cyclic references in Scheme values for properties can cause hangs
1912 or crashes, or both.
1913
1914
1915 @node The set command
1916 @subsection The @code{@bs{}set} command
1917
1918 @cindex properties
1919 @funindex \set
1920 @cindex changing properties
1921
1922 Each context has a set of @emph{properties}, variables contained
1923 in that context.  Context properties are changed with the @code{\set}
1924 command, which has the following syntax:
1925
1926 @example
1927 \set @var{context}.@var{property} = #@var{value}
1928 @end example
1929
1930 @var{value} is a Scheme object, which is why it must be preceded by
1931 the @code{#}@tie{}character.
1932
1933 Contexts properties are usually named in
1934 @code{studlyCaps}.  They mostly control the translation from
1935 music to notation, e.g. @code{localAlterations} (for determining
1936 whether to print accidentals), or @code{measurePosition} (for
1937 determining when to print a bar line).  Context properties can
1938 change value over time while interpreting a piece of music;
1939 @code{measurePosition} is an obvious example of
1940 this.  Context properties are modified with @code{\set}.
1941
1942 For example, multimeasure rests will be combined into a single bar
1943 if the context property @code{skipBars} is set to @code{#t}:
1944
1945 @lilypond[quote,verbatim,relative=2]
1946 R1*2
1947 \set Score.skipBars = ##t
1948 R1*2
1949 @end lilypond
1950
1951 If the @var{context} argument is left out, then the property will be
1952 set in the current bottom context (typically @code{ChordNames},
1953 @code{Voice}, @code{TabVoice}, or @code{Lyrics}).
1954
1955 @lilypond[quote,verbatim,relative=2]
1956 \set Score.autoBeaming = ##f
1957 <<
1958   {
1959     e8 e e e
1960     \set autoBeaming = ##t
1961     e8 e e e
1962   } \\ {
1963     c8 c c c c8 c c c
1964   }
1965 >>
1966 @end lilypond
1967
1968 The change is applied @q{on-the-fly}, during the music, so that the
1969 setting only affects the second group of eighth notes.
1970
1971 Note that the bottom-most context does not always contain the property
1972 that you wish to change -- for example, attempting to set the
1973 @code{skipBars} property of the default bottom context, in this case
1974 @code{Voice}, will have no effect, because skipBars is a property of
1975 the @code{Score} context.
1976
1977 @lilypond[quote,verbatim,relative=2]
1978 R1*2
1979 \set skipBars = ##t
1980 R1*2
1981 @end lilypond
1982
1983 Contexts are hierarchical, so if an enclosing context was specified, for
1984 example @code{Staff}, then the change would also apply to all
1985 @code{Voice}s in the current staff.
1986
1987 @funindex \unset
1988
1989 The @code{\unset} command:
1990
1991 @example
1992 \unset @var{context}.@var{property}
1993 @end example
1994
1995 @noindent
1996 is used to remove the definition of @var{property} from
1997 @var{context}.  This command removes
1998 the definition only if it is set in @var{context}.
1999 Properties that have been set in enclosing contexts will
2000 not be altered by an unset in an enclosed context:
2001
2002 @lilypond[quote,verbatim,relative=2]
2003 \set Score.autoBeaming = ##t
2004 <<
2005   {
2006     \unset autoBeaming
2007     e8 e e e
2008     \unset Score.autoBeaming
2009     e8 e e e
2010   } \\ {
2011     c8 c c c c8 c c c
2012   }
2013 >>
2014 @end lilypond
2015
2016 Like @code{\set}, the @var{context} argument does not have to be
2017 specified for a bottom context, so the two statements
2018
2019 @example
2020 \set Voice.autoBeaming = ##t
2021 \set autoBeaming = ##t
2022 @end example
2023
2024 @noindent
2025 are equivalent if the current bottom context is @code{Voice}.
2026
2027
2028 @cindex \once
2029 Preceding a @code{\set} command by @code{\once} makes the
2030 setting apply to only a single time-step:
2031
2032 @lilypond[quote,verbatim,relative=2]
2033 c4
2034 \once \set fontSize = #4.7
2035 c4
2036 c4
2037 @end lilypond
2038
2039 A full description of all available context properties is in the
2040 internals reference, see
2041 @ifhtml
2042 @rinternals{Tunable context properties}.
2043 @end ifhtml
2044 @ifnothtml
2045 Translation @expansion{} Tunable context properties.
2046 @end ifnothtml
2047
2048 @seealso
2049 Internals Reference:
2050 @rinternals{Tunable context properties}.
2051
2052
2053 @node The override command
2054 @subsection The @code{\override} command
2055
2056 @cindex grob properties
2057 @cindex properties, grob
2058 @funindex \override
2059
2060 There is a special type of context property: the grob
2061 description.  Grob descriptions are named in @code{StudlyCaps}
2062 (starting with capital letters).  They contain the
2063 @q{default settings} for a particular kind of grob as an
2064 association list.  See @file{scm/define-grobs.scm}
2065 to see the settings for each grob description.  Grob descriptions
2066 are modified with @code{\override}.
2067
2068 The syntax for the @code{\override} command is
2069
2070 @example
2071 \override [@var{context}.]@var{GrobName}.@var{property} = #@var{value}
2072 @end example
2073
2074 For example, we can increase the thickness of a note stem by
2075 overriding the @code{thickness} property of the @code{Stem}
2076 object:
2077
2078 @lilypond[quote,verbatim,relative=2]
2079 c4 c
2080 \override Voice.Stem.thickness = #3.0
2081 c4 c
2082 @end lilypond
2083
2084 If no context is specified in an @code{\override}, the bottom
2085 context is used:
2086
2087 @lilypond[quote,verbatim,relative=2]
2088 { \override Staff.Stem.thickness = #3.0
2089   <<
2090     {
2091       e4 e
2092       \override Stem.thickness = #0.5
2093       e4 e
2094     } \\ {
2095       c4 c c c
2096     }
2097   >>
2098 }
2099 @end lilypond
2100
2101 Some tweakable options are called @q{subproperties} and reside inside
2102 properties.  To tweak those, use commands in the form
2103
2104 @example
2105 \override Stem.details.beamed-lengths = #'(4 4 3)
2106 @end example
2107
2108 or to modify the ends of spanners, use a form like these
2109
2110 @example
2111 \override TextSpanner.bound-details.left.text = #"left text"
2112 \override TextSpanner.bound-details.right.text = #"right text"
2113 @end example
2114
2115 @funindex \revert
2116 @cindex reverting overrides
2117 @cindex overrides, reverting
2118
2119 The effects of @code{\override} can be undone by @code{\revert}.
2120
2121 The syntax for the @code{\revert} command is
2122
2123 @example
2124 \revert [@var{context}.]@var{GrobName}.@var{property}
2125 @end example
2126
2127 For example,
2128
2129 @lilypond[quote,verbatim,relative=2]
2130 c4
2131 \override Voice.Stem.thickness = #3.0
2132 c4 c
2133 \revert Voice.Stem.thickness
2134 c4
2135 @end lilypond
2136
2137 The effects of @code{\override} and @code{\revert} apply to all
2138 grobs in the affected context from the current time forward:
2139
2140 @lilypond[quote,verbatim,relative=2]
2141 {
2142   <<
2143     {
2144       e4
2145       \override Staff.Stem.thickness = #3.0
2146       e4 e e
2147     } \\ {
2148       c4 c c
2149       \revert Staff.Stem.thickness
2150       c4
2151     }
2152   >>
2153 }
2154 @end lilypond
2155
2156 @funindex \once
2157 @cindex overriding for only one moment
2158
2159 @code{\once} can be used with @code{\override}
2160 to affect only the current time step:
2161
2162 @lilypond[quote,verbatim,relative=2]
2163 {
2164   <<
2165     {
2166       \override Stem.thickness = #3.0
2167       e4 e e e
2168     } \\ {
2169       c4
2170       \once \override Stem.thickness = #3.0
2171       c4 c c
2172     }
2173   >>
2174 }
2175 @end lilypond
2176
2177
2178 @ignore
2179 Commands which change output generally look like
2180
2181 @example
2182 \override Voice.Stem.thickness = #3.0
2183 @end example
2184
2185 @noindent
2186 To construct this tweak we must determine these bits of information:
2187
2188 @itemize
2189 @item the context: here @code{Voice}.
2190 @item the layout object: here @code{Stem}.
2191 @item the layout property: here @code{thickness}.
2192 @item a sensible value: here @code{3.0}.
2193 @end itemize
2194
2195 @cindex internal documentation
2196 @cindex finding graphical objects
2197 @cindex graphical object descriptions
2198 @cindex tweaking
2199 @funindex \override
2200 @cindex internal documentation
2201
2202 For many properties, regardless of the data type of the property, setting the
2203 property to false (@code{#f}) will result in turning it off, causing
2204 LilyPond to ignore that property entirely.  This is particularly useful for
2205 turning off grob properties which may otherwise be causing problems.
2206
2207 We demonstrate how to glean this information from the notation manual
2208 and the program reference.
2209 @end ignore
2210
2211 @seealso
2212 Internals Reference:
2213 @rinternals{Backend}
2214
2215
2216 @node The tweak command
2217 @subsection The @code{\tweak} command
2218
2219 @funindex \tweak
2220 @cindex tweaking
2221
2222 Changing grob properties
2223 with @code{\override} causes the changes to apply to all of the
2224 given grobs in the context at the moment the change applies.
2225 Sometimes, however, it is desirable to have changes apply to just
2226 one grob, rather than to all grobs in the affected context.  This is
2227 accomplished with the @code{\tweak} command, which has the following
2228 syntax:
2229
2230 @example
2231 \tweak [@var{layout-object}.]@var{grob-property} @var{value}
2232 @end example
2233
2234 Specifying @var{layout-object} is optional.
2235 The @code{\tweak} command applies to the music object that immediately
2236 follows @var{value} in the music stream.
2237
2238 @ignore
2239 In some cases, it is possible to take a short-cut for tuning
2240 graphical objects.  For objects that are created directly from
2241 an item in the input file, you can use the @code{\tweak} command.
2242 For example:
2243
2244 @lilypond[relative=2,verbatim,quote]
2245 < c
2246   \tweak color #red
2247   d
2248   g
2249   \tweak duration-log #1
2250   a
2251 > 4
2252 -\tweak padding #8
2253 -^
2254 @end lilypond
2255
2256
2257
2258 The main use of the @code{\tweak} command is to modify just
2259 one of a number of notation elements which start at the same musical
2260 moment, like the notes of a chord, or tuplet brackets which start
2261 at the same time.
2262
2263 The @code{\tweak} command sets a property in the following object
2264 directly, without requiring the grob name or context to be
2265 specified.  For this to work, it is necessary for the @code{\tweak}
2266 command to remain immediately adjacent to the object to which it is
2267 to apply after the input file has been converted to a music stream.
2268 This is often not the case, as many additional elements are inserted
2269 into the music stream implicitly.  For example, when a note which is
2270 not part of a chord is processed, LilyPond implicitly inserts a
2271 @code{ChordEvent} event before the note, so separating the tweak
2272 from the note.  However, if chord symbols are placed round the
2273 tweak and the note, the @code{\tweak} command comes after the
2274 @code{ChordEvent} in the music stream, so remaining adjacent to the
2275 note, and able to modify it.
2276
2277 So, this works:
2278
2279 @lilypond[relative=2,verbatim,quote]
2280 <\tweak color #red c>4
2281 @end lilypond
2282
2283 @noindent
2284 but this does not:
2285
2286 @lilypond[relative=2,verbatim,quote]
2287 \tweak color #red c4
2288 @end lilypond
2289
2290 @end ignore
2291
2292 For an introduction to the syntax and uses of the tweak command
2293 see @rlearning{Tweaking methods}.
2294
2295 When several similar items are placed at the same musical moment,
2296 the @code{\override} command cannot be used to modify just one of
2297 them -- this is where the @code{\tweak} command must be used.
2298 Items which may appear more than once at the same musical moment
2299 include the following:
2300
2301 @c TODO expand to include any further uses of \tweak
2302 @itemize
2303 @item note heads of notes inside a chord
2304 @item articulation signs on a single note
2305 @item ties between notes in a chord
2306 @item tuplet brackets starting at the same time
2307 @end itemize
2308
2309 @c TODO add examples of these
2310
2311 @cindex chord, modifying one note in
2312
2313 In this example, the color of one note head and the type of another
2314 note head are modified within a single chord:
2315
2316 @lilypond[relative=2,verbatim,quote]
2317 < c
2318   \tweak color #red
2319   d
2320   g
2321   \tweak duration-log #1
2322   a
2323 > 4
2324 @end lilypond
2325
2326 @code{\tweak} can be used to modify slurs:
2327
2328 @lilypond[verbatim,quote,relative=1]
2329 c-\tweak thickness #5 ( d e f)
2330 @end lilypond
2331
2332
2333 For the @code{\tweak} command to work, it must
2334 remain immediately adjacent to the object to which it is
2335 to apply after the input file has been converted to a music stream.
2336 Tweaking a whole chord does not do anything since its music event
2337 only acts as a container, and all layout objects are created from events
2338 inside of the @code{EventChord}:
2339
2340 @lilypond[relative=2,verbatim,quote]
2341 \tweak color #red c4
2342 \tweak color #red <c e>4
2343 <\tweak color #red c e>4
2344 @end lilypond
2345
2346 The simple @code{\tweak} command cannot be used to modify any object
2347 that is not directly created from the input.  In particular
2348 it will not affect stems, automatic
2349 beams or accidentals, since these are generated later by
2350 @code{NoteHead} layout objects rather than by music elements in the
2351 input stream.
2352
2353 Such indirectly created layout objects can be tweaked using the form
2354 of the @code{\tweak} command in which the grob name is specified
2355 explicitly:
2356
2357 @lilypond[relative=2,verbatim,quote]
2358 \tweak Stem.color #red
2359 \tweak Beam.color #green c8 e
2360 <c e \tweak Accidental.font-size #-3 ges>4
2361 @end lilypond
2362
2363 @code{\tweak} cannot be used to modify clefs or time
2364 signatures, since these become separated from any preceding
2365 @code{\tweak} command in the input stream by the automatic
2366 insertion of extra elements required to specify the context.
2367
2368 Several @code{\tweak} commands may be placed before a
2369 notational element -- all affect it:
2370
2371 @lilypond[verbatim,quote,relative=1]
2372 c
2373 -\tweak style #'dashed-line
2374 -\tweak dash-fraction #0.2
2375 -\tweak thickness #3
2376 -\tweak color #red
2377  \glissando
2378 f'
2379 @end lilypond
2380
2381 The music stream which is generated from a section of an input file,
2382 including any automatically inserted elements, may be examined,
2383 see @rextend{Displaying music expressions}.  This may be helpful in
2384 determining what may be modified by a @code{\tweak} command, or
2385 in determining how to adjust the input to make a @code{\tweak}
2386 apply.
2387
2388 @seealso
2389 Learning Manual:
2390 @rlearning{Tweaking methods}.
2391
2392 Extending LilyPond:
2393 @rextend{Displaying music expressions}.
2394
2395 @knownissues
2396
2397 @cindex tweaking control points
2398 @cindex control points, tweaking
2399
2400 The @code{\tweak} command cannot be used to modify the control
2401 points of just one of several ties in a chord, other than the first
2402 one encountered in the input file.
2403
2404 @node set versus override
2405 @subsection @code{\set} vs. @code{\override}
2406
2407 @c TODO Should't a bunch of that be explained earlier?
2408
2409 @funindex \set
2410 @funindex \override
2411 Both @code{\set} and @code{\override} manipulate properties
2412 associated with contexts.  In either case, properties heed the
2413 hierarchy of contexts: properties not set in a context itself show
2414 the values of the respective parent context.
2415
2416 Values and lifetime of context properties are dynamic and only
2417 available when music is being interpreted, @q{iterated}.  At the
2418 time of context creation, properties are initialized from the
2419 corresponding context definition and possible context
2420 modifications.  Afterwards, changes are achieved with
2421 property-setting commands in the music itself.
2422
2423 Now grob definitions are a special category of context properties.
2424 Since their structure, bookkeeping and use is different from
2425 ordinary context properties, they are accessed with a different
2426 set of commands, and treated separately in the documentation.
2427
2428 As opposed to plain context properties, grob definitions are
2429 subdivided into grob properties.  A @qq{grob} (graphical object)
2430 is usually created by an engraver at the time of interpreting a
2431 music expression and receives its initial properties from the
2432 current grob definition of the engraver's context.  The engraver
2433 (or other @q{backend} parts of LilyPond) may subsequently add or
2434 change properties to the grob, but that does not affect the
2435 context's grob definition.
2436
2437 What we call @q{grob properties} in the context of user-level
2438 tweaking are actually the properties of a context's grob
2439 definition.  In contrast to ordinary context properties, grob
2440 definitions have the bookkeeping required to keep track of its
2441 parts, the individual grob properties (and even subproperties of
2442 them) separately so that it is possible to define those parts in
2443 different contexts and have the overall grob definition at the
2444 time of grob creation be assembled from pieces provided in
2445 different contexts among the current context and its parents.
2446
2447 Grob definitions are manipulated using @code{\override} and
2448 @code{\revert} and have a name starting with a capital letter
2449 (like @samp{NoteHead}) whereas ordinary context properties are
2450 manipulated using @code{\set} and @code{\unset} and are named
2451 starting with a lowercase letter.
2452
2453 @cindex tweak, relation to @code{\override}
2454 @funindex \tweak
2455 @funindex \overrideProperty
2456 The special commands @code{\tweak} and @code{\overrideProperty}
2457 change grob properties bypassing context properties completely.
2458 Instead they catch grobs as they are being created and then
2459 directly set properties on them when they originate from a tweaked
2460 music event or are of a particular kind, respectively.
2461
2462 @node Modifying alists
2463 @subsection Modifying alists
2464
2465 Some user-configurable properties are internally represented as
2466 @emph{alists} (association lists), which store pairs of
2467 @emph{keys} and @emph{values}.  The structure of an alist is:
2468
2469 @example
2470 '((@var{key1} . @var{value1})
2471   (@var{key2} . @var{value2})
2472   (@var{key3} . @var{value3})
2473   @dots{})
2474 @end example
2475
2476 If an alist is a grob property or @code{\paper} variable, its keys
2477 can be modified individually without affecting other keys.
2478
2479 For example, to reduce the space between adjacent staves in a
2480 staff-group, use the @code{staff-staff-spacing} property of the
2481 @code{StaffGrouper} grob.  The property is an alist with four
2482 keys: @code{basic-distance}, @code{minimum-distance},
2483 @code{padding}, and @code{stretchability}.  The standard settings
2484 for this property are listed in the @qq{Backend} section of the
2485 Internals Reference (see @rinternals{StaffGrouper}):
2486
2487 @example
2488 '((basic-distance . 9)
2489   (minimum-distance . 7)
2490   (padding . 1)
2491   (stretchability . 5))
2492 @end example
2493
2494 One way to bring the staves closer together is by reducing the
2495 value of the @code{basic-distance} key (@code{9}) to match the
2496 value of @code{minimum-distance} (@code{7}).  To modify a single
2497 key individually, use a @emph{nested declaration}:
2498
2499 @lilypond[quote,verbatim]
2500 % default space between staves
2501 \new PianoStaff <<
2502   \new Staff { \clef treble c''1 }
2503   \new Staff { \clef bass   c1   }
2504 >>
2505
2506 % reduced space between staves
2507 \new PianoStaff \with {
2508   % this is the nested declaration
2509   \override StaffGrouper.staff-staff-spacing.basic-distance = #7
2510 } <<
2511   \new Staff { \clef treble c''1 }
2512   \new Staff { \clef bass   c1   }
2513 >>
2514 @end lilypond
2515
2516 Using a nested declaration will update the specified key (such as
2517 @code{basic-distance} in the above example) without altering any
2518 other keys already set for the same property.
2519
2520 Now suppose we want the staves to be as close as possible without
2521 overlapping.  The simplest way to do this is to set all four alist
2522 keys to zero.  However, it is not necessary to enter four nested
2523 declarations, one for each key.  Instead, the property can be
2524 completely re-defined with one declaration, as an alist:
2525
2526 @lilypond[quote,verbatim]
2527 \new PianoStaff \with {
2528   \override StaffGrouper.staff-staff-spacing =
2529     #'((basic-distance . 0)
2530        (minimum-distance . 0)
2531        (padding . 0)
2532        (stretchability . 0))
2533 } <<
2534   \new Staff { \clef treble c''1 }
2535   \new Staff { \clef bass   c1   }
2536 >>
2537 @end lilypond
2538
2539 Note that any keys not explicitly listed in the alist definition
2540 will be reset to their @emph{default-when-unset} values.  In the
2541 case of @code{staff-staff-spacing}, any unset key-values would be
2542 reset to zero (except @code{stretchability}, which takes the value
2543 of @code{basic-distance} when unset).  Thus the following two
2544 declarations are equivalent:
2545
2546 @example
2547 \override StaffGrouper.staff-staff-spacing =
2548   #'((basic-distance . 7))
2549
2550 \override StaffGrouper.staff-staff-spacing =
2551   #'((basic-distance . 7)
2552      (minimum-distance . 0)
2553      (padding . 0)
2554      (stretchability . 7))
2555 @end example
2556
2557 One (possibly unintended) consequence of this is the removal of
2558 any standard settings that are set in an initialization file and
2559 loaded each time an input file is compiled.  In the above example,
2560 the standard settings for @code{padding} and
2561 @code{minimum-distance} (defined in @file{scm/define-grobs.scm})
2562 are reset to their default-when-unset values (zero for both keys).
2563 Defining a property or variable as an alist (of any size) will
2564 always reset all unset key-values to their default-when-unset
2565 values.  Unless this is the intended result, it is safer to update
2566 key-values individually with a nested declaration.
2567
2568 @warning{Nested declarations will not work for context property
2569 alists (such as @code{beamExceptions}, @code{keyAlterations},
2570 @code{timeSignatureSettings}, etc.).  These properties can only be
2571 modified by completely re-defining them as alists.}
2572
2573
2574 @node Useful concepts and properties
2575 @section Useful concepts and properties
2576
2577
2578 @menu
2579 * Input modes::
2580 * Direction and placement::
2581 * Distances and measurements::
2582 * Dimensions::
2583 * Staff symbol properties::
2584 * Spanners::
2585 * Visibility of objects::
2586 * Line styles::
2587 * Rotating objects::
2588 @end menu
2589
2590 @node Input modes
2591 @subsection Input modes
2592
2593 The way in which the notation contained within an input file is
2594 interpreted is determined by the current input mode.
2595
2596 @subsubsubheading Chord mode
2597
2598 This is activated with the @code{\chordmode} command, and causes
2599 input to be interpreted with the syntax of chord notation, see
2600 @ref{Chord notation}.  Chords are rendered as notes on a staff.
2601
2602 Chord mode is also activated with the @code{\chords} command.
2603 This also creates a new @code{ChordNames} context and
2604 causes the following input to be interpreted with the syntax of
2605 chord notation and rendered as chord names in the @code{ChordNames}
2606 context, see @ref{Printing chord names}.
2607
2608 @subsubsubheading Drum mode
2609
2610 This is activated with the @code{\drummode} command, and causes
2611 input to be interpreted with the syntax of drum notation, see
2612 @ref{Basic percussion notation}.
2613
2614 Drum mode is also activated with the @code{\drums} command.
2615 This also creates a new @code{DrumStaff} context and causes the
2616 following input to be interpreted with the syntax of drum notation
2617 and rendered as drum symbols on a drum staff, see
2618 @ref{Basic percussion notation}.
2619
2620 @subsubsubheading Figure mode
2621
2622 This is activated with the @code{\figuremode} command, and causes
2623 input to be interpreted with the syntax of figured bass, see
2624 @ref{Entering figured bass}.
2625
2626 Figure mode is also activated with the @code{\figures} command.
2627 This also creates a new @code{FiguredBass} context and causes the
2628 following input to be interpreted with the figured bass syntax
2629 and rendered as figured bass symbols in the @code{FiguredBass}
2630 context, see @ref{Introduction to figured bass}.
2631
2632 @subsubsubheading Fret and tab modes
2633
2634 There are no special input modes for entering fret and tab symbols.
2635
2636 To create tab diagrams, enter notes or chords in note mode and
2637 render them in a @code{TabStaff} context, see
2638 @ref{Default tablatures}.
2639
2640 To create fret diagrams above a staff, you have two choices.
2641 You can either use the @code{FretBoards} context (see
2642 @ref{Automatic fret diagrams} or you can enter them as a markup
2643 above the notes using the @code{\fret-diagram} command (see
2644 @ref{Fret diagram markups}).
2645
2646 @subsubsubheading Lyrics mode
2647
2648 This is activated with the @code{\lyricmode} command, and causes
2649 input to be interpreted as lyric syllables with optional durations
2650 and associated lyric modifiers, see @ref{Vocal music}.
2651
2652 Lyric mode is also activated with the @code{\addlyrics} command.
2653 This also creates a new @code{Lyrics} context and an implicit
2654 @code{\lyricsto} command which associates the following lyrics
2655 with the preceding music.
2656
2657 @subsubsubheading Markup mode
2658
2659 This is activated with the @code{\markup} command, and causes
2660 input to be interpreted with the syntax of markup, see
2661 @ref{Text markup commands}.
2662
2663 @subsubsubheading Note mode
2664
2665 This is the default mode or it may be activated with the
2666 @code{\notemode} command.  Input is interpreted as pitches,
2667 durations, markup, etc and typeset as musical notation on a staff.
2668
2669 It is not normally necessary to specify note mode explicitly, but
2670 it may be useful to do so in certain situations, for example if you
2671 are in lyric mode, chord mode or any other mode and want to insert
2672 something that only can be done with note mode syntax.
2673
2674
2675 @node Direction and placement
2676 @subsection Direction and placement
2677
2678 In typesetting music the direction and placement of many items is
2679 a matter of choice.  For example, the stems of notes can
2680 be directed up or down; lyrics, dynamics, and other expressive
2681 marks may be placed above or below the staff; text may be aligned
2682 left, right or center; etc.  Most of these choices may be left to
2683 be determined automatically by LilyPond, but in some cases it may
2684 be desirable to force a particular direction or placement.
2685
2686 @menu
2687 * Articulation direction indicators::
2688 * The direction property::
2689 @end menu
2690
2691 @node Articulation direction indicators
2692 @unnumberedsubsubsec Articulation direction indicators
2693
2694 By default some directions are always up or always down (e.g.
2695 dynamics or fermata), while other things can alternate between
2696 up or down based on the stem direction (like slurs or accents).
2697
2698 @c TODO Add table showing these
2699
2700 The default action may be overridden by prefixing the articulation
2701 by a @emph{direction indicator}.  Three direction indicators are
2702 available: @code{^} (meaning @qq{up}), @code{_} (meaning @qq{down})
2703 and @code{-} (meaning @qq{use default direction}).  The direction
2704 indicator can usually be omitted, in which case @code{-} is assumed,
2705 but a direction indicator is @strong{always} required before
2706
2707 @itemize
2708 @item @code{\tweak} commands
2709 @item @code{\markup} commands
2710 @item @code{\tag} commands
2711 @item string markups, e.g. -"string"
2712 @item fingering instructions, e.g. @w{@code{-1}}
2713 @item articulation shortcuts, e.g. @w{@code{-.}}, @w{@code{->}}, @w{@code{--}}
2714 @end itemize
2715
2716 Direction indicators affect only the next note:
2717
2718 @lilypond[verbatim,quote,relative=2]
2719 c2( c)
2720 c2_( c)
2721 c2( c)
2722 c2^( c)
2723 @end lilypond
2724
2725 @node The direction property
2726 @unnumberedsubsubsec The direction property
2727
2728 The position or direction of many layout objects is controlled by the
2729 @code{direction} property.
2730
2731 The value of the @code{direction} property may be set to @code{1},
2732 meaning @qq{up} or @qq{above}, or to @w{@code{-1}}, meaning @qq{down} or
2733 @qq{below}.  The symbols @code{UP} and @code{DOWN} may be used instead
2734 of @code{1} and @w{@code{-1}} respectively.  The default direction may
2735 be specified by setting @code{direction} to @code{0} or @code{CENTER}.
2736 Alternatively, in many cases predefined commands exist to specify the
2737 direction.  These are of the form
2738
2739 @example
2740 @code{\xxxUp}, @code{\xxxDown} or @code{\xxxNeutral}
2741 @end example
2742
2743 @noindent
2744 where @code{\xxxNeutral} means @qq{use the default} direction.
2745 See @rlearning{Within-staff objects}.
2746
2747 In a few cases, arpeggio for example, the value of the @code{direction}
2748 property can specify whether the object is to be placed to the right or
2749 left of the parent.  In this case @w{@code{-1}} or @code{LEFT} means
2750 @qq{to the left} and @code{1} or @code{RIGHT} means @qq{to the right}.
2751 @code{0} or @code{CENTER} means @qq{use the default} direction.
2752
2753 @ignore
2754 These all have side-axis set to #X
2755 AmbitusAccidental - direction has no effect
2756 Arpeggio - works
2757 StanzaNumber - not tried
2758 TrillPitchAccidental - not tried
2759 TrillPitchGroup - not tried
2760 @end ignore
2761
2762 These indications affect all notes until they are canceled.
2763
2764 @lilypond[verbatim,quote,relative=2]
2765 c2( c)
2766 \slurDown
2767 c2( c)
2768 c2( c)
2769 \slurNeutral
2770 c2( c)
2771 @end lilypond
2772
2773 In polyphonic music, it is generally better to specify an explicit
2774 @code{voice} than change an object's direction.  For more information.
2775 See @ref{Multiple voices}.
2776
2777 @seealso
2778 Learning Manual:
2779 @rlearning{Within-staff objects}.
2780
2781 Notation Reference:
2782 @ref{Multiple voices}.
2783
2784
2785 @node Distances and measurements
2786 @subsection Distances and measurements
2787
2788 @cindex distances, absolute
2789 @cindex distances, scaled
2790
2791 @funindex \mm
2792 @funindex \cm
2793 @funindex \in
2794 @funindex \pt
2795
2796 Distances in LilyPond are of two types: absolute and scaled.
2797
2798 Absolute distances are used for specifying margins, indents, and
2799 other page layout details, and are by default specified in
2800 millimeters.  Distances may be specified in other units by
2801 following the quantity by @code{\mm}, @code{\cm},
2802 @code{\in}@tie{}(inches), or @code{\pt}@tie{}(points, 1/72.27 of
2803 an inch).  Page layout distances can also be specified in scalable
2804 units (see the following paragraph) by appending
2805 @code{\staff-space} to the quantity.  Page layout is described in
2806 detail in @ref{Page layout}.
2807
2808 Scaled distances are always specified in units of the staff-space
2809 or, rarely, the half staff-space.  The staff-space is the distance
2810 between two adjacent staff lines.  The default value can be changed
2811 globally by setting the global staff size, or it can be overridden
2812 locally by changing the @code{staff-space} property of
2813 @code{StaffSymbol}.  Scaled distances automatically scale with any
2814 change to the either the global staff size or the
2815 @code{staff-space} property of @code{StaffSymbol}, but fonts scale
2816 automatically only with changes to the global staff size.
2817 The global staff size thus enables the overall size of a rendered
2818 score to be easily varied.  For the methods of setting the global
2819 staff size see @ref{Setting the staff size}.
2820
2821 @funindex magstep
2822
2823 If just a section of a score needs to be rendered to a different
2824 scale, for example an ossia section or a footnote, the global staff
2825 size cannot simply be changed as this would affect the entire score.
2826 In such cases the change in size is made by overriding both the
2827 @code{staff-space} property of @code{StaffSymbol} and the size of
2828 the fonts.  A Scheme function, @code{magstep}, is available to
2829 convert from a font size change to the equivalent change in
2830 @code{staff-space}.  For an explanation and an example of its use,
2831 see @rlearning{Length and thickness of objects}.
2832
2833 @seealso
2834 Learning Manual:
2835 @rlearning{Length and thickness of objects}.
2836
2837 Notation Reference:
2838 @ref{Page layout},
2839 @ref{Setting the staff size}.
2840
2841
2842 @node Dimensions
2843 @subsection Dimensions
2844
2845 @cindex dimensions
2846 @cindex bounding box
2847
2848 The dimensions of a graphical object specify the positions of the left
2849 and right edges and the bottom and top edges of the objects' bounding
2850 box as distances from the objects' reference point in units of
2851 staff-spaces.  These positions are usually coded as two Scheme pairs.
2852 For example, the text markup command @code{\with-dimensions} takes
2853 three arguments, the first two of which are a Scheme pair giving the
2854 left and right edge positions and a Scheme pair giving the bottom and
2855 top edge positions:
2856
2857 @example
2858 \with-dimensions #'(-5 . 10) #'(-3 . 15) @var{arg}
2859 @end example
2860
2861 This specifies a bounding box for @var{arg} with its left edge at -5,
2862 its right edge at 10, its bottom edge at -3 and its top edge at 15,
2863 all measured from the objects' reference point in units of
2864 staff-spaces.
2865
2866 @seealso
2867 Notation Reference:
2868 @ref{Distances and measurements}.
2869
2870
2871 @node Staff symbol properties
2872 @subsection Staff symbol properties
2873
2874 @cindex adjusting staff symbol
2875 @cindex drawing staff symbol
2876 @cindex staff symbol, setting of
2877
2878 @c TODO Extend or remove this section.  See also NR 1.6.2 Staff symbol
2879 @c      Need to think of uses for these properties.  Eg 'line-positions
2880 @c      is used in a snippet to thicken centre line.
2881 @c      If retained, add @ref to here in 1.6.2  -td
2882
2883 The vertical position of staff lines and the number of staff lines
2884 can be defined at the same time.  As the following example shows,
2885 note positions are not influenced by the staff line positions.
2886
2887 @warning{The @code{'line-positions} property overrides the
2888 @code{'line-count} property.  The number of staff lines is
2889 implicitly defined by the number of elements in the list of values
2890 for @code{'line-positions}.}
2891
2892 @lilypond[verbatim,quote,relative=1]
2893 \new Staff \with {
2894   \override StaffSymbol.line-positions = #'(7 3 0 -4 -6 -7)
2895 }
2896 { a4 e' f b | d1 }
2897 @end lilypond
2898
2899 The width of a staff can be modified.  The units are staff
2900 spaces.  The spacing of objects inside the staff is not affected by
2901 this setting.
2902
2903 @lilypond[verbatim,quote,relative=1]
2904 \new Staff \with {
2905   \override StaffSymbol.width = #23
2906 }
2907 { a4 e' f b | d1 }
2908 @end lilypond
2909
2910
2911 @node Spanners
2912 @subsection Spanners
2913
2914 Many objects of musical notation extend over several notes or even
2915 several bars.  Examples are slurs, beams, tuplet brackets, volta
2916 repeat brackets, crescendi, trills, and glissandi.  Such objects
2917 are collectively called @qq{spanners}, and have special properties to control
2918 their appearance and behaviour.  Some of these properties are common
2919 to all spanners; others are restricted to a sub-set of the spanners.
2920
2921 All spanners support the @code{spanner-interface}.  A few, essentially
2922 those that draw a straight line between the two objects, support in
2923 addition the @code{line-spanner-interface}.
2924
2925 @menu
2926 * Using the spanner-interface::
2927 * Using the line-spanner-interface::
2928 @end menu
2929
2930 @node Using the spanner-interface
2931 @unnumberedsubsubsec Using the @code{spanner-interface}
2932
2933 This interface provides two properties that apply to several spanners.
2934
2935 @subsubsubheading The @code{minimum-length} property
2936
2937 The minimum length of the spanner is specified by the
2938 @code{minimum-length} property.  Increasing this usually has the
2939 necessary effect of increasing the spacing of the notes between the
2940 two end points.  However, this override has no effect on
2941 many spanners, as their length is determined by other considerations.
2942 A few examples where it is effective are shown below.
2943
2944 @ignore
2945 Works for:
2946   Tie
2947   MultiMeasureRest
2948   Hairpin
2949   Slur
2950   PhrasingSlur
2951
2952 Works as long as callback is made:
2953   Glissando
2954   Beam
2955
2956 Works not at all for:
2957   LyricSpace
2958   LyricHyphen
2959   LyricExtender
2960   TextSpanner
2961   System
2962
2963 @end ignore
2964
2965 @lilypond[verbatim,quote,relative=2]
2966 a~ a
2967 a
2968 % increase the length of the tie
2969 -\tweak minimum-length #5
2970 ~ a
2971 @end lilypond
2972
2973 @lilypond[verbatim,quote,relative=2]
2974 a1
2975 \compressFullBarRests
2976 R1*23
2977 % increase the length of the rest bar
2978 \once \override MultiMeasureRest.minimum-length = #20
2979 R1*23
2980 a1
2981 @end lilypond
2982
2983 @lilypond[verbatim,quote,relative=2]
2984 a \< a a a \!
2985 % increase the length of the hairpin
2986 \override Hairpin.minimum-length = #20
2987 a \< a a a \!
2988 @end lilypond
2989
2990 This override can also be used to increase the length of slurs and
2991 phrasing slurs:
2992
2993 @lilypond[verbatim,quote,relative=2]
2994 a( g)
2995 a
2996 -\tweak minimum-length #5
2997 ( g)
2998
2999 a\( g\)
3000 a
3001 -\tweak minimum-length #5
3002 \( g\)
3003 @end lilypond
3004
3005 For some layout objects, the @code{minimum-length} property becomes
3006 effective only if the @code{set-spacing-rods} procedure is called
3007 explicitly.  To do this, the @code{springs-and-rods} property should
3008 be set to @code{ly:spanner::set-spacing-rods}.  For example,
3009 the minimum length of a glissando has no effect unless the
3010 @code{springs-and-rods} property is set:
3011
3012 @lilypond[verbatim,quote,relative=1]
3013 % default
3014 e \glissando c'
3015
3016 % not effective alone
3017 \once \override Glissando.minimum-length = #20
3018 e, \glissando c'
3019
3020 % effective only when both overrides are present
3021 \once \override Glissando.minimum-length = #20
3022 \once \override Glissando.springs-and-rods = #ly:spanner::set-spacing-rods
3023 e, \glissando c'
3024 @end lilypond
3025
3026 The same is true of the @code{Beam} object:
3027
3028 @lilypond[verbatim,quote,relative=1]
3029 % not effective alone
3030 \once \override Beam.minimum-length = #20
3031 e8 e e e
3032
3033 % effective only when both overrides are present
3034 \once \override Beam.minimum-length = #20
3035 \once \override Beam.springs-and-rods = #ly:spanner::set-spacing-rods
3036 e8 e e e
3037 @end lilypond
3038
3039 @subsubsubheading The @code{to-barline} property
3040
3041 The second useful property of the @code{spanner-interface} is
3042 @code{to-barline}.  By default this is true, causing hairpins and
3043 other spanners which are terminated on the first note of a measure to
3044 end instead on the immediately preceding bar line.  If set to false,
3045 the spanner will extend beyond the bar line and end on the note
3046 itself:
3047
3048 @lilypond[verbatim,quote,relative=2]
3049 a \< a a a a \! a a a \break
3050 \override Hairpin.to-barline = ##f
3051 a \< a a a a \! a a a
3052 @end lilypond
3053
3054 This property is not effective for all spanners.  For example,
3055 setting it to @code{#t} has no effect on slurs or phrasing slurs
3056 or on other spanners for which terminating on the bar line would
3057 not be meaningful.
3058
3059 @node Using the line-spanner-interface
3060 @unnumberedsubsubsec Using the @code{line-spanner-interface}
3061
3062 Objects which support the @code{line-spanner-interface} include
3063
3064 @itemize
3065 @item @code{DynamicTextSpanner}
3066 @item @code{Glissando}
3067 @item @code{TextSpanner}
3068 @item @code{TrillSpanner}
3069 @item @code{VoiceFollower}
3070 @end itemize
3071
3072 The routine responsible for drawing the stencils for these spanners is
3073 @code{ly:line-spanner::print}.  This routine determines the
3074 exact location of the two end points and draws a line
3075 between them, in the style requested.  The locations of the two
3076 end points of the spanner are computed on-the-fly, but it is
3077 possible to override their Y-coordinates.  The
3078 properties which need to be specified are nested
3079 two levels down within the property hierarchy, but the syntax of
3080 the @code{\override} command is quite simple:
3081
3082 @lilypond[relative=2,quote,verbatim]
3083 e2 \glissando b
3084 \once \override Glissando.bound-details.left.Y = #3
3085 \once \override Glissando.bound-details.right.Y = #-2
3086 e2 \glissando b
3087 @end lilypond
3088
3089 The units for the @code{Y} property are @code{staff-space}s,
3090 with the center line of the staff being the zero point.
3091 For the glissando, this is the value for @code{Y} at the
3092 X-coordinate corresponding to the center point of each note head,
3093 if the line is imagined to be extended to there.
3094
3095 If @code{Y} is not set, the value is computed from the vertical
3096 position of the corresponding attachment point of the spanner.
3097
3098 In case of a line break, the values for the end points are
3099 specified by the @code{left-broken} and @code{right-broken}
3100 sub-lists of @code{bound-details}.  For example:
3101
3102 @lilypond[relative=2,ragged-right,verbatim,quote]
3103 \override Glissando.breakable = ##t
3104 \override Glissando.bound-details.right-broken.Y = #-3
3105 c1 \glissando \break
3106 f1
3107 @end lilypond
3108
3109
3110 A number of further properties of the @code{left} and
3111 @code{right} sub-lists of the @code{bound-details} property
3112 may be modified in the same way as @code{Y}:
3113
3114 @table @code
3115 @item Y
3116 This sets the Y-coordinate of the end point, in @code{staff-space}s
3117 offset from the staff center line.  By default, it is the center of
3118 the bound object, so a glissando points to the vertical center of
3119 the note head.
3120
3121 For horizontal spanners, such as text spanners and trill spanners,
3122 it is hardcoded to 0.
3123
3124 @item attach-dir
3125 This determines where the line starts and ends in the X-direction,
3126 relative to the bound object.  So, a value of @w{@code{-1}} (or
3127 @code{LEFT}) makes the line start/end at the left side of the note
3128 head it is attached to.
3129
3130 @item X
3131 This is the absolute X-coordinate of the end point.  It is usually
3132 computed on the fly, and overriding it has little useful effect.
3133
3134 @item stencil
3135 Line spanners may have symbols at the beginning or end, which is
3136 contained in this sub-property.  This is for internal use; it is
3137 recommended that @code{text} be used instead.
3138
3139 @item text
3140 This is a markup that is evaluated to yield the stencil.  It is used
3141 to put @i{cresc.}, @i{tr} and other text on horizontal spanners.
3142
3143 @lilypond[quote,ragged-right,relative=2,verbatim]
3144 \override TextSpanner.bound-details.left.text
3145    = \markup { \small \bold Slower }
3146 c2\startTextSpan b c a\stopTextSpan
3147 @end lilypond
3148
3149 @item stencil-align-dir-y
3150 @item stencil-offset
3151 Without setting one of these, the stencil is simply put at the
3152 end-point, centered on the line, as defined by the @code{X} and
3153 @code{Y} sub-properties.  Setting either @code{stencil-align-dir-y}
3154 or @code{stencil-offset} will move the symbol at the edge vertically
3155 relative to the end point of the line:
3156
3157 @lilypond[relative=1,quote,verbatim]
3158 \override TextSpanner.bound-details.left.stencil-align-dir-y = #-2
3159 \override TextSpanner.bound-details.right.stencil-align-dir-y = #UP
3160
3161 \override TextSpanner.bound-details.left.text = #"ggg"
3162 \override TextSpanner.bound-details.right.text = #"hhh"
3163 c4^\startTextSpan c c c \stopTextSpan
3164 @end lilypond
3165
3166 Note that negative values move the text @emph{up}, contrary to the
3167 effect that might be expected, as a value of @w{@code{-1}} or
3168 @code{DOWN} means align the @emph{bottom} edge of the text with
3169 the spanner line.  A value of @code{1} or @code{UP} aligns
3170 the top edge of the text with the spanner line.
3171
3172 @item arrow
3173 Setting this sub-property to @code{#t} produces an arrowhead at the
3174 end of the line.
3175
3176 @item padding
3177 This sub-property controls the space between the specified
3178 end point of the line and the actual end.  Without padding, a
3179 glissando would start and end in the center of each note head.
3180
3181 @end table
3182
3183 The music function @code{\endSpanners} terminates the spanner
3184 which starts on the immediately following note prematurely.  It
3185 is terminated after exactly one note, or at the following bar line
3186 if @code{to-barline} is true and a bar line occurs before the next
3187 note.
3188
3189 @lilypond[verbatim,quote,ragged-right,relative=2]
3190 \endSpanners
3191 c2 \startTextSpan c2 c2
3192 \endSpanners
3193 c2 \< c2 c2
3194 @end lilypond
3195
3196 When using @code{\endSpanners} it is not necessary to close
3197 \startTextSpan with \stopTextSpan, nor is it necessary to close
3198 hairpins with @code{\!}.
3199
3200 @seealso
3201 Internals Reference:
3202 @rinternals{TextSpanner},
3203 @rinternals{Glissando},
3204 @rinternals{VoiceFollower},
3205 @rinternals{TrillSpanner},
3206 @rinternals{line-spanner-interface}.
3207
3208
3209 @node Visibility of objects
3210 @subsection Visibility of objects
3211
3212 @cindex objects, visibility of
3213 @cindex grobs, visibility of
3214 @cindex visibility of objects
3215
3216 There are four main ways in which the visibility of layout objects
3217 can be controlled: their stencil can be removed, they can be made
3218 transparent, they can be colored white, or their
3219 @code{break-visibility} property can be overridden.  The first
3220 three apply to all layout objects; the last to just a few -- the
3221 @emph{breakable} objects.  The Learning Manual introduces these
3222 four techniques, see @rlearning{Visibility and color of objects}.
3223
3224 There are also a few other techniques which are specific to
3225 certain layout objects.  These are covered under Special
3226 considerations.
3227
3228 @menu
3229 * Removing the stencil::
3230 * Making objects transparent::
3231 * Painting objects white::
3232 * Using break-visibility::
3233 * Special considerations::
3234 @end menu
3235
3236
3237 @node Removing the stencil
3238 @unnumberedsubsubsec Removing the stencil
3239
3240 @cindex stencil, removing
3241 @funindex \omit
3242
3243 Every layout object has a stencil property.  By default this is set
3244 to the specific function which draws that object.  If this property
3245 is overridden to @code{#f} no function will be called and the object
3246 will not be drawn.  The default action can be recovered with
3247 @code{\revert}.
3248
3249 @lilypond[quote,verbatim,relative=1]
3250 a1 a
3251 \override Score.BarLine.stencil = ##f
3252 a a
3253 \revert Score.BarLine.stencil
3254 a a a
3255 @end lilypond
3256
3257 This rather common operation has a shortcut @code{\omit}:
3258
3259 @lilypond[quote,verbatim,relative=1]
3260 a1 a
3261 \omit Score.BarLine
3262 a a
3263 \undo \omit Score.BarLine
3264 a a a
3265 @end lilypond
3266
3267 @node Making objects transparent
3268 @unnumberedsubsubsec Making objects transparent
3269
3270 @cindex transparent, making objects
3271 @funindex \hide
3272
3273 Every layout object has a transparent property which by default is
3274 set to @code{#f}.  If set to @code{#t} the object still occupies
3275 space but is made invisible.
3276
3277 @lilypond[quote,verbatim,relative=2]
3278 a4 a
3279 \once \override NoteHead.transparent = ##t
3280 a a
3281 @end lilypond
3282
3283 This rather common operation has a shortcut @code{\hide}:
3284
3285 @lilypond[quote,verbatim,relative=2]
3286 a4 a
3287 \once \hide NoteHead
3288 a a
3289 @end lilypond
3290
3291 @node Painting objects white
3292 @unnumberedsubsubsec Painting objects white
3293
3294 @cindex objects, coloring
3295 @cindex coloring objects
3296 @cindex layers
3297 @cindex printing order
3298 @cindex overwriting objects
3299 @cindex objects, overwriting
3300 @cindex grobs, overwriting
3301
3302 Every layout object has a color property which by default is set
3303 to @code{black}.  If this is overridden to @code{white} the object
3304 will be indistinguishable from the white background.  However,
3305 if the object crosses other objects the color of the crossing
3306 points will be determined by the order in which they are drawn,
3307 and this may leave a ghostly image of the white object, as shown
3308 here:
3309
3310 @lilypond[quote,verbatim,relative=2]
3311 \override Staff.Clef.color = #white
3312 a1
3313 @end lilypond
3314
3315 This may be avoided by changing the order of printing the objects.
3316 All layout objects have a @code{layer} property which should be set
3317 to an integer.  Objects with the lowest value of @code{layer} are
3318 drawn first, then objects with progressively higher values are drawn,
3319 so objects with higher values overwrite objects with lower values.
3320 By default most objects are assigned a @code{layer} value of
3321 @code{1}, although a few objects, including @code{StaffSymbol} and
3322 @code{BarLine}, are assigned a value of @code{0}.  The order of
3323 printing objects with the same value of @code{layer} is indeterminate.
3324
3325 In the example above the white clef, with a default @code{layer}
3326 value of @code{1}, is drawn after the staff lines (default
3327 @code{layer} value @code{0}), so overwriting them.  To change this,
3328 the @code{Clef} object must be given in a lower value of
3329 @code{layer}, say @w{@code{-1}}, so that it is drawn earlier:
3330
3331 @lilypond[quote,verbatim,relative=2]
3332 \override Staff.Clef.color = #white
3333 \override Staff.Clef.layer = #-1
3334 a1
3335 @end lilypond
3336
3337 @node Using break-visibility
3338 @unnumberedsubsubsec Using break-visibility
3339
3340 @c TODO Add making other objects breakable
3341
3342 @cindex break-visibility
3343
3344 Most layout objects are printed only once, but some like
3345 bar lines, clefs, time signatures and key signatures, may need
3346 to be printed twice when a line break occurs -- once at the end
3347 of the line and again at the start of the next line.  Such
3348 objects are called @emph{breakable}, and have a property, the
3349 @code{break-visibility} property to control their visibility
3350 at the three positions in which they may appear -- at the
3351 start of a line, within a line if they are changed, and at the
3352 end of a line if a change takes place there.
3353
3354 For example, the time signature
3355 by default will be printed at the start of the first line, but
3356 nowhere else unless it changes, when it will be printed at the
3357 point at which the change occurs.  If this change occurs at the
3358 end of a line the new time signature will be printed at the start
3359 of the next line and a cautionary time signature will be printed
3360 at the end of the previous line as well.
3361
3362 This behaviour is controlled by the @code{break-visibility}
3363 property, which is explained in
3364 @c Leave this ref on a newline - formats incorrectly otherwise -td
3365 @rlearning{Visibility and color of objects}.  This property takes
3366 a vector of three booleans which, in order, determine whether the
3367 object is printed at the end of, within the body of, or at the
3368 beginning of a line.  Or to be more precise, before a line break,
3369 where there is no line break, or after a line break.
3370
3371 Alternatively, these eight combinations may be specified
3372 by pre-defined functions, defined in @file{scm/output-lib.scm},
3373 where the last three columns indicate whether the layout objects
3374 will be visible in the positions shown at the head of the columns:
3375
3376 @multitable {@code{begin-of-line-invisible}} {@code{#(#t #t #t)}} {Before} {At no} {After}
3377 @headitem Function                   @tab Vector                 @tab Before @tab At no    @tab After
3378 @headitem form                       @tab form                   @tab break  @tab break    @tab break
3379
3380 @item @code{all-visible}             @tab @code{#(#t #t #t)}     @tab yes    @tab yes      @tab yes
3381 @item @code{begin-of-line-visible}   @tab @code{#(#f #f #t)}     @tab no     @tab no       @tab yes
3382 @item @code{center-visible}          @tab @code{#(#f #t #f)}     @tab no     @tab yes      @tab no
3383 @item @code{end-of-line-visible}     @tab @code{#(#t #f #f)}     @tab yes    @tab no       @tab no
3384 @item @code{begin-of-line-invisible} @tab @code{#(#t #t #f)}     @tab yes    @tab yes      @tab no
3385 @item @code{center-invisible}        @tab @code{#(#t #f #t)}     @tab yes    @tab no       @tab yes
3386 @item @code{end-of-line-invisible}   @tab @code{#(#f #t #t)}     @tab no     @tab yes      @tab yes
3387 @item @code{all-invisible}           @tab @code{#(#f #f #f)}     @tab no     @tab no       @tab no
3388 @end multitable
3389
3390 The default settings of @code{break-visibility} depend on the
3391 layout object.  The following table shows all the layout objects
3392 of interest which are affected by @code{break-visibility} and the
3393 default setting of this property:
3394
3395 @multitable @columnfractions .3 .3 .4
3396
3397 @headitem Layout object   @tab Usual context  @tab Default setting
3398
3399 @c omit Ambitus as it appears not to be affected by break-visibility -td
3400 @c @item @code{Ambitus}          @tab as specified   @tab @code{begin-of-line-visible}
3401 @item @code{BarLine}             @tab @code{Score}          @tab calculated
3402 @item @code{BarNumber}           @tab @code{Score}          @tab @code{begin-of-line-visible}
3403 @c omit the following item until it can be explained -td
3404 @c @item @code{BreakAlignGroup}  @tab @code{Score}          @tab calculated
3405 @item @code{BreathingSign}       @tab @code{Voice}          @tab @code{begin-of-line-invisible}
3406 @item @code{Clef}                @tab @code{Staff}          @tab @code{begin-of-line-visible}
3407 @item @code{Custos}              @tab @code{Staff}          @tab @code{end-of-line-visible}
3408 @item @code{DoublePercentRepeat} @tab @code{Voice}          @tab @code{begin-of-line-invisible}
3409 @item @code{KeyCancellation}     @tab @code{Staff}          @tab @code{begin-of-line-invisible}
3410 @item @code{KeySignature}        @tab @code{Staff}          @tab @code{begin-of-line-visible}
3411 @c omit LeftEdge until it can be explained -td
3412 @c @item @code{LeftEdge}         @tab @code{Score}          @tab @code{center-invisible}
3413 @item @code{ClefModifier}       @tab @code{Staff}          @tab @code{begin-of-line-visible}
3414 @item @code{RehearsalMark}       @tab @code{Score}          @tab @code{end-of-line-invisible}
3415 @item @code{TimeSignature}       @tab @code{Staff}          @tab @code{all-visible}
3416
3417 @end multitable
3418
3419 The example below shows the use of the vector form to control the
3420 visibility of bar lines:
3421
3422 @lilypond[quote,verbatim,relative=1,ragged-right]
3423 f4 g a b
3424 f4 g a b
3425 % Remove bar line at the end of the current line
3426 \once \override Score.BarLine.break-visibility = ##(#f #t #t)
3427 \break
3428 f4 g a b
3429 f4 g a b
3430 @end lilypond
3431
3432 Although all three components of the vector used to override
3433 @code{break-visibility} must be present, not all of them are
3434 effective with every layout object, and some combinations may
3435 even give errors.  The following limitations apply:
3436
3437 @itemize @bullet
3438 @item Bar lines cannot be printed at start of line.
3439 @item A bar number cannot be printed at the start of the first
3440 line unless it is set to be different from 1.
3441 @item Clef -- see below
3442 @item Double percent repeats are either all printed or all
3443 suppressed.  Use begin-of line-invisible to print and
3444 all-invisible to suppress.
3445 @item Key signature -- see below
3446 @item ClefModifier -- see below
3447 @end itemize
3448
3449 @node Special considerations
3450 @unnumberedsubsubsec Special considerations
3451
3452 @subsubsubheading Visibility following explicit changes
3453
3454 @cindex key signature, visibility following explicit change
3455 @cindex explicitKeySignatureVisibility
3456 @cindex clef, visibility following explicit change
3457 @cindex explicitClefVisibility
3458
3459 The @code{break-visibility} property controls the visibility of
3460 key signatures and changes of clef only at the start of lines,
3461 i.e. after a break.  It has no effect on the visibility of the
3462 key signature or clef following an explicit key change or an
3463 explicit clef change within or at the end of a line.  In the
3464 following example the key signature following the explicit change
3465 to B-flat major is still visible, even though @code{all-invisible}
3466 is set.
3467
3468 @lilypond[quote,verbatim,relative=1,ragged-right]
3469 \key g \major
3470 f4 g a b
3471 % Try to remove all key signatures
3472 \override Staff.KeySignature.break-visibility = #all-invisible
3473 \key bes \major
3474 f4 g a b
3475 \break
3476 f4 g a b
3477 f4 g a b
3478 @end lilypond
3479
3480 The visibility of such explicit key signature and clef changes is
3481 controlled by the @code{explicitKeySignatureVisibility} and
3482 @code{explicitClefVisibility} properties.  These are the equivalent
3483 of the @code{break-visibility} property and both take a vector of
3484 three booleans or the predefined functions listed above, exactly like
3485 @code{break-visibility}.  Both are properties of the Staff context,
3486 not the layout objects themselves, and so they are set using the
3487 @code{\set} command.  Both are set by default to @code{all-visible}.
3488 These properties control only the visibility of key signatures and
3489 clefs resulting from explicit changes and do not affect key
3490 signatures and clefs at the beginning of lines;
3491 @code{break-visibility} must still be overridden in the appropriate
3492 object to remove these.
3493
3494 @lilypond[quote,verbatim,relative=1,ragged-right]
3495 \key g \major
3496 f4 g a b
3497 \set Staff.explicitKeySignatureVisibility = #all-invisible
3498 \override Staff.KeySignature.break-visibility = #all-invisible
3499 \key bes \major
3500 f4 g a b \break
3501 f4 g a b
3502 f4 g a b
3503 @end lilypond
3504
3505 @subsubsubheading Visibility of cancelling accidentals
3506
3507 To remove the cancelling accidentals printed at an explicit key
3508 change, set the Staff context property @code{printKeyCancellation}
3509 to @code{#f}:
3510
3511 @lilypond[quote,verbatim,relative=1,ragged-right]
3512 \key g \major
3513 f4 g a b
3514 \set Staff.explicitKeySignatureVisibility = #all-invisible
3515 \set Staff.printKeyCancellation = ##f
3516 \override Staff.KeySignature.break-visibility = #all-invisible
3517 \key bes \major
3518 f4 g a b \break
3519 f4 g a b
3520 f4 g a b
3521 @end lilypond
3522
3523 With these overrides only the accidentals before the notes remain
3524 to indicate the change of key.
3525
3526 Note that when changing the key to C@tie{}major or A@tie{}minor
3527 the cancelling accidentals would be the @emph{only} indication of
3528 the key change.  In this case setting @code{printKeyCancellation} to
3529 @code{#f} has no effect:
3530
3531 @lilypond[quote,verbatim,relative=1,ragged-right]
3532 \key g \major
3533 f4 g a b
3534 \set Staff.explicitKeySignatureVisibility = #all-invisible
3535 \set Staff.printKeyCancellation = ##f
3536 \key c \major
3537 f4 g a b \break
3538 f4 g a b
3539 f4 g a b
3540 @end lilypond
3541
3542 To suppress the cancelling accidentals even when the key is
3543 changed to C@tie{}major or A@tie{}minor, override
3544 the visibility of the @code{KeyCancellation} grob instead:
3545
3546 @lilypond[quote,verbatim,relative=1,ragged-right]
3547 \key g \major
3548 f4 g a b
3549 \set Staff.explicitKeySignatureVisibility = #all-invisible
3550 \override Staff.KeyCancellation.break-visibility = #all-invisible
3551 \key c \major
3552 f4 g a b \break
3553 f4 g a b
3554 f4 g a b
3555 @end lilypond
3556
3557 @c TODO Add visibility of cautionary accidentals before notes
3558
3559 @subsubsubheading Automatic bars
3560
3561 @cindex automaticBars
3562 @cindex bar lines, suppressing
3563
3564 As a special case, the printing of bar lines can also be turned off
3565 by setting the @code{automaticBars} property in the Score context.
3566 If set to @code{#f}, bar lines will not be printed automatically;
3567 they must be explicitly created with a @code{\bar} command.  Unlike
3568 the @code{\cadenzaOn} predefined command, measures are still counted.
3569 Bar generation will resume according to that count if this property
3570 is later set to @code{#t}.  When set to @code{#f}, line breaks can
3571 occur only at explicit @code{\bar} commands.
3572
3573 @c TODO Add example
3574
3575 @subsubsubheading Transposed clefs
3576
3577 @cindex transposed clefs, visibility of
3578 @cindex visibility of transposed clefs
3579 @cindex clefs, visibility of transposition
3580
3581 The small transposition symbol on transposed clefs is produced by the
3582 @code{ClefModifier} layout object.  Its visibility is automatically
3583 inherited from the @code{Clef} object, so it is not necessary to apply
3584 any required @code{break-visibility} overrides to the @code{ClefModifier}
3585 layout objects to suppress transposition symbols for invisible clefs.
3586
3587 For explicit clef changes, the @code{explicitClefVisibility}
3588 property controls both the clef symbol and any transposition symbol
3589 associated with it.
3590
3591 @seealso
3592 Learning Manual:
3593 @rlearning{Visibility and color of objects}.
3594
3595
3596 @node Line styles
3597 @subsection Line styles
3598
3599 Some performance indications, e.g., @i{rallentando} and
3600 @i{accelerando} and @i{trills} are written as text and are
3601 extended over many measures with lines, sometimes dotted or wavy.
3602
3603 These all use the same routines as the glissando for drawing the
3604 texts and the lines, and tuning their behavior is therefore also
3605 done in the same way.  It is done with a spanner, and the routine
3606 responsible for drawing the spanners is
3607 @code{ly:line-spanner::print}.  This routine determines the
3608 exact location of the two @i{span points} and draws a line
3609 between them, in the style requested.
3610
3611 Here is an example showing the different line styles available,
3612 and how to tune them.
3613
3614 @lilypond[relative=2,ragged-right,verbatim,quote]
3615 d2 \glissando d'2
3616 \once \override Glissando.style = #'dashed-line
3617 d,2 \glissando d'2
3618 \override Glissando.style = #'dotted-line
3619 d,2 \glissando d'2
3620 \override Glissando.style = #'zigzag
3621 d,2 \glissando d'2
3622 \override Glissando.style = #'trill
3623 d,2 \glissando d'2
3624 @end lilypond
3625
3626 The locations of the end-points of the spanner are computed
3627 on-the-fly for every graphic object, but it is possible to
3628 override these:
3629
3630 @c TODO Complete
3631 @lilypond[relative=2,ragged-right,verbatim,quote]
3632 e2 \glissando f
3633 \once \override Glissando.bound-details.right.Y = #-2
3634 e2 \glissando f
3635 @end lilypond
3636
3637 The value for @code{Y} is set to @w{@code{-2}} for the right end
3638 point.  The left side may be similarly adjusted by specifying
3639 @code{left} instead of @code{right}.
3640
3641 If @code{Y} is not set, the value is computed from the vertical
3642 position of the left and right attachment points of the spanner.
3643
3644 Other adjustments of spanners are possible, for details, see
3645 @ref{Spanners}.
3646
3647 @node Rotating objects
3648 @subsection Rotating objects
3649
3650 Both layout objects and elements of markup text can be rotated by
3651 any angle about any point, but the method of doing so differs.
3652
3653 @menu
3654 * Rotating layout objects::
3655 * Rotating markup::
3656 @end menu
3657
3658 @node Rotating layout objects
3659 @unnumberedsubsubsec Rotating layout objects
3660
3661 @cindex rotating objects
3662 @cindex objects, rotating
3663
3664 All layout objects which support the @code{grob-interface} can be
3665 rotated by setting their @code{rotation} property.  This takes a
3666 list of three items: the angle of rotation counter-clockwise,
3667 and the x and y coordinates of the point relative to the object's
3668 reference point about which the rotation is to be performed.  The
3669 angle of rotation is specified in degrees and the coordinates in
3670 staff-spaces.
3671
3672 The angle of rotation and the coordinates of the rotation point must
3673 be determined by trial and error.
3674
3675 @cindex hairpins, angled
3676 @cindex angled hairpins
3677
3678 There are only a few situations where the rotation of layout
3679 objects is useful; the following example shows one situation where
3680 they may be:
3681
3682 @lilypond[quote,verbatim,relative=1]
3683 g4\< e' d' f\!
3684 \override Hairpin.rotation = #'(20 -1 0)
3685 g,,4\< e' d' f\!
3686 @end lilypond
3687
3688 @node Rotating markup
3689 @unnumberedsubsubsec Rotating markup
3690
3691 All markup text can be rotated to lie at any angle by prefixing it
3692 with the @code{\rotate} command.  The command takes two arguments:
3693 the angle of rotation in degrees counter-clockwise and the text to
3694 be rotated.  The extents of the text are not rotated: they take
3695 their values from the extremes of the x and y coordinates of the
3696 rotated text.  In the following example the
3697 @code{outside-staff-priority} property for text is set to @code{#f}
3698 to disable the automatic collision avoidance, which would push some
3699 of the text too high.
3700
3701 @lilypond[quote,verbatim,relative=1]
3702 \override TextScript.outside-staff-priority = ##f
3703 g4^\markup { \rotate #30 "a G" }
3704 b^\markup { \rotate #30 "a B" }
3705 des^\markup { \rotate #30 "a D-Flat" }
3706 fis^\markup { \rotate #30 "an F-Sharp" }
3707 @end lilypond
3708
3709 @node Advanced tweaks
3710 @section Advanced tweaks
3711
3712 This section discusses various approaches to fine tuning the
3713 appearance of the printed score.
3714
3715 @menu
3716 * Aligning objects::
3717 * Vertical grouping of grobs::
3718 * Modifying stencils::
3719 * Modifying shapes::
3720 * Modifying broken spanners::
3721 * Unpure-pure containers::
3722 @end menu
3723
3724 @seealso
3725 Learning Manual:
3726 @rlearning{Tweaking output},
3727 @rlearning{Other sources of information}.
3728
3729 Notation Reference:
3730 @ref{Explaining the Internals Reference},
3731 @ref{Modifying properties}.
3732
3733 Extending LilyPond:
3734 @rextend{Interfaces for programmers}.
3735
3736 Installed Files:
3737 @file{scm/define-grobs.scm}.
3738
3739 Snippets:
3740 @rlsr{Tweaks and overrides}.
3741
3742 Internals Reference:
3743 @rinternals{All layout objects}.
3744
3745
3746 @node Aligning objects
3747 @subsection Aligning objects
3748
3749 Graphical objects which support the @code{self-alignment-interface}
3750 and/or the @code{side-position-interface} can be aligned to a previously
3751 placed object in a variety of ways.  For a list of these objects, see
3752 @rinternals{self-alignment-interface} and @rinternals{side-position-interface}.
3753
3754 All graphical objects have a reference point, a horizontal extent and a
3755 vertical extent.  The horizontal extent is a pair of numbers
3756 giving the displacements from the reference point of the left and
3757 right edges, displacements to the left being negative.  The vertical
3758 extent is a pair of numbers giving the displacement from the reference
3759 point to the bottom and top edges, displacements down being negative.
3760
3761 An object's position on a staff is given by the values of the
3762 @code{X-offset} and @code{Y-offset} properties.  The value of
3763 @code{X-offset} gives the displacement from the X coordinate of
3764 the reference point of the parent object, and the value of
3765 @code{Y-offset} gives the displacement from the center line of the
3766 staff.  The values of @code{X-offset} and @code{Y-offset} may
3767 be set directly or may be set to be calculated by procedures in order
3768 to achieve alignment with the parent object.
3769
3770 @warning{Many objects have special positioning considerations which
3771 cause any setting of @code{X-offset} or @code{Y-offset} to be
3772 ignored or modified, even though the object supports the
3773 @code{self-alignment-interface}.  Overriding the @code{X-offset}
3774 or @code{Y-offset} properties to a fixed value causes the respective
3775 @code{self-alignment} property to be disregarded.}
3776
3777 For example, an accidental can be repositioned vertically by setting
3778 @code{Y-offset} but any changes to @code{X-offset} have no effect.
3779
3780 Rehearsal marks may be aligned with breakable objects such as bar
3781 lines, clef symbols, time signature symbols and key signatures.  There
3782 are special properties to be found in the @code{break-aligned-interface}
3783 for positioning rehearsal marks on such objects.
3784
3785 @seealso
3786 Notation Reference:
3787 @ref{Using the break-alignable-interface}.
3788
3789 Extending LilyPond:
3790 @rextend{Callback functions}.
3791
3792 @menu
3793 * Setting X-offset and Y-offset directly::
3794 * Using the side-position-interface::
3795 * Using the self-alignment-interface::
3796 * Using the break-alignable-interface::
3797 @end menu
3798
3799 @node Setting X-offset and Y-offset directly
3800 @unnumberedsubsubsec Setting @code{X-offset} and @code{Y-offset} directly
3801
3802 Numerical values may be given to the @code{X-offset} and @code{Y-offset}
3803 properties of many objects.  The following example shows three
3804 notes with the default fingering position and the positions with @code{X-offset}
3805 and @code{Y-offset} modified.
3806
3807 @lilypond[verbatim,quote,relative=2]
3808 a-3
3809 a
3810 -\tweak X-offset #0
3811 -\tweak Y-offset #0
3812 -3
3813 a
3814 -\tweak X-offset #-1
3815 -\tweak Y-offset #1
3816 -3
3817 @end lilypond
3818
3819 @c TODO write more
3820
3821 @node Using the side-position-interface
3822 @unnumberedsubsubsec Using the @code{side-position-interface}
3823
3824 An object which supports the @code{side-position-interface} can be
3825 placed next to its parent object so that
3826 the specified edges of the two objects touch.  The object may be
3827 placed above, below, to the right or to the left of the parent.
3828 The parent cannot be specified; it is determined by the order of
3829 elements in the input stream.  Most objects have the associated
3830 note head as their parent.
3831
3832 The values of the @code{side-axis} and @code{direction} properties
3833 determine where the object is to be placed, as follows:
3834
3835 @c TODO add an example of each to the table
3836
3837 @multitable @columnfractions .3 .3 .3
3838 @headitem @code{side-axis}  @tab @code{direction}  @tab
3839 @headitem property          @tab property          @tab Placement
3840
3841 @item     @code{0}          @tab @code{-1}         @tab left
3842 @item     @code{0}          @tab @code{1}          @tab right
3843 @item     @code{1}          @tab @code{-1}         @tab below
3844 @item     @code{1}          @tab @code{1}          @tab above
3845
3846 @end multitable
3847
3848 When @code{side-axis} is @code{0}, @code{X-offset} should be set to
3849 the procedure @code{ly:side-position-interface::x-aligned-side}.
3850 This procedure will return the correct value of @code{X-offset} to
3851 place the object to the left or right side of the parent according
3852 to value of @code{direction}.
3853
3854 When @code{side-axis} is @code{1}, @code{Y-offset} should be set to
3855 the procedure @code{ly:side-position-interface::y-aligned-side}.
3856 This procedure will return the correct value of @code{Y-offset} to
3857 place the object to the top or bottom of the parent according
3858 to value of @code{direction}.
3859
3860 @c TODO Add examples
3861
3862 @node Using the self-alignment-interface
3863 @unnumberedsubsubsec Using the @code{self-alignment-interface}
3864
3865 @subsubsubheading Self-aligning objects horizontally
3866
3867 The horizontal alignment of an object which supports the
3868 @code{self-alignment-interface} is controlled by the value of
3869 the @code{self-alignment-X} property, provided the object's
3870 @code{X-offset} property is set to
3871 @code{ly:self-alignment-interface::x-aligned-on-self}.
3872 @code{self-alignment-X}  may be given any
3873 real value, in units of half the total X extent of the
3874 object.  Negative values move the object to the right, positive
3875 to the left.  A value of @code{0} centers the object on the
3876 reference point of its parent, a value of @w{@code{-1}} aligns the
3877 left edge of the object on the reference point of its parent,
3878 and a value of @code{1} aligns the right edge of the object on the
3879 reference point of its parent.  The symbols @code{LEFT},
3880 @code{CENTER}, and @code{RIGHT} may be used instead of the values
3881 @w{@code{-1}}, @code{0}, and @code{1}, respectively.
3882
3883 Normally the @code{\override} command would be used to modify the
3884 value of @code{self-alignment-X}, but the @code{\tweak} command
3885 can be used to separately align several annotations on a single
3886 note:
3887
3888 @lilypond[quote,verbatim,relative=1]
3889 a'
3890 -\tweak self-alignment-X #-1
3891 ^"left-aligned"
3892 -\tweak self-alignment-X #0
3893 ^"center-aligned"
3894 -\tweak self-alignment-X #RIGHT
3895 ^"right-aligned"
3896 -\tweak self-alignment-X #-2.5
3897 ^"aligned further to the right"
3898 @end lilypond
3899
3900 @subsubsubheading Self-aligning objects vertically
3901
3902 Objects may be aligned vertically in an analogous way to aligning
3903 them horizontally if the @code{Y-offset} property is set to
3904 @code{ly:self-alignment-interface::y-aligned-on-self}.  However,
3905 other mechanisms are often involved in vertical alignment: the
3906 value of @code{Y-offset} is just one variable taken into account.
3907 This may make adjusting the value of some objects tricky.
3908 The units are just half the vertical extent of the object, which
3909 is usually quite small, so quite large numbers may be required.
3910 A value of @w{@code{-1}} aligns the lower edge of the object with
3911 the reference point of the parent object, a value of @code{0}
3912 aligns the center of the object with the reference point of the
3913 parent, and a value of @code{1} aligns the top edge of the object
3914 with the reference point of the parent.  The symbols @code{DOWN},
3915 @code{CENTER}, and @code{UP} may be substituted for @w{@code{-1}},
3916 @code{0}, and @code{1}, respectively.
3917
3918 @subsubsubheading Self-aligning objects in both directions
3919
3920 By setting both @code{X-offset} and @code{Y-offset}, an object may
3921 be aligned in both directions simultaneously.
3922
3923 The following example shows how to adjust a fingering mark so
3924 that it nestles close to the note head.
3925
3926 @lilypond[quote,verbatim,relative=2]
3927 a
3928 -\tweak self-alignment-X #0.5  % move horizontally left
3929 -\tweak Y-offset #ly:self-alignment-interface::y-aligned-on-self
3930 -\tweak self-alignment-Y #-1  % move vertically up
3931 -3  % third finger
3932 @end lilypond
3933
3934 @ignore
3935 @unnumberedsubsubsec Using the @code{aligned-on-parent} procedures
3936
3937 @c Cannot document as they do not seem to operate consistently on all objects -td
3938 @c TODO investigate further
3939
3940 The @code{aligned-on-parent} procedures are used in the same way
3941 as the @code{aligned-on-self} procedures, they difference being
3942 that they permit an object to be aligned with the @emph{edges} of
3943 the parent rather than the parent's reference point.  The following
3944 example shows the difference:
3945
3946 @c TODO Add example
3947
3948 @lilypond[verbatim,quote]
3949 @end lilypond
3950
3951 @end ignore
3952
3953 @ignore
3954 @unnumberedsubsubsec Using the @code{centered-on-parent} procedures
3955
3956 @c Cannot document as they do not seem to operate consistently on all objects -td
3957 @c TODO investigate further
3958
3959 @end ignore
3960
3961 @c TODO The align-interface, BassFigureAlignment and VerticalAlignment
3962
3963 @node Using the break-alignable-interface
3964 @unnumberedsubsubsec Using the @code{break-alignable-interface}
3965
3966 @cindex align to objects
3967 @cindex break-align-symbols
3968
3969 Rehearsal marks and bar numbers may be aligned with notation
3970 objects other than bar lines.  These objects include @code{ambitus},
3971 @code{breathing-sign}, @code{clef}, @code{custos}, @code{staff-bar},
3972 @code{left-edge}, @code{key-cancellation}, @code{key-signature}, and
3973 @code{time-signature}.
3974
3975 Each type of object has its own default reference point, to which
3976 rehearsal marks are aligned:
3977
3978 @lilypond[verbatim,quote,relative=1]
3979 % The rehearsal mark will be aligned to the right edge of the Clef
3980 \override Score.RehearsalMark.break-align-symbols = #'(clef)
3981 \key a \major
3982 \clef treble
3983 \mark "↓"
3984 e1
3985 % The rehearsal mark will be aligned to the left edge of the Time Signature
3986 \override Score.RehearsalMark.break-align-symbols = #'(time-signature)
3987 \key a \major
3988 \clef treble
3989 \time 3/4
3990 \mark "↓"
3991 e2.
3992 % The rehearsal mark will be centered above the Breath Mark
3993 \override Score.RehearsalMark.break-align-symbols = #'(breathing-sign)
3994 \key a \major
3995 \clef treble
3996 \time 4/4
3997 e1
3998 \breathe
3999 \mark "↓"
4000 @end lilypond
4001
4002 A list of possible target alignment objects may be specified.  If
4003 some of the objects are invisible at that point due to the setting
4004 of @code{break-visibility} or the explicit visibility settings for
4005 keys and clefs, the rehearsal mark or bar number is aligned to the
4006 first object in the list which is visible.  If no objects in the
4007 list are visible the object is aligned to the bar line.  If the bar
4008 line is invisible the object is aligned to the place where the bar
4009 line would be.
4010
4011 @lilypond[verbatim,quote,relative=1]
4012 % The rehearsal mark will be aligned to the right edge of the Key Signature
4013 \override Score.RehearsalMark.break-align-symbols = #'(key-signature clef)
4014 \key a \major
4015 \clef treble
4016 \mark "↓"
4017 e1
4018 % The rehearsal mark will be aligned to the right edge of the Clef
4019 \set Staff.explicitKeySignatureVisibility = #all-invisible
4020 \override Score.RehearsalMark.break-align-symbols = #'(key-signature clef)
4021 \key a \major
4022 \clef bass
4023 \mark "↓"
4024 gis,,1
4025 % The rehearsal mark will be centered above the Bar Line
4026 \set Staff.explicitKeySignatureVisibility = #all-invisible
4027 \set Staff.explicitClefVisibility = #all-invisible
4028 \override Score.RehearsalMark.break-align-symbols = #'(key-signature clef)
4029 \key a \major
4030 \clef treble
4031 \mark "↓"
4032 e''1
4033 @end lilypond
4034
4035 The alignment of the rehearsal mark relative to the notation object
4036 can be changed, as shown in the following example.  In a score with
4037 multiple staves, this setting should be done for all the staves.
4038
4039 @lilypond[verbatim,quote,relative=1]
4040 % The RehearsalMark will be aligned with the right edge of the Key Signature
4041 \override Score.RehearsalMark.break-align-symbols = #'(key-signature)
4042 \key a \major
4043 \clef treble
4044 \time 4/4
4045 \mark "↓"
4046 e1
4047 % The RehearsalMark will be centered above the Key Signature
4048 \once \override Score.KeySignature.break-align-anchor-alignment = #CENTER
4049 \mark "↓"
4050 \key a \major
4051 e1
4052 % The RehearsalMark will be aligned with the left edge of the Key Signature
4053 \once \override Score.KeySignature.break-align-anchor-alignment = #LEFT
4054 \key a \major
4055 \mark "↓"
4056 e1
4057 @end lilypond
4058
4059 The rehearsal mark can also be offset to the right or left of the left
4060 edge by an arbitrary amount.  The units are staff-spaces:
4061
4062 @lilypond[verbatim,quote,relative=1]
4063 % The RehearsalMark will be aligned with the left edge of the Key Signature
4064 % and then shifted right by 3.5 staff-spaces
4065 \override Score.RehearsalMark.break-align-symbols = #'(key-signature)
4066 \once \override Score.KeySignature.break-align-anchor = #3.5
4067 \key a \major
4068 \mark "↓"
4069 e1
4070 % The RehearsalMark will be aligned with the left edge of the Key Signature
4071 % and then shifted left by 2 staff-spaces
4072 \once \override Score.KeySignature.break-align-anchor = #-2
4073 \key a \major
4074 \mark "↓"
4075 e1
4076 @end lilypond
4077
4078
4079 @node Vertical grouping of grobs
4080 @subsection Vertical grouping of grobs
4081
4082 @c TODO Expand this section
4083
4084 The VerticalAlignment and VerticalAxisGroup grobs work together.
4085 VerticalAxisGroup groups together different grobs like Staff, Lyrics,
4086 etc.  VerticalAlignment then vertically aligns the different grobs
4087 grouped together by VerticalAxisGroup.  There is usually only one
4088 VerticalAlignment per score but every Staff, Lyrics, etc. has its own
4089 VerticalAxisGroup.
4090
4091
4092 @node Modifying stencils
4093 @subsection Modifying stencils
4094
4095 All layout objects have a @code{stencil} property which is part of
4096 the @code{grob-interface}.  By default, this property is usually
4097 set to a function specific to the object that is tailor-made to
4098 render the symbol which represents it in the output.  For example,
4099 the standard setting for the @code{stencil} property of the
4100 @code{MultiMeasureRest} object is @code{ly:multi-measure-rest::print}.
4101
4102 The standard symbol for any object can be replaced by modifying the
4103 @code{stencil} property to reference a different, specially-written,
4104 procedure.  This requires a high level of knowledge of the internal
4105 workings of LilyPond, but there is an easier way which can often
4106 produce adequate results.
4107
4108 This is to set the @code{stencil} property to the procedure which
4109 prints text -- @code{ly:text-interface::print} -- and to add a
4110 @code{text} property to the object which is set to contain the
4111 markup text which produces the required symbol.  Due to the
4112 flexibility of markup, much can be achieved -- see in particular
4113 @ref{Graphic notation inside markup}.
4114
4115 The following example demonstrates this by changing the note head
4116 symbol to a cross within a circle.
4117
4118 @lilypond[verbatim,quote]
4119 XinO = {
4120   \once \override NoteHead.stencil = #ly:text-interface::print
4121   \once \override NoteHead.text = \markup {
4122     \combine
4123       \halign #-0.7 \draw-circle #0.85 #0.2 ##f
4124       \musicglyph #"noteheads.s2cross"
4125   }
4126 }
4127 \relative c'' {
4128   a a \XinO a a
4129 }
4130 @end lilypond
4131
4132 Any of the glyphs in the feta Font can be supplied to the
4133 @code{\musicglyph} markup command -- see @ref{The Feta font}.
4134
4135 @c TODO Add inserting eps files or ref to later
4136
4137 @c TODO Add inserting Postscript or ref to later
4138
4139 @seealso
4140 Notation Reference:
4141 @ref{Graphic notation inside markup},
4142 @ref{Formatting text},
4143 @ref{Text markup commands},
4144 @ref{The Feta font}.
4145
4146
4147 @node Modifying shapes
4148 @subsection Modifying shapes
4149
4150 @menu
4151 * Modifying ties and slurs::
4152 @end menu
4153
4154 @node Modifying ties and slurs
4155 @unnumberedsubsubsec Modifying ties and slurs
4156
4157 @cindex slurs, modifying
4158 @cindex ties, modifying
4159 @cindex Bézier curves, control points
4160 @cindex control points, Bézier curves
4161
4162 @code{Tie}s, @code{Slur}s, @code{PhrasingSlur}s,
4163 @code{LaissezVibrerTie}s and @code{RepeatTie}s are all drawn as
4164 third-order Bézier curves.  If the shape of the tie or slur which
4165 is calculated automatically is not optimum, the shape may be
4166 modified manually in two ways:
4167
4168 @enumerate a
4169 @item
4170 by specifying the displacements to be made to the control points
4171 of the automatically calculated Bézier curve, or
4172
4173 @item
4174 by explicitly specifying the positions of the four control points
4175 required to define the wanted curve.
4176 @end enumerate
4177
4178 Both methods are explained below.  The first method is more suitable
4179 if only slight adjustments to the curve are required; the second may
4180 be better for creating curves which are related to just a single
4181 note.
4182
4183 @subsubsubheading Cubic Bézier curves
4184
4185 Third-order or cubic Bézier curves are defined by four control
4186 points.  The first and fourth control points are precisely the
4187 starting and ending points of the curve.  The intermediate two
4188 control points define the shape.  Animations showing how the curve
4189 is drawn can be found on the web, but the following description
4190 may be helpful.  The curve starts from the first control point
4191 heading directly towards the second, gradually bending over to
4192 head towards the third and continuing to bend over to head towards
4193 the fourth, arriving there travelling directly from the third
4194 control point.  The curve is entirely contained in the
4195 quadrilateral defined by the four control points.  Translations,
4196 rotations and scaling of the control points all result in exactly
4197 the same operations on the curve.
4198
4199 @subsubsubheading Specifying displacements from current control points
4200
4201 @cindex shaping slurs and ties
4202 @funindex \shape
4203
4204 In this example the automatic placement of the tie is not optimum,
4205 and @code{\tieDown} would not help.
4206
4207 @lilypond[verbatim,quote,relative=1]
4208 <<
4209   { e1~ 1 }
4210 \\
4211   { r4 <g c,> <g c,> <g c,> }
4212 >>
4213 @end lilypond
4214
4215 Adjusting the control points of the tie with @code{\shape} allows
4216 the collisions to be avoided.
4217
4218 The syntax of @code{\shape} is
4219
4220 @example
4221 [-]@code{\shape} @var{displacements} @var{item}
4222 @end example
4223
4224 This will reposition the control-points of @var{item} by the amounts
4225 given by @var{displacements}.  The @var{displacements} argument is a
4226 list of number pairs or a list of such lists.  Each element of a pair
4227 represents the displacement of one of the coordinates of a
4228 control-point.  If @var{item} is a string, the result is
4229 @code{\once\override} for the specified grob type.  If @var{item} is
4230 a music expression, the result is the same music expression with an
4231 appropriate tweak applied.
4232
4233 In other words, the @code{\shape} function can act as either a
4234 @code{\once\override} command or a @code{\tweak} command depending
4235 on whether the @var{item} argument is a grob name, like @qq{Slur},
4236 or a music expression, like @qq{(}.  The @var{displacements} argument
4237 specifies the displacements of the four control points as a list of
4238 four pairs of (dx . dy) values in units of staff-spaces (or a list
4239 of such lists if the curve has more than one segment).
4240
4241 The leading hyphen is required if and only if the @code{\tweak} form
4242 is being used.
4243
4244 So, using the same example as above and the @code{\once\override}
4245 form of @code{\shape}, this will raise the tie by half a staff-space:
4246
4247 @lilypond[verbatim,quote,relative=1]
4248 <<
4249   {
4250     \shape #'((0 . 0.5) (0 . 0.5) (0 . 0.5) (0 . 0.5)) Tie
4251     e1~ 1
4252   }
4253 \\
4254   { r4 <g c,> <g c,> <g c,> }
4255 >>
4256 @end lilypond
4257
4258 This positioning of the tie is better, but maybe it should be raised
4259 more in the center.  The following example does this, this time using
4260 the alternative @code{\tweak} form:
4261
4262 @lilypond[verbatim,quote,relative=1]
4263 <<
4264   {
4265     e1-\shape #'((0 . 0.5) (0 . 1) (0 . 1) (0 . 0.5)) ~ e
4266   }
4267 \\
4268   { r4 <g c,> <g c,> <g c,> }
4269 >>
4270 @end lilypond
4271
4272 Changes to the horizontal positions of the control points may be made
4273 in the same way, and two different curves starting at the same
4274 musical moment may also be shaped:
4275
4276 @lilypond[verbatim,quote,ragged-right,relative=2]
4277 c8(\( a) a'4 e c\)
4278 \shape #'((0.7 . -0.4) (0.5 . -0.4) (0.3 . -0.3) (0 . -0.2)) Slur
4279 \shape #'((0 . 0) (0 . 0.5) (0 . 0.5) (0 . 0)) PhrasingSlur
4280 c8(\( a) a'4 e c\)
4281 @end lilypond
4282
4283 The @code{\shape} function can also displace the control points of
4284 curves which stretch across line breaks.  Each piece of the broken
4285 curve can be given its own list of offsets.  If changes to a
4286 particular segment are not needed, the empty list can serve as a
4287 placeholder.  In this example the line break makes the single slur
4288 look like two:
4289
4290 @lilypond[verbatim,quote,ragged-right,relative=1]
4291 c4( f g c
4292 \break
4293 d,4 c' f, c)
4294 @end lilypond
4295
4296 Changing the shapes of the two halves of the slur makes it clearer
4297 that the slur continues over the line break:
4298
4299 @lilypond[verbatim,quote,ragged-right,relative=1]
4300 % () may be used as a shorthand for ((0 . 0) (0 . 0) (0 . 0) (0 . 0))
4301 % if any of the segments does not need to be changed
4302 \shape #'(
4303            (( 0 . 0) (0 . 0) (0 . 0) (0 . 1))
4304            ((0.5 . 1.5) (1 . 0) (0 . 0) (0 . -1.5))
4305          ) Slur
4306 c4( f g c
4307 \break
4308 d,4 c' f, c)
4309 @end lilypond
4310
4311 If an S-shaped curve is required the control points must always be
4312 adjusted manually --- LilyPond will never select such shapes
4313 automatically.
4314
4315 @lilypond[verbatim,quote,relative=2]
4316 c8( e b-> f d' a e-> g)
4317 \shape #'((0 . -1) (5.5 . -0.5) (-5.5 . -10.5) (0 . -5.5)) PhrasingSlur
4318 c8\( e b-> f d' a e-> g\)
4319 @end lilypond
4320
4321 @subsubsubheading Specifying control points explicitly
4322
4323 The coordinates of the Bézier control points are specified in units
4324 of staff-spaces.  The X@tie{}coordinate is relative to the reference
4325 point of the note to which the tie or slur is attached, and the
4326 Y@tie{}coordinate is relative to the staff center line.  The
4327 coordinates are specified as a list of four pairs of decimal numbers
4328 (reals).  One approach is to estimate the coordinates of the two
4329 end points, and then guess the two intermediate points.  The optimum
4330 values are then found by trial and error.  Be aware that these values
4331 may need to be manually adjusted if any further changes are made to
4332 the music or the layout.
4333
4334 One situation where specifying the control points explicitly is
4335 preferable to specifying displacements is when they need to be
4336 specified relative to a single note.  Here is an example of this.
4337 It shows one way of indicating a slur extending into alternative
4338 sections of a volta repeat.
4339
4340 @lilypond[verbatim,quote,relative=2]
4341 c1
4342 \repeat volta 3 { c4 d( e f }
4343 \alternative {
4344   { g2) d }
4345   {
4346     g2
4347     % create a slur and move it to a new position
4348     % the <> is just an empty chord to carry the slur termination
4349     -\tweak control-points #'((-2 . 3.8) (-1 . 3.9) (0 . 4) (1 . 3.4)) ( <> )
4350     f,
4351   }
4352   {
4353     e'2
4354     % create a slur and move it to a new position
4355     -\tweak control-points #'((-2 . 3) (-1 . 3.1) (0 . 3.2) (1 . 2.4)) ( <> )
4356     f,
4357   }
4358 }
4359 @end lilypond
4360
4361 @knownissues
4362 It is not possible to modify shapes of ties or slurs by changing
4363 the @code{control-points} property if there are multiple ties or slurs
4364 at the same musical moment -- the @code{\tweak} command will also not
4365 work in this case.  However, the @code{tie-configuration} property of
4366 @code{TieColumn} can be overridden to set start line and direction as
4367 required.
4368
4369 @seealso
4370 Internals Reference:
4371 @rinternals{TieColumn}.
4372
4373
4374 @node Modifying broken spanners
4375 @subsection Modifying broken spanners
4376
4377 @menu
4378 * Using alterBroken::
4379 @end menu
4380
4381 @node Using alterBroken
4382 @unnumberedsubsubsec Using @code{\alterBroken}
4383
4384 @cindex spanners, modifying
4385 @cindex broken spanners, modifying
4386 @funindex \alterBroken
4387
4388 When a spanner crosses a line break or breaks, each piece
4389 inherits the attributes of the original spanner.  Thus, ordinary
4390 tweaking of a broken spanner applies the same modifications to
4391 each of its segments.  In the example below, overriding
4392 @code{thickness} affects the slur on either side of the line
4393 break.
4394
4395 @lilypond[verbatim,quote,ragged-right,relative=2]
4396 r2
4397 \once\override Slur.thickness = 10
4398 c8( d e f
4399 \break
4400 g8 f e d) r2
4401 @end lilypond
4402
4403 Independently modifying the appearance of individual pieces
4404 of a broken spanner is possible with the @code{\alterBroken}
4405 command.  This command can produce either an @code{\override}
4406 or a @code{\tweak} of a spanner property.
4407
4408 The syntax for @code{\alterBroken} is
4409
4410 @example
4411 [-]@code{\alterBroken} @var{property} @var{values} @var{item}
4412 @end example
4413
4414 The argument @var{values} is a list of values, one for each
4415 broken piece.  If @var{item} is a grob name like @code{Slur} or
4416 @code{Staff.PianoPedalBracket}, the result is an @code{\override}
4417 of the specified grob type.  If @var{item} is a music expression
4418 such as @qq{(} or @qq{[} the result is the same music expression
4419 with an appropriate tweak applied.
4420
4421 The leading hyphen must be used with the @code{\tweak} form.  Do
4422 not add it when @code{\alterBroken} is used as an
4423 @code{\override}.
4424
4425 In its @code{\override} usage, @code{\alterBroken} may be
4426 prefaced by @code{\once} or @code{\temporary} and reverted by
4427 using @code{\revert} with @var{property}.
4428
4429 The following code applies an independent @code{\override} to
4430 each of the slur segments in the previous example:
4431
4432 @lilypond[verbatim,quote,ragged-right,relative=2]
4433 r2
4434 \alterBroken thickness #'(10 1) Slur
4435 c8( d e f
4436 \break
4437 g8 f e d) r2
4438 @end lilypond
4439
4440 The @code{\alterBroken} command may be used with any spanner
4441 object, including @code{Tie}, @code{PhrasingSlur}, @code{Beam}
4442 and @code{TextSpanner}.  For example, an editor preparing a
4443 scholarly edition may wish to indicate the absence of part of a
4444 phrasing slur in a source by dashing only the segment which has
4445 been added.  The following example illustrates how this can be
4446 done, in this case using the @code{\tweak} form of the command:
4447
4448 @lilypond[verbatim,quote,ragged-right,relative=2]
4449 % The empty list is conveniently used below, because it is the
4450 % default setting of dash-definition, resulting in a solid curve.
4451 c2-\alterBroken dash-definition #'(() ((0 1.0 0.4 0.75))) \(e
4452 \break
4453 g2 e\)
4454 @end lilypond
4455
4456 It is important to understand that @code{\alterBroken} will set
4457 each piece of a broken spanner to the corresponding value in
4458 @var{values}.  When there are fewer values than pieces, any
4459 additional piece will be assigned the empty list.  This may lead
4460 to undesired results if the layout property is not set to the
4461 empty list by default.  In such cases, each segment should be
4462 assigned an appropriate value.
4463
4464 @knownissues
4465 Line breaks may occur in different places following changes in
4466 layout. Settings chosen for @code{\alterBroken} may be unsuitable
4467 for a spanner that is no longer broken or is split into more
4468 segments than before.  Explicit use of @code{\break} can guard
4469 against this situation.
4470  
4471 The @code{\alterBroken} command is ineffective for spanner
4472 properties accessed before line-breaking such as
4473 @code{direction}.
4474
4475 @seealso
4476 Extending LilyPond:
4477 @rextend{Difficult tweaks}.
4478
4479
4480 @node Unpure-pure containers
4481 @subsection Unpure-pure containers
4482
4483 @cindex Scheme, pure containers
4484 @cindex Scheme, unpure containers
4485 @cindex pure containers, Scheme
4486 @cindex unpure containers, Scheme
4487 @cindex horizontal spacing, overriding
4488
4489 Unpure-pure containers are useful for overriding @emph{Y-axis} spacing
4490 calculations - specifically @code{Y-offset} and @code{Y-extent} - with a
4491 Scheme function instead of a literal (i.e. a number or pair).
4492
4493 For certain grobs, the @code{Y-extent} is based on the @code{stencil}
4494 property, overriding the stencil property of one of these will
4495 require an additional @code{Y-extent} override with an unpure-pure
4496 container.  When a function overrides a @code{Y-offset} and/or
4497 @code{Y-extent} it is assumed that this will trigger line breaking
4498 calculations too early during compilation.  So the function is not
4499 evaluated at all (usually returning a value of @samp{0} or
4500 @samp{'(0 . 0)}) which can result in collisions.  A @q{pure} function
4501 will not affect properties, objects or grob suicides and therefore will
4502 always have its Y-axis-related evaluated correctly.
4503
4504 Currently, there are about thirty functions that are already considered
4505 @q{pure} and Unpure-pure containers are a way to set functions not on
4506 this list as @q{pure}.  The @q{pure} function is evaluated @emph{before}
4507 any line-breaking and so the horizontal spacing can be adjusted
4508 @q{in time}.  The @q{unpure} function is then evaluated @emph{after}
4509 line breaking.
4510
4511 @warning{As it is difficult to always know which functions are on this
4512 list we recommend that any @q{pure} functions you create do not use
4513 @code{Beam} or @code{VerticalAlignment} grobs.}
4514
4515 An unpure-pure container is constructed as follows;
4516
4517 @code{(ly:make-unpure-pure-container f0 f1)}
4518
4519 where @code{f0} is a function taking @var{n} arguments (@var{n >= 1})
4520 and the first argument must always be the grob.  This is the function
4521 that gives the actual result.  @var{f1} is the function being labeled
4522 as @q{pure} that takes @var{n + 2} arguments.  Again, the first argument
4523 must always still be the grob but the second and third are @q{start}
4524 and @q{end} arguments.
4525
4526 @var{start} and @var{end} are, for all intents and purposes, dummy
4527 values that only matter for @code{Spanners} (i.e @code{Hairpin} or
4528 @code{Beam}), that can return different height estimations based on a
4529 starting and ending column.
4530
4531 The rest are the other arguments to the first function (which
4532 may be none if @var{n = 1}).
4533
4534 The results of the second function are used as an approximation of the
4535 value needed which is then used by the first function to get the real
4536 value which is then used for fine-tuning much later during the spacing
4537 process.
4538
4539 @lilypond[verbatim,quote,ragged-right]
4540 #(define (square-line-circle-space grob)
4541 (let* ((pitch (ly:event-property (ly:grob-property grob 'cause) 'pitch))
4542       (notename (ly:pitch-notename pitch)))
4543  (if (= 0 (modulo notename 2))
4544      (make-circle-stencil 0.5 0.0 #t)
4545      (make-filled-box-stencil '(0 . 1.0)
4546                               '(-0.5 . 0.5)))))
4547
4548 squareLineCircleSpace = {
4549   \override NoteHead.stencil = #square-line-circle-space
4550 }
4551
4552 smartSquareLineCircleSpace = {
4553   \squareLineCircleSpace
4554   \override NoteHead.Y-extent =
4555    #(ly:make-unpure-pure-container
4556       ly:grob::stencil-height
4557       (lambda (grob start end) (ly:grob::stencil-height grob)))
4558 }
4559
4560 \new Voice \with { \remove "Stem_engraver" }
4561 \relative c'' {
4562   \squareLineCircleSpace
4563   cis4 ces disis d
4564   \smartSquareLineCircleSpace
4565   cis4 ces disis d
4566 }
4567 @end lilypond
4568
4569 In the first measure, without the unpure-pure container, the spacing
4570 engine does not know the width of the note head and lets it collide with
4571 the accidentals.  In the second measure, with unpure-pure containers,
4572 the spacing engine knows the width of the note heads and avoids the
4573 collision by lengthening the line accordingly.
4574
4575 Usually for simple calculations nearly-identical functions for both the
4576 @q{unpure} and @q{pure} parts can be used, by only changing the number
4577 of arguments passed to, and the scope of, the function.
4578
4579 @warning{If a function is labeled as @q{pure} and it turns out not to
4580 be, the results can be unexpected.}
4581
4582
4583 @node Using music functions
4584 @section Using music functions
4585
4586 @c TODO -- add @seealso, etc. to these subsections
4587
4588 Where tweaks need to be reused with different music expressions,
4589 it is often convenient to make the tweak part of a @emph{music
4590 function}.  In this section, we discuss only @emph{substitution}
4591 functions, where the object is to substitute a variable into a
4592 piece of LilyPond input code.  Other more complex functions are
4593 described in @rextend{Music functions}.
4594
4595 @menu
4596 * Substitution function syntax::
4597 * Substitution function examples::
4598 @end menu
4599
4600 @node Substitution function syntax
4601 @subsection Substitution function syntax
4602
4603 Making a function that substitutes a variable into LilyPond
4604 code is easy.  The general form of these functions is
4605
4606 @example
4607 function =
4608 #(define-music-function
4609      (parser location @var{arg1} @var{arg2} @dots{})
4610      (@var{type1?} @var{type2?} @dots{})
4611    #@{
4612      @var{@dots{}music@dots{}}
4613    #@})
4614 @end example
4615
4616 @noindent
4617 where
4618
4619 @multitable @columnfractions .33 .66
4620 @item @code{@var{argN}}
4621 @tab @var{n}th argument
4622
4623 @item @code{@var{typeN?}}
4624 @tab a scheme @emph{type predicate} for which @code{@var{argN}}
4625 must return @code{#t}.
4626
4627 @item @code{@var{@dots{}music@dots{}}}
4628 @tab normal LilyPond input, using @code{$} (in places where only
4629 Lilypond constructs are allowed) or @code{#} (to use it as a Scheme
4630 value or music function argument or music inside of music lists) to
4631 reference arguments
4632 (eg. @samp{#arg1}).
4633 @end multitable
4634
4635 The @code{parser} and @code{location} arguments are mandatory, and
4636 are used in some advanced situations as described in the
4637 @q{Extending} manual (see @rextend{Music functions}).  For
4638 substitution functions, just be sure to include them.
4639
4640 The list of type predicates is also required.  Some of the most
4641 common type predicates used in music functions are:
4642
4643 @example
4644 boolean?
4645 cheap-list?  @emph{(use instead of }@q{list?}@emph{ for faster processing)}
4646 ly:duration?
4647 ly:music?
4648 ly:pitch?
4649 markup?
4650 number?
4651 pair?
4652 string?
4653 symbol?
4654 @end example
4655
4656 @noindent
4657 For a list of available type predicates, see
4658 @ref{Predefined type predicates}.  User-defined type predicates
4659 are also allowed.
4660
4661 @seealso
4662 Notation Reference:
4663 @ref{Predefined type predicates}.
4664
4665 Extending Lilypond:
4666 @rextend{Music functions}.
4667
4668 Installed Files:
4669 @file{lily/music-scheme.cc},
4670 @file{scm/c++.scm},
4671 @file{scm/lily.scm}.
4672
4673
4674 @node Substitution function examples
4675 @subsection Substitution function examples
4676
4677 This section introduces some substitution function examples.
4678 These are not intended to be exhaustive, but rather to demonstrate
4679 some of the possibilities of simple substitution functions.
4680
4681 In the first example, a function is defined that simplifies
4682 setting the padding of a TextScript:
4683
4684 @lilypond[quote,verbatim,ragged-right]
4685 padText =
4686 #(define-music-function
4687      (parser location padding)
4688      (number?)
4689    #{
4690      \once \override TextScript.padding = #padding
4691    #})
4692
4693 \relative c'' {
4694   c4^"piu mosso" b a b
4695   \padText #1.8
4696   c4^"piu mosso" b a b
4697   \padText #2.6
4698   c4^"piu mosso" b a b
4699 }
4700 @end lilypond
4701
4702 In addition to numbers, we can use music expressions such
4703 as notes for arguments to music functions:
4704
4705 @lilypond[quote,verbatim,ragged-right]
4706 custosNote =
4707 #(define-music-function
4708      (parser location note)
4709      (ly:music?)
4710    #{
4711      \tweak NoteHead.stencil #ly:text-interface::print
4712      \tweak NoteHead.text
4713         \markup \musicglyph #"custodes.mensural.u0"
4714      \tweak Stem.stencil ##f
4715      #note
4716    #})
4717
4718 \relative c' { c4 d e f \custosNote g }
4719 @end lilypond
4720
4721 Substitution functions with multiple arguments can be defined:
4722
4723 @lilypond[quote,verbatim,ragged-right]
4724 tempoPadded =
4725 #(define-music-function
4726      (parser location padding tempotext)
4727      (number? markup?)
4728    #{
4729      \once \override Score.MetronomeMark.padding = #padding
4730      \tempo \markup { \bold #tempotext }
4731    #})
4732
4733 \relative c'' {
4734   \tempo \markup { "Low tempo" }
4735   c4 d e f g1
4736   \tempoPadded #4.0 "High tempo"
4737   g4 f e d c1
4738 }
4739 @end lilypond
4740
4741 @c TODO: add appropriate @@ref's here.