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