]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/changing-defaults.itely
(Vertical spacing):
[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 this 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 explains how to lookup which knob to use for a
12 certain effect.
13
14
15 @cindex Program reference
16
17 The controls available for tuning are described in a separate
18 document, the @internalsref{Program reference} manual. That manual
19 lists all different variables, functions and options available in
20 LilyPond. It is written as a HTML document, which is available
21 @uref{http://lilypond.org/doc/Documentation/user/out-www/lilypond-internals/,on-line},
22 but is also included with the LilyPond documentation package.
23
24 There are three areas where the default settings may be changed:
25
26 @itemize @bullet
27 @item Output: changing the appearance of individual
28   objects. For example, changing stem directions, or the location of
29   subscripts.
30   
31 @item Context: changing aspects of the translation from music events to
32   notation. For example, giving each staff a separate time signature. 
33   
34 @item Global layout: changing the appearance of the spacing, line
35   breaks and page dimensions.
36 @end itemize
37
38 Then, there are separate systems for typesetting text (like
39 @emph{ritardando}) and selecting different fonts. This chapter also
40 discusses these.
41
42 Internally, LilyPond uses Scheme (a LISP dialect) to provide
43 infrastructure.  Overriding layout decisions in effect accesses the
44 program internals, which requires Scheme input.  Scheme elements are
45 introduced in a @code{.ly} file with the hash mark
46 @code{#}.@footnote{@ref{Scheme tutorial} contains a a short tutorial
47 on entering numbers, lists, strings and symbols in Scheme.}
48
49
50 @menu
51 * Interpretation contexts::     
52 * The \override command::       
53 * Fonts::                       
54 * Text markup::                 
55 * Global layout::               
56 * File structure::              
57 @end menu
58
59  
60 @node Interpretation contexts
61 @section Interpretation contexts
62
63 When music is printed, a lot of notation elements must be added to the
64 input, which is often bare bones.  For example, compare the input and
65 output of the following example:
66
67 @lilypond[verbatim,relative=2,fragment]
68   cis4 cis2. g4
69 @end lilypond
70
71 The input is rather sparse, but in the output, bar lines, accidentals,
72 clef, and time signature are added. LilyPond @emph{interprets} the
73 input. During this step, the musical information is inspected in time
74 order, similar to reading a score from left to right. While reading,
75 the program remembers where measure boundaries are, and what pitches
76 need explicit accidentals.  This information can be presented on
77 several levels.  For example, the effect of an accidental is limited
78 to a single stave, while a bar line must be synchronized across the
79 entire score.
80
81 Within LilyPond, these rules and bits of information are grouped in
82 so-called Contexts. Examples of context are @context{Voice},
83 @context{Staff}, and @context{Score}.  They are hierarchical, for
84 example, a @context{Staff} can contain many @context{Voice}s, and a
85 @context{Score} can contain many @context{Staff} contexts.
86
87 Each context has the responsibility for enforcing some notation rules,
88 creating some notation objects and maintaining the associated
89 properties.  So, the synchronization of bar lines is handled at
90 @context{Score} context.  The @context{Voice} may introduce an
91 accidentals and then the @context{Staff} context maintains the rule to
92 show or suppress the accidental for the remainder of the measure.
93
94 For simple scores, contexts are created implicitly, and you need not
95 be aware of them. For larger pieces, such as piano music, they must be
96 created explicitly to make sure that you get as many staves as you
97 need, and that they are in the correct order.  For typesetting pieces
98 with specialized notation, it can be useful to modify existing or
99 define new contexts.
100
101
102 Full description of all available contexts is in the program
103 reference, see
104 @ifhtml
105 @internalsref{Contexts}.
106 @end ifhtml
107 @ifnothtml 
108 Translation @arrow{} Context.
109 @end ifnothtml
110
111 @c [TODO: describe propagation]
112
113
114 @menu
115 * Creating contexts::           
116 * Changing context properties on the fly::  
117 * Modifying context plug-ins::  
118 * Layout tunings within contexts::  
119 * Changing context default settings::  
120 * Defining new  contexts::      
121 @end menu
122
123 @node Creating contexts
124 @subsection Creating contexts
125
126 For scores with only one voice and one staff, correct contexts are
127 created automatically. For more complex scores, it is necessary to
128 create them by hand.  There are three commands which do this.
129
130 The easiest command is @code{\new}, and it also the quickest to type.
131 It is prepended to a music expression, for example
132
133 @cindex @code{\new}
134 @cindex new contexts
135 @cindex Context, creating
136
137 @example
138   \new @var{type} @var{music expression}
139 @end example
140
141 @noindent
142 where @var{type} is a context name (like @code{Staff} or
143 @code{Voice}).  This command creates a new context, and starts
144 interpreting @var{music expression} with that.
145
146 A practical application of @code{\new} is a score with many
147 staves. Each part that should be on its own staff, is preceded with 
148 @code{\new Staff}.
149
150 @lilypond[verbatim,relative=2,raggedright,fragment]
151   << \new Staff { c4 c }
152      \new Staff { d4 d }
153   >>
154 @end lilypond
155
156 @cindex @code{\context}
157
158 Like @code{\new}, the @code{\context} command also directs a music
159 expression to a context object, but gives the context an extra name. The
160 syntax is
161
162 @example
163   \context @var{type} = @var{id} @var{music}
164 @end example
165
166 This form will search for an existing context of type @var{type}
167 called @var{id}. If that context does not exist yet, it is created.
168 This is useful if the context is referred to later on. For example, when
169 setting lyrics the melody is in a named context
170
171 @example
172  \context Voice = "@b{tenor}" @var{music}
173 @end example
174
175 @noindent
176 so the texts can be properly aligned to its notes,
177
178 @example
179 \new Lyrics \lyricsto "@b{tenor}" @var{lyrics} 
180 @end example
181
182 @noindent
183
184 Another possibility is funneling two different music expressions into
185 one context. In the following example, articulations and notes are
186 entered separately,
187
188 @verbatim
189 music =  { c4 c4 }
190 arts =  { s4-. s4-> }
191 @end verbatim
192
193 They are combined by sending both to the same @context{Voice} context,
194
195 @verbatim
196   << \new Staff \context Voice = "A" \music
197      \context Voice = "A" \arts
198   >>
199 @end verbatim
200 @lilypond[raggedright]
201 music =  { c4   c4 }
202 arts =   { s4-. s4-> }
203    \relative c''  << \new Staff \context Voice = "A" \music
204      \context Voice = "A" \arts
205   >>
206 @end lilypond
207
208 With this mechanism, it is possible to define an Urtext (original
209 edition), with the option put several distinct articulations on the
210 same notes.
211
212 @cindex @code{\context}
213 @cindex creating contexts
214
215 The third command for creating contexts is
216 @example
217   \context @var{type} @var{music}
218 @end example
219
220
221 @noindent
222 This is similar to @code{\context} with @code{= @var{id}}, but matches
223 any context of type @var{type}, regardless of its given name.
224
225 This variant is used with music expressions that can be interpreted at
226 several levels. For example, the @code{\applyoutput} command (see
227 @ref{Running a function on all layout objects}). Without an explicit
228 @code{\context}, it is usually is applied to @context{Voice}
229
230 @example
231   \applyoutput #@var{function}   % apply to Voice
232 @end example
233
234 To have it interpreted at the @context{Score} or @context{Staff} level use
235 these forms
236
237 @example
238   \context Score \applyoutput #@var{function}
239   \context Staff \applyoutput #@var{function}
240 @end example
241
242
243 @node Changing context properties on the fly
244 @subsection Changing context properties on the fly
245
246 @cindex properties
247 @cindex @code{\set}
248 @cindex changing properties
249
250 Each context can have different @emph{properties}, variables contained
251 in that context. They can be changed during the interpretation step.
252 This is achieved by inserting the @code{\set} command in the music,
253
254 @quotation
255   @code{\set } @var{context}@code{.}@var{prop}@code{ = #}@var{value} 
256 @end quotation
257
258 For example,
259 @lilypond[verbatim,relative=2,fragment]
260   R1*2 
261   \set Score.skipBars = ##t
262   R1*2
263 @end lilypond
264
265 This command skips measures that have no notes. The result is that
266 multi rests are condensed.  The value assigned is a Scheme object. In
267 this case, it is @code{#t}, the boolean True value.
268
269 If the @var{context} argument is left out, then the current bottom-most
270 context (typically @context{ChordNames}, @context{Voice}, or
271 @context{Lyrics}) is used.  In this example,
272
273 @lilypond[verbatim,relative=2,fragment]
274   c8 c c c
275   \set autoBeaming = ##f
276   c8 c c c
277 @end lilypond
278
279 @noindent
280 the @var{context} argument to @code{\set} is left out, so automatic
281 beaming is switched off in the current @internalsref{Voice}.
282
283 Contexts are hierarchical, so if a bigger context was specified, for
284 example @context{Staff}, then the change would also apply to all
285 @context{Voice}s in the current stave. The change is applied
286 `on-the-fly', during the music, so that the setting only affects the
287 second group of eighth notes.
288
289 @cindex @code{\unset} 
290
291 There is also an @code{\unset} command,
292 @quotation
293   @code{\unset }@var{context}@code{.}@var{prop}
294 @end quotation
295
296 @noindent
297 which removes the definition of @var{prop}. This command removes
298 the definition only if it is set in @var{context}, so
299
300 @example
301  \set Staff.autoBeaming = ##f
302 @end example
303
304 @noindent
305 introduces a property setting at @code{Staff} level. The setting also
306 applies to the current @code{Voice}. However,
307
308 @example
309  \unset Voice.autoBeaming
310 @end example
311
312 @noindent
313 does not have any effect. To cancel this setting, the @code{\unset}
314 must be specified on the same level as the original @code{\set}. In
315 other words, undoing the effect of @code{Staff.autoBeaming = ##f}
316 requires
317 @example
318  \unset Staff.autoBeaming
319 @end example
320
321 Like @code{\set}, the @var{context} argument does not have to be
322 specified for a bottom context, so the two statements
323
324 @example
325   \set Voice.autoBeaming = ##t 
326   \set autoBeaming = ##t 
327 @end example 
328
329 @noindent
330 are equivalent.
331
332
333 Settings that should only apply to a single time-step can be entered
334 with @code{\once}, for example in
335
336 @lilypond[verbatim,relative=2,fragment]
337   c4
338   \once \set fontSize = #4.7
339   c4
340   c4
341 @end lilypond
342
343 the property @code{fontSize} is unset automatically after the second
344 note.
345
346 A full description of all available context properties is in the
347 program reference, see
348 @ifhtml
349 @internalsref{Tunable-context-properties}.
350 @end ifhtml
351 @ifnothtml
352 Translation @arrow{} Tunable context properties.
353 @end ifnothtml
354
355
356 @node Modifying context plug-ins
357 @subsection Modifying context plug-ins
358
359 Notation contexts (like Score and Staff) not only store properties,
360 they also contain plug-ins, called ``engravers'' that create notation
361 elements. For example, the Voice context contains a
362 @code{Note_head_engraver} and the Staff context contains a
363 @code{Key_signature_engraver}.
364
365 For a full a description of each plug-in, see 
366 @ifhtml
367 @internalsref{Engravers}.
368 @end ifhtml
369 @ifnothtml
370 Program reference @arrow Translation @arrow{} Engravers.
371 @end ifnothtml
372 Every context described in
373 @ifhtml
374 @internalsref{Contexts}
375 @end ifhtml
376 @ifnothtml 
377 Program reference @arrow Translation @arrow{} Context.
378 @end ifnothtml
379 lists the engravers used for that context.
380
381
382 It can be useful to shuffle around these plug-ins. This is done by
383 starting a new context, with @code{\new} or @code{\context}, and
384 modifying it like this, 
385
386 @example
387  \new @var{context} \with @{
388    \consists @dots{}
389    \consists @dots{}
390    \remove  @dots{}
391    \remove @dots{}
392    @emph{etc.}
393  @}
394  @var{..music..}
395 @end example
396
397 where the @dots{} should be the name of an engraver. Here is a simple
398 example which removes @code{Time_signature_engraver} and
399 @code{Clef_engraver} from a @code{Staff} context,
400
401 @lilypond[relative=1, verbatim,fragment]
402 << \new Staff {
403     f2 g
404   }
405   \new Staff \with {
406      \remove "Time_signature_engraver"
407      \remove "Clef_engraver"
408   } {
409     f2 g2
410   }
411 >>
412 @end lilypond
413
414 In the second stave there are no time signature or clef symbols.  This
415 is a rather crude method of making objects disappear since it will affect
416 the entire staff. The spacing is adversely influenced too. A more
417 sophisticated methods of blanking objects is shown in @ref{Common
418 tweaks}.
419
420 The next example shows a practical application.  Bar lines and time
421 signatures are normally synchronized across the score.  This is done
422 by the @code{Timing_engraver}. This plug-in keeps an administration of
423 time signature, location within the measure, etc. By moving the
424 @code{Timing_engraver} engraver from @code{Score} to @code{Staff}
425 context, we can have a score where each staff has its own time
426 signature.
427
428 @cindex polymetric scores
429
430
431 @lilypond[relative=1,raggedright,verbatim,fragment]
432 \new Score \with {
433   \remove "Timing_engraver"
434 } <<
435   \new Staff \with {
436     \consists "Timing_engraver"
437   } {
438       \time 3/4
439       c4 c c c c c
440   }
441   \new Staff \with {
442     \consists "Timing_engraver"
443   } {
444        \time 2/4
445        c4 c c c c c
446   }
447 >>
448 @end lilypond
449
450
451 @node Layout tunings within contexts
452 @subsection Layout tunings within contexts
453
454 Each context is responsible for creating certain types of graphical
455 objects. The settings used for printing these objects are also stored by
456 context. By changing these settings, the appearance of objects can be
457 altered.
458  
459 The syntax for this is
460
461 @example
462   \override @var{context}.@var{name}@code{ #'}@var{property} = #@var{value}
463 @end example
464
465 Here @var{name} is the name of a graphical object, like @code{Stem} or
466 @code{NoteHead}, and @var{property} is an internal variable of the
467 formatting system (`grob property' or `layout property'). The latter is a
468 symbol, so it must be quoted. The subsection @ref{Constructing a
469 tweak} explains what to fill in for @var{name}, @var{property}, and
470 @var{value}. Here we only discuss functionality of this command.
471
472 The command
473
474 @verbatim
475   \override Staff.Stem #'thickness = #4.0 
476 @end verbatim
477
478 @noindent
479 makes stems thicker (the default is 1.3, with staff line thickness as a
480 unit). Since the command specifies @context{Staff} as context, it only
481 applies to the current staff. Other staves will keep their normal
482 appearance.  Here we see the command in action:
483
484 @lilypond[verbatim,relative=2,fragment]
485   c4
486   \override Staff.Stem #'thickness = #4.0 
487   c4
488   c4
489   c4
490 @end lilypond
491
492 The @code{\override} command changes the definition of the @code{Stem}
493 within the current @context{Staff}. After the command is interpreted
494 all stems are thickened.
495
496 Analogous to @code{\set}, the @var{context} argument may be left out,
497 causing it to default to @context{Voice}, and adding @code{\once} applies
498 the change during one timestep only 
499
500 @lilypond[fragment,verbatim,relative=2]
501   c4
502   \once \override Stem #'thickness = #4.0 
503   c4
504   c4 
505 @end lilypond
506
507 The @code{\override} must be done before the object is
508 started. Therefore, when altering @emph{Spanner} objects, like slurs or
509 beams, the @code{\override} command must be executed at the moment when
510 the object is created. In this example,
511
512
513 @lilypond[fragment,verbatim,relative=2]
514   \override Slur #'thickness = #3.0
515   c8[( c
516   \override Beam #'thickness = #0.6
517   c8 c]) 
518 @end lilypond
519
520 @noindent
521 the slur is fatter but the beam is not. This is because the command for
522 @code{Beam} comes after the Beam is started. Therefore it has no effect.
523
524 Analogous to @code{\unset}, the @code{\revert} command for a context
525 undoes a @code{\override} command; like with @code{\unset}, it only
526 affects settings that were made in the same context. In other words, the
527 @code{\revert} in the next example does not do anything.
528
529 @verbatim
530   \override Voice.Stem #'thickness = #4.0
531   \revert Staff.Stem #'thickness
532 @end verbatim
533
534
535
536
537 @seealso
538
539 Internals: @internalsref{OverrideProperty}, @internalsref{RevertProperty},
540 @internalsref{PropertySet}, @internalsref{All-backend-properties}, and
541 @internalsref{All-layout-objects}.
542
543
544 @refbugs
545
546 The back-end is not very strict in type-checking object properties.
547 Cyclic references in Scheme values for properties can cause hangs
548 or crashes, or both.
549
550
551 @node Changing context default settings
552 @subsection Changing context default settings
553
554 The adjustments of the previous subsections (@ref{Changing context
555 properties on the fly}, @ref{Modifying context plug-ins} and
556 @ref{Layout tunings within contexts}) can also be entered separate
557 from the music, in the @code{\paper} block,
558
559 @example
560 \paper @{
561   @dots{}
562   \context @{
563     \Staff
564
565     \set fontSize = #-2
566     \override Stem #'thickness
567     \remove "Time_signature_engraver"
568   @}
569 @}
570 @end example
571
572 Here
573 @example
574   \Staff
575 @end example
576
577 @noindent
578 takes the existing definition for context @context{Staff} from the
579 identifier @code{\Staff}. 
580
581 The statements
582 @example
583     \set fontSize = #-2
584     \override Stem #'thickness
585     \remove "Time_signature_engraver"
586 @end example
587
588 @noindent
589 affect all staves in the score.
590
591 Other contexts can be modified analogously.
592
593 The @code{\set} keyword is optional within the @code{\paper} block, so
594
595 @example
596 \context @{
597   @dots{}
598   fontSize = #-2
599 @}
600 @end example
601
602 @noindent
603 will also work.
604
605
606
607 @refbugs
608
609 It is not possible to collect context changes in a variable, and apply
610 them to one @code{\context} definition by referring to that variable.
611
612
613 @node Defining new  contexts
614 @subsection Defining new  contexts
615
616 Specific contexts, like @context{Staff} and @code{Voice}, are made of
617 simple building blocks, and it is possible to compose engraver
618 plug-ins in different combinations, thereby creating new types of
619 contexts.
620
621 The next example shows how to build a different type of
622 @context{Voice} context from scratch.  It will be similar to
623 @code{Voice}, but print centered slash noteheads only. It can be used
624 to indicate improvisation in Jazz pieces,
625
626 @lilypond[raggedright]
627   \paper { \context {
628     \name ImproVoice
629     \type "Engraver_group_engraver"
630     \consists "Note_heads_engraver"
631     \consists "Text_engraver"
632     \consists Pitch_squash_engraver
633     squashedPosition = #0
634     \override NoteHead #'style = #'slash
635     \override Stem #'transparent = ##t
636     \alias Voice
637   }
638   \context { \Staff
639     \accepts "ImproVoice"
640   }}
641
642
643 \relative c'' {
644     a4 d8 bes8 \new ImproVoice { c4^"ad lib" c 
645      c4 c^"undress" c_"while playing :)" c } 
646     a1 
647 }
648 @end lilypond
649
650
651 These settings are again done within a @code{\context} block inside a
652 @code{\paper} block,
653
654 @example
655   \paper @{
656     \context @{
657       @dots{}
658     @}
659   @}
660 @end example
661
662 In the following discussion, the example input shown should go on the
663 @dots{} in the previous fragment.
664
665 First, name the context gets a name. Instead of @context{Voice} it
666 will be called @context{ImproVoice},
667
668 @verbatim
669   \name ImproVoice
670 @end verbatim
671
672 Since it is similar to the @context{Voice}, we want commands that work
673 on (existing) @context{Voice}s to remain working. This is achieved by
674 giving the new context an alias @context{Voice},
675
676 @verbatim
677   \alias Voice
678 @end verbatim
679
680 The context will print notes, and instructive texts
681
682 @verbatim
683   \consists Note_heads_engraver
684   \consists Text_engraver
685 @end verbatim
686
687 but only on the center line,
688
689 @verbatim
690   \consists Pitch_squash_engraver
691   squashedPosition = #0
692 @end verbatim
693
694 The @internalsref{Pitch_squash_engraver} modifies note heads (created
695 by @internalsref{Note_heads_engraver}) and sets their vertical
696 position to the value of @code{squashedPosition}, in this case
697 @code{0}, the center line.
698
699 The notes look like a  slash, without a stem,
700
701 @verbatim
702     \override NoteHead #'style = #'slash
703     \override Stem #'transparent = ##t
704 @end verbatim
705
706
707 All these plug-ins have to cooperate, and this is achieved with a
708 special plug-in, which must be marked with the keyword @code{\type}.
709 This should always be @internalsref{Engraver_group_engraver},
710
711 @example
712  \type "Engraver_group_engraver"
713 @end example
714
715 Putting together, we get
716
717 @verbatim
718   \context {
719     \name ImproVoice
720     \type "Engraver_group_engraver"
721     \consists "Note_heads_engraver"
722     \consists "Text_script_engraver"
723     \consists Pitch_squash_engraver
724     squashedPosition = #0
725     \override NoteHead #'style = #'slash
726     \override Stem #'transparent = ##t
727     \alias Voice
728   }
729 @end verbatim
730
731 Contexts form hierarchies. We want to hang the @context{ImproVoice}
732 under @context{Staff}, just like normal @code{Voice}s. Therefore, we
733 modify the @code{Staff} definition with the @code{\accepts}
734 command,@footnote{The opposite of @code{\accepts} is @code{\denies},
735 which is sometimes when reusing existing context definitions. }
736
737
738
739 @verbatim
740   \context {
741     \Staff
742     \accepts ImproVoice    
743   }
744 @end verbatim 
745
746 Putting both into a @code{\paper} block, like
747
748 @example
749   \paper @{
750     \context @{
751       \name ImproVoice
752       @dots{}
753     @}
754   \context @{
755     \Staff
756     \accepts "ImproVoice"
757   @}
758 @}
759 @end example
760
761 Then the output at the start of this subsection can be entered as
762
763 @verbatim
764 \relative c'' {
765      a4 d8 bes8
766      \new ImproVoice {
767        c4^"ad lib" c 
768        c4 c^"undress"
769        c c_"while playing :)"
770      }
771      a1
772 }
773 @end verbatim
774   
775
776     
777
778 @node The \override command
779 @section The \override command
780
781 In the previous section, we have already touched on a command that
782 changes layout details, the @code{\override} command. In this section,
783 we will look at in more detail how to use the command in practice.
784 First, we will give a a few versatile commands, which are sufficient
785 for many situations. The next section will discuss general use of
786 @code{\override}.
787
788
789 @menu
790 * Common tweaks::               
791 * Constructing a tweak::        
792 * Navigating the program reference::  
793 * Layout interfaces::           
794 * Determining the grob property::  
795 * Difficult tweaks::            
796 @end menu
797
798
799
800 @node Common tweaks
801 @subsection Common tweaks
802
803 Some overrides are so common that predefined commands are provided as
804 a short-cut, for example, @code{\slurUp} and @code{\stemDown}. These
805 commands are described in
806 @ifhtml
807 the
808 @end ifhtml
809 @ref{Notation manual}, under the sections for slurs and stems
810 respectively.
811
812 The exact tuning possibilities for each type of layout object are
813 documented in the program reference of the respective
814 object. However, many layout objects share properties, which can be
815 used to apply generic tweaks.  We mention a few of these:
816
817 @itemize @bullet
818 @item The @code{extra-offset} property, which
819 @cindex @code{extra-offset}
820 has a pair of numbers as value, moves around objects in the printout.
821 The first number controls left-right movement; a positive number will
822 move the object to the right.  The second number controls up-down
823 movement; a positive number will move it higher.  The units of these
824 offsets are staff-spaces.  The @code{extra-offset} property is a
825 low-level feature: the formatting engine is completely oblivious to
826 these offsets.
827
828 In the following example, the second fingering is moved a little to
829 the left, and 1.8 staff space downwards:
830
831 @cindex setting object properties
832
833 @lilypond[fragment,relative=1,verbatim]
834 \stemUp
835 f-5
836 \once \override Fingering
837     #'extra-offset = #'(-0.3 . -1.8) 
838 f-5
839 @end lilypond
840
841 @item
842 Setting the @code{transparent} property will cause an object to be printed
843 in `invisible ink': the object is not printed, but all its other
844 behavior is retained. The object still takes up space, it takes part in
845 collisions, and slurs, and ties and beams can be attached to it.
846
847 @cindex transparent objects
848 @cindex removing objects
849 @cindex hiding objects
850 @cindex invisible objects
851 The following example demonstrates how to connect different voices
852 using ties. Normally, ties only connect two notes in the same
853 voice. By introducing a tie in a different voice,
854
855 @lilypond[fragment,relative=2]
856   << {
857       b8~ b8\noBeam
858   } \\ {
859        b[ g8]
860   } >>
861 @end lilypond
862
863 @noindent
864 and blanking the first up-stem in that voice, the tie appears to cross
865 voices:
866
867 @lilypond[fragment,relative=2,verbatim]
868   << {
869       \once \override Stem #'transparent = ##t
870       b8~ b8\noBeam
871   } \\ {
872        b[ g8]
873   } >>
874 @end lilypond
875
876 @item
877 The @code{padding} property for objects with
878 @cindex @code{padding}
879 @code{side-position-interface} can be set to increase distance between
880 symbols that are printed above or below notes. We only give an
881 example; a more elaborate explanation is in @ref{Constructing a
882 tweak}:
883
884 @lilypond[fragment,relative=1,verbatim]
885   c2\fermata
886   \override Script #'padding = #3
887   b2\fermata
888 @end lilypond
889
890 @end itemize
891
892 More specific overrides are also possible.  The next section
893 discusses in depth how to figure out these statements for yourself.
894
895
896 @node Constructing a tweak
897 @subsection Constructing a tweak
898
899 The general procedure of changing output, that is, entering
900 a command like
901
902 @example
903         \override Voice.Stem #'thickness = #3.0
904 @end example
905
906 @noindent
907 means that we have to determine these bits of information:
908
909 @itemize
910 @item the context: here @context{Voice}.
911 @item the layout object: here @code{Stem}.
912 @item the layout property: here @code{thickness}
913 @item a sensible value: here @code{3.0}
914 @end itemize  
915
916
917 @cindex internal documentation
918 @cindex finding graphical objects
919 @cindex graphical object descriptions 
920 @cindex tweaking
921 @cindex @code{\override}
922 @cindex @code{\set}
923 @cindex internal documentation
924
925 We demonstrate how to glean this information from the notation manual
926 and the program reference.
927
928 @node Navigating the program reference
929 @subsection Navigating the program reference
930
931 Suppose we want to move the fingering indication in the fragment
932 below:
933
934 @lilypond[fragment,relative=2,verbatim]
935 c-2
936 \stemUp
937 f
938 @end lilypond
939
940 If you visit the documentation on fingering instructions (in
941 @ref{Fingering instructions}), you will notice that there is written:
942
943 @quotation
944 @seealso
945
946 Program reference: @internalsref{FingerEvent} and @internalsref{Fingering}.
947
948 @end quotation
949
950
951
952 This fragment points to two parts of the program reference: a page
953 on @code{FingerEvent} and on @code{Fingering}.
954
955 The page on  @code{FingerEvent} describes the properties of the  music
956 expression for the input @code{-2}. The page contains many links
957 forward.  For example, it says
958
959 @quotation
960   Accepted by: @internalsref{Fingering_engraver},
961 @end quotation 
962
963 @noindent
964 That link brings us to the documentation for the Engraver, the
965 plug-in, which says
966
967 @quotation
968   This engraver creates the following layout objects: @internalsref{Fingering}.
969 @end quotation
970
971 In other words, once the @code{FingerEvent}s are interpreted, the
972 @code{Fingering_engraver} plug-in will process them.
973 The @code{Fingering_engraver} is also listed to create
974 @internalsref{Fingering} objects,
975
976
977   Lo and behold, that is also the
978 second bit of information listed under @b{See also} in the Notation
979 manual. By clicking around in the program reference, we can follow the
980 flow of information within the program, either forward (like we did
981 here), or backwards, following links like this:
982
983 @itemize @bullet
984
985 @item @internalsref{Fingering}:
986   @internalsref{Fingering} objects are created by:
987   @b{@internalsref{Fingering_engraver}}
988
989 @item @internalsref{Fingering_engraver}:
990 Music types accepted: @b{@internalsref{fingering-event}}
991 @item @internalsref{fingering-event}:
992 Music event type @code{fingering-event} is in Music expressions named
993 @b{@internalsref{FingerEvent}}
994 @end itemize
995
996 This path goes against the flow of information in the program: it
997 starts from the output, and ends at the input event.
998
999 The program reference can also be browsed like a normal document.  It
1000 contains a chapter on
1001 @ifhtml
1002 @internalsref{Music-definitions},
1003 @end ifhtml
1004 @ifnothtml
1005 @code{Music definitions}
1006 @end ifnothtml
1007 on @internalsref{Translation}, and the @internalsref{Backend}. Every
1008 chapter lists all the definitions used, and all properties that may be
1009 tuned.
1010
1011  
1012 @node Layout interfaces
1013 @subsection Layout interfaces
1014
1015 @cindex interface, layout
1016 @cindex layout interface
1017
1018 The HTML page which we found in the previous section, describes the
1019 layout object called @internalsref{Fingering}. Such an object is a
1020 symbol within the score. It has properties, which store numbers (like
1021 thicknesses and directions), but also pointers to related objects.  A
1022 layout object is also called @emph{grob},
1023 @cindex grob
1024 which is short for Graphical Object.
1025
1026
1027 The page for @code{Fingering} lists the definitions for the
1028 @code{Fingering} object. For example, the page says
1029
1030 @quotation
1031   @code{padding} (dimension, in staff space):
1032   
1033   @code{0.6}
1034 @end quotation
1035
1036 which means that the number will be kept at a distance of at least 0.6
1037 of the note head.
1038
1039
1040 Each layout object may have several functions as a notational or
1041 typographical element. For example, the Fingering object
1042 has the following aspects
1043
1044 @itemize @bullet
1045 @item Its size is independent of the horizontal spacing, unlike slurs or beams.
1046
1047 @item It is a piece of text. Granted, it's usually  a very short text.
1048
1049 @item That piece of text is typeset with a font, unlike slurs or beams.
1050 @item Horizontally, the center of the symbol should be aligned to the
1051 center of the notehead
1052 @item Vertically, the symbol is placed next to the note and the staff.
1053
1054 @item The
1055  vertical position is also coordinated with other super and subscript
1056 symbols.
1057 @end itemize
1058
1059 Each of these aspects is captured in a so-called @emph{interface},
1060 which are listed on the @internalsref{Fingering} page at the bottom
1061
1062 @quotation
1063 This object supports the following interfaces:
1064 @internalsref{item-interface},
1065 @internalsref{self-alignment-interface},
1066 @internalsref{side-position-interface}, @internalsref{text-interface},
1067 @internalsref{text-script-interface}, @internalsref{font-interface},
1068 @internalsref{finger-interface}, and @internalsref{grob-interface}.
1069 @end quotation
1070
1071 Clicking any of the links will take you to the page of the respective
1072 object interface.  Each interface has a number of properties.  Some of
1073 them are not user-serviceable (``Internal properties''), but others
1074 are.
1075
1076 We have been talking of `the' @code{Fingering} object, but actually it
1077 does not amount to much. The initialization file
1078 @file{scm/define-grobs.scm} shows the soul of the `object',
1079
1080 @verbatim
1081    (Fingering
1082      . (
1083         (print-function . ,Text_item::print)
1084         (padding . 0.6)
1085         (staff-padding . 0.6)
1086         (self-alignment-X . 0)
1087         (self-alignment-Y . 0)
1088         (script-priority . 100)
1089         (font-encoding . number)
1090         (font-size . -5)
1091         (meta . ((interfaces . (finger-interface font-interface
1092                text-script-interface text-interface
1093                side-position-interface self-alignment-interface
1094                item-interface))))
1095   ))
1096 @end verbatim
1097
1098 @noindent
1099 As you can see, the @code{Fingering} object is nothing more than a
1100 bunch of variable settings, and the webpage in the Program Reference
1101 is directly generated from this definition.
1102
1103 @node Determining the grob property
1104 @subsection Determining the grob property
1105
1106
1107 Recall that we wanted to change the position of the @b{2} in 
1108
1109 @lilypond[fragment,relative=2,verbatim]
1110 c-2
1111 \stemUp
1112 f
1113 @end lilypond
1114
1115 Since the @b{2} is vertically positioned next to its note, we have to
1116 meddle with the interface associated with this positioning. This is
1117 done using @code{side-position-interface}. The page for this interface 
1118 says
1119
1120 @quotation
1121 @code{side-position-interface}
1122
1123   Position a victim object (this one) next to other objects (the
1124   support).  The property @code{direction} signifies where to put the
1125   victim object relative to the support (left or right, up or down?)
1126 @end quotation
1127
1128 @cindex padding
1129 @noindent
1130 below this description, the variable @code{padding} is described as
1131 @quotation
1132 @table @code
1133 @item padding
1134  (dimension, in staff space)
1135
1136  Add this much extra space between objects that are next to each
1137   other. 
1138 @end table
1139 @end quotation
1140
1141 By increasing the value of @code{padding}, we can move away the
1142 fingering.  The following command inserts 3 staff spaces of white
1143 between the note and the fingering:
1144 @example
1145 \once \override Voice.Fingering #'padding = #3
1146 @end example
1147
1148 Inserting this command before the Fingering object is created,
1149 i.e. before @code{c2}, yields the following result:
1150
1151 @lilypond[relative=2,fragment,verbatim]
1152 \once \override Voice.Fingering #'padding = #3
1153 c-2
1154 \stemUp
1155 f
1156 @end lilypond
1157
1158
1159 In this case, the context for this tweak is @context{Voice}.  This
1160 fact can also be deduced from the program reference, for the page for
1161 the @internalsref{Fingering_engraver} plug-in says
1162
1163 @quotation
1164   Fingering_engraver is part of contexts: @dots{} @b{@internalsref{Voice}}
1165 @end quotation
1166
1167 @node Difficult tweaks
1168 @subsection Difficult tweaks
1169
1170 There are two classes of difficult adjustments. First, when there are
1171 several of the same objects at one point, and you want to adjust only
1172 one. For example, if you want to change only one note head in a chord.
1173
1174 In this case, the @code{\applyoutput} function must be used.  The
1175 next example defines a Scheme function @code{set-position-font-size}
1176 that sets the @code{font-size} property, but only  
1177 on objects that have @internalsref{note-head-interface} and are at the
1178 right Y-position.
1179
1180 @lilypond[verbatim]
1181 #(define ((set-position-font-size pos size) grob origin current)
1182   (let*
1183       ((interfaces (ly:grob-property grob 'interfaces))
1184        (position (ly:grob-property grob 'staff-position)))
1185   (if (and
1186   
1187         ; is this a note head?
1188         (memq 'note-head-interface interfaces)
1189
1190         ; is the Y coordinate right?
1191         (= pos position))
1192
1193       ; then do it.
1194       (set! (ly:grob-property grob 'font-size) size))))
1195
1196 \relative {
1197     c
1198     \applyoutput #(set-position-font-size -2 4)
1199     <c e g>
1200 }
1201 @end lilypond
1202
1203 @noindent
1204 A similar technique can be used for accidentals. In that case, the
1205 function should check for @code{accidental-interface}.
1206
1207 Another difficult adjustment is the appearance of spanner objects,
1208 such as slur and tie. Initially, only one of these objects is created,
1209 and they can be adjust with the normal mechanism. However, in some
1210 cases the spanners cross line breaks. If this happens, these objects
1211 are cloned.  A separate object is created for every system that it is
1212 in. These are clones of the original object and inherit all
1213 properties, including @code{\override}s.
1214
1215 In other words, an @code{\override} always affects all pieces of a
1216 broken spanner. To change only one part of a spanner at a line break,
1217 it is necessary to hook into the formatting process. The
1218 @code{after-line-breaking-callback} property contains the Scheme procedure
1219 that is called after line breaks have been determined, and layout
1220 objects have been split over different systems.
1221
1222 In the following example, we define a procedure
1223 @code{my-callback}. This procedure
1224  
1225 @itemize @bullet
1226 @item
1227 determines if we have been split across line breaks
1228 @item
1229 if yes, retrieves all the split objects
1230 @item
1231 checks if we are the last of the split objects
1232 @item
1233 if yes, it sets @code{extra-offset}.
1234 @end itemize
1235
1236 This procedure is installed into @internalsref{Tie}, so the last part
1237 of broken tie is translated up.
1238
1239
1240 @lilypond[verbatim,raggedright]
1241 #(define (my-callback grob)
1242   (let* (
1243
1244       ; have we been split? 
1245       (orig (ly:grob-original grob))
1246
1247       ; if yes, get the split pieces (our siblings)
1248       (siblings (if (ly:grob? orig) (ly:spanner-broken-into orig) '() )))
1249
1250       
1251     (if (and (>= (length siblings) 2)
1252              (eq? (car (last-pair siblings)) grob))
1253         (ly:grob-set-property! grob 'extra-offset '(-2 . 5))
1254         )))
1255
1256 \relative c'' { 
1257     \override Tie  #'after-line-breaking-callback =
1258     #my-callback
1259     c1 ~ \break c2 ~ c
1260 }
1261 @end lilypond
1262
1263
1264 When applying this trick, the new @code{after-line-breaking-callback}
1265 should also call the old @code{after-line-breaking-callback}, if there
1266 is one. For example, if using this with @code{Slur},
1267 @code{Slur::after_line_breaking} should also be called.
1268
1269 @node Fonts
1270 @section Fonts
1271
1272 @menu
1273 * Selecting font sizes::        
1274 * Font selection::              
1275 @end menu
1276
1277
1278
1279 @node Selecting font sizes
1280 @subsection Selecting font sizes
1281
1282
1283 The easiest method of setting the font size of any context, is by
1284 setting the @code{fontSize} property.
1285
1286 @lilypond[fragment,relative=1,verbatim]
1287   c8
1288   \set fontSize = #-4
1289   c f
1290   \set fontSize = #3
1291   g
1292 @end lilypond
1293
1294 It does not change the size of variable symbols, such as beams or
1295 slurs.
1296
1297 Internally, the @code{fontSize} context property will cause
1298 @code{font-size} property to be set in all layout objects.  The value
1299 of @code{font-size} is a number indicating the size relative to the
1300 standard size for the current staff height.  Each step up is an
1301 increase of approximately 12% of the font size. Six steps is exactly a
1302 factor two. The Scheme function @code{magstep} converts a
1303 @code{font-size} number to a scaling factor.
1304
1305 @lilypond[fragment,relative=1,verbatim]
1306   c8
1307   \override NoteHead #'font-size = #-4
1308   c f
1309   \override NoteHead #'font-size = #3
1310   g
1311 @end lilypond
1312
1313 LilyPond has fonts in different design sizes. The music fonts for
1314 smaller sizes are chubbier, while the text fonts are relatively wider.
1315 Font size changes are achieved by scaling the design size that is
1316 closest to the desired size. The standard font size (for
1317 @code{font-size} equals 0), depends on the standard staff height. For
1318 a 20 pt staff, a 10pt font is selected.
1319
1320 The @code{font-size} mechanism does not work for fonts selected
1321 through @code{font-name}. These may be scaled with
1322 @code{font-magnification}. The @code{font-size} property can only be
1323 set on layout objects that use fonts; these are the ones supporting
1324 @internalsref{font-interface} layout interface.
1325
1326 @refcommands
1327
1328 The following commands set @code{fontSize} for the current voice:
1329
1330 @cindex @code{\tiny}
1331 @code{\tiny}, 
1332 @cindex @code{\small}
1333 @code{\small}, 
1334 @cindex @code{\normalsize}
1335 @code{\normalsize}.
1336
1337
1338
1339 @cindex magnification
1340 @cindex cue notes
1341
1342
1343 @node Font selection
1344 @subsection Font selection
1345
1346
1347
1348 @cindex font selection
1349 @cindex font magnification
1350 @cindex @code{font-interface}
1351
1352 By setting the object properties described below, you can select a
1353 font from the preconfigured font families.  LilyPond has default
1354 support for the feta music fonts and @TeX{}'s Computer Modern text
1355 fonts.
1356
1357
1358 @itemize @bullet
1359 @item @code{font-encoding}
1360 is a symbol that sets layout of the glyphs. Choices include @code{ec}
1361 for @TeX{} EC font encoding, @code{fetaBraces} (for piano staff
1362 braces), @code{fetaMusic} (the standard music font, including ancient
1363 glyphs), @code{fetaDynamic} (for dynamic signs) and @code{fetaNumber}
1364 for the number font.
1365
1366
1367 @item @code{font-family}
1368  is a symbol indicating the general class of the typeface.  Supported are
1369 @code{roman} (Computer Modern), @code{sans}, and @code{typewriter}.
1370   
1371 @item @code{font-shape}
1372   is a symbol indicating the shape of the font, there are typically
1373 several font shapes available for each font family. Choices are
1374 @code{italic}, @code{caps}, and @code{upright}.
1375
1376 @item @code{font-series}
1377 is a  symbol indicating the series of the font. There are typically several
1378 font series for each font family and shape. Choices are @code{medium}
1379 and @code{bold}. 
1380
1381 @end itemize
1382
1383 Fonts selected in the way sketched above come from a predefined style
1384 sheet.
1385
1386  The font used for printing a object can be selected by setting
1387 @code{font-name}, e.g.
1388 @example
1389   \override Staff.TimeSignature
1390       #'font-name = #"cmr17"
1391 @end example
1392
1393 @noindent
1394 Any font can be used, as long as it is available to @TeX{}. Possible
1395 fonts include foreign fonts or fonts that do not belong to the
1396 Computer Modern font family.  The size of fonts selected in this way
1397 can be changed with the @code{font-magnification} property.  For
1398 example, @code{2.0} blows up all letters by a factor 2 in both
1399 directions.
1400
1401 @cindex font size
1402 @cindex font magnification
1403
1404
1405
1406 @seealso
1407
1408 Init files: @file{ly/declarations-init.ly} contains hints how new
1409 fonts may be added to LilyPond.
1410
1411
1412
1413 @node Text markup
1414 @section Text markup
1415 @cindex text markup
1416 @cindex markup text
1417
1418
1419 @cindex typeset text
1420
1421 The internal mechanism to typeset texts is accessed with the keyword
1422 @code{\markup}. Within markup mode, you can enter texts similar to
1423 lyrics. They are simply entered, while commands use the backslash @code{\}.
1424 @cindex markup
1425
1426 @lilypond[verbatim,fragment,relative=1]
1427  c1^\markup { hello }
1428  c1_\markup { hi there }
1429  c1^\markup { hi \bold there, is \italic anyone home? }
1430 @end lilypond
1431
1432 @cindex font switching
1433
1434 The markup in the example demonstrates font switching commands.  The
1435 command @code{\bold} and @code{\italic} apply to the first following 
1436 word only; enclose a set of texts with braces to apply a command
1437 to more words:
1438 @example
1439   \markup @{ \bold @{ hi there @} @}
1440 @end example
1441
1442 @noindent
1443 For clarity, you can also do this for single arguments, e.g.
1444
1445 @verbatim
1446   \markup { is \italic { anyone } home }
1447 @end verbatim
1448
1449 @cindex font size, texts
1450
1451
1452 In markup mode you can compose expressions, similar to mathematical
1453 expressions, XML documents, and music expressions.  The braces group
1454 notes into horizontal lines. Other types of lists also exist: you can
1455 stack expressions grouped with @code{<} and @code{>} vertically with
1456 the command @code{\column}. Similarly, @code{\center-align} aligns
1457 texts by their center lines:
1458
1459 @lilypond[verbatim,fragment,relative=1]
1460  c1^\markup { \column < a bbbb c > }
1461  c1^\markup { \center-align < a bbbb c > }
1462  c1^\markup { \line < a b c > }
1463 @end lilypond
1464
1465
1466 Markups can be stored in variables, and these variables
1467 may be attached to notes, like
1468 @verbatim
1469 allegro = \markup { \bold \large { Allegro } }
1470  { a^\allegro b c d }
1471 @end verbatim
1472
1473
1474 Some objects have alignment procedures of their own, which cancel out
1475 any effects of alignments applied to their markup arguments as a
1476 whole.  For example, the @internalsref{RehearsalMark} is horizontally
1477 centered, so using @code{\mark \markup @{ \left-align .. @}} has no
1478 effect.
1479
1480 Similarly, for moving whole texts over notes with
1481 @code{\raise}, use the following trick:
1482 @lilypond[verbatim]
1483 {
1484   c'^\markup { \raise #0.5 not-raised }
1485   c'^\markup {  "" \raise #0.5 raised }
1486 }
1487 @end lilypond
1488
1489 On the second note, the text @code{raised} is moved relative to the
1490 empty string @code{""} which is not visible.  Alternatively, complete
1491 objects can be moved with layout properties such as @code{padding} and
1492 @code{extra-offset}.
1493
1494
1495
1496
1497 @seealso
1498
1499 Init files:  @file{scm/new-markup.scm}.
1500
1501
1502 @refbugs
1503
1504 No kerning or generation of ligatures is only done when the by @TeX{}
1505 backend is used.  In this case, LilyPond does not account for them so
1506 texts will be spaced slightly too wide.
1507
1508 Syntax errors for markup mode are confusing.
1509
1510
1511 @menu
1512 * Text encoding::               
1513 * Nested scores::               
1514 * Overview of text markup commands::  
1515 @end menu
1516
1517 @node Text encoding
1518 @subsection Text encoding
1519
1520 Texts can be entered in different encodings.  The encoding of the
1521 file can be set with @code{\encoding}.
1522
1523 @example
1524   \encoding "latin1"
1525 @end example
1526
1527 This command may be placed anywhere in the input file. The current
1528 encoding is passed as an extra argument to @code{\markup} commands,
1529 and is passed similarly to lyric syllables.
1530
1531 If no @code{\encoding} has been specified, then the encoding is taken
1532 from the @code{\paper} block (or @code{\bookpaper}, if @code{\paper}
1533 does not specify encoding). The variable @code{inputencoding} may be
1534 set to a string or symbol specifying  the encoding, e.g.
1535
1536 @verbatim
1537   \paper {
1538     inputencoding = "latin1"
1539   } 
1540 @end verbatim
1541
1542 Normal strings, are unaffected by @code{\encoding}. This means that
1543 the following will usually not produce ba@ss{}tuba in the title.
1544
1545 @verbatim
1546   \header {
1547     title = "Grazing cow"
1548     instrument = "Baßtuba"
1549   }
1550 @end verbatim
1551
1552 Rather, you should say
1553 @verbatim
1554     instrument = \markup { Baßtuba }
1555 @end verbatim
1556
1557 @noindent
1558 or set @code{inputencoding} in the @code{\bookpaper} block. 
1559
1560 There is a special encoding, called @code{TeX}. This encoding does not
1561 reencode text for the font used. Rather, it tries to guess the width
1562 of @TeX{} commands, such as @code{\"}. Strings encoded with @code{TeX}
1563 are passed to the output back-end verbatim.
1564
1565 @cindex encoding
1566 @cindex @code{\encoding}
1567 @cindex inputencoding
1568 @cindex @TeX{} commands in strings
1569
1570
1571 @node Nested scores
1572 @subsection Nested scores
1573
1574 It is possible to nest music inside markups, by adding a @code{\score}
1575 block to markup expression. Such a score must contain a @code{\paper}
1576 block.
1577
1578 @lilypond[verbatim,raggedright]
1579 \relative {
1580   c4  d^\markup {
1581     \score {
1582       \relative { c4 d e f }
1583       \paper { }
1584     }
1585   }
1586   e f
1587 }
1588 @end lilypond
1589  
1590
1591
1592 @node  Overview of text markup commands
1593 @subsection Overview of text markup commands
1594
1595 The following commands can all be used inside @code{\markup @{ @}}.
1596
1597 @include markup-commands.tely
1598
1599
1600 @node Global layout
1601 @section Global layout
1602
1603 The global layout determined by three factors: the page layout, the
1604 line breaks, and the spacing. These all influence each other. The
1605 choice of spacing determines how densely each system of music is set,
1606 which influences where line breaks are chosen, and thus ultimately how
1607 many pages a piece of music takes.
1608
1609 Globally spoken, this procedure happens in three steps: first,
1610 flexible distances (``springs'') are chosen, based on durations. All
1611 possible line breaking combination are tried, and the one with the
1612 best results --- a layout that has uniform density and requires as
1613 little stretching or cramping as possible --- is chosen.
1614
1615 After spacing and linebreaking, the systems are distributed across
1616 pages, taking into account the size of the page, and the size of the
1617 titles.
1618
1619
1620
1621 @menu
1622 * Setting global staff size::   
1623 * Vertical spacing::            
1624 * Horizontal spacing::          
1625 * Line breaking::               
1626 * Line length and line breaking::  
1627 * Multiple movements::          
1628 * Titling::                     
1629 * Page breaking::               
1630 * Paper size::                  
1631 * Page layout::                 
1632 @end menu
1633
1634
1635 @node Setting global staff size
1636 @subsection Setting global staff size
1637
1638 @cindex font size, setting
1639 @cindex staff size, setting
1640 @cindex @code{paper} file
1641
1642 The Feta font provides musical symbols at eight  different
1643 sizes. Each font is tuned for a different staff size: at a smaller size
1644 the font becomes heavier, to match the relatively heavier staff lines.
1645 The recommended font sizes are listed in the following table:
1646
1647 @multitable @columnfractions  .25 .25 .25 .25
1648
1649 @item @b{font name}
1650 @tab @b{staff height (pt)}
1651 @tab @b{staff height (mm)}
1652 @tab @b{use}
1653
1654 @item feta11
1655 @tab 11.22
1656 @tab 3.9 
1657 @tab pocket scores
1658
1659 @item feta13
1660 @tab 12.60
1661 @tab 4.4
1662 @tab
1663
1664 @item feta14
1665 @tab 14.14
1666 @tab 5.0
1667 @tab 
1668
1669 @item feta16
1670 @tab 15.87
1671 @tab 5.6
1672 @tab 
1673
1674 @item feta18
1675 @tab 17.82
1676 @tab 6.3
1677 @tab song books
1678
1679 @item feta20
1680 @tab 20
1681 @tab 7.0
1682 @tab standard parts 
1683
1684 @item feta23
1685 @tab 22.45 
1686 @tab 7.9
1687 @tab 
1688
1689 @item feta26
1690 @tab 25.2 
1691 @tab 8.9
1692 @tab
1693 @c modern rental material  ?
1694
1695 @end multitable
1696
1697 These fonts are available in any sizes. The context property
1698 @code{fontSize} and the layout property @code{staff-space} (in
1699 @internalsref{StaffSymbol}) can be used to tune size for individual
1700 staves. The size of individual staves are relative to the global size,
1701 which can be set   in the following manner:
1702
1703 @example
1704   #(set-global-staff-size 14)
1705 @end example
1706
1707 This sets the global default size to 14pt staff height, and scales all
1708 fonts accordingly.
1709
1710 @seealso
1711
1712 This manual: @ref{Selecting font sizes}.
1713
1714
1715
1716 @menu
1717 * Vertical spacing::            
1718 * Horizontal spacing::          
1719 * Line breaking::               
1720 * Page layout::                 
1721 @end menu
1722
1723
1724 @node Vertical spacing of piano staves
1725 @subsection Vertical spacing of piano staves
1726
1727 The distance between staves of a @internalsref{PianoStaff} cannot be
1728 computed during formatting. Rather, to make cross-staff beaming work
1729 correctly, that distance has to be fixed beforehand.
1730  
1731 The distance of staves in a @code{PianoStaff} is set with the
1732 @code{forced-distance} property of the
1733 @internalsref{VerticalAlignment} object, created in
1734 @internalsref{PianoStaff}.
1735
1736 It can be adjusted as follows
1737 @verbatim
1738 \new PianoStaff \with {
1739    \override VerticalAlignment #'forced-distance = #9
1740 } {
1741   ...
1742 }
1743 @end example
1744 This would bring the staves together at a distance of 9 staff spaces,
1745 measured from the center line of each staff.
1746
1747
1748 @node Vertical spacing
1749 @subsection Vertical spacing
1750
1751 @cindex vertical spacing
1752 @cindex distance between staves
1753 @cindex staff distance
1754 @cindex between staves, distance
1755 @cindex staves per page
1756 @cindex space between staves
1757
1758 The height of each system is determined automatically. To prevent
1759 systems from bumping into each other, some minimum distances are set.
1760 By changing these, you can put staves closer together, and thus put
1761 more systems onto one page.
1762
1763 Normally staves are stacked vertically. To make staves maintain a
1764 distance, their vertical size is padded. This is done with the
1765 property @code{minimumVerticalExtent}. It takes a pair of numbers, so
1766 if you want to make it smaller from its default, then you could set
1767 @example
1768   \set Staff.minimumVerticalExtent = #'(-4 . 4)
1769 @end example
1770 This sets the vertical size of the current staff to 4 staff spaces on
1771 either side of the center staff line.  The argument of
1772 @code{minimumVerticalExtent} is interpreted as an interval, where the
1773 center line is the 0, so the first number is generally negative.  The
1774 staff can be made larger at the bottom by setting it to @code{(-6
1775 . 4)}. 
1776
1777
1778 @seealso
1779
1780 Internals: Vertical alignment of staves is handled by the
1781 @internalsref{VerticalAlignment} object.
1782
1783 @refbugs
1784
1785 @code{minimumVerticalExtent} is syntactic sugar for setting
1786 @code{minimum-Y-extent} of the @internalsref{VerticalAxisGroup} of the
1787 current context. It can only be changed score wide.
1788
1789
1790
1791 @node Horizontal spacing
1792 @subsection Horizontal Spacing
1793
1794 The spacing engine translates differences in durations into
1795 stretchable distances (``springs'') of differring lengths. Longer
1796 durations get more space, shorter durations get less.  The shortest
1797 durations get a fixed amount of space (which is controlled by
1798 @code{shortest-duration-space} in the @internalsref{SpacingSpanner} object). 
1799 The longer the duration, the more space it gets: doubling a
1800 duration adds a fixed amount (this amount is controlled by
1801 @code{spacing-increment}) of space to the note.
1802
1803 For example, the following piece contains lots of half, quarter, and
1804 8th notes, the eighth note is followed by 1 note head width (NHW). 
1805 The quarter note is followed by 2 NHW, the half by 3 NHW, etc.
1806 @lilypond[fragment,verbatim,relative=1] c2 c4. c8 c4. c8 c4. c8 c8
1807 c8 c4 c4 c4
1808 @end lilypond
1809
1810 Normally, @code{spacing-increment} is set to 1.2, which is the
1811 width of a note head, and @code{shortest-duration-space} is set to
1812 2.0, meaning that the shortest note gets 2 NHW  of space. For normal
1813 notes, this space is always counted from the left edge of the symbol, so
1814 the shortest notes are generally followed by one NHW of space.
1815
1816 If one would follow the above procedure exactly, then adding a single
1817 32th note to a score that uses 8th and 16th notes, would widen up the
1818 entire score a lot. The shortest note is no longer a 16th, but a 32nd,
1819 thus adding 1 NHW to every note. To prevent this, the
1820 shortest duration for spacing is not the shortest note in the score,
1821 but the most commonly found shortest note.  Notes that are even
1822 shorter this are followed by a space that is proportional to their
1823 duration relative to the common shortest note.  So if we were to add
1824 only a few 16th notes to the example above, they would be followed by
1825 half a NHW:
1826
1827 @lilypond[fragment,verbatim,relative=2]
1828  c2 c4. c8 c4. c16[ c] c4. c8 c8 c8 c4 c4 c4
1829 @end lilypond
1830
1831 The most common shortest duration is determined as follows: in every
1832 measure, the shortest duration is determined. The most common short
1833 duration, is taken as the basis for the spacing, with the stipulation
1834 that this shortest duration should always be equal to or shorter than
1835 1/8th note. The shortest duration is printed when you run lilypond
1836 with @code{--verbose}.  These durations may also be customized. If you
1837 set the @code{common-shortest-duration} in
1838 @internalsref{SpacingSpanner}, then this sets the base duration for
1839 spacing. The maximum duration for this base (normally 1/8th), is set
1840 through @code{base-shortest-duration}.
1841
1842 @cindex @code{common-shortest-duration}
1843 @cindex @code{base-shortest-duration}
1844 @cindex @code{stem-spacing-correction}
1845 @cindex @code{spacing}
1846
1847 In the Introduction it was explained that stem directions influence
1848 spacing. This is controlled with @code{stem-spacing-correction}
1849 property in @internalsref{NoteSpacing}, which are generated for every
1850 @internalsref{Voice} context. The @code{StaffSpacing} object
1851 (generated at @internalsref{Staff} context) contains the same property
1852 for controlling the stem/bar line spacing. The following example
1853 shows these corrections, once with default settings, and once with
1854 exaggerated corrections:
1855
1856 @lilypond[raggedright]
1857 {
1858       c'4 e''4 e'4 b'4 |
1859       b'4 e''4 b'4 e''4|
1860       \override Staff.NoteSpacing #'stem-spacing-correction = #1.5
1861       \override Staff.StaffSpacing #'stem-spacing-correction = #1.5
1862       c'4 e''4 e'4 b'4 |
1863       b'4 e''4 b'4 e''4|      
1864 }
1865 @end lilypond
1866
1867 @cindex SpacingSpanner, overriding properties
1868
1869 Properties of the  @internalsref{SpacingSpanner} must be overridden
1870 from the @code{\paper} block, since the @internalsref{SpacingSpanner} is
1871 created before any property commands are interpreted.
1872 @example
1873 \paper @{ \context  @{
1874   \Score
1875   \override SpacingSpanner #'spacing-increment = #3.0
1876 @} @}
1877 @end example
1878
1879
1880 @seealso
1881
1882 Internals: @internalsref{SpacingSpanner}, @internalsref{NoteSpacing},
1883 @internalsref{StaffSpacing}, @internalsref{SeparationItem}, and
1884 @internalsref{SeparatingGroupSpanner}.
1885
1886 @refbugs
1887
1888 Spacing is determined on a score wide basis. If you have a score that
1889 changes its character (measured in durations) halfway during the
1890 score, the part containing the longer durations will be spaced too
1891 widely.
1892
1893 There is no convenient mechanism to manually override spacing.  The
1894 following work-around may be used to insert extra space into a score.
1895 @example
1896  \once \override Score.SeparationItem #'padding = #1
1897 @end example
1898
1899 No work-around exists for decreasing the amount of space.
1900
1901
1902 @node Line breaking
1903 @subsection Line breaking
1904
1905 @cindex line breaks
1906 @cindex breaking lines
1907
1908 Line breaks are normally computed automatically. They are chosen such
1909 that lines look neither cramped nor loose, and that consecutive lines
1910 have similar density.
1911
1912 Occasionally you might want to override the automatic breaks; you can
1913 do this by  specifying @code{\break}. This will force a line break at
1914 this point.  Line breaks can only occur at places where there are bar
1915 lines.  If you want to have a line break where there is no bar line,
1916 you can force an invisible bar line by entering @code{\bar
1917 ""}. Similarly, @code{\noBreak} forbids a line break at a 
1918 point.
1919
1920
1921 @cindex regular line breaks
1922 @cindex four bar music. 
1923
1924 For line breaks at regular intervals  use @code{\break} separated by
1925 skips and repeated with @code{\repeat}:
1926 @example
1927 <<  \repeat unfold 7 @{
1928          s1 \noBreak s1 \noBreak
1929          s1 \noBreak s1 \break  @}
1930    @emph{the real music}
1931 >> 
1932 @end  example
1933
1934 @noindent
1935 This makes the following 28 measures (assuming 4/4 time) be broken every
1936 4 measures, and only there.
1937
1938 @refcommands
1939
1940 @code{\break}, and @code{\noBreak}.
1941 @cindex @code{\break}
1942 @cindex @code{\noBreak}
1943
1944 @seealso
1945
1946 Internals: @internalsref{BreakEvent}.
1947
1948 @node Line length and line breaking
1949 @subsection Line length and line breaking
1950
1951 @cindex page breaks
1952 @cindex breaking pages
1953
1954 @cindex @code{indent}
1955 @cindex @code{linewidth}
1956
1957 The most basic settings influencing the spacing are @code{indent} and
1958 @code{linewidth}. They are set in the @code{\paper} block. They
1959 control the indentation of the first line of music, and the lengths of
1960 the lines.
1961
1962 If  @code{raggedright} is set to true in the @code{\paper}
1963 block, then the lines are justified at their natural length. This
1964 useful for short fragments, and for checking how tight the natural
1965 spacing is.
1966
1967 @cindex page layout
1968 @cindex vertical spacing
1969
1970 The option @code{raggedlast} is similar to @code{raggedright}, but
1971 only affects the last line of the piece. No restrictions are put on
1972 that line. The result is similar to formatting paragraphs. In a
1973 paragraph, the last line simply takes its natural length.
1974
1975
1976 @node Multiple movements
1977 @subsection Multiple movements
1978
1979 @cindex bibliographic information
1980 @cindex titles
1981 @cindex composer
1982 @cindex Engraved by LilyPond
1983
1984 A document may contains multiple pieces of music. Examples of these
1985 are an etude book, or an orchestral part with multiple movements.
1986 Each movement is entered with a @code{\score} block,
1987
1988 @example
1989   \score @{
1990      @var{..music..}
1991   @}
1992 @end example
1993
1994 The movements are combined together to  
1995 @code{\book} block is used to group the individual movements.
1996
1997 @example
1998 \book @{
1999   \score @{
2000      @var{..}
2001   @}
2002   \score @{
2003      @var{..}
2004   @}
2005 @}
2006 @end example
2007
2008
2009 The header for each piece of music can be put inside the @code{\score}
2010 block.  The @code{piece} name from the header will be printed before
2011 each movement.  The title for the entire book can be put inside the
2012 @code{\book}, but if it is not present, the @code{\header} which is at
2013 the top of the file is inserted.
2014
2015 @cindex Engraved by LilyPond
2016 @cindex signature line
2017
2018 @example 
2019 \book @{
2020   \header @{
2021     title = "Eight miniatures" 
2022     composer = "Igor Stravinsky"
2023   @}
2024   \score @{
2025     @dots{}
2026     \header @{ piece = "Romanze" @}
2027   @}
2028   \score @{
2029     @dots{}
2030     \header @{ piece = "Menuetto" @}
2031   @}
2032 @}
2033 @end example
2034
2035 @node Titling
2036 @subsection Titling
2037
2038 Titles are created for each @code{\score} block, and over a
2039 @code{\book}.
2040
2041 The contents of the titles are taken from the @code{\header} blocks.
2042 The header block for a book supports the following 
2043 @table @code
2044 @item title
2045     The title of the music. Centered on top of the first page.
2046 @item subtitle
2047     Subtitle, centered below the title.
2048 @item poet
2049     Name of the poet, left flushed below the subtitle.
2050 @item composer
2051     Name of the composer, right flushed below the subtitle.
2052 @item meter
2053     Meter string, left flushed below the poet.
2054 @item opus
2055     Name of the opus, right flushed below the composer.
2056 @item arranger
2057     Name of the arranger, right flushed below the opus.
2058 @item instrument
2059     Name of the instrument, centered below the arranger.
2060 @item dedication            
2061     To whom the piece is dedicated.
2062 @item piece
2063     Name of the piece, left flushed below the instrument.
2064 @end table
2065
2066 This is a demonstration of the fields available, 
2067
2068 @lilypond[verbatim]
2069 \book {
2070   \header {
2071     title = "Title"
2072     subtitle = "(and (the) subtitle)"
2073     subsubtitle = "Sub sub title"
2074     poet = "Poet"
2075     composer = "Composer"
2076     texttranslator = "Text Translator"
2077     meter = "Meter"
2078     arranger = "Arranger"
2079     instrument = "Instrument"
2080     piece = "Piece"
2081   }
2082
2083   \score {
2084     \header {
2085       piece = "piece1"
2086       opus = "opus1" 
2087     }
2088     { c'1 }
2089   }
2090   \score {
2091     \header {
2092       piece = "piece2"
2093       opus = "opus2" 
2094     }
2095     { c'1 }
2096   }
2097 }
2098 @end lilypond
2099
2100 Different fonts may be selected for each element, by using a
2101 @code{\markup}, e.g.
2102
2103 @verbatim
2104   \header {
2105     title = \markup { \italic { The italic title } }
2106   }
2107 @end verbatim
2108
2109 A more advanced option is to change the Scheme functions
2110 @code{make-book-title} and @code{make-score-title} functions, defined
2111 in the @code{\bookpaper} of the @code{\book} block. These functions
2112 create a block of titling, given the information in the
2113 @code{\header}. The init file @file{ly/titling.scm} shows how the
2114 default format is created, and it may be used as a template for
2115 different styles.
2116
2117  
2118 @cindex \bookpaper
2119 @cindex header
2120 @cindex footer
2121 @cindex page layout
2122 @cindex titles
2123
2124
2125
2126
2127 @node Page breaking
2128 @subsection Page breaking
2129
2130 The default page breaking may be overriden by inserting
2131 @code{\pageBreak} or @code{\noPageBreak} commands. These commands are
2132 analogous to @code{\break} and @code{\noBreak}. They should be
2133 inserted with a bar line. These commands force and forbid a page-break
2134 from happening. 
2135
2136 Page breaks are computed by the @code{page-breaking} function in the
2137 @code{\bookpaper} block. 
2138
2139 @refcommands
2140
2141 @cindex @code{\pageBreak}
2142 @code{\pageBreak}
2143 @cindex  @code{\noPageBreak} 
2144 @code{\noPageBreak} 
2145
2146 @node Paper size
2147 @subsection Paper size
2148
2149 @cindex paper size
2150 @cindex page size
2151 @cindex @code{papersize}
2152
2153 To change the paper size, there are two commands,
2154 @example
2155         #(set-default-paper-size "a4")
2156         \paper@{
2157            #(set-paper-size "a4")
2158         @}
2159 @end example
2160 The second one sets the size of the @code{\paper} block that it is in.
2161
2162
2163 @node Page layout
2164 @subsection Page layout
2165
2166 @cindex page layout
2167 @cindex margins
2168 @cindex header, page
2169 @cindex footer, page
2170
2171 LilyPond will do page layout, setting margins and adding headers and
2172 footers to each page.
2173
2174 The default layout responds to the following settings in the
2175 @code{\bookpaper} block
2176 @cindex \bookpaper
2177
2178 @table @code
2179 @item firstpagenumber
2180  The value of the page number of the first page. Default is 1.
2181 @item hsize
2182  The width of the page
2183 @item vsize
2184  The height of the page
2185 @item topmargin
2186  Margin between header and top of the page
2187 @item bottommargin
2188  Margin between footer and bottom of the page
2189 @item leftmargin
2190  Margin between the left side of the page and the beginning  of the music.
2191 @item linewidth
2192  The length of the paper line.
2193 @item headsep
2194  Distance between top-most music system and the page header
2195 @item footsep
2196  Distance between bottom-most music system and the page footer
2197 @item raggedbottom
2198  If set to true, systems will not be spread across the page.  
2199 @item raggedlastbottom
2200  If set to true, systems will not be spread to fill the last page.
2201 @end table
2202
2203 @example
2204         \bookpaper@{
2205            hsize = 2\cm
2206            topmargin = 3\cm
2207            bottommargin = 3\cm
2208            raggedlastbottom = ##t
2209         @}
2210 @end example
2211
2212 You can also define these values in scheme. In that case @code{mm},
2213 @code{in}, @code{pt} and @code{cm} are variables defined in
2214 @file{book-paper-defaults.ly} with values in millimeters. That's why the
2215 value has to be multiplied in the example above.
2216
2217 @example
2218         \bookpaper@{
2219         #(define bottommargin (* 2 cm)) 
2220         @}
2221 @end example
2222
2223 @cindex copyright
2224 @cindex tagline
2225
2226 The default footer is empty, except for the first page, where it the
2227 @code{copyright} field from @code{\header} is inserted, and the last
2228 page, where @code{tagline} from @code{\header} is added. The default
2229 tagline is ``Engraved by LilyPond (@var{version})''.@footnote{Nicely
2230 printed parts are good PR for us, so please leave the tagline if you
2231 can.}
2232
2233 The header and footer are created by the functions @code{make-footer}
2234 and @code{make-header}, defined in @code{\bookpaper}. The default
2235 implementations are in @file{scm/page-layout.scm}.
2236
2237 The following settings influence the header and footer layout.
2238
2239 @table @code
2240 @item printpagenumber
2241   this boolean controls whether a pagenumber is printed. 
2242 @end table
2243
2244 The page layout itself is done by two functions:
2245 @code{page-music-height} and @code{page-make-stencil}. The former
2246 tells the line-breaking algorithm how much space can be spent on a
2247 page, the latter creates the actual page given the system to put on it. 
2248
2249
2250 @seealso
2251
2252 Examples: @inputfileref{input/test/,page-breaks.ly}
2253
2254 @refbugs
2255
2256 The option rightmargin is defined but doesn't set the right margin
2257 yet. The value for the right margin has to be defined adjusting the
2258 values of the leftmargin and linewidth.
2259
2260 The default page header puts the page number and the @code{instrument}
2261 field from the @code{\header} block on a line.
2262
2263
2264
2265 @node File structure
2266 @section File structure
2267
2268 The bigger part of this manual is concerned with entering various
2269 forms of music in LilyPond. However, many music expressions are not
2270 valid input on their own, for example, a @code{.ly} file containing
2271 only a note
2272 @example
2273   c'4
2274 @end example
2275
2276 @noindent
2277 will result in a parsing error. Instead, music should be inside other
2278 expressions, which may be put in a file by themselves. Such
2279 expressions are called toplevel expressions.  This section enumerates
2280 them all.
2281
2282 A @code{.ly} file contains any number of toplevel expressions, where a
2283 toplevel expressions is one of the following
2284
2285 @itemize @bullet
2286 @item An output definition, such as @code{\bookpaper}, @code{\midi}
2287 and @code{\paper}. Such a definition at toplevel changes the default
2288 settings for the block entered.
2289
2290 @item An @code{\header} block. This sets the global header block. This
2291 is the block containing the definitions for book-wide settings, like
2292 composer, title, etc. 
2293
2294 @item An @code{\addquote} statement. See @ref{Quoting other voices}
2295 for more information.
2296
2297 @item A @code{\score} block. This score will be collected with other
2298 toplevel scores, and combined as a single @code{\book}.
2299
2300 This behavior can be changed by setting the variable
2301 @code{toplevel-score-handler} at toplevel.  The default handler is
2302 defined in the init file @file{scm/lily.scm}.
2303
2304 @item
2305 A @code{\book} block logically combines multiple movements
2306 (ie. multiple @code{\score} blocks) into one document. A number of
2307 @code{\scores} creates a single output file, where all movement are
2308 concatenated..
2309
2310 This behavior can be changed by setting the variable
2311 @code{toplevel-book-handler} at toplevel.  The default handler is
2312 defined in the init file @file{scm/lily.scm}.
2313
2314
2315 @item A compound music expression, such as
2316 @example
2317   @{ c'4 d' e'2 @}
2318 @end example
2319
2320 This will add the piece in a @code{\score}, and formats it into a
2321 single book together with all other toplevel @code{\score}s and music
2322 expressions.
2323  
2324 This behavior can be changed by setting the variable
2325 @code{toplevel-music-handler} at toplevel. The default handler is
2326 defined in the init file @file{scm/lily.scm}.
2327  
2328 @end itemize
2329
2330 The following example shows three things which may be entered at
2331 toplevel
2332 @verbatim
2333    \paper  {
2334      % movements are non-justified by default    
2335      raggedright = ##t
2336    }
2337
2338    \header {
2339       title = "Do-re-mi"
2340    }
2341    
2342    { c'4 d' e2 }
2343 @end verbatim
2344
2345
2346 At any point in a file, any of the following lexical instructions can
2347 be entered:
2348
2349 @itemize @bullet
2350 @item @code{\version}
2351 @item @code{\include}
2352 @item @code{\encoding}
2353 @item @code{\renameinput}
2354 @end itemize 
2355