]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/changing-defaults.itely
785e1b72d8529afa6d1b91c66702023a76cabba4
[lilypond.git] / Documentation / user / changing-defaults.itely
1 @c -*-texinfo-*-
2 @node Changing defaults
3 @chapter Changing defaults
4
5
6 The purpose of LilyPond's design is to provide the finest output
7 quality as a default. Nevertheless, it may happen that you need to
8 change that default layout.  The layout is controlled through a large
9 number of proverbial ``knobs and switches.''  This chapter does not
10 list each and every knob. Rather, it outlines what groups of controls
11 are available, and how to tune them.
12
13 Which controls are available for tuning is described in a separate
14 document, the @internalsref{Program reference} manual. This manual
15 lists all different variables, functions and options available in
16 LilyPond. It is available as a HTML document, which is available
17 @uref{http://lilypond.org/doc/Documentation/user/out-www/lilypond-internals/,on-line},
18 but is also included with the LilyPond documentation package.
19
20 There are X areas where the default settings may be changed:
21
22 @itemize @bullet
23 @item Output: changing the appearance of individual
24   objects. For example, changing stem directions, or the location of
25   subscripts.
26   
27 @item Context: changing aspects of the translation from music events to
28   notation. For example, giving each staff a separate time signature. 
29   
30 @item Global layout: changing the appearance of the spacing, line
31   breaks and page dimensions.
32 @end itemize
33
34 Then, there are separate systems for typesetting text (like
35 @emph{ritardando}) and selecting different fonts. This chapter also
36 discusses these.
37
38 Internally, LilyPond uses Scheme (a LISP dialect) to provide
39 infrastructure.  Overriding layout decisions in effect accesses the
40 program internals, so it is necessary to learn a (very small) subset
41 of Scheme. That is why this chapter starts with a short tutorial on
42 entering numbers, lists, strings and symbols in Scheme.
43
44
45 @menu
46 * Scheme tutorial::             
47 * Interpretation contexts::     
48 * Tuning output::               
49 * Fonts::                       
50 * Text markup::                 
51 * Global layout::               
52 * Font Size::                   
53 * Output details::              
54 @end menu
55
56 @node Scheme tutorial
57 @section Scheme tutorial
58
59 @cindex Scheme
60 @cindex GUILE
61 @cindex Scheme, in-line code
62 @cindex accessing Scheme
63 @cindex evaluating Scheme
64 @cindex LISP
65
66 LilyPond uses the Scheme programming language, both as part of the
67 input syntax, and as internal mechanism to glue together modules of
68 the program. This section is a very brief overview of entering data in
69 Scheme.@footnote{If you want to know more about Scheme, see
70 @uref{http://www.schemers.org}.}
71
72 The most basic thing of a language is data: numbers, character
73 strings, lists, etc. Here is a list of data types that are relevant to
74 LilyPond input.
75
76 @table @asis
77 @item Booleans
78   Boolean values are True or False. The Scheme for True is @code{#t}
79   and False is @code{#f}.
80 @item Numbers
81   Numbers are entered in the standard fashion,
82   @code{1} is the (integer) number one, while @code{-1.5} is a
83   floating point number (a non-integer number). 
84 @item Strings
85   Strings are enclosed in double quotes,
86   @example
87     "this is a string"
88   @end example
89
90   Strings may span several lines
91   @example
92     "this
93     is
94     a string"
95   @end example
96
97   Quotation marks and newlines can also be added with so-called escape
98   sequences. The string @code{a said "b"} is entered as
99   @example
100     "a said \"b\""
101   @end example
102
103   Newlines and backslashes are escaped with @code{\n} and @code{\\}
104 respectively.
105 @end table
106
107
108 In a music file, snippets of Scheme code are introduced with the hash
109 mark @code{#}. So, the previous examples translated in LilyPondese are
110
111 @example
112   ##t ##f 
113   #1 #-1.5
114   #"this is a string"
115   #"this
116   is
117   a string"
118 @end example
119
120 For the rest of this section, we will assume that the data is entered
121 in a music file, so we add @code{#}s everywhere.
122
123 Scheme can be used to do calculations. It uses @emph{prefix}
124 syntax. Adding 1 and 2 is written as @code{(+ 1 2)} rather than the
125 traditional 1+2.
126
127 @lisp
128   #(+ 1 2)
129    @result{} #3 
130 @end lisp
131
132 The arrow @result{} shows that the result of evaluating @code{(+ 1 2)}
133 is @code{3}.  Calculations may be nested: the result of a function may
134 be used for another calculation.
135
136 @lisp
137   #(+ 1 (* 3 4))
138    @result{} #(+ 1 12) 
139    @result{} #13
140 @end lisp
141
142 These calculations are examples of evaluations: an expression (like
143 @code{(* 3 4)} is replaced by its value @code{12}. A similar thing
144 happens with variables. After defining a variable  
145
146 @example
147   twelve = #12 
148 @end example
149
150 variables can also be used in expressions, here
151
152 @example
153   twentyFour = #(* 2 twelve) 
154 @end example 
155
156 the number 24 is stored in the variable @code{twentyFour}.
157
158 The @emph{name} of a variable is also an expression, similar to a
159 number or a string. It is entered as
160
161 @example
162   #'twentyFour
163 @end example
164
165 The quote mark @code{'} prevents Scheme interpreter from substituting
166 @code{24} for the @code{twentyFour}. Instead, we get the name
167 @code{twentyFour}.
168
169 This syntax will be used very frequently, since many of the layout
170 tweaks involve assigning (Scheme) values to internal variables, for
171 example
172
173 @example
174   \override Stem #'thickness = #2.6
175 @end example
176
177 This instruction adjusts the appearance of stems. The value @code{2.6}
178 is put into a the @code{thickness} variable of a @code{Stem}
179 object. This makes stems almost twice as thick as their normal size.
180 To distinguish between variables defined in input files (like
181 @code{twentyFour} in the example above), and internal variables, we
182 will call the latter ``properties.'' So, the stem object has a
183 @code{thickness} property.
184
185 Two-dimensional offsets (X and Y coordinates) as well as object sizes
186 (intervals with a left and right point) are entered as @code{pairs}. A
187 pair@footnote{In Scheme terminology, the pair is called @code{cons},
188 and its two elements are called car and cdr respectively.}  is entered
189 as @code{(first . second)}, and like symbols, they must be quoted,
190
191 @example
192   \override TextScript #'extra-offset = #'(1 . 2)  
193 @end example 
194
195 This assigns the pair (1, 2) to @code{extra-offset} variable of the
196 TextScript object. This moves the object 1 staff space to the right,
197 and 2 spaces up.
198
199 The two elements of a pair may be arbitrary values, for example
200
201 @example
202   #'(1 . 2)
203   #'(#t . #f)
204   #'("blah-blah" . 3.14159265)
205 @end example
206
207 A list is entered by enclosing its elements in parentheses, and adding
208 a quote. For example,
209 @example
210   #'(1 2 3)
211   #'(1 2 "string" #f)
212 @end example
213
214 We have been using lists all along.  A calculation, like @code{(+ 1
215 2)} is also a list (containing the symbol @code{+} and the numbers 1
216 and 2). For entering lists, use a quote @code{'} and for
217 calculations, do not use a quote. 
218
219 Inside a quoted list or pair, there is no need to quote anymore.  The
220 following is a pair of symbols, a list of symbols and a list of lists
221 respectively,
222
223 @example
224   #'(stem . head)
225   #'(staff clef key-signature)
226   #'((1) (2))
227 @end example
228
229
230 @node Interpretation contexts
231 @section Interpretation contexts
232
233 When music is printed, a lot of things notation elements must be added
234 to the input, which is often bare bones.  For example, compare the
235 input and output of the following example
236
237 @lilypond[verbatim,relative=2]
238   cis4 cis2. g4
239 @end lilypond
240
241 The input is rather sparse, but in the output, bar lines, accidentals,
242 clef and time signature are added. LilyPond @emph{interprets} the
243 input. During this step, the musical information is inspected in time
244 order, similar to reading a score from left to right. While reading,
245 the program remembers where measure boundaries are, and what pitches
246 need explicit accidentals.
247
248 This is contextual information. and it can be present on several
249 levels.  For example, the effect of an accidental is limited to a
250 single stave, while a bar line must be synchronized across the entire
251 score.  To match this hierarchy, LilyPond's interpretation step is
252 hierarchical.  There are interpretation contexts, like
253 @context{Voice}, Staff and Score, and each level can maintain its own
254 properties.
255
256 Full description of all available contexts is in the program
257 reference, see
258 @ifhtml
259 @internalsref{Contexts}
260 @end ifhtml
261 @ifnothtml 
262 Translation @arrow{} Context.
263 @end ifnothtml
264
265 @menu
266 * Creating contexts::           
267 * Changing context properties on the fly ::  
268 * Modifying context plug-ins::  
269 * Layout tunings within contexts::  
270 * Changing context default settings::  
271 * Defining new  contexts::      
272 * Which properties to change::  
273 @end menu
274
275 @node Creating contexts
276 @subsection Creating contexts
277
278 [TODO: propagation]
279
280 For scores with only one voice and one staff, correct contexts are
281 created automatically. For more complex scores, it is necessary to
282 instantiate them by hand.  There are three commands to do this.
283
284 The easiest command is @code{\new}, and it also the quickest to type.
285 It is prepended to a  music expression, for example
286
287 @example
288   \new @var{type} @var{music expression}
289 @end example
290
291 @noindent
292 where @var{type} is a context name (like @code{Staff} or
293 @code{Voice}).  This command creates a new context, and starts
294 interpreting @var{music expression} with that.
295
296 A practical application of @code{\new} is a score with many
297 staves. Each part that should be on its own staff, gets a @code{\new
298 Staff}.
299
300 @lilypond[verbatim,relative=2,raggedright]
301   << \new Staff { c4 c }
302      \new Staff { d4 d }
303   >>
304 @end lilypond
305
306 Like @code{\new}, the @code{\context} command also directs a music
307 expression to a context object, but gives the context an extra name. The
308 syntax is
309
310 @example
311   \context @var{type} = @var{id} @var{music}
312 @end example
313
314 This form will search for an existing context of type @var{type}
315 called @var{id}. If that context does not exist yet, it is created.
316 This is useful if the context referred to later on. For example, when
317 setting lyrics the melody is in a named context
318
319 @example
320  \context Voice = "@b{tenor}" @var{music}
321 @end example
322
323 @noindent
324 so the texts can be properly aligned to its notes,
325
326 @example
327 \new Lyrics \lyricsto "@b{tenor}" @var{lyrics} 
328 @end example
329
330 @noindent
331
332 Another possibility is funneling two different music expressions into
333 one context. In the following example, articulations and notes are
334 entered separately,
335
336 @verbatim
337 music = \notes { c4 c4 }
338 arts = \notes  { s4-. s4-> }
339 @end verbatim
340
341 They are combined by sending both to the same @context{Voice} context,
342
343 @verbatim
344   << \new Staff \context Voice = "A" \music
345      \context Voice = "A" \arts
346   >>
347 @end verbatim
348 @lilypond[raggedright]
349 music = \notes { c4 c4 }
350 arts = \notes  { s4-. s4-> }
351 \score {
352        \notes \relative c''  << \new Staff \context Voice = "A" \music
353      \context Voice = "A" \arts
354   >>
355
356 @end lilypond
357
358
359
360 The third command for creating contexts is
361 @example
362   \context @var{type} @var{music}
363 @end example
364
365
366 @noindent
367 This is similar to @code{\context} with @code{= @var{id}}, but matches
368 any context of type @var{type}, regardless of its given name.
369
370 This variant is used with music expressions that can be interpreted at
371 several levels. For example, the @code{\applyoutput} command (see
372 @ref{Running a function on all layout objects}). Without an explicit
373 @code{\context}, it is usually is applied to @context{Voice}
374
375 @example
376   \applyoutput #@var{function}   % apply to Voice
377 @end example
378
379 To have it interpreted at @context{Score} or @context{Staff} level use
380 these forms
381
382 @example
383   \context Score \applyoutput #@var{function}
384   \context Staff \applyoutput #@var{function}
385 @end example
386
387
388 @node Changing context properties on the fly 
389 @subsection Changing context properties  on the fly
390
391 Each context can have different @emph{properties}, variables contained
392 in that context. They can be changed during the interpretation step.
393 This is achieved by inserting the @code{\set} command in the music,
394
395 @quotation
396   @code{\set } @var{context}@code{.}@var{prop}@code{ = #}@var{value} 
397 @end quotation
398
399 For example,
400 @lilypond[verbatim,relative=2]
401   R1*2 
402   \set Score.skipBars = ##t
403   R1*2
404 @end lilypond
405
406 This command skips measures that have no notes. The result is that
407 multi rests are condensed.  The value assigned is a Scheme object. In
408 this case, it is @code{#t}, the boolean True value.
409
410 If the @var{context} argument is left out, then the current bottom-most
411 context (typically @context{ChordNames}, @context{Voice} or
412 @context{Lyrics}) is used.  In this example,
413
414 @lilypond[verbatim,relative=2]
415   c8 c c c
416   \set autoBeaming = ##f
417   c8 c c c
418 @end lilypond
419
420 @noindent
421 the @var{context} argument to @code{\set} is left out, and the current
422 @internalsref{Voice} is used.
423
424 Contexts are hierarchical, so if a bigger context was specified, for
425 example @context{Staff}, then the change would also apply to all
426 @context{Voice}s in the current stave. The change is applied
427 `on-the-fly', during the music, so that the setting only affects the
428 second group of eighth notes.
429
430 There is also an @code{\unset} command,
431 @quotation
432   @code{\set }@var{context}@code{.}@var{prop}
433 @end quotation
434
435 @noindent
436 which removes the definition of @var{prop}. This command only removes
437 the definition if it is set in @var{context}. In
438
439 @example
440   \set Staff.autoBeaming = ##f
441   \unset Voice.autoBeaming
442 @end example
443
444 @noindent
445 the current @context{Voice} does not have the property, and the
446 definition at @context{Staff} level remains intact. Like @code{\set},
447 the @var{context} argument does not have to be specified for a bottom
448 context.
449
450 Settings that should only apply to a single time-step can be entered
451 easily with @code{\once}, for example in
452
453 @lilypond[verbatim,relative=2]
454   c4
455   \once \set fontSize = #4.7
456   c4
457   c4
458 @end lilypond
459
460 the property @code{fontSize} is unset automatically after the second
461 note.
462
463 A full description of all available context properties is in the
464 program reference, see
465 @ifhtml
466 @internalsref{Tunable-context-properties}.
467 @end ifhtml
468 @ifnothtml
469 Translation @arrow{} Tunable context properties.
470 @end ifnothtml
471
472
473 @node Modifying context plug-ins
474 @subsection Modifying context plug-ins
475
476 Notation contexts (like Score and Staff) not only store properties,
477 they also contain plug-ins, called ``engravers'' that create notation
478 elements. For example, the Voice context contains a
479 @code{Note_head_engraver} and the Staff context contains a
480 @code{Key_signature_engraver}.
481
482 For a full a description of each plug-in, see 
483 @ifhtml
484 @internalsref{Engravers}
485 @end ifhtml
486 @ifnothtml
487 Program reference @arrow Translation @arrow{} Engravers.
488 @end ifnothtml
489 Every context described in
490 @ifhtml
491 @internalsref{Contexts}
492 @end ifhtml
493 @ifnothtml 
494 Program reference @arrow Translation @arrow{} Context.
495 @end ifnothtml
496 lists the engravers used for that context.
497
498
499 It can be useful to shuffle around these plug-ins. This is done by
500 starting a new context, with @code{\new} or @code{\context}, and
501 modifying it like this, 
502
503 @example
504  \new @var{context} \with @{
505    \consists @dots{}
506    \consists @dots{}
507    \remove  @dots{}
508    \remove @dots{}
509    @emph{etc.}
510  @}
511  @var{..music..}
512 @end example
513
514 where the @dots{} should be the name of an engraver. Here is a simple
515 example which removes @code{Time_signature_engraver} and
516 @code{Clef_engraver} from a @code{Staff} context,
517
518 @lilypond[relative=1, verbatim]
519 << \new Staff {
520     f2 g
521   }
522   \new Staff \with {
523      \remove "Time_signature_engraver"
524      \remove "Clef_engraver"
525   } {
526     f2 g2
527   }
528 >>
529 @end lilypond
530
531 In the second stave there are no time signature or clef symbols.  This
532 is a rather crude method of making objects disappear, it will affect the
533 entire staff. The spacing will be adversely influenced too. More
534 sophisticated methods of blanking objects are shown in (TODO).
535
536 The next example shows a practical application.  Bar lines and time
537 signatures are normally synchronized across the score.  This is done
538 by the @code{Timing_engraver}. This plug-in keeps an administration of
539 time signature, location within the measure, etc. By moving the
540 @code{Timing_engraver} engraver from Score to Staff context, we can
541 have score where each staff has its own time signature.
542
543 @cindex polymetric scores
544
545
546 @lilypond[relative=1,raggedright,verbatim]
547 \new Score \with {
548   \remove "Timing_engraver"
549 } <<
550   \new Staff \with {
551     \consists "Timing_engraver"
552   } {
553       \time 3/4
554       c4 c c c c c
555   }
556   \new Staff \with {
557     \consists "Timing_engraver"
558   } {
559        \time 2/4
560        c4 c c c c c
561   }
562 >>
563 @end lilypond
564
565
566 @node Layout tunings within contexts
567 @subsection Layout tunings within contexts
568
569 Each context is responsible for creating certain types of graphical
570 objects. The settings used for printing these objects are also stored by
571 context. By changing these settings, the appearance of objects can be
572 altered.
573  
574 The syntax for this is
575
576 @example
577   \override @var{context}.@var{name}@code{ #'}@var{property} = #@var{value}
578 @end example
579
580 Here @var{name} is the name of a graphical object, like @code{Stem} or
581 @code{NoteHead}.  @var{property} is an internal variable of the
582 formatting system (`grob property' or `layout property'). It is a
583 symbol, so it must be quoted. The subsection refTODO explains what to
584 fill in for @var{name}, @var{property} and @var{value}. Here we only
585 discuss functionality of this command.
586
587 The command
588
589 @verbatim
590   \override Staff.Stem #'thickness = #4.0 
591 @end verbatim
592
593 @noindent
594 makes stems thicker (the default is 1.3, with staff line thickness as a
595 unit). Since the command specifies @context{Staff} as context, it only
596 applies to the current staff. Other staves will keep their normal
597 appearance.  Here we see the command in action:
598
599 @lilypond[verbatim,relative=2]
600   c4
601   \override Staff.Stem #'thickness = #4.0 
602   c4
603   c4
604   c4
605 @end lilypond
606
607 The @code{\override} command is executed during the interpreting phase,
608 and changes the definition of the @code{Stem} within
609 @context{Staff}. After the command all stems are thickened.
610
611 Analogous to @code{\set}, the @var{context} argument may be left out,
612 causing it to default to @context{Voice} and adding @code{\once} applies
613 the change during only one timestep
614
615 @lilypond[verbatim,relative=2]
616   c4
617   \once \override Stem #'thickness = #4.0 
618   c4
619   c4 
620 @end lilypond
621
622 The @code{\override} must be done before the object is
623 started. Therefore, when altering @emph{Spanner} objects, like slurs or
624 beams, the @code{\override} command must be executed at the moment that
625 the object is created. In this example,
626
627
628 @lilypond[verbatim,relative=2]
629   \override Slur #'thickness = #3.0
630   c8[( c
631   \override Beam #'thickness = #0.6
632   c8 c]) 
633 @end lilypond
634
635 @noindent
636 the slur is fatter and the beam is not. This is because the command for
637 @code{Beam} comes after the Beam is started. Therefore it has no effect.
638
639 Analogous to @code{\unset}, the @code{\revert} command for a context
640 undoes a @code{\override} command; like with @code{\unset}, it only
641 affects settings that were made in the same context. In other words, the
642 @code{\revert} in the next example does not do anything.
643
644 @verbatim
645   \override Voice.Stem #'thickness = #4.0
646   \revert Staff.Stem #'thickness
647 @end verbatim
648
649
650
651
652 @seealso
653
654 Internals: @internalsref{OverrideProperty}, @internalsref{RevertProperty},
655 @internalsref{PropertySet}, @internalsref{All-backend-properties}, and
656 @internalsref{All-layout-objects}.
657
658
659 @refbugs
660
661 The back-end is not very strict in type-checking object properties.
662 Cyclic references in Scheme values for properties can cause hangs
663 and/or crashes.
664
665
666 @node Changing context default settings
667 @subsection Changing context default settings
668
669 The adjustments of the previous chapters can also be entered separate
670 from the music, in the @code{\paper} block,
671
672 @example
673   \paper @{
674      @dots{}
675      \context @{
676         \StaffContext
677
678         \set fontSize = #-2
679         \override Stem #'thickness
680         \remove "Time_signature_engraver"
681       @}
682    @}
683 @end example
684
685 This
686 @example
687   \StaffContext
688 @end example
689
690 @noindent
691 takes the existing definition @context{Staff} from the identifier
692 @code{StaffContext}. This works analogously other contexts, so the
693 existing definition  of @code{Voice} is in 
694 @code{\VoiceContext}.
695
696 The statements
697 @example
698         \set fontSize = #-2
699         \override Stem #'thickness
700         \remove "Time_signature_engraver"
701 @end example
702
703 @noindent
704 affect all staves in the score.
705
706 The @code{\set} keyword is optional within the @code{\paper} block, so
707
708 @example
709   fontSize = #-2
710 @end example
711
712 @noindent
713 will also work.
714
715
716
717 @refbugs
718
719 It is not possible to collect changes in a variable, and apply them to
720 one @code{\context} definition by referencing that variable.
721
722
723 @node Defining new  contexts
724 @subsection Defining new  contexts
725
726 Specific contexts, like @context{Staff} and @code{Voice} are made of
727 simple building blocks, and it is possible to compose engraver
728 plug-ins in different combinations, thereby creating new types of
729 contexts.
730
731 The next example shows how to build a different type of
732 @context{Voice} context from scratch.  It will be similar to
733 @code{Voice}, but print centered slash noteheads only. It can be used
734 to indicate improvisation in Jazz pieces,
735
736 @lilypond[raggedright]
737   \paper { \context {
738     \name ImproVoice
739     \type "Engraver_group_engraver"
740     \consists "Note_heads_engraver"
741     \consists "Text_engraver"
742     \consists Pitch_squash_engraver
743     squashedPosition = #0
744     \override NoteHead #'style = #'slash
745     \override Stem #'transparent = ##t
746     \alias Voice
747   }
748   \context { \StaffContext
749     \accepts "ImproVoice"
750   }}
751   \score { \notes \relative c'' {
752     a4 d8 bes8 \new ImproVoice { c4^"ad lib" c 
753      c4 c^"undress" c_"while playing :)" c } 
754     a1 
755   }}
756 @end lilypond
757
758
759 These settings are again done within a @code{\context} block inside a
760 @code{\paper} block,
761
762 @example
763   \paper @{
764     \context @{
765       @dots{}
766     @}
767   @}
768 @end example
769
770 In the following discussion, the example input shown should go on the
771 @dots{} of the previous fragment.
772
773 First, name the context gets a name. Instead of @context{Voice} it
774 will be called @context{ImproVoice},
775
776 @verbatim
777   \name ImproVoice
778 @end verbatim
779
780 Since it is similar to the @context{Voice}, we want commands that work
781 on (existing) @context{Voice}s to remain working. This is achieved by
782 giving the new context an alias @context{Voice},
783
784 @verbatim
785   \alias Voice
786 @end verbatim
787
788 The context will print notes, and instructive texts
789
790 @verbatim
791   \consists Note_heads_engraver
792   \consists Text_engraver
793 @end verbatim
794
795 but only on the center line,
796
797 @verbatim
798   \consists Pitch_squash_engraver
799   squashedPosition = #0
800 @end verbatim
801
802 The @internalsref{Pitch_squash_engraver} modifies note heads (created
803 by @internalsref{Note_heads_engraver}) and sets their vertical
804 position to the value of @code{squashedPosition}, in this case
805 @code{0}, the center line.
806
807 The notes look like a  slash, without a stem,
808
809 @verbatim
810     \override NoteHead #'style = #'slash
811     \override Stem #'transparent = ##t
812 @end verbatim
813
814
815 All these plug-ins have to cooperate, and this is achieved with a
816 special plug-in, which must be marked with the keyword @code{\type}.
817 This should always be @internalsref{Engraver_group_engraver},
818
819 @example
820  \type "Engraver_group_engraver"
821 @end example
822
823 Put together, we get
824
825 @verbatim
826   \context {
827     \name ImproVoice
828     \type "Engraver_group_engraver"
829     \consists "Note_heads_engraver"
830     \consists "Text_script_engraver"
831     \consists Pitch_squash_engraver
832     squashedPosition = #0
833     \override NoteHead #'style = #'slash
834     \override Stem #'transparent = ##t
835     \alias Voice
836   }
837 @end verbatim
838
839 Contexts form hierarchies. We want to hang the @context{ImproVoice}
840 under @context{Staff}, just like normal @code{Voice}s. Therefore, we
841 modify the @code{Staff} definition with the @code{\accepts}
842 command,@footnote{The opposite of @code{\accepts} is @code{\denies},
843 which is sometimes when reusing existing context definitions. }
844
845
846
847 @verbatim
848   \context {
849     \StaffContext
850     \accepts ImproVoice    
851   }
852 @end verbatim 
853
854 Putting both into a @code{\paper} block, like
855
856 @example
857   \paper @{
858     \context @{
859       \name ImproVoice
860       @dots{}
861     @}
862   \context @{
863     \StaffContext
864     \accepts "ImproVoice"
865   @}
866 @}
867 @end example
868
869 Then the output at the start of this subsection can be entered as
870
871 @verbatim
872 \score {
873   \notes \relative c'' {
874      a4 d8 bes8
875      \new ImproVoice {
876        c4^"ad lib" c 
877        c4 c^"undress"
878        c c_"while playing :)"
879      }
880      a1 
881   }
882 }
883 @end verbatim
884   
885
886     
887 @node Which properties to change
888 @subsection Which properties to change
889
890
891 There are many different properties.  Not all of them are listed in
892 this manual. However, the program reference lists them all in the
893 section @internalsref{Context-properties}, and most properties are
894 demonstrated in one of the
895 @ifhtml
896 @uref{../../../input/test/out-www/collated-files.html,tips-and-tricks}
897 @end ifhtml
898 @ifnothtml
899 tips-and-tricks
900 @end ifnothtml
901 examples.
902
903
904 @node Tuning output
905 @section Tuning output
906
907
908
909
910 There are situations where default layout decisions are not
911 sufficient.  In this section we discuss ways to override these
912 defaults.
913
914 Formatting is internally done by manipulating so called objects
915 (graphic objects). Each object carries with it a set of properties
916 (object or layout properties) specific to that object.  For example, a
917 stem object has properties that specify its direction, length and
918 thickness.
919
920 The most direct way of tuning the output is by altering the values of
921 these properties. There are two ways of doing that: first, you can
922 temporarily change the definition of one type of object, thus
923 affecting a whole set of objects.  Second, you can select one specific
924 object, and set a layout property in that object.
925
926 Do not confuse layout properties with translation
927 properties. Translation properties always use a mixed caps style
928 naming, and are manipulated using @code{\set} and @code{\unset}: 
929 @example
930   \set Context.propertyName = @var{value}
931 @end example
932
933 Layout properties are use Scheme style variable naming, i.e.  lower
934 case words separated with dashes. They are symbols, and should always
935 be quoted using @code{#'}.  For example, this could be an imaginary
936 layout property name:
937 @example
938   #'layout-property-name
939 @end example
940
941
942 @menu
943 * Common tweaks::               
944 * Constructing a tweak::        
945 @end menu
946
947
948
949 @node Common tweaks
950 @subsection Common tweaks
951
952 Some overrides are so common that predefined commands are provided as
953 a short cut.  For example, @code{\slurUp} and @code{\stemDown}. These
954 commands are described in
955 @ifhtml
956 the
957 @end ifhtml
958 @ref{Notation manual}, under the sections for slurs and stems
959 respectively.
960
961 The exact tuning possibilities for each type of layout object are
962 documented in the program reference of the respective
963 object. However, many layout objects share properties, which can be
964 used to apply generic tweaks.  We mention a couple of these:
965
966 @itemize @bullet
967 @item The @code{extra-offset} property, which
968 @cindex @code{extra-offset}
969 has a pair of numbers as value, moves around objects in the printout.
970 The first number controls left-right movement; a positive number will
971 move the object to the right.  The second number controls up-down
972 movement; a positive number will move it higher.  The units of these
973 offsets are staff-spaces.  The @code{extra-offset} property is a
974 low-level feature: the formatting engine is completely oblivious to
975 these offsets.
976
977 In the following example, the second fingering is moved a little to
978 the left, and 1.8 staff space downwards:
979
980 @cindex setting object properties
981
982 @lilypond[relative=1,verbatim]
983 \stemUp
984 f-5
985 \once \override Fingering
986     #'extra-offset = #'(-0.3 . -1.8) 
987 f-5
988 @end lilypond
989
990 @item
991 Setting the @code{transparent} property will cause an object to be printed
992 in `invisible ink': the object is not printed, but all its other
993 behavior is retained. The object still takes up space, it takes part in
994 collisions, and slurs, and ties and beams can be attached to it.
995
996 @cindex transparent objects
997 @cindex removing objects
998 @cindex invisible objects
999 The following example demonstrates how to connect different voices
1000 using ties. Normally, ties only connect two notes in the same
1001 voice. By introducing a tie in a different voice, and blanking a stem
1002 in that voice, the tie appears to cross voices:
1003
1004 @lilypond[fragment,relative=2,verbatim]
1005   << {
1006       \once \override Stem #'transparent = ##t
1007       b8~ b8\noBeam
1008   } \\ {
1009        b[ g8]
1010   } >>
1011 @end lilypond
1012
1013 @item
1014 The @code{padding} property for objects with
1015 @cindex @code{padding}
1016 @code{side-position-interface} can be set to increase distance between
1017 symbols that are printed above or below notes. We only give an
1018 example; a more elaborate explanation is in @ref{Constructing a
1019 tweak}:
1020
1021 @lilypond[relative=1,verbatim]
1022   c2\fermata
1023   \override Script #'padding = #3
1024   b2\fermata
1025 @end lilypond
1026
1027 @end itemize
1028
1029 More specific overrides are also possible.  The following section
1030 discusses in depth how to figure out these statements for yourself.
1031
1032
1033 @node Constructing a tweak
1034 @subsection Constructing a tweak
1035
1036
1037 @cindex internal documentation
1038 @cindex finding graphical objects
1039 @cindex graphical object descriptions 
1040 @cindex tweaking
1041 @cindex @code{\override}
1042 @cindex @code{\set}
1043 @cindex internal documentation
1044
1045
1046
1047 Three pieces of information are required to use @code{\override} and
1048 @code{\set}: the name of the layout object, the context and the name
1049 of the property.  We demonstrate how to glean this information from
1050 the notation manual and the program reference.
1051
1052 The generated documentation is a set of HTML pages which should be
1053 included if you installed a binary distribution, typically in
1054 @file{/usr/share/doc/lilypond}.  They are also available on the web:
1055 go to the @uref{http://lilypond.org,LilyPond website}, click
1056 ``Documentation'', select the correct version, and then click
1057 ``Program reference.'' It is advisable to bookmark the local HTML
1058 files. They will load faster than the ones on the web and matches the
1059 version of LilyPond you are using.
1060  
1061
1062
1063 @c  [TODO: revise for new site.]
1064
1065 Suppose we want to move the fingering indication in the fragment
1066 below:
1067
1068 @lilypond[relative=2,verbatim]
1069 c-2
1070 \stemUp
1071 f
1072 @end lilypond
1073
1074 If you visit the documentation of @code{Fingering} (in @ref{Fingering
1075 instructions}), you will notice that there is written:
1076
1077 @quotation
1078 @seealso
1079
1080 Internals: @internalsref{FingerEvent} and @internalsref{Fingering}.
1081
1082 @end quotation
1083
1084 @separate
1085
1086 @noindent
1087 In other words, the fingerings once entered, are internally stored as
1088 @code{FingerEvent} music objects. When printed, a @code{Fingering}
1089 layout object is created for every @code{FingerEvent}.
1090
1091 The Fingering object has a number of different functions, and each of
1092 those is captured in an interface. The interfaces are listed under
1093 @internalsref{Fingering} in the program reference.
1094
1095
1096
1097 The @code{Fingering} object has a fixed size
1098 (@internalsref{item-interface}), the symbol is a piece of text
1099 (@internalsref{text-interface}), whose font can be set
1100 (@internalsref{font-interface}).  It is centered horizontally
1101 (@internalsref{self-alignment-interface}), it is placed vertically
1102 next to other objects (@internalsref{side-position-interface}), and
1103 its placement is coordinated with other scripts
1104 (@internalsref{text-script-interface}).  It also has the standard
1105 @internalsref{grob-interface} (grob stands for Graphical object)
1106 @cindex grob
1107 @cindex graphical object
1108 @cindex layout object
1109 @cindex object, layout 
1110 with all the variables that come with
1111 it.  Finally, it denotes a fingering instruction, so it has
1112 @internalsref{finger-interface}.
1113
1114 For the vertical placement, we have to look under
1115 @code{side-position-interface}:
1116 @quotation
1117 @code{side-position-interface}
1118
1119   Position a victim object (this one) next to other objects (the
1120   support).  In this case, the property @code{direction} signifies where to put the
1121   victim object relative to the support (left or right, up or down?)
1122 @end quotation
1123
1124 @cindex padding
1125 @noindent
1126 below this description, the variable @code{padding} is described as
1127 @quotation
1128 @table @code
1129 @item padding
1130  (dimension, in staff space)
1131
1132    add this much extra space between objects that are next to each
1133 other. Default value: @code{0.6}
1134 @end table
1135 @end quotation
1136
1137 By increasing the value of @code{padding}, we can move away the
1138 fingering.  The following command inserts 3 staff spaces of white
1139 between the note and the fingering:
1140 @example
1141 \once \override Fingering   #'padding = #3
1142 @end example
1143
1144 Inserting this command before the Fingering object is created,
1145 i.e. before @code{c2}, yields the following result:
1146
1147 @lilypond[relative=2,fragment,verbatim]
1148 \once \override Fingering
1149     #'padding = #3
1150 c-2
1151 \stemUp
1152 f
1153 @end lilypond
1154
1155 The context name @code{Voice} in the example above can be determined
1156 as follows. In the documentation for @internalsref{Fingering}, it says
1157 @quotation
1158 Fingering grobs are created by: @internalsref{Fingering_engraver} @c
1159 @end quotation
1160
1161 Clicking @code{Fingering_engraver} shows the documentation of
1162 the module responsible for interpreting the fingering instructions and
1163 translating them to a @code{Fingering} object.  Such a module is called
1164 an @emph{engraver}.  The documentation of the @code{Fingering_engraver}
1165 says
1166 @example
1167 Fingering_engraver is part of contexts: Voice 
1168 @end example
1169 so tuning the settings for Fingering should be done with
1170 @example
1171   \override Fingering @dots{}
1172 @end example
1173
1174 Of course, the tweak may also done in a larger context than
1175 @code{Voice}, for example, @internalsref{Staff} or
1176 @internalsref{Score}.
1177
1178 @seealso
1179
1180 Internals: the program reference also contains alphabetical lists of
1181 @internalsref{Contexts}, @internalsref{All-layout-objects} and
1182 @internalsref{Music-expressions}, so you can also find which objects
1183 to tweak by browsing the internals document.
1184
1185 @node Fonts
1186 @section Fonts
1187
1188 @menu
1189 * Selecting font sizes::        
1190 * Font selection::              
1191 @end menu
1192
1193 @node Selecting font sizes
1194 @subsection Selecting font sizes
1195
1196 The most common thing to change about the appearance of fonts is their
1197 size. The font size of any context can be easily changed by setting
1198 the @code{fontSize} property for that context.  Its value is a number:
1199 negative numbers make the font smaller, positive numbers larger. An
1200 example is given below:
1201 @c
1202 @lilypond[fragment,relative=1,verbatim]
1203   c4 c4 \set fontSize = #-3
1204   f4 g4
1205 @end lilypond
1206 This command will set @code{font-size} (see below) in all layout
1207 objects in the current context. It does not change the size of
1208 variable symbols, such as beams or slurs.
1209
1210 The font size is set by modifying the @code{font-size} property.  Its
1211 value is a number indicating the size relative to the standard size.
1212 Each step up is an increase of approximately 12% of the font size. Six
1213 steps is exactly a factor two. The Scheme function @code{magstep}
1214 converts a @code{font-size} number to a scaling factor.
1215
1216 LilyPond has fonts in different design sizes: the music fonts for
1217 smaller sizes are chubbier, while the text fonts are relatively wider.
1218 Font size changes are achieved by scaling the design size that is
1219 closest to the desired size.
1220
1221 The @code{font-size} mechanism does not work for fonts selected
1222 through @code{font-name}. These may be scaled with
1223 @code{font-magnification}.
1224
1225
1226 One of the uses of @code{fontSize} is to get smaller symbols for cue
1227 notes. An elaborate example of those is in
1228 @inputfileref{input/test,cue-notes.ly}.
1229
1230 @cindex @code{font-style}
1231
1232 @refcommands
1233
1234 The following commands set @code{fontSize} for the current voice.
1235
1236 @cindex @code{\tiny}
1237 @code{\tiny}, 
1238 @cindex @code{\small}
1239 @code{\small}, 
1240 @cindex @code{\normalsize}
1241 @code{\normalsize}.
1242
1243
1244
1245 @cindex magnification
1246 @cindex cue notes
1247
1248
1249 @node Font selection
1250 @subsection Font selection
1251
1252 Font selection for the standard fonts, @TeX{}'s Computer Modern fonts,
1253 can also be adjusted with a more fine-grained mechanism.  By setting
1254 the object properties described below, you can select a different font;
1255 all three mechanisms work for every object that supports
1256 @code{font-interface}:
1257
1258
1259 @itemize @bullet
1260 @item @code{font-encoding}
1261 is a symbol that sets layout of the glyphs. Choices include
1262 @code{text} for normal text, @code{braces} (for piano staff braces),
1263 @code{music} (the standard music font, including ancient glyphs),
1264 @code{dynamic} (for dynamic signs) and @code{number} for the number
1265 font.
1266
1267
1268 @item @code{font-family}
1269  is a symbol indicating the general class of the typeface.  Supported are
1270 @code{roman} (Computer Modern), @code{sans} and @code{typewriter}
1271   
1272 @item @code{font-shape}
1273   is a symbol indicating the shape of the font, there are typically
1274 several font shapes available for each font family. Choices are
1275 @code{italic}, @code{caps} and @code{upright}.
1276
1277 @item @code{font-series}
1278 is a  symbol indicating the series of the font. There are typically several
1279 font series for each font family and shape. Choices are @code{medium}
1280 and @code{bold}. 
1281
1282 @end itemize
1283
1284 Fonts selected in the way sketched above come from a predefined style
1285 sheet.
1286
1287  The font used for printing a object can be selected by setting
1288 @code{font-name}, e.g.
1289 @example
1290   \override Staff.TimeSignature
1291       #'font-name = #"cmr17"
1292 @end example
1293
1294 @noindent
1295 Any font can be used, as long as it is available to @TeX{}. Possible
1296 fonts include foreign fonts or fonts that do not belong to the
1297 Computer Modern font family.  The size of fonts selected in this way
1298 can be changed with the @code{font-magnification} property.  For
1299 example, @code{2.0} blows up all letters by a factor 2 in both
1300 directions.
1301
1302 @cindex font size
1303 @cindex font magnification
1304
1305
1306
1307 @seealso
1308
1309 Init files: @file{ly/declarations-init.ly} contains hints how new
1310 fonts may be added to LilyPond.
1311
1312 @refbugs
1313
1314 No style sheet is provided for other fonts besides the @TeX{}
1315 Computer Modern family.
1316
1317 @cindex font selection
1318 @cindex font magnification
1319 @cindex @code{font-interface}
1320
1321
1322 @node Text markup
1323 @section Text markup
1324 @cindex text markup
1325 @cindex markup text
1326
1327
1328 @cindex typeset text
1329
1330 LilyPond has an internal mechanism to typeset texts. You can access it
1331 with the keyword @code{\markup}. Within markup mode, you can enter texts
1332 similar to lyrics: simply enter them, surrounded by spaces:
1333 @cindex markup
1334
1335 @lilypond[verbatim,fragment,relative=1]
1336  c1^\markup { hello }
1337  c1_\markup { hi there }
1338  c1^\markup { hi \bold there, is \italic anyone home? }
1339 @end lilypond
1340
1341 @cindex font switching
1342
1343 The markup in the example demonstrates font switching commands.  The
1344 command @code{\bold} and @code{\italic} only apply to the first
1345 following word; enclose a set of texts with braces to apply a command
1346 to more words:
1347 @example
1348   \markup @{ \bold @{ hi there @} @}
1349 @end example
1350
1351 @noindent
1352 For clarity, you can also do this for single arguments, e.g.
1353
1354 @verbatim
1355   \markup { is \italic { anyone } home }
1356 @end verbatim
1357
1358 @cindex font size, texts
1359
1360
1361 In markup mode you can compose expressions, similar to mathematical
1362 expressions, XML documents and music expressions.  The braces group
1363 notes into horizontal lines. Other types of lists also exist: you can
1364 stack expressions grouped with @code{<}, and @code{>} vertically with
1365 the command @code{\column}. Similarly, @code{\center-align} aligns
1366 texts by their center lines:
1367
1368 @lilypond[verbatim,fragment,relative=1]
1369  c1^\markup { \column < a bbbb c > }
1370  c1^\markup { \center-align < a bbbb c > }
1371  c1^\markup { \line < a b c > }
1372 @end lilypond
1373
1374
1375 Markups can be stored in variables, and these variables
1376 may be attached to notes, like
1377 @verbatim
1378 allegro = \markup { \bold \large { Allegro } }
1379 \notes { a^\allegro b c d }
1380 @end verbatim
1381
1382
1383 Some objects have alignment procedures of their own, which cancel out
1384 any effects of alignments applied to their markup arguments as a
1385 whole.  For example, the @internalsref{RehearsalMark} is horizontally
1386 centered, so using @code{\mark \markup @{ \left-align .. @}} has no
1387 effect.
1388
1389 Similarly, for moving whole texts over notes with
1390 @code{\raise}, use the following trick:
1391 @example
1392   "" \raise #0.5 raised
1393 @end example
1394
1395 The text @code{raised} is now raised relative to the empty string
1396 @code{""} which is not visible.  Alternatively, complete objects can
1397 be moved with layout properties such as @code{padding} and
1398 @code{extra-offset}.
1399
1400
1401
1402 @seealso
1403
1404 Init files:  @file{scm/new-markup.scm}.
1405
1406
1407 @refbugs
1408
1409 Text layout is ultimately done by @TeX{}, which does kerning of
1410 letters.  LilyPond does not account for kerning, so texts will be
1411 spaced slightly too wide.
1412
1413 Syntax errors for markup mode are confusing.
1414
1415 Markup texts cannot be used in the titling of the @code{\header}
1416 field. Titles are made by La@TeX{}, so La@TeX{} commands should be used
1417 for formatting.
1418
1419
1420
1421 @menu
1422 * Overview of text markup commands::  
1423 @end menu
1424
1425 @node  Overview of text markup commands
1426 @subsection Overview of text markup commands
1427
1428 @include markup-commands.tely
1429
1430
1431 @node Global layout
1432 @section Global layout
1433
1434 The global layout determined by three factors: the page layout, the
1435 line breaks and the spacing. These all influence each other. The
1436 choice of spacing determines how densely each system of music is set,
1437 which influences where line breaks breaks are chosen, and thus
1438 ultimately how many pages a piece of music takes. This section
1439 explains how to tune the algorithm for spacing.
1440
1441 Globally spoken, this procedure happens in three steps: first,
1442 flexible distances (``springs'') are chosen, based on durations. All
1443 possible line breaking combination are tried, and the one with the
1444 best results---a layout that has uniform density and requires as
1445 little stretching or cramping as possible---is chosen. When the score
1446 is processed by @TeX{}, each page is filled with systems, and page breaks
1447 are chosen whenever the page gets full.
1448
1449
1450
1451 @menu
1452 * Vertical spacing::            
1453 * Horizontal spacing::          
1454 @end menu
1455
1456
1457 @node Vertical spacing
1458 @subsection Vertical spacing
1459
1460 @cindex vertical spacing
1461 @cindex distance between staves
1462 @cindex staff distance
1463 @cindex between staves, distance
1464 @cindex staves per page
1465 @cindex space between staves
1466
1467 The height of each system is determined automatically by LilyPond, to
1468 keep systems from bumping into each other, some minimum distances are
1469 set.  By changing these, you can put staves closer together, and thus
1470 put more  systems onto one page.
1471
1472 Normally staves are stacked vertically. To make
1473 staves maintain a distance, their vertical size is padded. This is
1474 done with the property @code{minimumVerticalExtent}. It takes a pair
1475 of numbers, so if you want to make it smaller from its, then you could
1476 set
1477 @example
1478   \set Staff.minimumVerticalExtent = #'(-4 . 4)
1479 @end example
1480 This sets the vertical size of the current staff to 4 staff spaces on
1481 either side of the center staff line.  The argument of
1482 @code{minimumVerticalExtent} is interpreted as an interval, where the
1483 center line is the 0, so the first number is generally negative.  The
1484 staff can be made larger at the bottom by setting it to @code{(-6
1485 . 4)}.
1486
1487 The piano staves are handled a little differently: to make cross-staff
1488 beaming work correctly, it is necessary that the distance between staves
1489 is fixed beforehand.  This is also done with a
1490 @internalsref{VerticalAlignment} object, created in
1491 @internalsref{PianoStaff}. In this object the distance between the
1492 staves is fixed by setting @code{forced-distance}. If you want to
1493 override this, use a @code{\context} block as follows:
1494 @example
1495   \paper @{
1496     \context @{
1497       \PianoStaffContext
1498       \override VerticalAlignment #'forced-distance = #9
1499     @}
1500     @dots{}
1501   @}
1502 @end example
1503 This would bring the staves together at a distance of 9 staff spaces,
1504 measured from the center line of each staff.
1505
1506 @seealso
1507
1508 Internals: Vertical alignment of staves is handled by the
1509 @internalsref{VerticalAlignment} object.
1510
1511
1512
1513
1514 @node Horizontal spacing
1515 @subsection Horizontal Spacing
1516
1517 The spacing engine translates differences in durations into
1518 stretchable distances (``springs'') of differing lengths. Longer
1519 durations get more space, shorter durations get less.  The shortest
1520 durations get a fixed amount of space (which is controlled by
1521 @code{shortest-duration-space} in the @internalsref{SpacingSpanner} object). 
1522 The longer the duration, the more space it gets: doubling a
1523 duration adds a fixed amount (this amount is controlled by
1524 @code{spacing-increment}) of space to the note.
1525
1526 For example, the following piece contains lots of half, quarter and
1527 8th notes, the eighth note is followed by 1 note head width (NHW). 
1528 The quarter note is followed by 2 NHW, the half by 3 NHW, etc.
1529 @lilypond[fragment,verbatim,relative=1] c2 c4. c8 c4. c8 c4. c8 c8
1530 c8 c4 c4 c4
1531 @end lilypond
1532
1533 Normally, @code{shortest-duration-space} is set to 1.2, which is the
1534 width of a note head, and @code{shortest-duration-space} is set to
1535 2.0, meaning that the shortest note gets 2 NHW (i.e. 2 times
1536 @code{shortest-duration-space}) of space. For normal notes, this space
1537 is always counted from the left edge of the symbol, so the shortest
1538 notes are generally followed by one NHW of space.
1539
1540 If one would follow the above procedure exactly, then adding a single
1541 32th note to a score that uses 8th and 16th notes, would widen up the
1542 entire score a lot. The shortest note is no longer a 16th, but a 32nd,
1543 thus adding 1 NHW to every note. To prevent this, the
1544 shortest duration for spacing is not the shortest note in the score,
1545 but the most commonly found shortest note.  Notes that are even
1546 shorter this are followed by a space that is proportional to their
1547 duration relative to the common shortest note.  So if we were to add
1548 only a few 16th notes to the example above, they would be followed by
1549 half a NHW:
1550
1551 @lilypond[fragment,verbatim,relative=2]
1552  c2 c4. c8 c4. c16[ c] c4. c8 c8 c8 c4 c4 c4
1553 @end lilypond
1554
1555 The most common shortest duration is determined as follows: in every
1556 measure, the shortest duration is determined. The most common short
1557 duration, is taken as the basis for the spacing, with the stipulation
1558 that this shortest duration should always be equal to or shorter than
1559 1/8th note. The shortest duration is printed when you run lilypond
1560 with @code{--verbose}.  These durations may also be customized. If you
1561 set the @code{common-shortest-duration} in
1562 @internalsref{SpacingSpanner}, then this sets the base duration for
1563 spacing. The maximum duration for this base (normally 1/8th), is set
1564 through @code{base-shortest-duration}.
1565
1566 @cindex @code{common-shortest-duration}
1567 @cindex @code{base-shortest-duration}
1568 @cindex @code{stem-spacing-correction}
1569 @cindex @code{spacing}
1570
1571 In the introduction it was explained that stem directions influence
1572 spacing. This is controlled with @code{stem-spacing-correction}
1573 property in @internalsref{NoteSpacing}, which are generated for every
1574 @internalsref{Voice} context. The @code{StaffSpacing} object
1575 (generated at @internalsref{Staff} context) contains the same property
1576 for controlling the stem/bar line spacing. The following example
1577 shows these corrections, once with default settings, and once with
1578 exaggerated corrections:
1579
1580 @lilypond
1581     \score { \notes {
1582       c'4 e''4 e'4 b'4 |
1583       b'4 e''4 b'4 e''4|
1584       \override Staff.NoteSpacing   #'stem-spacing-correction
1585    = #1.5
1586       \override Staff.StaffSpacing   #'stem-spacing-correction
1587    = #1.5
1588       c'4 e''4 e'4 b'4 |
1589       b'4 e''4 b'4 e''4|      
1590     }
1591     \paper { raggedright = ##t } }
1592 @end lilypond
1593
1594 @cindex SpacingSpanner, overriding properties
1595
1596 Properties of the  @internalsref{SpacingSpanner} must be overridden
1597 from the @code{\paper} block, since the @internalsref{SpacingSpanner} is
1598 created before any property commands are interpreted.
1599 @example
1600 \paper @{ \context  @{
1601   \ScoreContext
1602   SpacingSpanner \override #'spacing-increment = #3.0
1603 @} @}
1604 @end example
1605
1606
1607 @seealso
1608
1609 Internals: @internalsref{SpacingSpanner}, @internalsref{NoteSpacing},
1610 @internalsref{StaffSpacing}, @internalsref{SeparationItem}, and
1611 @internalsref{SeparatingGroupSpanner}.
1612
1613 @refbugs
1614
1615 Spacing is determined on a score wide basis. If you have a score that
1616 changes its character (measured in durations) halfway during the
1617 score, the part containing the longer durations will be spaced too
1618 widely.
1619
1620 There is no convenient mechanism to manually override spacing.
1621
1622
1623
1624 @node Font Size
1625 @section Font size
1626
1627 @cindex font size, setting
1628 @cindex staff size, setting
1629 @cindex @code{paper} file
1630
1631 The Feta font provides musical symbols at eight  different
1632 sizes. Each font is tuned for a different staff size: at smaller sizes
1633 the font gets heavier, to match the relatively heavier staff lines.
1634 The recommended font sizes are listed in the following table:
1635
1636 @multitable @columnfractions  .25 .25 .25 .25
1637
1638 @item @b{font name}
1639 @tab @b{staff height (pt)}
1640 @tab @b{staff height (mm)}
1641 @tab @b{use}
1642
1643 @item feta11
1644 @tab 11.22
1645 @tab 3.9 
1646 @tab pocket scores
1647
1648 @item feta13
1649 @tab 12.60
1650 @tab 4.4
1651 @tab
1652
1653 @item feta14
1654 @tab 14.14
1655 @tab 5.0
1656 @tab 
1657
1658 @item feta16
1659 @tab 15.87
1660 @tab 5.6
1661 @tab 
1662
1663 @item feta18
1664 @tab 17.82
1665 @tab 6.3
1666 @tab song books
1667
1668 @item feta20
1669 @tab 17.82
1670 @tab 7.0
1671 @tab standard parts 
1672
1673 @item feta23
1674 @tab 22.45 
1675 @tab 7.9
1676 @tab 
1677
1678 @item feta20
1679 @tab 25.2 
1680 @tab 8.9
1681 @tab
1682 @c modern rental material  ?
1683
1684 @end multitable
1685
1686 These fonts are available in any sizes. The context property
1687 @code{fontSize} and the layout property @code{staff-space} (in
1688 @internalsref{StaffSymbol}) can be used to tune size for individual
1689 staves. The size of individual staves are relative to the global size,
1690 which can be set   in the following manner:
1691
1692 @example
1693   #(set-global-staff-size 14)
1694 @end example
1695
1696 This sets the global default size to 14pt staff height, and scales all
1697 fonts accordingly.
1698
1699 @seealso
1700
1701 This manual: @ref{Selecting font sizes}.
1702
1703
1704 @menu
1705 * Line breaking::               
1706 * Page layout::                 
1707 @end menu
1708
1709 @node Line breaking
1710 @subsection Line breaking
1711
1712 @cindex line breaks
1713 @cindex breaking lines
1714
1715 Line breaks are normally computed automatically. They are chosen such
1716 that lines look neither cramped nor loose, and that consecutive lines
1717 have similar density.
1718
1719 Occasionally you might want to override the automatic breaks; you can
1720 do this by  specifying @code{\break}. This will force a line break at
1721 this point.  Line breaks can only occur at places where there are bar
1722 lines.  If you want to have a line break where there is no bar line,
1723 you can force an invisible bar line by entering @code{\bar
1724 ""}. Similarly, @code{\noBreak} forbids a line break at a 
1725 point.
1726
1727
1728 @cindex regular line breaks
1729 @cindex four bar music. 
1730
1731 For line breaks at regular intervals  use @code{\break} separated by
1732 skips and repeated with @code{\repeat}:
1733 @example
1734 <<  \repeat unfold 7 @{
1735          s1 \noBreak s1 \noBreak
1736          s1 \noBreak s1 \break  @}
1737    @emph{the real music}
1738 >> 
1739 @end  example
1740
1741 @noindent
1742 This makes the following 28 measures (assuming 4/4 time) be broken every
1743 4 measures, and only there.
1744
1745 @refcommands
1746
1747 @code{\break}, @code{\noBreak}
1748 @cindex @code{\break}
1749 @cindex @code{\noBreak}
1750
1751 @seealso
1752
1753 Internals: @internalsref{BreakEvent}.
1754
1755
1756 @node Page layout
1757 @subsection Page layout
1758
1759 @cindex page breaks
1760 @cindex breaking pages
1761
1762 @cindex @code{indent}
1763 @cindex @code{linewidth}
1764
1765 The most basic settings influencing the spacing are @code{indent} and
1766 @code{linewidth}. They are set in the @code{\paper} block. They
1767 control the indentation of the first line of music, and the lengths of
1768 the lines.
1769
1770 If  @code{raggedright} is set to true in the @code{\paper}
1771 block, then the lines are justified at their natural length. This
1772 useful for short fragments, and for checking how tight the natural
1773 spacing is.
1774
1775 @cindex page layout
1776 @cindex vertical spacing
1777
1778 The page layout process happens outside the LilyPond formatting
1779 engine: variables controlling page layout are passed to the output,
1780 and are further interpreted by @code{lilypond} wrapper program. It
1781 responds to the following variables in the @code{\paper} block.  The
1782 spacing between systems is controlled with @code{interscoreline}, its
1783 default is 16pt.  The distance between the score lines will stretch in
1784 order to fill the full page @code{interscorelinefill} is set to a
1785 positive number.  In that case @code{interscoreline} specifies the
1786 minimum spacing.
1787
1788 @cindex @code{textheight}
1789 @cindex @code{interscoreline}
1790 @cindex @code{interscorelinefill}
1791
1792 If the variable @code{lastpagefill} is defined,
1793 @c fixme: this should only be done if lastpagefill= #t 
1794 systems are evenly distributed vertically on the last page.  This
1795 might produce ugly results in case there are not enough systems on the
1796 last page.  The @command{lilypond-book} command ignores
1797 @code{lastpagefill}.  See @ref{lilypond-book manual} for more
1798 information.
1799
1800 @cindex @code{lastpagefill}
1801
1802 Page breaks are normally computed by @TeX{}, so they are not under
1803 direct control of LilyPond.  However, you can insert a commands into
1804 the @file{.tex} output to instruct @TeX{} where to break pages.  This
1805 is done by setting the @code{between-systems-strings} on the
1806 @internalsref{NonMusicalPaperColumn} where the system is broken.
1807 An example is shown in @inputfileref{input/regression,between-systems.ly}.
1808 The predefined command @code{\newpage} also does this.
1809
1810 @cindex paper size
1811 @cindex page size
1812 @cindex @code{papersize}
1813
1814 To change the paper size, use the following Scheme code:
1815 @example
1816         \paper@{
1817            #(set-paper-size "a4")
1818         @}
1819 @end example
1820
1821
1822 @refcommands
1823
1824 @cindex @code{\newpage}
1825 @code{\newpage}. 
1826
1827
1828 @seealso
1829
1830 In this manual: @ref{Invoking lilypond}.
1831
1832 Examples: @inputfileref{input/regression,between-systems.ly}.
1833
1834 Internals: @internalsref{NonMusicalPaperColumn}.
1835
1836 @refbugs
1837
1838 LilyPond has no concept of page layout, which makes it difficult to
1839 reliably choose page breaks in longer pieces.
1840
1841
1842
1843
1844 @node Output details
1845 @section Output details
1846
1847 The default output format is La@TeX{}, which should be run
1848 through La@TeX{}.  Using the option @option{-f}
1849 (or @option{--format}) other output formats can be selected also, but
1850  none of them work reliably.
1851
1852 Now the music is output system by system (a `system' consists of all
1853 staves belonging together).  From @TeX{}'s point of view, a system is an
1854 @code{\hbox} which contains a lowered @code{\vbox} so that it is centered
1855 vertically on the baseline of the text.  Between systems,
1856 @code{\interscoreline} is inserted vertically to have stretchable space.
1857 The horizontal dimension of the @code{\hbox} is given by the
1858 @code{linewidth} parameter from LilyPond's @code{\paper} block.
1859
1860 After the last system LilyPond emits a stronger variant of
1861 @code{\interscoreline} only if the macro
1862 @code{\lilypondpaperlastpagefill} is not defined (flushing the systems
1863 to the top of the page).  You can avoid that by setting the variable
1864 @code{lastpagefill} in LilyPond's @code{\paper} block.
1865
1866 It is possible to fine-tune the vertical offset further by defining the
1867 macro @code{\lilypondscoreshift}:
1868
1869 @example
1870 \def\lilypondscoreshift@{0.25\baselineskip@}
1871 @end example
1872
1873 @noindent
1874 where @code{\baselineskip} is the distance from one text line to the next.
1875
1876 Here an example how to embed a small LilyPond file @code{foo.ly} into
1877 running La@TeX{} text without using the @code{lilypond-book} script
1878 (@pxref{lilypond-book manual}):
1879
1880 @example
1881 \documentclass@{article@}
1882
1883 \def\lilypondpaperlastpagefill@{@}
1884 \lineskip 5pt
1885 \def\lilypondscoreshift@{0.25\baselineskip@}
1886
1887 \begin@{document@}
1888 This is running text which includes an example music file
1889 \input@{foo.tex@}
1890 right here.
1891 \end@{document@}
1892 @end example
1893
1894 The file @file{foo.tex} has been simply produced with
1895
1896 @example
1897   lilypond-bin foo.ly
1898 @end example
1899
1900 The call to @code{\lineskip} assures that there is enough vertical space
1901 between the LilyPond box and the surrounding text lines.
1902