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