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