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