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