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