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