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