]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/changing-defaults.itely
439af71b3787f5db86726b2351a61c296d332014
[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
408 @node Constructing a tweak
409 @subsection Constructing a tweak
410
411
412 @cindex internal documentation
413 @cindex finding graphical objects
414 @cindex graphical object descriptions 
415 @cindex tweaking
416 @cindex @code{\override}
417 @cindex @code{\set}
418 @cindex internal documentation
419
420
421
422 Three pieces of information are required to use @code{\override} and
423 @code{\set}: the name of the layout object, the context and the name
424 of the property.  We demonstrate how to glean this information from
425 the notation manual and the program reference.
426
427 The generated documentation is a set of HTML pages which should be
428 included if you installed a binary distribution, typically in
429 @file{/usr/share/doc/lilypond}.  They are also available on the web:
430 go to the @uref{http://lilypond.org,LilyPond website}, click
431 ``Documentation'', select the correct version, and then click
432 ``Program reference.'' It is advisable to bookmark the local HTML
433 files. They will load faster than the ones on the web and matches the
434 version of LilyPond you are using.
435  
436
437
438 @c  [TODO: revise for new site.]
439
440 Suppose we want to move the fingering indication in the fragment
441 below:
442
443 @lilypond[relative=2,verbatim]
444 c-2
445 \stemUp
446 f
447 @end lilypond
448
449 If you visit the documentation of @code{Fingering} (in @ref{Fingering
450 instructions}), you will notice that there is written:
451
452 @quotation
453 @seealso
454
455 Internals: @internalsref{FingerEvent} and @internalsref{Fingering}.
456
457 @end quotation
458
459 @separate
460
461 @noindent
462 In other words, the fingerings once entered, are internally stored as
463 @code{FingerEvent} music objects. When printed, a @code{Fingering}
464 layout object is created for every @code{FingerEvent}.
465
466 The Fingering object has a number of different functions, and each of
467 those is captured in an interface. The interfaces are listed under
468 @internalsref{Fingering} in the program reference.
469
470
471
472 The @code{Fingering} object has a fixed size
473 (@internalsref{item-interface}), the symbol is a piece of text
474 (@internalsref{text-interface}), whose font can be set
475 (@internalsref{font-interface}).  It is centered horizontally
476 (@internalsref{self-alignment-interface}), it is placed vertically
477 next to other objects (@internalsref{side-position-interface}), and
478 its placement is coordinated with other scripts
479 (@internalsref{text-script-interface}).  It also has the standard
480 @internalsref{grob-interface} (grob stands for Graphical object)
481 @cindex grob
482 @cindex graphical object
483 @cindex layout object
484 @cindex object, layout 
485 with all the variables that come with
486 it.  Finally, it denotes a fingering instruction, so it has
487 @internalsref{finger-interface}.
488
489 For the vertical placement, we have to look under
490 @code{side-position-interface}:
491 @quotation
492 @code{side-position-interface}
493
494   Position a victim object (this one) next to other objects (the
495   support).  In this case, the property @code{direction} signifies where to put the
496   victim object relative to the support (left or right, up or down?)
497 @end quotation
498
499 @cindex padding
500 @noindent
501 below this description, the variable @code{padding} is described as
502 @quotation
503 @table @code
504 @item padding
505  (dimension, in staff space)
506
507    add this much extra space between objects that are next to each
508 other. Default value: @code{0.6}
509 @end table
510 @end quotation
511
512 By increasing the value of @code{padding}, we can move away the
513 fingering.  The following command inserts 3 staff spaces of white
514 between the note and the fingering:
515 @example
516 \once \override Fingering   #'padding = #3
517 @end example
518
519 Inserting this command before the Fingering object is created,
520 i.e. before @code{c2}, yields the following result:
521
522 @lilypond[relative=2,fragment,verbatim]
523 \once \override Fingering
524     #'padding = #3
525 c-2
526 \stemUp
527 f
528 @end lilypond
529
530 The context name @code{Voice} in the example above can be determined
531 as follows. In the documentation for @internalsref{Fingering}, it says
532 @quotation
533 Fingering grobs are created by: @internalsref{Fingering_engraver} @c
534 @end quotation
535
536 Clicking @code{Fingering_engraver} shows the documentation of
537 the module responsible for interpreting the fingering instructions and
538 translating them to a @code{Fingering} object.  Such a module is called
539 an @emph{engraver}.  The documentation of the @code{Fingering_engraver}
540 says
541 @example
542 Fingering_engraver is part of contexts: Voice 
543 @end example
544 so tuning the settings for Fingering should be done with
545 @example
546   \override Fingering @dots{}
547 @end example
548
549 Of course, the tweak may also done in a larger context than
550 @code{Voice}, for example, @internalsref{Staff} or
551 @internalsref{Score}.
552
553 @seealso
554
555 Internals: the program reference also contains alphabetical lists of
556 @internalsref{Contexts}, @internalsref{All-layout-objects} and
557 @internalsref{Music-expressions}, so you can also find which objects
558 to tweak by browsing the internals document.
559
560
561 @node Selecting font sizes
562 @subsection Selecting font sizes
563
564 The most common thing to change about the appearance of fonts is their
565 size. The font size of any context can be easily changed by setting
566 the @code{fontSize} property for that context.  Its value is a number:
567 negative numbers make the font smaller, positive numbers larger. An
568 example is given below:
569 @c
570 @lilypond[fragment,relative=1,verbatim]
571   c4 c4 \set fontSize = #-3
572   f4 g4
573 @end lilypond
574 This command will set @code{font-size} (see below) in all layout
575 objects in the current context. It does not change the size of
576 variable symbols, such as beams or slurs.
577
578 The font size is set by modifying the @code{font-size} property.  Its
579 value is a number indicating the size relative to the standard size.
580 Each step up is an increase of approximately 12% of the font size. Six
581 steps is exactly a factor two. The Scheme function @code{magstep}
582 converts a @code{font-size} number to a scaling factor.
583
584 LilyPond has fonts in different design sizes: the music fonts for
585 smaller sizes are chubbier, while the text fonts are relatively wider.
586 Font size changes are achieved by scaling the design size that is
587 closest to the desired size.
588
589 The @code{font-size} mechanism does not work for fonts selected
590 through @code{font-name}. These may be scaled with
591 @code{font-magnification}.
592
593
594 One of the uses of @code{fontSize} is to get smaller symbols for cue
595 notes. An elaborate example of those is in
596 @inputfileref{input/test,cue-notes.ly}.
597
598 @cindex @code{font-style}
599
600 @refcommands
601
602 The following commands set @code{fontSize} for the current voice.
603
604 @cindex @code{\tiny}
605 @code{\tiny}, 
606 @cindex @code{\small}
607 @code{\small}, 
608 @cindex @code{\normalsize}
609 @code{\normalsize}.
610
611
612
613 @cindex magnification
614 @cindex cue notes
615
616
617 @node Font selection
618 @subsection Font selection
619
620 Font selection for the standard fonts, @TeX{}'s Computer Modern fonts,
621 can also be adjusted with a more fine-grained mechanism.  By setting
622 the object properties described below, you can select a different font;
623 all three mechanisms work for every object that supports
624 @code{font-interface}:
625
626
627 @itemize @bullet
628 @item @code{font-family}
629  is a symbol indicating the general class of the typeface.  Supported are
630 @code{roman} (Computer Modern), @code{braces} (for piano staff
631 braces), @code{music} (the standard music font, including ancient
632 glyphs), @code{dynamic} (for dynamic signs) and @code{typewriter}.
633   
634 @item @code{font-shape}
635   is a symbol indicating the shape of the font, there are typically several
636   font shapes available for each font family. Choices are @code{italic},
637   @code{caps} and @code{upright}.
638
639 @item @code{font-series}
640 is a  symbol indicating the series of the font. There are typically several
641 font series for each font family and shape. Choices are @code{medium}
642 and @code{bold}. 
643
644 @end itemize
645
646 Fonts selected in the way sketched above come from a predefined style
647 sheet.
648
649  The font used for printing a object can be selected by setting
650 @code{font-name}, e.g.
651 @example
652   \override Staff.TimeSignature
653       #'font-name = #"cmr17"
654 @end example
655
656 @noindent
657 Any font can be used, as long as it is available to @TeX{}. Possible
658 fonts include foreign fonts or fonts that do not belong to the
659 Computer Modern font family.  The size of fonts selected in this way
660 can be changed with the @code{font-magnification} property.  For
661 example, @code{2.0} blows up all letters by a factor 2 in both
662 directions.
663
664 @cindex font size
665 @cindex font magnification
666
667
668
669 @seealso
670
671 Init files: @file{ly/declarations-init.ly} contains hints how new
672 fonts may be added to LilyPond.
673
674 @refbugs
675
676 No style sheet is provided for other fonts besides the @TeX{}
677 Computer Modern family.
678
679 @cindex font selection
680 @cindex font magnification
681 @cindex @code{font-interface}
682
683
684 @node Text markup
685 @section Text markup
686 @cindex text markup
687 @cindex markup text
688
689
690 @cindex typeset text
691
692 LilyPond has an internal mechanism to typeset texts. You can access it
693 with the keyword @code{\markup}. Within markup mode, you can enter texts
694 similar to lyrics: simply enter them, surrounded by spaces:
695 @cindex markup
696
697 @lilypond[verbatim,fragment,relative=1]
698  c1^\markup { hello }
699  c1_\markup { hi there }
700  c1^\markup { hi \bold there, is \italic anyone home? }
701 @end lilypond
702
703 @cindex font switching
704
705 The markup in the example demonstrates font switching commands.  The
706 command @code{\bold} and @code{\italic} only apply to the first
707 following word; enclose a set of texts with braces to apply a command
708 to more words:
709 @example
710   \markup @{ \bold @{ hi there @} @}
711 @end example
712
713 @noindent
714 For clarity, you can also do this for single arguments, e.g.
715
716 @verbatim
717   \markup { is \italic { anyone } home }
718 @end verbatim
719
720 @cindex font size, texts
721
722
723 In markup mode you can compose expressions, similar to mathematical
724 expressions, XML documents and music expressions.  The braces group
725 notes into horizontal lines. Other types of lists also exist: you can
726 stack expressions grouped with @code{<}, and @code{>} vertically with
727 the command @code{\column}. Similarly, @code{\center-align} aligns
728 texts by their center lines:
729
730 @lilypond[verbatim,fragment,relative=1]
731  c1^\markup { \column < a bbbb c > }
732  c1^\markup { \center-align < a bbbb c > }
733  c1^\markup { \line < a b c > }
734 @end lilypond
735
736
737 Markups can be stored in variables, and these variables
738 may be attached to notes, like
739 @verbatim
740 allegro = \markup { \bold \large { Allegro } }
741 \notes { a^\allegro b c d }
742 @end verbatim
743
744
745 Some objects have alignment procedures of their own, which cancel out
746 any effects of alignments applied to their markup arguments as a
747 whole.  For example, the @internalsref{RehearsalMark} is horizontally
748 centered, so using @code{\mark \markup @{ \left-align .. @}} has no
749 effect.
750
751 Similarly, for moving whole texts over notes with
752 @code{\raise}, use the following trick:
753 @example
754   "" \raise #0.5 raised
755 @end example
756
757 The text @code{raised} is now raised relative to the empty string
758 @code{""} which is not visible.  Alternatively, complete objects can
759 be moved with layout properties such as @code{padding} and
760 @code{extra-offset}.
761
762
763
764 @seealso
765
766 Init files:  @file{scm/new-markup.scm}.
767
768
769 @refbugs
770
771 Text layout is ultimately done by @TeX{}, which does kerning of
772 letters.  LilyPond does not account for kerning, so texts will be
773 spaced slightly too wide.
774
775 Syntax errors for markup mode are confusing.
776
777 Markup texts cannot be used in the titling of the @code{\header}
778 field. Titles are made by La@TeX{}, so La@TeX{} commands should be used
779 for formatting.
780
781
782
783 @menu
784 * Overview of text markup commands::  
785 @end menu
786
787 @node  Overview of text markup commands
788 @subsection Overview of text markup commands
789
790 @include markup-commands.tely
791
792
793 @node Global layout
794 @section Global layout
795
796 The global layout determined by three factors: the page layout, the
797 line breaks and the spacing. These all influence each other. The
798 choice of spacing determines how densely each system of music is set,
799 which influences where line breaks breaks are chosen, and thus
800 ultimately how many pages a piece of music takes. This section
801 explains how to tune the algorithm for spacing.
802
803 Globally spoken, this procedure happens in three steps: first,
804 flexible distances (``springs'') are chosen, based on durations. All
805 possible line breaking combination are tried, and the one with the
806 best results---a layout that has uniform density and requires as
807 little stretching or cramping as possible---is chosen. When the score
808 is processed by @TeX{}, each page is filled with systems, and page breaks
809 are chosen whenever the page gets full.
810
811
812
813 @menu
814 * Vertical spacing::            
815 * Horizontal spacing::          
816 * Font Size::                   
817 * Line breaking::               
818 * Page layout::                 
819 @end menu
820
821
822 @node Vertical spacing
823 @subsection Vertical spacing
824
825 @cindex vertical spacing
826 @cindex distance between staves
827 @cindex staff distance
828 @cindex between staves, distance
829 @cindex staves per page
830 @cindex space between staves
831
832 The height of each system is determined automatically by LilyPond, to
833 keep systems from bumping into each other, some minimum distances are
834 set.  By changing these, you can put staves closer together, and thus
835 put more  systems onto one page.
836
837 Normally staves are stacked vertically. To make
838 staves maintain a distance, their vertical size is padded. This is
839 done with the property @code{minimumVerticalExtent}. It takes a pair
840 of numbers, so if you want to make it smaller from its, then you could
841 set
842 @example
843   \set Staff.minimumVerticalExtent = #'(-4 . 4)
844 @end example
845 This sets the vertical size of the current staff to 4 staff spaces on
846 either side of the center staff line.  The argument of
847 @code{minimumVerticalExtent} is interpreted as an interval, where the
848 center line is the 0, so the first number is generally negative.  The
849 staff can be made larger at the bottom by setting it to @code{(-6
850 . 4)}.
851
852 The piano staves are handled a little differently: to make cross-staff
853 beaming work correctly, it is necessary that the distance between staves
854 is fixed beforehand.  This is also done with a
855 @internalsref{VerticalAlignment} object, created in
856 @internalsref{PianoStaff}. In this object the distance between the
857 staves is fixed by setting @code{forced-distance}. If you want to
858 override this, use a @code{\context} block as follows:
859 @example
860   \paper @{
861     \context @{
862       \PianoStaffContext
863       \override VerticalAlignment #'forced-distance = #9
864     @}
865     @dots{}
866   @}
867 @end example
868 This would bring the staves together at a distance of 9 staff spaces,
869 measured from the center line of each staff.
870
871 @seealso
872
873 Internals: Vertical alignment of staves is handled by the
874 @internalsref{VerticalAlignment} object.
875
876
877
878
879 @node Horizontal spacing
880 @subsection Horizontal Spacing
881
882 The spacing engine translates differences in durations into
883 stretchable distances (``springs'') of differing lengths. Longer
884 durations get more space, shorter durations get less.  The shortest
885 durations get a fixed amount of space (which is controlled by
886 @code{shortest-duration-space} in the @internalsref{SpacingSpanner} object). 
887 The longer the duration, the more space it gets: doubling a
888 duration adds a fixed amount (this amount is controlled by
889 @code{spacing-increment}) of space to the note.
890
891 For example, the following piece contains lots of half, quarter and
892 8th notes, the eighth note is followed by 1 note head width (NHW). 
893 The quarter note is followed by 2 NHW, the half by 3 NHW, etc.
894 @lilypond[fragment,verbatim,relative=1] c2 c4. c8 c4. c8 c4. c8 c8
895 c8 c4 c4 c4
896 @end lilypond
897
898 Normally, @code{shortest-duration-space} is set to 1.2, which is the
899 width of a note head, and @code{shortest-duration-space} is set to
900 2.0, meaning that the shortest note gets 2 NHW (i.e. 2 times
901 @code{shortest-duration-space}) of space. For normal notes, this space
902 is always counted from the left edge of the symbol, so the shortest
903 notes are generally followed by one NHW of space.
904
905 If one would follow the above procedure exactly, then adding a single
906 32th note to a score that uses 8th and 16th notes, would widen up the
907 entire score a lot. The shortest note is no longer a 16th, but a 32nd,
908 thus adding 1 NHW to every note. To prevent this, the
909 shortest duration for spacing is not the shortest note in the score,
910 but the most commonly found shortest note.  Notes that are even
911 shorter this are followed by a space that is proportional to their
912 duration relative to the common shortest note.  So if we were to add
913 only a few 16th notes to the example above, they would be followed by
914 half a NHW:
915
916 @lilypond[fragment,verbatim,relative=2]
917  c2 c4. c8 c4. c16[ c] c4. c8 c8 c8 c4 c4 c4
918 @end lilypond
919
920 The most common shortest duration is determined as follows: in every
921 measure, the shortest duration is determined. The most common short
922 duration, is taken as the basis for the spacing, with the stipulation
923 that this shortest duration should always be equal to or shorter than
924 1/8th note. The shortest duration is printed when you run lilypond
925 with @code{--verbose}.  These durations may also be customized. If you
926 set the @code{common-shortest-duration} in
927 @internalsref{SpacingSpanner}, then this sets the base duration for
928 spacing. The maximum duration for this base (normally 1/8th), is set
929 through @code{base-shortest-duration}.
930
931 @cindex @code{common-shortest-duration}
932 @cindex @code{base-shortest-duration}
933 @cindex @code{stem-spacing-correction}
934 @cindex @code{spacing}
935
936 In the introduction it was explained that stem directions influence
937 spacing. This is controlled with @code{stem-spacing-correction}
938 property in @internalsref{NoteSpacing}, which are generated for every
939 @internalsref{Voice} context. The @code{StaffSpacing} object
940 (generated at @internalsref{Staff} context) contains the same property
941 for controlling the stem/bar line spacing. The following example
942 shows these corrections, once with default settings, and once with
943 exaggerated corrections:
944
945 @lilypond
946     \score { \notes {
947       c'4 e''4 e'4 b'4 |
948       b'4 e''4 b'4 e''4|
949       \override Staff.NoteSpacing   #'stem-spacing-correction
950    = #1.5
951       \override Staff.StaffSpacing   #'stem-spacing-correction
952    = #1.5
953       c'4 e''4 e'4 b'4 |
954       b'4 e''4 b'4 e''4|      
955     }
956     \paper { raggedright = ##t } }
957 @end lilypond
958
959 @cindex SpacingSpanner, overriding properties
960
961 Properties of the  @internalsref{SpacingSpanner} must be overridden
962 from the @code{\paper} block, since the @internalsref{SpacingSpanner} is
963 created before any property commands are interpreted.
964 @example
965 \paper @{ \context  @{
966   \ScoreContext
967   SpacingSpanner \override #'spacing-increment = #3.0
968 @} @}
969 @end example
970
971
972 @seealso
973
974 Internals: @internalsref{SpacingSpanner}, @internalsref{NoteSpacing},
975 @internalsref{StaffSpacing}, @internalsref{SeparationItem}, and
976 @internalsref{SeparatingGroupSpanner}.
977
978 @refbugs
979
980 Spacing is determined on a score wide basis. If you have a score that
981 changes its character (measured in durations) halfway during the
982 score, the part containing the longer durations will be spaced too
983 widely.
984
985 There is no convenient mechanism to manually override spacing.
986
987
988
989 @node Font Size
990 @subsection Font size
991
992 @cindex font size, setting
993 @cindex staff size, setting
994 @cindex @code{paper} file
995
996 The Feta font provides musical symbols at eight  different
997 sizes. Each font is tuned for a different staff size: at smaller sizes
998 the font gets heavier, to match the relatively heavier staff lines.
999 The recommended font sizes are listed in the following table:
1000
1001 @multitable @columnfractions  .25 .25 .25 .25
1002
1003 @item @b{font name}
1004 @tab @b{staff height (pt)}
1005 @tab @b{staff height (mm)}
1006 @tab @b{use}
1007
1008 @item feta11
1009 @tab 11.22
1010 @tab 3.9 
1011 @tab pocket scores
1012
1013 @item feta13
1014 @tab 12.60
1015 @tab 4.4
1016 @tab
1017
1018 @item feta14
1019 @tab 14.14
1020 @tab 5.0
1021 @tab 
1022
1023 @item feta16
1024 @tab 15.87
1025 @tab 5.6
1026 @tab 
1027
1028 @item feta18
1029 @tab 17.82
1030 @tab 6.3
1031 @tab song books
1032
1033 @item feta20
1034 @tab 17.82
1035 @tab 7.0
1036 @tab standard parts 
1037
1038 @item feta23
1039 @tab 22.45 
1040 @tab 7.9
1041 @tab 
1042
1043 @item feta20
1044 @tab 25.2 
1045 @tab 8.9
1046 @tab
1047 @c modern rental material  ?
1048
1049 @end multitable
1050
1051 These fonts are available in any sizes. The context property
1052 @code{fontSize} and the layout property @code{staff-space} (in
1053 @internalsref{StaffSymbol}) can be used to tune size for individual
1054 staves. The size of individual staves are relative to the global size,
1055 which can be set   in the following manner:
1056
1057 @example
1058   #(set-global-staff-size 14)
1059 @end example
1060
1061 This sets the global default size to 14pt staff height, and scales all
1062 fonts accordingly.
1063
1064 @seealso
1065
1066 This manual: @ref{Selecting font sizes}.
1067
1068
1069 @node Line breaking
1070 @subsection Line breaking
1071
1072 @cindex line breaks
1073 @cindex breaking lines
1074
1075 Line breaks are normally computed automatically. They are chosen such
1076 that lines look neither cramped nor loose, and that consecutive lines
1077 have similar density.
1078
1079 Occasionally you might want to override the automatic breaks; you can
1080 do this by  specifying @code{\break}. This will force a line break at
1081 this point.  Line breaks can only occur at places where there are bar
1082 lines.  If you want to have a line break where there is no bar line,
1083 you can force an invisible bar line by entering @code{\bar
1084 ""}. Similarly, @code{\noBreak} forbids a line break at a 
1085 point.
1086
1087
1088 @cindex regular line breaks
1089 @cindex four bar music. 
1090
1091 For line breaks at regular intervals  use @code{\break} separated by
1092 skips and repeated with @code{\repeat}:
1093 @example
1094 <<  \repeat unfold 7 @{
1095          s1 \noBreak s1 \noBreak
1096          s1 \noBreak s1 \break  @}
1097    @emph{the real music}
1098 >> 
1099 @end  example
1100
1101 @noindent
1102 This makes the following 28 measures (assuming 4/4 time) be broken every
1103 4 measures, and only there.
1104
1105 @refcommands
1106
1107 @code{\break}, @code{\noBreak}
1108 @cindex @code{\break}
1109 @cindex @code{\noBreak}
1110
1111 @seealso
1112
1113 Internals: @internalsref{BreakEvent}.
1114
1115
1116 @node Page layout
1117 @subsection Page layout
1118
1119 @cindex page breaks
1120 @cindex breaking pages
1121
1122 @cindex @code{indent}
1123 @cindex @code{linewidth}
1124
1125 The most basic settings influencing the spacing are @code{indent} and
1126 @code{linewidth}. They are set in the @code{\paper} block. They
1127 control the indentation of the first line of music, and the lengths of
1128 the lines.
1129
1130 If  @code{raggedright} is set to true in the @code{\paper}
1131 block, then the lines are justified at their natural length. This
1132 useful for short fragments, and for checking how tight the natural
1133 spacing is.
1134
1135 @cindex page layout
1136 @cindex vertical spacing
1137
1138 The page layout process happens outside the LilyPond formatting
1139 engine: variables controlling page layout are passed to the output,
1140 and are further interpreted by @code{lilypond} wrapper program. It
1141 responds to the following variables in the @code{\paper} block.  The
1142 spacing between systems is controlled with @code{interscoreline}, its
1143 default is 16pt.  The distance between the score lines will stretch in
1144 order to fill the full page @code{interscorelinefill} is set to a
1145 positive number.  In that case @code{interscoreline} specifies the
1146 minimum spacing.
1147
1148 @cindex @code{textheight}
1149 @cindex @code{interscoreline}
1150 @cindex @code{interscorelinefill}
1151
1152 If the variable @code{lastpagefill} is defined,
1153 @c fixme: this should only be done if lastpagefill= #t 
1154 systems are evenly distributed vertically on the last page.  This
1155 might produce ugly results in case there are not enough systems on the
1156 last page.  The @command{lilypond-book} command ignores
1157 @code{lastpagefill}.  See @ref{lilypond-book manual} for more
1158 information.
1159
1160 @cindex @code{lastpagefill}
1161
1162 Page breaks are normally computed by @TeX{}, so they are not under
1163 direct control of LilyPond.  However, you can insert a commands into
1164 the @file{.tex} output to instruct @TeX{} where to break pages.  This
1165 is done by setting the @code{between-systems-strings} on the
1166 @internalsref{NonMusicalPaperColumn} where the system is broken.
1167 An example is shown in @inputfileref{input/regression,between-systems.ly}.
1168 The predefined command @code{\newpage} also does this.
1169
1170 @cindex paper size
1171 @cindex page size
1172 @cindex @code{papersize}
1173
1174 To change the paper size, use the following Scheme code:
1175 @example
1176         \paper@{
1177            #(set-paper-size "a4")
1178         @}
1179 @end example
1180
1181
1182 @refcommands
1183
1184 @cindex @code{\newpage}
1185 @code{\newpage}. 
1186
1187
1188 @seealso
1189
1190 In this manual: @ref{Invoking lilypond}.
1191
1192 Examples: @inputfileref{input/regression,between-systems.ly}.
1193
1194 Internals: @internalsref{NonMusicalPaperColumn}.
1195
1196 @refbugs
1197
1198 LilyPond has no concept of page layout, which makes it difficult to
1199 reliably choose page breaks in longer pieces.
1200
1201
1202 @node Interpretation context
1203 @section Interpretation context
1204
1205 @menu
1206 * Creating contexts::           
1207 * Default contexts::            
1208 * Context properties::          
1209 * Defining contexts::           
1210 * Changing contexts locally::   
1211 * Engravers and performers::    
1212 * Defining new contexts::       
1213 @end menu
1214
1215
1216 Interpretation contexts are objects that only exist during program
1217 run.  During the interpretation phase (when @code{interpreting music}
1218 is printed on the standard output), the music expression in a
1219 @code{\score} block is interpreted in time order, the same order in
1220 which we hear and play the music.  During this phase, the interpretation
1221 context holds the state for the current point within the music, for
1222 example:
1223 @itemize @bullet
1224 @item What notes are playing at this point?
1225
1226 @item What symbols will be printed at this point?
1227
1228 @item What is the current key signature, time signature, point within
1229 the measure, etc.?
1230 @end itemize
1231
1232 Contexts are grouped hierarchically: A @internalsref{Voice} context is
1233 contained in a @internalsref{Staff} context (because a staff can contain
1234 multiple voices at any point), a @internalsref{Staff} context is contained in
1235 @internalsref{Score}, @internalsref{StaffGroup}, or
1236 @internalsref{ChoirStaff} context.
1237
1238 Contexts associated with sheet music output are called @emph{notation
1239 contexts}, those for sound output are called @emph{performance
1240 contexts}.  The default definitions of the standard notation and
1241 performance contexts can be found in @file{ly/engraver-init.ly} and
1242 @file{ly/performer-init.ly}, respectively.
1243
1244
1245 @node Creating contexts
1246 @subsection Creating contexts
1247 @cindex @code{\context}
1248 @cindex context selection
1249
1250 Contexts for a music expression can be selected manually, using one of
1251 the following music expressions:
1252
1253 @example
1254 \new @var{contexttype} @var{musicexpr}
1255 \context @var{contexttype} [= @var{contextname}] @var{musicexpr}
1256 @end example
1257
1258 @noindent
1259 This means that @var{musicexpr} should be interpreted within a context
1260 of type @var{contexttype} (with name @var{contextname} if specified).
1261 If no such context exists, it will be created:
1262
1263 @lilypond[verbatim,raggedright]
1264 \score {
1265   \notes \relative c'' {
1266     c4 <<d4 \context Staff = "another" e4>> f
1267   }
1268 }
1269 @end lilypond
1270
1271 @noindent
1272 In this example, the @code{c} and @code{d} are printed on the default
1273 staff.  For the @code{e}, a context @code{Staff} called @code{another}
1274 is specified; since that does not exist, a new context is created.
1275 Within @code{another}, a (default) Voice context is created for the
1276 @code{e4}.  A context is ended when when all music referring it has
1277 finished, so after the third quarter, @code{another} is removed.
1278
1279 The @code{\new} construction creates a context with a
1280 generated, unique @var{contextname}. An expression with
1281 @code{\new} always leads to a new context. This is convenient
1282 for creating multiple staves, multiple lyric lines, etc.
1283
1284 When using automatic staff changes, automatic phrasing, etc., the
1285 context names have special meanings, so @code{\new} cannot be
1286 used.
1287
1288
1289 @node Default contexts
1290 @subsection Default contexts
1291
1292 Every top level music is interpreted by the @code{Score} context; in
1293 other words, you may think of @code{\score} working like
1294
1295 @example
1296 \score @{
1297   \context Score @var{music}
1298 @}
1299 @end example
1300
1301 Music expressions  inherit their context from the enclosing music
1302 expression. Hence, it is not necessary to explicitly specify
1303 @code{\context} for most expressions.  In
1304 the following example, only the sequential expression has an explicit
1305 context. The notes contained therein inherit the @code{goUp} context
1306 from the enclosing music expression.
1307
1308 @lilypond[verbatim,raggedright]
1309   \notes \context Voice = goUp { c'4 d' e' }
1310 @end lilypond
1311
1312
1313 Second, contexts are created automatically to be able to interpret the
1314 music expressions.  Consider the following example:
1315
1316 @lilypond[verbatim,raggedright]
1317   \score { \notes { c'4-( d' e'-) } }
1318 @end lilypond
1319
1320 @noindent
1321 The sequential music is interpreted by the Score context initially,
1322 but when a note is encountered, contexts are setup to accept that
1323 note.  In this case, a @code{Voice}, and @code{Staff}
1324 context are created.  The rest of the sequential music is also
1325 interpreted with the same @code{Voice}, and
1326 @code{Staff} context, putting the notes on the same staff, in the same
1327 voice.
1328
1329 @node Context properties
1330 @subsection Context properties
1331
1332 Contexts have properties.  These properties are set from the @file{.ly}
1333 file using the following expression:
1334 @cindex context properties
1335 @cindex properties, context
1336
1337 @example
1338 \set @var{contextname}.@var{propname} = @var{value}
1339 @end example
1340
1341 @noindent
1342 Sets the @var{propname} property of the context @var{contextname} to
1343 the specified Scheme expression @var{value}.  Both @var{propname} and
1344 @var{contextname} are strings, which can often be written unquoted.
1345
1346 @cindex inheriting
1347 Properties that are set in one context are inherited by all of the
1348 contained contexts.  This means that a property valid for the
1349 @internalsref{Voice} context can be set in the @internalsref{Score} context
1350 (for example) and thus take effect in all @internalsref{Voice} contexts.
1351
1352 Properties can be unset using the following statement.
1353 @example
1354 \unset @var{contextname}.@var{propname} 
1355 @end example
1356
1357 @cindex properties, unsetting
1358 @cindex @code{\unset}
1359
1360 @noindent
1361 This removes the definition of @var{propname} in @var{contextname}.  If
1362 @var{propname} was not defined in @var{contextname} (but was inherited
1363 from a higher context), then this has no effect.
1364
1365 If @var{contextname} is left out, then it defaults to the current
1366 ``bottom'' context: this is a context like @internalsref{Voice} that
1367 cannot contain any other contexts.
1368
1369
1370 @node Defining contexts
1371 @subsection Defining contexts
1372
1373 @cindex context definition
1374 @cindex translator definition
1375
1376 The most common way to create a new context definition is by extending
1377 an existing one.  An existing context from the paper block is copied
1378 by referencing a context identifier:
1379
1380 @example
1381 \paper @{
1382   \context @{
1383     @var{context-identifier}
1384   @}
1385 @}
1386 @end example
1387
1388 @noindent
1389 Every predefined context has a standard identifier. For example, the
1390 @code{Staff} context can be referred to as @code{\StaffContext}.
1391
1392 The context can then be modified by setting or changing properties,
1393 e.g.
1394 @example
1395 \context @{
1396   \StaffContext
1397   Stem \set #'thickness = #2.0
1398   defaultBarType = #"||"
1399 @}
1400 @end example
1401 These assignments happen before interpretation starts, so a property
1402 command will override any predefined settings.
1403
1404 @cindex engraver
1405
1406 @refbugs
1407
1408 It is not possible to collect multiple property assignments in a
1409 variable, and apply to one @code{\context} definition by
1410 referencing that variable.
1411
1412 @node Changing contexts locally
1413 @subsection Changing contexts locally
1414
1415
1416 Extending an existing context can also be done locally. A piece of
1417 music can be interpreted in a changed context by using the following syntax
1418
1419 @example
1420   \with @{
1421      @var{context modifications}
1422   @}
1423 @end example
1424
1425 These statements comes between @code{\new} or @code{\context} and the
1426 music to be interpreted. The @var{context modifications} property
1427 settings and @code{\remove}, @code{\consists} and @code{\consistsend}
1428 commands. The syntax is similar to the @code{\context} block.
1429
1430 The following example shows how a staff is created with bigger spaces,
1431 and without a @code{Clef_engraver}.
1432
1433 @lilypond[relative=1,fragment,verbatim]
1434 <<
1435   \new Staff { c4 es4 g2 }
1436   \new Staff \with {
1437         \override StaffSymbol #'staff-space = #(magstep 1.5)
1438         fontSize = #1.5
1439         \remove "Clef_engraver"
1440   } {
1441         c4 es4 g2
1442   } >>
1443 @end lilypond
1444
1445 @refbugs
1446
1447 The command @code{\with} has no effect on contexts that already
1448 exist. 
1449
1450
1451 @node Engravers and performers
1452 @subsection  Engravers and performers
1453
1454
1455 Each context is composed of a number of building blocks, or plug-ins
1456 called engravers.  An engraver is a specialized C++ class that is
1457 compiled into the executable. Typically, an engraver is responsible
1458 for one function: the @code{Slur_engraver} creates only @code{Slur}
1459 objects, and the @code{Skip_event_swallow_translator} only swallows
1460 (silently gobbles) @code{SkipEvent}s.
1461
1462
1463
1464 @cindex engraver
1465 @cindex plug-in
1466
1467 An existing context definition can be changed by adding or removing an
1468 engraver. The syntax for these operations is
1469 @example
1470 \consists @var{engravername}
1471 \remove @var{engravername}
1472 @end example
1473
1474 @cindex @code{\consists}
1475 @cindex @code{\remove}
1476
1477 @noindent
1478 Here @var{engravername} is a string, the name of an engraver in the
1479 system. In the following example, the @code{Clef_engraver} is removed
1480 from the Staff context. The result is a staff without a clef, where
1481 the middle C is at its default position, the center line:
1482
1483 @lilypond[verbatim,raggedright]
1484 \score {
1485   \notes {
1486     c'4 f'4
1487   }
1488   \paper {
1489     \context {
1490       \StaffContext
1491       \remove Clef_engraver
1492     }
1493   }
1494 }
1495 @end lilypond
1496
1497 A list of all engravers is in the internal documentation,
1498 see @internalsref{Engravers}.
1499
1500 @node Defining new contexts
1501 @subsection Defining new contexts
1502
1503
1504 It is also possible to define new contexts from scratch.  To do this,
1505 you must define give the new context a name.  In the following
1506 example, a very simple Staff context is created: one that will put
1507 note heads on a staff symbol.
1508
1509 @example
1510 \context @{
1511   \type "Engraver_group_engraver"
1512   \name "SimpleStaff"
1513   \alias "Staff"
1514   \consists "Staff_symbol_engraver"
1515   \consists "Note_head_engraver"
1516   \consistsend "Axis_group_engraver"
1517 @}
1518 @end example
1519
1520 @noindent
1521 The argument of @code{\type} is the name for a special engraver that
1522 handles cooperation between simple engravers such as
1523 @code{Note_head_engraver} and @code{Staff_symbol_engraver}.  This
1524 should always be  @code{Engraver_group_engraver} (unless you are
1525 defining a Score context from scratch, in which case
1526 @code{Score_engraver}   must be used).
1527
1528 The complete list of context  modifiers is the following:
1529 @itemize @bullet
1530 @item @code{\alias} @var{alternate-name}:
1531 This specifies a different name.  In the above example,
1532 @code{\set Staff.X = Y} will also work on @code{SimpleStaff}s.
1533
1534 @item @code{\consistsend} @var{engravername}:
1535 Analogous to @code{\consists}, but makes sure that
1536 @var{engravername} is always added to the end of the list of
1537 engravers.
1538
1539 Engravers that group context objects into axis groups or alignments
1540 need to be at the end of the list. @code{\consistsend} insures that
1541 engravers stay at the end even if a user adds or removes engravers.
1542
1543 @item @code{\accepts} @var{contextname}:
1544 This context can contains @var{contextname} contexts.  The first
1545 @code{\accepts} is created as a default context when events (e.g. notes
1546 or rests) are encountered.
1547
1548 @item @code{\denies}:
1549 The opposite of @code{\accepts}.
1550
1551 @item @code{\name} @var{contextname}:
1552 This sets the type name of the context, e.g. @code{Staff},
1553 @code{Voice}.  If the name is not specified, the translator will not
1554 do anything.
1555 @end itemize
1556
1557 @c EOF
1558
1559
1560
1561
1562 @node Output details
1563 @section Output details
1564
1565 The default output format is La@TeX{}, which should be run
1566 through La@TeX{}.  Using the option @option{-f}
1567 (or @option{--format}) other output formats can be selected also, but
1568  none of them work reliably.
1569
1570 Now the music is output system by system (a `system' consists of all
1571 staves belonging together).  From @TeX{}'s point of view, a system is an
1572 @code{\hbox} which contains a lowered @code{\vbox} so that it is centered
1573 vertically on the baseline of the text.  Between systems,
1574 @code{\interscoreline} is inserted vertically to have stretchable space.
1575 The horizontal dimension of the @code{\hbox} is given by the
1576 @code{linewidth} parameter from LilyPond's @code{\paper} block.
1577
1578 After the last system LilyPond emits a stronger variant of
1579 @code{\interscoreline} only if the macro
1580 @code{\lilypondpaperlastpagefill} is not defined (flushing the systems
1581 to the top of the page).  You can avoid that by setting the variable
1582 @code{lastpagefill} in LilyPond's @code{\paper} block.
1583
1584 It is possible to fine-tune the vertical offset further by defining the
1585 macro @code{\lilypondscoreshift}:
1586
1587 @example
1588 \def\lilypondscoreshift@{0.25\baselineskip@}
1589 @end example
1590
1591 @noindent
1592 where @code{\baselineskip} is the distance from one text line to the next.
1593
1594 Here an example how to embed a small LilyPond file @code{foo.ly} into
1595 running La@TeX{} text without using the @code{lilypond-book} script
1596 (@pxref{lilypond-book manual}):
1597
1598 @example
1599 \documentclass@{article@}
1600
1601 \def\lilypondpaperlastpagefill@{@}
1602 \lineskip 5pt
1603 \def\lilypondscoreshift@{0.25\baselineskip@}
1604
1605 \begin@{document@}
1606 This is running text which includes an example music file
1607 \input@{foo.tex@}
1608 right here.
1609 \end@{document@}
1610 @end example
1611
1612 The file @file{foo.tex} has been simply produced with
1613
1614 @example
1615   lilypond-bin foo.ly
1616 @end example
1617
1618 The call to @code{\lineskip} assures that there is enough vertical space
1619 between the LilyPond box and the surrounding text lines.
1620