]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/changing-defaults.itely
(make_html_menu_file): remove --psgz option
[lilypond.git] / Documentation / user / changing-defaults.itely
1 @c -*-texinfo-*-
2 @node Changing defaults
3 @chapter Changing defaults
4
5 TODO: reorganise.
6
7 @menu
8 * Scheme integration::          
9 * Setting variables::           
10 * Fine tuning layout::          
11 * Tuning output::               
12 * Text markup::                 
13 * Global layout::               
14 * Interpretation context::      
15 * Output details::              
16 @end menu
17
18
19
20 @node Scheme integration
21 @section Scheme integration
22
23 @cindex Scheme
24 @cindex GUILE
25 @cindex Scheme, in-line code
26 @cindex accessing Scheme
27 @cindex evaluating Scheme
28 @cindex LISP
29
30 LilyPond internally uses GUILE, a Scheme-interpreter, to represent
31 data throughout the whole program, and glue together different program
32 modules. For advanced usage, it is sometimes necessary to access and
33 program the Scheme interpreter.
34
35 Scheme is a full-blown programming language, from the LISP
36 family. and a full discussion is outside the scope of this document.
37 Interested readers are referred to the website
38 @uref{http://www.schemers.org/} for more information on Scheme.
39
40 The GUILE library for extension is documented at
41 @uref{http://www.gnu.org/software/guile}.
42 @ifinfo
43 When it is installed, the following link should take you to its manual
44 @ref{(guile.info)guile}
45 @end ifinfo
46
47 @menu
48 * Inline Scheme::               
49 @end menu
50
51 @node Inline Scheme
52 @subsection Inline Scheme
53
54 Scheme expressions can be entered in the input file by entering a
55 hash-sign (@code{#}).  The expression following the hash-sign is
56 evaluated as Scheme. For example, the boolean value @var{true} is
57 @code{#t} in Scheme, so for LilyPond @var{true} looks like @code{##t},
58 and can be used in property assignments:
59 @example
60   \set Staff.autoBeaming = ##f
61 @end example
62
63
64 @node Setting variables
65 @section Setting variables
66
67 When the music is converted from notes to print it is interpreted
68 in left-to-right order. This is similar to what happens when we read
69 music. During this step context-sensitive information such as the
70 accidentals to print, and where bar lines must be placed, are stored in
71 variables. These variables are called @emph{context properties}.
72 The properties can also be manipulated from input files. Consider this input:
73 @example
74 \set Staff.autoBeaming = ##f
75 @end example 
76
77 @noindent
78 It sets the property named @code{autoBeaming} in the current staff at
79 this point in the music to @code{##f}, which means `false'. This
80 property controls whether beams are printed automatically:
81 @c
82 @lilypond[relative=1,fragment,verbatim]
83   c8 c c c
84   \set Staff.autoBeaming = ##f
85   c8 c c c  
86 @end lilypond
87
88 @noindent
89 LilyPond includes a built-in programming language, namely, a dialect
90 of Scheme.  The argument to @code{\set}, @code{##f}, is an
91 expression in that language.  The first hash-mark signals that a piece
92 of Scheme code follows. The second hash character is part of the
93 boolean value true (@code{#t}).  Values of other types may be
94 entered as follows:
95 @itemize @bullet
96 @item a string, enclosed in double quotes, for example,
97 @example
98   \set Staff.instrument = #"French Horn"
99 @end example
100 @item a boolean: either @code{#t} or @code{#f}, for true and false
101 respectively, e.g.
102 @example
103   \set autoBeaming = ##f
104   \set Score.skipBars = ##t
105 @end example
106
107 @item a number, such as
108 @example
109   \set Score.currentBarNumber = #20
110 @end example
111
112 @item a symbol, which is introduced by a quote character, as in 
113 @example
114   \set Staff.crescendoSpanner = #'dashed-line
115 @end example
116
117 @item a pair, which is also introduced by a quote character, like in
118 the following statements, which set properties to the pairs (-7.5, 6) 
119 and (3, 4) respectively:
120
121 @example
122   \set Staff.minimumVerticalExtent = #'(-7.5 . 6)
123   \set Staff.timeSignatureFraction = #'(3 . 4)
124 @end example
125
126 @item a list, which is also introduced by a quote character. In the
127 following example, the @code{breakAlignOrder} property is set to a
128 list of symbols:
129 @example
130   \set Score.breakAlignOrder = 
131  #'(left-edge time-signature key-signatures)
132 @end example
133
134
135 @end itemize
136
137 There are many different properties.  Not all of them are listed in
138 this manual. However, the program reference lists them all in the
139 section @internalsref{Context-properties}, and most properties are
140 demonstrated in one of the
141 @ifhtml
142 @uref{../../../input/test/out-www/collated-files.html,tips-and-tricks}
143 @end ifhtml
144 @ifnothtml
145 tips-and-tricks
146 @end ifnothtml
147 examples.
148
149
150 @node Fine tuning layout
151 @section Fine tuning layout
152
153 Sometimes it is necessary to change music layout by hand.  When music
154 is formatted, layout objects are created for each symbol.  For
155 example, every clef and every note head is represented by a layout
156 object.  These layout objects also carry variables, which we call
157 @emph{layout properties}. By changing these variables from their
158 values, we can alter the look of a formatted score:
159
160 @lilypond[verbatim,relative]
161   c4
162   \override Stem #'thickness = #3.0
163   c4 c4 c4 
164 @end lilypond
165
166 @noindent
167 In the example shown here, the layout property @code{thickness} (a
168 symbol) is set to 3 in the @code{Stem} layout objects of the current
169 As a result, the notes following @code{\override} have thicker
170 stems.
171
172 For the most part, a manual override is needed only on a case by
173 case basis and not for all subsequent instances of the altered
174 property. To accomplish this, simply prefix @code{\once} to the
175 @code{\override} statement and the override will apply only once,
176 immediately reverting to its default setting, i.e.
177
178 @example
179  \once \override Stem #'thickness = #3.0
180 @end example
181
182 @lilypond[relative]
183   c4
184   \once \override Stem #'thickness = #3.0
185   c4 c4 c4 
186 @end lilypond
187
188 @noindent
189 Some overrides are so common that predefined commands are provided as
190 a short cut.  For example, @code{\slurUp} and @code{\stemDown}. These
191 commands are described in
192 @ifhtml
193 the
194 @end ifhtml
195 @ref{Notation manual}, under the sections for slurs and stems
196 respectively.
197
198 The exact tuning possibilities for each type of layout object are
199 documented in the program reference of the respective
200 object. However, many layout objects share properties, which can be
201 used to apply generic tweaks.  We mention a couple of these:
202
203 @itemize @bullet
204 @item The @code{extra-offset} property, which
205 @cindex @code{extra-offset}
206 has a pair of numbers as value, moves around objects in the printout.
207 The first number controls left-right movement; a positive number will
208 move the object to the right.  The second number controls up-down
209 movement; a positive number will move it higher.  The units of these
210 offsets are staff-spaces.  The @code{extra-offset} property is a
211 low-level feature: the formatting engine is completely oblivious to
212 these offsets.
213
214 In the following example, the second fingering is moved a little to
215 the left, and 1.8 staff space downwards:
216
217 @cindex setting object properties
218
219 @lilypond[relative=1,verbatim]
220 \stemUp
221 f-5
222 \once \override Fingering
223     #'extra-offset = #'(-0.3 . -1.8) 
224 f-5
225 @end lilypond
226
227 @item
228 Setting the @code{transparent} property will cause an object to be printed
229 in `invisible ink': the object is not printed, but all its other
230 behavior is retained. The object still takes up space, it takes part in
231 collisions, and slurs, and ties and beams can be attached to it.
232
233 @cindex transparent objects
234 @cindex removing objects
235 @cindex invisible objects
236 The following example demonstrates how to connect different voices
237 using ties. Normally, ties only connect two notes in the same
238 voice. By introducing a tie in a different voice, and blanking a stem
239 in that voice, the tie appears to cross voices:
240
241 @lilypond[fragment,relative=1,verbatim]
242   c4 << {
243       \once \override Stem #'transparent = ##t
244       b8~ b8
245   } \\ {
246        b[ g8]
247   } >>
248 @end lilypond
249
250 @item
251 The @code{padding} property for objects with
252 @cindex @code{padding}
253 @code{side-position-interface} can be set to increase distance between
254 symbols that are printed above or below notes. We only give an
255 example; a more elaborate explanation is in @ref{Constructing a
256 tweak}:
257
258 @lilypond[relative=1,verbatim]
259   c2\fermata
260   \override Script #'padding = #3
261   b2\fermata
262 @end lilypond
263
264 @end itemize
265
266 More specific overrides are also possible.  The notation manual
267 discusses in depth how to figure out these statements for yourself, in
268 @ref{Tuning output}.
269
270
271
272
273 @node Tuning output
274 @section Tuning output
275
276 There are situations where default layout decisions are not
277 sufficient.  In this section we discuss ways to override these
278 defaults.
279
280 Formatting is internally done by manipulating so called objects
281 (graphic objects). Each object carries with it a set of properties
282 (object or layout properties) specific to that object.  For example, a
283 stem object has properties that specify its direction, length and
284 thickness.
285
286 The most direct way of tuning the output is by altering the values of
287 these properties. There are two ways of doing that: first, you can
288 temporarily change the definition of one type of object, thus
289 affecting a whole set of objects.  Second, you can select one specific
290 object, and set a layout property in that object.
291
292 Do not confuse layout properties with translation
293 properties. Translation properties always use a mixed caps style
294 naming, and are manipulated using @code{\set} and @code{\unset}: 
295 @example
296   \set Context.propertyName = @var{value}
297 @end example
298
299 Layout properties are use Scheme style variable naming, i.e.  lower
300 case words separated with dashes. They are symbols, and should always
301 be quoted using @code{#'}.  For example, this could be an imaginary
302 layout property name:
303 @example
304   #'layout-property-name
305 @end example
306
307
308 @menu
309 * Tuning objects::              
310 * Constructing a tweak::        
311 * Selecting font sizes::        
312 * Font selection::              
313 @end menu
314
315
316
317 @node Tuning objects
318 @subsection Tuning objects 
319
320 @cindex object description
321
322 The definition of an object is a list of default object
323 properties. For example, the definition of the Stem object (available
324 in @file{scm/define-grobs.scm}), includes the following definitions
325 for @internalsref{Stem}:
326
327 @example
328         (thickness . 1.3)
329         (beamed-lengths . (3.5 3.5 3.5 4.5 5.0))
330         (Y-extent-callback . ,Stem::height)
331         @var{...}
332 @end example
333
334
335 Adding variables on top of this existing definition overrides the
336 system default, and alters the resulting appearance of the layout
337 object.
338
339 @syntax
340
341
342 Changing a variable for only one object is commonly achieved with
343 @code{\once}:
344
345 @example
346 \once \override @var{context}.@var{objectname}
347     @var{symbol} = @var{value}
348 @end example
349 Here @var{symbol} is a Scheme expression of symbol type, @var{context}
350 and @var{objectname} is a string and @var{value} is a Scheme expression.
351 This command applies a setting only during one moment in the score.
352
353 In the following example, only one @internalsref{Stem} object is
354 changed from its original setting:
355
356 @lilypond[verbatim,fragment,relative=1]
357   c4 
358   \once \override Voice.Stem #'thickness = #4
359   c4
360   c4
361 @end lilypond
362 @cindex @code{\once}
363
364 For changing more objects, the same command, without @code{\once} can
365 be used:
366 @example
367 \override @var{context}.@var{objectname}   @var{symbol} = @var{value}
368 @end example
369 This command adds @code{@var{symbol} = @var{value}} to the definition
370 of @var{objectname} in the context @var{context}, and this definition
371 stays in place until it is removed.
372
373 An existing definition may be removed by the following command:
374 @c
375 @example
376 \property @var{context}.@var{objectname} \revert @var{symbol}
377 @end example
378 @c
379
380 Some examples: 
381 @lilypond[verbatim]
382 c'4 \override Stem   #'thickness = #4.0
383 c'4
384 c'4 \revert Stem #'thickness
385 c'4
386 @end lilypond
387
388
389
390 Reverting a setting which was not set in the first place has no
391 effect.
392
393
394 @seealso
395
396 Internals: @internalsref{OverrideProperty}, @internalsref{RevertProperty},
397 @internalsref{PropertySet}, @internalsref{All-backend-properties}, and
398 @internalsref{All-layout-objects}.
399
400
401 @refbugs
402
403 The back-end is not very strict in type-checking object properties.
404 Cyclic references in Scheme values for properties can cause hangs
405 and/or crashes.
406
407 @menu
408 * Constructing a tweak::        
409 * Applyoutput::                 
410 * Font selection::              
411 * Text markup::                 
412 @end menu
413
414 @node Constructing a tweak
415 @subsection Constructing a tweak
416
417
418 @cindex internal documentation
419 @cindex finding graphical objects
420 @cindex graphical object descriptions 
421 @cindex tweaking
422 @cindex @code{\override}
423 @cindex @code{\set}
424 @cindex internal documentation
425
426
427
428 Three pieces of information are required to use @code{\override} and
429 @code{\set}: the name of the layout object, the context and the name
430 of the property.  We demonstrate how to glean this information from
431 the notation manual and the program reference.
432
433 The generated documentation is a set of HTML pages which should be
434 included if you installed a binary distribution, typically in
435 @file{/usr/share/doc/lilypond}.  They are also available on the web:
436 go to the @uref{http://lilypond.org,LilyPond website}, click
437 ``Documentation'', select the correct version, and then click
438 ``Program reference.'' It is advisable to bookmark the local HTML
439 files. They will load faster than the ones on the web and matches the
440 version of LilyPond you are using.
441  
442
443
444 @c  [TODO: revise for new site.]
445
446 Suppose we want to move the fingering indication in the fragment
447 below:
448
449 @lilypond[relative=2,verbatim]
450 c-2
451 \stemUp
452 f
453 @end lilypond
454
455 If you visit the documentation of @code{Fingering} (in @ref{Fingering
456 instructions}), you will notice that there is written:
457
458 @quotation
459 @seealso
460
461 Internals: @internalsref{FingerEvent} and @internalsref{Fingering}.
462
463 @end quotation
464
465 @separate
466
467 @noindent
468 In other words, the fingerings once entered, are internally stored as
469 @code{FingerEvent} music objects. When printed, a @code{Fingering}
470 layout object is created for every @code{FingerEvent}.
471
472 The Fingering object has a number of different functions, and each of
473 those is captured in an interface. The interfaces are listed under
474 @internalsref{Fingering} in the program reference.
475
476
477
478 The @code{Fingering} object has a fixed size
479 (@internalsref{item-interface}), the symbol is a piece of text
480 (@internalsref{text-interface}), whose font can be set
481 (@internalsref{font-interface}).  It is centered horizontally
482 (@internalsref{self-alignment-interface}), it is placed vertically
483 next to other objects (@internalsref{side-position-interface}), and
484 its placement is coordinated with other scripts
485 (@internalsref{text-script-interface}).  It also has the standard
486 @internalsref{grob-interface} (grob stands for Graphical object)
487 @cindex grob
488 @cindex graphical object
489 @cindex layout object
490 @cindex object, layout 
491 with all the variables that come with
492 it.  Finally, it denotes a fingering instruction, so it has
493 @internalsref{finger-interface}.
494
495 For the vertical placement, we have to look under
496 @code{side-position-interface}:
497 @quotation
498 @code{side-position-interface}
499
500   Position a victim object (this one) next to other objects (the
501   support).  In this case, the property @code{direction} signifies where to put the
502   victim object relative to the support (left or right, up or down?)
503 @end quotation
504
505 @cindex padding
506 @noindent
507 below this description, the variable @code{padding} is described as
508 @quotation
509 @table @code
510 @item padding
511  (dimension, in staff space)
512
513    add this much extra space between objects that are next to each
514 other. Default value: @code{0.6}
515 @end table
516 @end quotation
517
518 By increasing the value of @code{padding}, we can move away the
519 fingering.  The following command inserts 3 staff spaces of white
520 between the note and the fingering:
521 @example
522 \once \override Fingering   #'padding = #3
523 @end example
524
525 Inserting this command before the Fingering object is created,
526 i.e. before @code{c2}, yields the following result:
527
528 @lilypond[relative=2,fragment,verbatim]
529 \once \override Fingering
530     #'padding = #3
531 c-2
532 \stemUp
533 f
534 @end lilypond
535
536 The context name @code{Voice} in the example above can be determined
537 as follows. In the documentation for @internalsref{Fingering}, it says
538 @quotation
539 Fingering grobs are created by: @internalsref{Fingering_engraver} @c
540 @end quotation
541
542 Clicking @code{Fingering_engraver} shows the documentation of
543 the module responsible for interpreting the fingering instructions and
544 translating them to a @code{Fingering} object.  Such a module is called
545 an @emph{engraver}.  The documentation of the @code{Fingering_engraver}
546 says
547 @example
548 Fingering_engraver is part of contexts: Voice 
549 @end example
550 so tuning the settings for Fingering should be done with
551 @example
552   \override Fingering @dots{}
553 @end example
554
555 Of course, the tweak may also done in a larger context than
556 @code{Voice}, for example, @internalsref{Staff} or
557 @internalsref{Score}.
558
559 @seealso
560
561 Internals: the program reference also contains alphabetical lists of
562 @internalsref{Contexts}, @internalsref{All-layout-objects} and
563 @internalsref{Music-expressions}, so you can also find which objects
564 to tweak by browsing the internals document.
565
566
567 @node Selecting font sizes
568 @subsection Selecting font sizes
569
570 The most common thing to change about the appearance of fonts is their
571 size. The font size of any context can be easily changed by setting
572 the @code{fontSize} property for that context.  Its value is a number:
573 negative numbers make the font smaller, positive numbers larger. An
574 example is given below:
575 @c
576 @lilypond[fragment,relative=1,verbatim]
577   c4 c4 \set fontSize = #-3
578   f4 g4
579 @end lilypond
580 This command will set @code{font-size} (see below) in all layout
581 objects in the current context. It does not change the size of
582 variable symbols, such as beams or slurs.
583
584 The font size is set by modifying the @code{font-size} property.  Its
585 value is a number indicating the size relative to the standard size.
586 Each step up is an increase of approximately 12% of the font size. Six
587 steps is exactly a factor two. The Scheme function @code{magstep}
588 converts a @code{font-size} number to a scaling factor.
589
590 LilyPond has fonts in different design sizes: the music fonts for
591 smaller sizes are chubbier, while the text fonts are relatively wider.
592 Font size changes are achieved by scaling the design size that is
593 closest to the desired size.
594
595 The @code{font-size} mechanism does not work for fonts selected
596 through @code{font-name}. These may be scaled with
597 @code{font-magnification}.
598
599
600 One of the uses of @code{fontSize} is to get smaller symbols for cue
601 notes. An elaborate example of those is in
602 @inputfileref{input/test,cue-notes.ly}.
603
604 @cindex @code{font-style}
605
606 @refcommands
607
608 The following commands set @code{fontSize} for the current voice.
609
610 @cindex @code{\tiny}
611 @code{\tiny}, 
612 @cindex @code{\small}
613 @code{\small}, 
614 @cindex @code{\normalsize}
615 @code{\normalsize}.
616
617
618
619 @cindex magnification
620 @cindex cue notes
621
622
623 @node Font selection
624 @subsection Font selection
625
626 Font selection for the standard fonts, @TeX{}'s Computer Modern fonts,
627 can also be adjusted with a more fine-grained mechanism.  By setting
628 the object properties described below, you can select a different font;
629 all three mechanisms work for every object that supports
630 @code{font-interface}:
631
632
633 @itemize @bullet
634 @item @code{font-family}
635  is a symbol indicating the general class of the typeface.  Supported are
636 @code{roman} (Computer Modern), @code{braces} (for piano staff
637 braces), @code{music} (the standard music font, including ancient
638 glyphs), @code{dynamic} (for dynamic signs) and @code{typewriter}.
639   
640 @item @code{font-shape}
641   is a symbol indicating the shape of the font, there are typically several
642   font shapes available for each font family. Choices are @code{italic},
643   @code{caps} and @code{upright}.
644
645 @item @code{font-series}
646 is a  symbol indicating the series of the font. There are typically several
647 font series for each font family and shape. Choices are @code{medium}
648 and @code{bold}. 
649
650 @end table
651
652
653 Fonts selected in the way sketched above come from a predefined style
654 sheet.
655
656  The font used for printing a object can be selected by setting
657 @code{font-name}, e.g.
658 @example
659   \override Staff.TimeSignature
660       #'font-name = #"cmr17"
661 @end example
662
663 @noindent
664 Any font can be used, as long as it is available to @TeX{}. Possible
665 fonts include foreign fonts or fonts that do not belong to the
666 Computer Modern font family.  The size of fonts selected in this way
667 can be changed with the @code{font-magnification} property.  For
668 example, @code{2.0} blows up all letters by a factor 2 in both
669 directions.
670
671 @cindex font size
672 @cindex font magnification
673
674
675
676 @seealso
677
678 Init files: @file{ly/declarations-init.ly} contains hints how new
679 fonts may be added to LilyPond.
680
681 @refbugs
682
683 No style sheet is provided for other fonts besides the @TeX{}
684 Computer Modern family.
685
686 @cindex font selection
687 @cindex font magnification
688 @cindex @code{font-interface}
689
690
691 @node Text markup
692 @section Text markup
693 @cindex text markup
694 @cindex markup text
695
696
697 @cindex typeset text
698
699 LilyPond has an internal mechanism to typeset texts. You can access it
700 with the keyword @code{\markup}. Within markup mode, you can enter texts
701 similar to lyrics: simply enter them, surrounded by spaces:
702 @cindex markup
703
704 @lilypond[verbatim,fragment,relative=1]
705  c1^\markup { hello }
706  c1_\markup { hi there }
707  c1^\markup { hi \bold there, is \italic anyone home? }
708 @end lilypond
709
710 @cindex font switching
711
712 The markup in the example demonstrates font switching commands.  The
713 command @code{\bold} and @code{\italic} only apply to the first
714 following word; enclose a set of texts with braces to apply a command
715 to more words:
716 @example
717   \markup @{ \bold @{ hi there @} @}
718 @end example
719
720 @noindent
721 For clarity, you can also do this for single arguments, e.g.
722
723 @verbatim
724   \markup { is \italic { anyone } home }
725 @end verbatim
726
727 @cindex font size, texts
728
729
730 In markup mode you can compose expressions, similar to mathematical
731 expressions, XML documents and music expressions.  The braces group
732 notes into horizontal lines. Other types of lists also exist: you can
733 stack expressions grouped with @code{<}, and @code{>} vertically with
734 the command @code{\column}. Similarly, @code{\center-align} aligns
735 texts by their center lines:
736
737 @lilypond[verbatim,fragment,relative=1]
738  c1^\markup { \column < a bbbb c > }
739  c1^\markup { \center-align < a bbbb c > }
740  c1^\markup { \line < a b c > }
741 @end lilypond
742
743
744 Markups can be stored in variables, and these variables
745 may be attached to notes, like
746 @verbatim
747 allegro = \markup { \bold \large { Allegro } }
748 \notes { a^\allegro b c d }
749 @end verbatim
750
751
752 Some objects have alignment procedures of their own, which cancel out
753 any effects of alignments applied to their markup arguments as a
754 whole.  For example, the @internalsref{RehearsalMark} is horizontally
755 centered, so using @code{\mark \markup @{ \left-align .. @}} has no
756 effect.
757
758 Similarly, for moving whole texts over notes with
759 @code{\raise}, use the following trick:
760 @example
761   "" \raise #0.5 raised
762 @end example
763
764 The text @code{raised} is now raised relative to the empty string
765 @code{""} which is not visible.  Alternatively, complete objects can
766 be moved with layout properties such as @code{padding} and
767 @code{extra-offset}.
768
769
770
771 @seealso
772
773 Init files:  @file{scm/new-markup.scm}.
774
775
776 @refbugs
777
778 Text layout is ultimately done by @TeX{}, which does kerning of
779 letters.  LilyPond does not account for kerning, so texts will be
780 spaced slightly too wide.
781
782 Syntax errors for markup mode are confusing.
783
784 Markup texts cannot be used in the titling of the @code{\header}
785 field. Titles are made by La@TeX{}, so La@TeX{} commands should be used
786 for formatting.
787
788
789
790 @menu
791 * Overview of text markup commands::  
792 @end menu
793
794 @node  Overview of text markup commands
795 @subsection Overview of text markup commands
796
797 @include markup-commands.tely
798
799
800 @node Global layout
801 @section Global layout
802
803 The global layout determined by three factors: the page layout, the
804 line breaks and the spacing. These all influence each other. The
805 choice of spacing determines how densely each system of music is set,
806 which influences where line breaks breaks are chosen, and thus
807 ultimately how many pages a piece of music takes. This section
808 explains how to tune the algorithm for spacing.
809
810 Globally spoken, this procedure happens in three steps: first,
811 flexible distances (``springs'') are chosen, based on durations. All
812 possible line breaking combination are tried, and the one with the
813 best results---a layout that has uniform density and requires as
814 little stretching or cramping as possible---is chosen. When the score
815 is processed by @TeX{}, each page is filled with systems, and page breaks
816 are chosen whenever the page gets full.
817
818
819
820 @menu
821 * Vertical spacing::            
822 * Horizontal spacing::          
823 * Font Size::                   
824 * Line breaking::               
825 * Page layout::                 
826 @end menu
827
828
829 @node Vertical spacing
830 @subsection Vertical spacing
831
832 @cindex vertical spacing
833 @cindex distance between staves
834 @cindex staff distance
835 @cindex between staves, distance
836 @cindex staves per page
837 @cindex space between staves
838
839 The height of each system is determined automatically by LilyPond, to
840 keep systems from bumping into each other, some minimum distances are
841 set.  By changing these, you can put staves closer together, and thus
842 put more  systems onto one page.
843
844 Normally staves are stacked vertically. To make
845 staves maintain a distance, their vertical size is padded. This is
846 done with the property @code{minimumVerticalExtent}. It takes a pair
847 of numbers, so if you want to make it smaller from its, then you could
848 set
849 @example
850   \set Staff.minimumVerticalExtent = #'(-4 . 4)
851 @end example
852 This sets the vertical size of the current staff to 4 staff spaces on
853 either side of the center staff line.  The argument of
854 @code{minimumVerticalExtent} is interpreted as an interval, where the
855 center line is the 0, so the first number is generally negative.  The
856 staff can be made larger at the bottom by setting it to @code{(-6
857 . 4)}.
858
859 The piano staves are handled a little differently: to make cross-staff
860 beaming work correctly, it is necessary that the distance between staves
861 is fixed beforehand.  This is also done with a
862 @internalsref{VerticalAlignment} object, created in
863 @internalsref{PianoStaff}. In this object the distance between the
864 staves is fixed by setting @code{forced-distance}. If you want to
865 override this, use a @code{\context} block as follows:
866 @example
867   \paper @{
868     \context @{
869       \PianoStaffContext
870       \override VerticalAlignment #'forced-distance = #9
871     @}
872     @dots{}
873   @}
874 @end example
875 This would bring the staves together at a distance of 9 staff spaces,
876 measured from the center line of each staff.
877
878 @seealso
879
880 Internals: Vertical alignment of staves is handled by the
881 @internalsref{VerticalAlignment} object.
882
883
884
885
886 @node Horizontal spacing
887 @subsection Horizontal Spacing
888
889 The spacing engine translates differences in durations into
890 stretchable distances (``springs'') of differing lengths. Longer
891 durations get more space, shorter durations get less.  The shortest
892 durations get a fixed amount of space (which is controlled by
893 @code{shortest-duration-space} in the @internalsref{SpacingSpanner} object). 
894 The longer the duration, the more space it gets: doubling a
895 duration adds a fixed amount (this amount is controlled by
896 @code{spacing-increment}) of space to the note.
897
898 For example, the following piece contains lots of half, quarter and
899 8th notes, the eighth note is followed by 1 note head width (NHW). 
900 The quarter note is followed by 2 NHW, the half by 3 NHW, etc.
901 @lilypond[fragment,verbatim,relative=1] c2 c4. c8 c4. c8 c4. c8 c8
902 c8 c4 c4 c4
903 @end lilypond
904
905 Normally, @code{shortest-duration-space} is set to 1.2, which is the
906 width of a note head, and @code{shortest-duration-space} is set to
907 2.0, meaning that the shortest note gets 2 NHW (i.e. 2 times
908 @code{shortest-duration-space}) of space. For normal notes, this space
909 is always counted from the left edge of the symbol, so the shortest
910 notes are generally followed by one NHW of space.
911
912 If one would follow the above procedure exactly, then adding a single
913 32th note to a score that uses 8th and 16th notes, would widen up the
914 entire score a lot. The shortest note is no longer a 16th, but a 32nd,
915 thus adding 1 NHW to every note. To prevent this, the
916 shortest duration for spacing is not the shortest note in the score,
917 but the most commonly found shortest note.  Notes that are even
918 shorter this are followed by a space that is proportional to their
919 duration relative to the common shortest note.  So if we were to add
920 only a few 16th notes to the example above, they would be followed by
921 half a NHW:
922
923 @lilypond[fragment,verbatim,relative=2]
924  c2 c4. c8 c4. c16[ c] c4. c8 c8 c8 c4 c4 c4
925 @end lilypond
926
927 The most common shortest duration is determined as follows: in every
928 measure, the shortest duration is determined. The most common short
929 duration, is taken as the basis for the spacing, with the stipulation
930 that this shortest duration should always be equal to or shorter than
931 1/8th note. The shortest duration is printed when you run lilypond
932 with @code{--verbose}.  These durations may also be customized. If you
933 set the @code{common-shortest-duration} in
934 @internalsref{SpacingSpanner}, then this sets the base duration for
935 spacing. The maximum duration for this base (normally 1/8th), is set
936 through @code{base-shortest-duration}.
937
938 @cindex @code{common-shortest-duration}
939 @cindex @code{base-shortest-duration}
940 @cindex @code{stem-spacing-correction}
941 @cindex @code{spacing}
942
943 In the introduction it was explained that stem directions influence
944 spacing. This is controlled with @code{stem-spacing-correction}
945 property in @internalsref{NoteSpacing}, which are generated for every
946 @internalsref{Voice} context. The @code{StaffSpacing} object
947 (generated at @internalsref{Staff} context) contains the same property
948 for controlling the stem/bar line spacing. The following example
949 shows these corrections, once with default settings, and once with
950 exaggerated corrections:
951
952 @lilypond
953     \score { \notes {
954       c'4 e''4 e'4 b'4 |
955       b'4 e''4 b'4 e''4|
956       \override Staff.NoteSpacing   #'stem-spacing-correction
957    = #1.5
958       \override Staff.StaffSpacing   #'stem-spacing-correction
959    = #1.5
960       c'4 e''4 e'4 b'4 |
961       b'4 e''4 b'4 e''4|      
962     }
963     \paper { raggedright = ##t } }
964 @end lilypond
965
966 @cindex SpacingSpanner, overriding properties
967
968 Properties of the  @internalsref{SpacingSpanner} must be overridden
969 from the @code{\paper} block, since the @internalsref{SpacingSpanner} is
970 created before any property commands are interpreted.
971 @example
972 \paper @{ \context  @{
973   \ScoreContext
974   SpacingSpanner \override #'spacing-increment = #3.0
975 @} @}
976 @end example
977
978
979 @seealso
980
981 Internals: @internalsref{SpacingSpanner}, @internalsref{NoteSpacing},
982 @internalsref{StaffSpacing}, @internalsref{SeparationItem}, and
983 @internalsref{SeparatingGroupSpanner}.
984
985 @refbugs
986
987 Spacing is determined on a score wide basis. If you have a score that
988 changes its character (measured in durations) halfway during the
989 score, the part containing the longer durations will be spaced too
990 widely.
991
992 There is no convenient mechanism to manually override spacing.
993
994
995
996 @node Font Size
997 @subsection Font size
998
999 @cindex font size, setting
1000 @cindex staff size, setting
1001 @cindex @code{paper} file
1002
1003 The Feta font provides musical symbols at eight  different
1004 sizes. Each font is tuned for a different staff size: at smaller sizes
1005 the font gets heavier, to match the relatively heavier staff lines.
1006 The recommended font sizes are listed in the following table:
1007
1008 @multitable @columnfractions  .25 .25 .25 .25
1009
1010 @item @b{font name}
1011 @tab @b{staff height (pt)}
1012 @tab @b{staff height (mm)}
1013 @tab @b{use}
1014
1015 @item feta11
1016 @tab 11.22
1017 @tab 3.9 
1018 @tab pocket scores
1019
1020 @item feta13
1021 @tab 12.60
1022 @tab 4.4
1023 @tab
1024
1025 @item feta14
1026 @tab 14.14
1027 @tab 5.0
1028 @tab 
1029
1030 @item feta16
1031 @tab 15.87
1032 @tab 5.6
1033 @tab 
1034
1035 @item feta18
1036 @tab 17.82
1037 @tab 6.3
1038 @tab song books
1039
1040 @item feta20
1041 @tab 17.82
1042 @tab 7.0
1043 @tab standard parts 
1044
1045 @item feta23
1046 @tab 22.45 
1047 @tab 7.9
1048 @tab 
1049
1050 @item feta20
1051 @tab 25.2 
1052 @tab 8.9
1053 @tab
1054 @c modern rental material  ?
1055
1056 @end multitable
1057
1058 These fonts are available in any sizes. The context property
1059 @code{fontSize} and the layout property @code{staff-space} (in
1060 @internalsref{StaffSymbol}) can be used to tune size for individual
1061 staves. The size of individual staves are relative to the global size,
1062 which can be set   in the following manner:
1063
1064 @example
1065   #(set-global-staff-size 14)
1066 @end example
1067
1068 This sets the global default size to 14pt staff height, and scales all
1069 fonts accordingly.
1070
1071 @seealso
1072
1073 This manual: @ref{Selecting font sizes}.
1074
1075
1076 @node Line breaking
1077 @subsection Line breaking
1078
1079 @cindex line breaks
1080 @cindex breaking lines
1081
1082 Line breaks are normally computed automatically. They are chosen such
1083 that lines look neither cramped nor loose, and that consecutive lines
1084 have similar density.
1085
1086 Occasionally you might want to override the automatic breaks; you can
1087 do this by  specifying @code{\break}. This will force a line break at
1088 this point.  Line breaks can only occur at places where there are bar
1089 lines.  If you want to have a line break where there is no bar line,
1090 you can force an invisible bar line by entering @code{\bar
1091 ""}. Similarly, @code{\noBreak} forbids a line break at a 
1092 point.
1093
1094
1095 @cindex regular line breaks
1096 @cindex four bar music. 
1097
1098 For line breaks at regular intervals  use @code{\break} separated by
1099 skips and repeated with @code{\repeat}:
1100 @example
1101 <<  \repeat unfold 7 @{
1102          s1 \noBreak s1 \noBreak
1103          s1 \noBreak s1 \break  @}
1104    @emph{the real music}
1105 >> 
1106 @end  example
1107
1108 @noindent
1109 This makes the following 28 measures (assuming 4/4 time) be broken every
1110 4 measures, and only there.
1111
1112 @refcommands
1113
1114 @code{\break}, @code{\noBreak}
1115 @cindex @code{\break}
1116 @cindex @code{\noBreak}
1117
1118 @seealso
1119
1120 Internals: @internalsref{BreakEvent}.
1121
1122
1123 @node Page layout
1124 @subsection Page layout
1125
1126 @cindex page breaks
1127 @cindex breaking pages
1128
1129 @cindex @code{indent}
1130 @cindex @code{linewidth}
1131
1132 The most basic settings influencing the spacing are @code{indent} and
1133 @code{linewidth}. They are set in the @code{\paper} block. They
1134 control the indentation of the first line of music, and the lengths of
1135 the lines.
1136
1137 If  @code{raggedright} is set to true in the @code{\paper}
1138 block, then the lines are justified at their natural length. This
1139 useful for short fragments, and for checking how tight the natural
1140 spacing is.
1141
1142 @cindex page layout
1143 @cindex vertical spacing
1144
1145 The page layout process happens outside the LilyPond formatting
1146 engine: variables controlling page layout are passed to the output,
1147 and are further interpreted by @code{lilypond} wrapper program. It
1148 responds to the following variables in the @code{\paper} block.  The
1149 spacing between systems is controlled with @code{interscoreline}, its
1150 default is 16pt.  The distance between the score lines will stretch in
1151 order to fill the full page @code{interscorelinefill} is set to a
1152 positive number.  In that case @code{interscoreline} specifies the
1153 minimum spacing.
1154
1155 @cindex @code{textheight}
1156 @cindex @code{interscoreline}
1157 @cindex @code{interscorelinefill}
1158
1159 If the variable @code{lastpagefill} is defined,
1160 @c fixme: this should only be done if lastpagefill= #t 
1161 systems are evenly distributed vertically on the last page.  This
1162 might produce ugly results in case there are not enough systems on the
1163 last page.  The @command{lilypond-book} command ignores
1164 @code{lastpagefill}.  See @ref{lilypond-book manual} for more
1165 information.
1166
1167 @cindex @code{lastpagefill}
1168
1169 Page breaks are normally computed by @TeX{}, so they are not under
1170 direct control of LilyPond.  However, you can insert a commands into
1171 the @file{.tex} output to instruct @TeX{} where to break pages.  This
1172 is done by setting the @code{between-systems-strings} on the
1173 @internalsref{NonMusicalPaperColumn} where the system is broken.
1174 An example is shown in @inputfileref{input/regression,between-systems.ly}.
1175 The predefined command @code{\newpage} also does this.
1176
1177 @cindex paper size
1178 @cindex page size
1179 @cindex @code{papersize}
1180
1181 To change the paper size, use the following Scheme code:
1182 @example
1183         \paper@{
1184            #(set-paper-size "a4")
1185         @}
1186 @end example
1187
1188
1189 @refcommands
1190
1191 @cindex @code{\newpage}
1192 @code{\newpage}. 
1193
1194
1195 @seealso
1196
1197 In this manual: @ref{Invoking lilypond}.
1198
1199 Examples: @inputfileref{input/regression,between-systems.ly}.
1200
1201 Internals: @internalsref{NonMusicalPaperColumn}.
1202
1203 @refbugs
1204
1205 LilyPond has no concept of page layout, which makes it difficult to
1206 reliably choose page breaks in longer pieces.
1207
1208
1209 @node Interpretation context
1210 @section Interpretation context
1211
1212 @menu
1213 * Creating contexts::           
1214 * Default contexts::            
1215 * Context properties::          
1216 * Defining contexts::           
1217 * Changing contexts locally::   
1218 * Engravers and performers::    
1219 * Defining new contexts::       
1220 @end menu
1221
1222
1223 Interpretation contexts are objects that only exist during program
1224 run.  During the interpretation phase (when @code{interpreting music}
1225 is printed on the standard output), the music expression in a
1226 @code{\score} block is interpreted in time order, the same order in
1227 which we hear and play the music.  During this phase, the interpretation
1228 context holds the state for the current point within the music, for
1229 example:
1230 @itemize @bullet
1231 @item What notes are playing at this point?
1232
1233 @item What symbols will be printed at this point?
1234
1235 @item What is the current key signature, time signature, point within
1236 the measure, etc.?
1237 @end itemize
1238
1239 Contexts are grouped hierarchically: A @internalsref{Voice} context is
1240 contained in a @internalsref{Staff} context (because a staff can contain
1241 multiple voices at any point), a @internalsref{Staff} context is contained in
1242 @internalsref{Score}, @internalsref{StaffGroup}, or
1243 @internalsref{ChoirStaff} context.
1244
1245 Contexts associated with sheet music output are called @emph{notation
1246 contexts}, those for sound output are called @emph{performance
1247 contexts}.  The default definitions of the standard notation and
1248 performance contexts can be found in @file{ly/engraver-init.ly} and
1249 @file{ly/performer-init.ly}, respectively.
1250
1251
1252 @node Creating contexts
1253 @subsection Creating contexts
1254 @cindex @code{\context}
1255 @cindex context selection
1256
1257 Contexts for a music expression can be selected manually, using one of
1258 the following music expressions:
1259
1260 @example
1261 \new @var{contexttype} @var{musicexpr}
1262 \context @var{contexttype} [= @var{contextname}] @var{musicexpr}
1263 @end example
1264
1265 @noindent
1266 This means that @var{musicexpr} should be interpreted within a context
1267 of type @var{contexttype} (with name @var{contextname} if specified).
1268 If no such context exists, it will be created:
1269
1270 @lilypond[verbatim,raggedright]
1271 \score {
1272   \notes \relative c'' {
1273     c4 <<d4 \context Staff = "another" e4>> f
1274   }
1275 }
1276 @end lilypond
1277
1278 @noindent
1279 In this example, the @code{c} and @code{d} are printed on the default
1280 staff.  For the @code{e}, a context @code{Staff} called @code{another}
1281 is specified; since that does not exist, a new context is created.
1282 Within @code{another}, a (default) Voice context is created for the
1283 @code{e4}.  A context is ended when when all music referring it has
1284 finished, so after the third quarter, @code{another} is removed.
1285
1286 The @code{\new} construction creates a context with a
1287 generated, unique @var{contextname}. An expression with
1288 @code{\new} always leads to a new context. This is convenient
1289 for creating multiple staves, multiple lyric lines, etc.
1290
1291 When using automatic staff changes, automatic phrasing, etc., the
1292 context names have special meanings, so @code{\new} cannot be
1293 used.
1294
1295
1296 @node Default contexts
1297 @subsection Default contexts
1298
1299 Every top level music is interpreted by the @code{Score} context; in
1300 other words, you may think of @code{\score} working like
1301
1302 @example
1303 \score @{
1304   \context Score @var{music}
1305 @}
1306 @end example
1307
1308 Music expressions  inherit their context from the enclosing music
1309 expression. Hence, it is not necessary to explicitly specify
1310 @code{\context} for most expressions.  In
1311 the following example, only the sequential expression has an explicit
1312 context. The notes contained therein inherit the @code{goUp} context
1313 from the enclosing music expression.
1314
1315 @lilypond[verbatim,raggedright]
1316   \notes \context Voice = goUp { c'4 d' e' }
1317 @end lilypond
1318
1319
1320 Second, contexts are created automatically to be able to interpret the
1321 music expressions.  Consider the following example:
1322
1323 @lilypond[verbatim,raggedright]
1324   \score { \notes { c'4-( d' e'-) } }
1325 @end lilypond
1326
1327 @noindent
1328 The sequential music is interpreted by the Score context initially,
1329 but when a note is encountered, contexts are setup to accept that
1330 note.  In this case, a @code{Voice}, and @code{Staff}
1331 context are created.  The rest of the sequential music is also
1332 interpreted with the same @code{Voice}, and
1333 @code{Staff} context, putting the notes on the same staff, in the same
1334 voice.
1335
1336 @node Context properties
1337 @subsection Context properties
1338
1339 Contexts have properties.  These properties are set from the @file{.ly}
1340 file using the following expression:
1341 @cindex context properties
1342 @cindex properties, context
1343
1344 @example
1345 \set @var{contextname}.@var{propname} = @var{value}
1346 @end example
1347
1348 @noindent
1349 Sets the @var{propname} property of the context @var{contextname} to
1350 the specified Scheme expression @var{value}.  Both @var{propname} and
1351 @var{contextname} are strings, which can often be written unquoted.
1352
1353 @cindex inheriting
1354 Properties that are set in one context are inherited by all of the
1355 contained contexts.  This means that a property valid for the
1356 @internalsref{Voice} context can be set in the @internalsref{Score} context
1357 (for example) and thus take effect in all @internalsref{Voice} contexts.
1358
1359 Properties can be unset using the following statement.
1360 @example
1361 \unset @var{contextname}.@var{propname} 
1362 @end example
1363
1364 @cindex properties, unsetting
1365 @cindex @code{\unset}
1366
1367 @noindent
1368 This removes the definition of @var{propname} in @var{contextname}.  If
1369 @var{propname} was not defined in @var{contextname} (but was inherited
1370 from a higher context), then this has no effect.
1371
1372 If @var{contextname} is left out, then it defaults to the current
1373 ``bottom'' context: this is a context like @internalsref{Voice} that
1374 cannot contain any other contexts.
1375
1376
1377 @node Defining contexts
1378 @subsection Defining contexts
1379
1380 @cindex context definition
1381 @cindex translator definition
1382
1383 The most common way to create a new context definition is by extending
1384 an existing one.  An existing context from the paper block is copied
1385 by referencing a context identifier:
1386
1387 @example
1388 \paper @{
1389   \context @{
1390     @var{context-identifier}
1391   @}
1392 @}
1393 @end example
1394
1395 @noindent
1396 Every predefined context has a standard identifier. For example, the
1397 @code{Staff} context can be referred to as @code{\StaffContext}.
1398
1399 The context can then be modified by setting or changing properties,
1400 e.g.
1401 @example
1402 \context @{
1403   \StaffContext
1404   Stem \set #'thickness = #2.0
1405   defaultBarType = #"||"
1406 @}
1407 @end example
1408 These assignments happen before interpretation starts, so a property
1409 command will override any predefined settings.
1410
1411 @cindex engraver
1412
1413 @refbugs
1414
1415 It is not possible to collect multiple property assignments in a
1416 variable, and apply to one @code{\context} definition by
1417 referencing that variable.
1418
1419 @node Changing contexts locally
1420 @subsection Changing contexts locally
1421
1422
1423 Extending an existing context can also be done locally. A piece of
1424 music can be interpreted in a changed context by using the following syntax
1425
1426 @example
1427   \with @{
1428      @var{context modifications}
1429   @}
1430 @end example
1431
1432 These statements comes between @code{\new} or @code{\context} and the
1433 music to be interpreted. The @var{context modifications} property
1434 settings and @code{\remove}, @code{\consists} and @code{\consistsend}
1435 commands. The syntax is similar to the @code{\context} block.
1436
1437 The following example shows how a staff is created with bigger spaces,
1438 and without a @code{Clef_engraver}.
1439
1440 @lilypond[relative=1,fragment,verbatim]
1441 <<
1442   \new Staff { c4 es4 g2 }
1443   \new Staff \with {
1444         \override StaffSymbol #'staff-space = #(magstep 1.5)
1445         fontSize = #1.5
1446         \remove "Clef_engraver"
1447   } {
1448         c4 es4 g2
1449   } >>
1450 @end lilypond
1451
1452 @refbugs
1453
1454 The command @code{\with} has no effect on contexts that already
1455 exist. 
1456
1457
1458 @node Engravers and performers
1459 @subsection  Engravers and performers
1460
1461
1462 Each context is composed of a number of building blocks, or plug-ins
1463 called engravers.  An engraver is a specialized C++ class that is
1464 compiled into the executable. Typically, an engraver is responsible
1465 for one function: the @code{Slur_engraver} creates only @code{Slur}
1466 objects, and the @code{Skip_event_swallow_translator} only swallows
1467 (silently gobbles) @code{SkipEvent}s.
1468
1469
1470
1471 @cindex engraver
1472 @cindex plug-in
1473
1474 An existing context definition can be changed by adding or removing an
1475 engraver. The syntax for these operations is
1476 @example
1477 \consists @var{engravername}
1478 \remove @var{engravername}
1479 @end example
1480
1481 @cindex @code{\consists}
1482 @cindex @code{\remove}
1483
1484 @noindent
1485 Here @var{engravername} is a string, the name of an engraver in the
1486 system. In the following example, the @code{Clef_engraver} is removed
1487 from the Staff context. The result is a staff without a clef, where
1488 the middle C is at its default position, the center line:
1489
1490 @lilypond[verbatim,raggedright]
1491 \score {
1492   \notes {
1493     c'4 f'4
1494   }
1495   \paper {
1496     \context {
1497       \StaffContext
1498       \remove Clef_engraver
1499     }
1500   }
1501 }
1502 @end lilypond
1503
1504 A list of all engravers is in the internal documentation,
1505 see @internalsref{Engravers}.
1506
1507 @node Defining new contexts
1508 @subsection Defining new contexts
1509
1510
1511 It is also possible to define new contexts from scratch.  To do this,
1512 you must define give the new context a name.  In the following
1513 example, a very simple Staff context is created: one that will put
1514 note heads on a staff symbol.
1515
1516 @example
1517 \context @{
1518   \type "Engraver_group_engraver"
1519   \name "SimpleStaff"
1520   \alias "Staff"
1521   \consists "Staff_symbol_engraver"
1522   \consists "Note_head_engraver"
1523   \consistsend "Axis_group_engraver"
1524 @}
1525 @end example
1526
1527 @noindent
1528 The argument of @code{\type} is the name for a special engraver that
1529 handles cooperation between simple engravers such as
1530 @code{Note_head_engraver} and @code{Staff_symbol_engraver}.  This
1531 should always be  @code{Engraver_group_engraver} (unless you are
1532 defining a Score context from scratch, in which case
1533 @code{Score_engraver}   must be used).
1534
1535 The complete list of context  modifiers is the following:
1536 @itemize @bullet
1537 @item @code{\alias} @var{alternate-name}:
1538 This specifies a different name.  In the above example,
1539 @code{\set Staff.X = Y} will also work on @code{SimpleStaff}s.
1540
1541 @item @code{\consistsend} @var{engravername}:
1542 Analogous to @code{\consists}, but makes sure that
1543 @var{engravername} is always added to the end of the list of
1544 engravers.
1545
1546 Engravers that group context objects into axis groups or alignments
1547 need to be at the end of the list. @code{\consistsend} insures that
1548 engravers stay at the end even if a user adds or removes engravers.
1549
1550 @item @code{\accepts} @var{contextname}:
1551 This context can contains @var{contextname} contexts.  The first
1552 @code{\accepts} is created as a default context when events (e.g. notes
1553 or rests) are encountered.
1554
1555 @item @code{\denies}:
1556 The opposite of @code{\accepts}.
1557
1558 @item @code{\name} @var{contextname}:
1559 This sets the type name of the context, e.g. @code{Staff},
1560 @code{Voice}.  If the name is not specified, the translator will not
1561 do anything.
1562 @end itemize
1563
1564 @c EOF
1565
1566
1567
1568
1569 @node Output details
1570 @section Output details
1571
1572 The default output format is La@TeX{}, which should be run
1573 through La@TeX{}.  Using the option @option{-f}
1574 (or @option{--format}) other output formats can be selected also, but
1575  none of them work reliably.
1576
1577 Now the music is output system by system (a `system' consists of all
1578 staves belonging together).  From @TeX{}'s point of view, a system is an
1579 @code{\hbox} which contains a lowered @code{\vbox} so that it is centered
1580 vertically on the baseline of the text.  Between systems,
1581 @code{\interscoreline} is inserted vertically to have stretchable space.
1582 The horizontal dimension of the @code{\hbox} is given by the
1583 @code{linewidth} parameter from LilyPond's @code{\paper} block.
1584
1585 After the last system LilyPond emits a stronger variant of
1586 @code{\interscoreline} only if the macro
1587 @code{\lilypondpaperlastpagefill} is not defined (flushing the systems
1588 to the top of the page).  You can avoid that by setting the variable
1589 @code{lastpagefill} in LilyPond's @code{\paper} block.
1590
1591 It is possible to fine-tune the vertical offset further by defining the
1592 macro @code{\lilypondscoreshift}:
1593
1594 @example
1595 \def\lilypondscoreshift@{0.25\baselineskip@}
1596 @end example
1597
1598 @noindent
1599 where @code{\baselineskip} is the distance from one text line to the next.
1600
1601 Here an example how to embed a small LilyPond file @code{foo.ly} into
1602 running La@TeX{} text without using the @code{lilypond-book} script
1603 (@pxref{lilypond-book manual}):
1604
1605 @example
1606 \documentclass@{article@}
1607
1608 \def\lilypondpaperlastpagefill@{@}
1609 \lineskip 5pt
1610 \def\lilypondscoreshift@{0.25\baselineskip@}
1611
1612 \begin@{document@}
1613 This is running text which includes an example music file
1614 \input@{foo.tex@}
1615 right here.
1616 \end@{document@}
1617 @end example
1618
1619 The file @file{foo.tex} has been simply produced with
1620
1621 @example
1622   lilypond-bin foo.ly
1623 @end example
1624
1625 The call to @code{\lineskip} assures that there is enough vertical space
1626 between the LilyPond box and the surrounding text lines.
1627