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