]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/spacing.itely
Doc-es: Oops; fix bad xref.
[lilypond.git] / Documentation / notation / spacing.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2
3 @ignore
4     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  For details, see the Contributors'
8     Guide, node Updating translation committishes..
9 @end ignore
10
11 @c \version "2.17.30"
12
13 @ignore
14 GDP TODO list
15
16 Negative numbers are allowed:
17 > Are you sure? The following works well
18 > \paper{
19 >   first-page-number = -2
20 > }
21 > and prints page number -1 on the second page, for example.
22
23
24 In 5.2.1 the @refbugs (line 495 in spacing.itely on master) it
25 states:
26
27 "@code{layout-set-staff-size} does not change the distance between
28 the
29 staff lines."
30
31 Could we add a sentence:
32 "Use instead the pair               fontSize = #@var{N}
33             \override StaffSymbol.staff-space = #(magstep
34 @var{N})
35 inside the Staff context to change the size of the font and the
36 distance between
37 staff lines accordingly."
38
39 Actually I found, that the @internalsref{StaffSymbol} at line 481
40 sends to an incomplete
41 documentation.  The property staff-space is not explained here.  I
42 thought Y-extent might be of
43 help, but it is in turn explained by x-space which again is
44 missing from the list.  Who has the
45 knowledge to fix this?
46
47
48 Clarify
49 http://code.google.com/p/lilypond/issues/detail?id=68
50
51 @end ignore
52
53
54 @node Spacing issues
55 @chapter Spacing issues
56
57 The global paper layout is determined by three factors: the page layout, the
58 line breaks, and the spacing.  These all influence each other.  The
59 choice of spacing determines how densely each system of music is set.
60 This influences where line breaks are chosen, and thus ultimately, how
61 many pages a piece of music takes.
62
63 Globally speaking, this procedure happens in four steps: first,
64 flexible distances (@q{springs}) are chosen, based on durations.  All
65 possible line breaking combinations are tried, and a @q{badness} score
66 is calculated for each.  Then the height of each possible system is
67 estimated.  Finally, a page breaking and line breaking combination is chosen
68 so that neither the horizontal nor the vertical spacing is too cramped
69 or stretched.
70
71 Two types of blocks can contain layout settings:
72 @code{\paper @{@dots{}@}} and @code{\layout @{@dots{}@}}.  The
73 @code{\paper} block contains page layout settings that are expected
74 to be the same for all scores in a book or bookpart, such as the
75 paper height, or whether to print page numbers, etc.  See
76 @ref{Page layout}.  The @code{\layout} block contains score layout
77 settings, such as the number of systems to use, or the space
78 between staff-groups, etc.  See @ref{Score layout}.
79
80 @menu
81 * Page layout::
82 * Score layout::
83 * Breaks::
84 * Vertical spacing::
85 * Horizontal spacing::
86 * Fitting music onto fewer pages::
87 @end menu
88
89
90 @node Page layout
91 @section Page layout
92
93 This section discusses page layout options for the @code{\paper}
94 block.
95
96 @menu
97 * The paper block::
98 * Paper size and automatic scaling::
99 * Fixed vertical spacing paper variables::
100 * Flexible vertical spacing paper variables::
101 * Horizontal spacing paper variables::
102 * Other paper variables::
103 @end menu
104
105
106 @node The paper block
107 @subsection The @code{@bs{}paper} block
108
109 @code{\paper} blocks may be placed in three different places to form
110 a descending hierarchy of @code{\paper} blocks:
111
112 @itemize
113
114 @item
115 At the top of the input file, before all @code{\book},
116 @code{\bookpart}, and @code{\score} blocks.
117
118 @item
119 Within a @code{\book} block but outside all the @code{\bookpart} and
120 @code{\score} blocks within that book.
121
122 @item
123 Within a @code{\bookpart} block but outside all @code{\score} blocks
124 within that bookpart.
125
126 @end itemize
127
128 A @code{\paper} block cannot be placed within a @code{\score} block.
129
130 The values of the fields filter down this hierarchy, with the values
131 set higher in the hierarchy persisting unless they are over-ridden
132 by a value set lower in the hierarchy.
133
134 Several @code{\paper} blocks can appear at each of the levels, for
135 example as parts of several @code{\include}d files.  If so, the
136 fields at each level are merged, with values encountered last taking
137 precedence if duplicated fields appear.
138
139 Settings that can appear in a @code{\paper} block include:
140
141 @itemize
142
143 @item
144 the @code{set-paper-size} scheme function,
145
146 @item
147 @code{\paper} variables used for customizing page layout, and
148
149 @item
150 markup definitions used for customizing the layout of headers,
151 footers, and titles.
152
153 @end itemize
154
155 The @code{set-paper-size} function is discussed in the next
156 section, @ref{Paper size and automatic scaling}.  The
157 @code{\paper} variables that deal with page layout are discussed
158 in later sections.  The markup definitions that deal with headers,
159 footers, and titles are discussed in
160 @ref{Custom titles headers and footers}.
161
162 Most @code{\paper} variables will only work in a @code{\paper}
163 block.  The few that will also work in a @code{\layout} block are
164 listed in @ref{The layout block,,The @code{@bs{}layout} block}.
165
166 Except when specified otherwise, all @code{\paper} variables that
167 correspond to distances on the page are measured in millimeters,
168 unless a different unit is specified by the user.  For example,
169 the following declaration sets @code{top-margin} to ten
170 millimeters:
171
172 @example
173 \paper @{
174   top-margin = 10
175 @}
176 @end example
177
178 To set it to @code{0.5} inches, use the @code{\in} unit suffix:
179
180 @example
181 \paper @{
182   top-margin = 0.5\in
183 @}
184 @end example
185
186 The available unit suffixes are @code{\mm}, @code{\cm},
187 @code{\in}, and @code{\pt}.  These units are simple values for
188 converting from millimeters; they are defined in
189 @file{ly/paper-defaults-init.ly}.  For the sake of clarity, when
190 using millimeters, the @code{\mm} is typically included in the
191 code, even though it is not technically necessary.
192
193 It is also possible to define @code{\paper} values using Scheme.
194 The Scheme equivalent of the above example is:
195
196 @example
197 \paper @{
198   #(define top-margin (* 0.5 in))
199 @}
200 @end example
201
202 @seealso
203 Notation Reference:
204 @ref{Paper size and automatic scaling},
205 @ref{Custom titles headers and footers},
206 @ref{The layout block,,The @code{@bs{}layout} block}.
207
208 Installed Files:
209 @file{ly/paper-defaults-init.ly}.
210
211
212 @node Paper size and automatic scaling
213 @subsection Paper size and automatic scaling
214
215 @cindex paper size
216 @cindex page size
217
218 @funindex \paper
219
220 @menu
221 * Setting the paper size::
222 * Automatic scaling to paper size::
223 @end menu
224
225
226 @node Setting the paper size
227 @unnumberedsubsubsec Setting the paper size
228
229 @q{A4} is the default value when no explicit paper size is set. However,
230 there are two functions that can be used to change it:
231
232 @table @code
233 @item set-default-paper-size
234
235 @example
236 #(set-default-paper-size "quarto")
237 @end example
238
239 which must always be placed at the toplevel scope, and
240
241 @item set-paper-size
242
243 @example
244 \paper @{
245   #(set-paper-size "tabloid")
246 @}
247 @end example
248
249 which must always be placed in a @code{\paper} block.
250 @end table
251
252 If the @code{set-default-paper-size} function is used in the toplevel
253 scope, it must come before any @code{\paper} block.
254 @code{set-default-paper-size} sets the paper size for all pages,
255 whereas @code{set-paper-size} only sets the paper size for the pages
256 that the @code{\paper} block applies to.  For example, if the
257 @code{\paper} block is at the top of the file, then it will apply the
258 paper size to all pages.  If the @code{\paper} block is inside a
259 @code{\book}, then the paper size will only apply to that book.
260
261 When the @code{set-paper-size} function is used, it must be
262 placed @emph{before} any other functions used within the same
263 @code{\paper} block.  See @ref{Automatic scaling to paper size}.
264
265 Paper sizes are defined in @file{scm/paper.scm}, and while it is
266 possible to add custom sizes, they will be overwritten on subsequent
267 software updates.  The available paper sizes are listed in
268 @ref{Predefined paper sizes}.
269
270 @c An appendix entry exists for paper sizes but is not auto-generated
271
272 The following command can be used in the file to add a custom paper size
273 which can then be used with @code{set-default-paper-size} or
274 @code{set-paper-size} as appropriate,
275
276 @example
277 #(set! paper-alist (cons '("my size" . (cons (* 15 in) (* 3 in))) paper-alist))
278
279 \paper @{
280   #(set-paper-size "my size")
281 @}
282 @end example
283
284 The units @code{in} (inches), @code{cm} (centimeters) and @code{mm}
285 (millimeters) can all be used.
286
287 @cindex paper size, orientation
288 @cindex page, orientation
289 @cindex paper size, landscape
290
291 If the symbol @code{'landscape} is added to the paper size function,
292 pages will be rotated by 90 degrees, and wider line widths will be set
293 accordingly.
294
295 @example
296 #(set-default-paper-size "a6" 'landscape)
297 @end example
298
299 Swapping the paper dimensions @emph{without} having the print rotated
300 (like when printing to postcard size, or creating graphics for inclusion
301 rather than a standalone document) can be achieved by appending
302 @samp{landscape} to the name of the paper size itself:
303
304 @example
305 #(set-default-paper-size "a6landscape")
306 @end example
307
308 When the paper size ends with an explicit @samp{landscape} or
309 @samp{portrait}, the presence of a @code{'landscape} symbol @emph{only}
310 affects print orientation, not the paper dimensions used for layout.
311
312 @seealso
313 Notation Reference:
314 @ref{Automatic scaling to paper size},
315 @ref{Predefined paper sizes}.
316
317 Installed Files:
318 @file{scm/paper.scm}.
319
320
321 @node Automatic scaling to paper size
322 @unnumberedsubsubsec Automatic scaling to paper size
323
324 If the paper size is changed with one of the scheme functions
325 (@code{set-default-paper-size} or @code{set-paper-size}), the
326 values of several @code{\paper} variables are automatically scaled
327 to the new size.  To bypass the automatic scaling for a particular
328 variable, set the variable after setting the paper size.  Note
329 that the automatic scaling is not triggered by setting the
330 @code{paper-height} or @code{paper-width} variables, even though
331 @code{paper-width} can influence other values (this is separate
332 from scaling and is discussed below).  The
333 @code{set-default-paper-size} and @code{set-paper-size} functions
334 are described in @ref{Setting the paper size}.
335
336 The vertical dimensions affected by automatic scaling are
337 @code{top-margin} and @code{bottom-margin} (see
338 @ref{Fixed vertical spacing paper variables,,Fixed vertical spacing @code{@bs{}paper} variables}).
339 The horizontal
340 dimensions affected by automatic scaling are @code{left-margin},
341 @code{right-margin}, @code{inner-margin}, @code{outer-margin},
342 @code{binding-offset}, @code{indent}, and @code{short-indent} (see
343 @ref{Horizontal spacing paper variables,,Horizontal spacing @code{@bs{}paper} variables}).
344
345 The default values for these dimensions are set in
346 @file{ly/paper-defaults-init.ly}, using internal variables named
347 @code{top-margin-default}, @code{bottom-margin-default}, etc.
348 These are the values that result at the default paper size
349 @code{a4}.  For reference, with @code{a4} paper the
350 @code{paper-height} is @code{297\mm} and the @code{paper-width} is
351 @code{210\mm}.
352
353 @seealso
354 Notation Reference:
355 @ref{Fixed vertical spacing paper variables,,Fixed vertical spacing @code{@bs{}paper} variables},
356 @ref{Horizontal spacing paper variables,,Horizontal spacing @code{@bs{}paper} variables}.
357
358 Installed Files:
359 @file{ly/paper-defaults-init.ly},
360 @file{scm/paper.scm}.
361
362
363 @node Fixed vertical spacing paper variables
364 @subsection Fixed vertical spacing @code{@bs{}paper} variables
365
366 @warning{Some @code{@bs{}paper} dimensions are automatically
367 scaled to the paper size, which may lead to unexpected behavior.
368 See @ref{Automatic scaling to paper size}.}
369
370 Default values (before scaling) are defined in
371 @file{ly/paper-defaults-init.ly}.
372
373 @table @code
374 @item paper-height
375 @funindex paper-height
376
377 The height of the page, unset by default.  Note that the automatic
378 scaling of some vertical dimensions is not affected by this.
379
380 @item top-margin
381 @funindex top-margin
382
383 The margin between the top of the page and the top of the
384 printable area.  If the paper size is modified, this dimension's
385 default value is scaled accordingly.
386
387 @item bottom-margin
388 @funindex bottom-margin
389
390 The margin between the bottom of the printable area and the bottom
391 of the page.  If the paper size is modified, this dimension's
392 default value is scaled accordingly.
393
394 @item ragged-bottom
395 @funindex ragged-bottom
396
397 If set to true, systems will not spread vertically down the page.
398 This does not affect the last page.  This should be set to true
399 for pieces that have only two or three systems per page, for
400 example orchestral scores.
401
402 @item ragged-last-bottom
403 @funindex ragged-last-bottom
404
405 If set to false, systems will spread vertically down the last
406 page.  Pieces that amply fill two pages or more should have this
407 set to false.  It also affects the last page of book parts, i.e.
408 parts of a book created with @code{\bookpart} blocks.
409
410 @end table
411
412 @seealso
413 Notation Reference:
414 @ref{Automatic scaling to paper size}.
415
416 Installed Files:
417 @file{ly/paper-defaults-init.ly}.
418
419 Snippets:
420 @rlsr{Spacing}.
421
422 @knownissues
423 The titles (from the @code{\header} block) are treated as a
424 system, so @code{ragged-bottom} and @code{ragged-last-bottom} will
425 add space between the titles and the first system of the score.
426
427 Explicitly defined paper-sizes will override any user-defined top or
428 bottom margin settings.
429
430
431 @node Flexible vertical spacing paper variables
432 @subsection Flexible vertical spacing @code{@bs{}paper} variables
433
434 In most cases, it is preferable for the vertical distances between
435 certain items (such as margins, titles, systems, and separate
436 scores) to be flexible, so that they stretch and compress nicely
437 according to each situation.  A number of @code{\paper} variables
438 (listed below) are available to fine-tune the stretching behavior
439 of these dimensions.
440
441 Note that the @code{\paper} variables discussed in this section do
442 not control the spacing of staves within individual systems.
443 Within-system spacing is controlled by grob properties, with
444 settings typically entered inside a @code{\score} or
445 @code{\layout} block, and not inside a @code{\paper} block.  See
446 @ref{Flexible vertical spacing within systems}.
447
448 @menu
449 * Structure of flexible vertical spacing alists::
450 * List of flexible vertical spacing paper variables::
451 @end menu
452
453
454 @node Structure of flexible vertical spacing alists
455 @unnumberedsubsubsec Structure of flexible vertical spacing alists
456
457 Each of the flexible vertical spacing @code{\paper} variables is
458 an alist (association list) containing four @emph{keys}:
459
460 @itemize
461
462 @item
463 @code{basic-distance} -- the vertical distance, measured in
464 staff-spaces, between the @emph{reference points} of the two
465 items, when no collisions would result, and no stretching or
466 compressing is in effect.  The reference point of a (title or
467 top-level) markup is its highest point, and the reference point of
468 a system is the vertical center of the nearest @code{StaffSymbol}
469 -- even if a non-staff line (such as a @code{Lyrics} context) is
470 in the way.  Values for @code{basic-distance} that are less than
471 either @code{padding} or @code{minimum-distance} are not
472 meaningful, since the resulting distance will never be less than
473 either @code{padding} or @code{minimum-distance}.
474
475 @item
476 @code{minimum-distance} -- the smallest allowable vertical
477 distance, measured in staff-spaces, between the reference points
478 of the two items, when compressing is in effect.  Values for
479 @code{minimum-distance} that are less than @code{padding} are not
480 meaningful, since the resulting distance will never be less than
481 @code{padding.}
482
483 @c TODO: explain skylines somewhere and xref to it from here.
484
485 @item
486 @code{padding} -- the minimum required amount of unobstructed
487 vertical whitespace between the bounding boxes (or skylines) of
488 the two items, measured in staff-spaces.
489
490 @item
491 @code{stretchability} -- a unitless measure of the dimension's
492 relative propensity to stretch.  If zero, the distance will not
493 stretch (unless collisions would result).  When positive, the
494 significance of a particular dimension's @code{stretchability}
495 value lies only in its relation to the @code{stretchability}
496 values of the other dimensions.  For example, if one dimension has
497 twice the @code{stretchability} of another, it will stretch twice
498 as easily.  Values should be non-negative and finite.  The value
499 @code{+inf.0} triggers a @code{programming_error} and is ignored,
500 but @code{1.0e7} can be used for an almost infinitely stretchable
501 spring.  If unset, the default value is set to
502 @code{basic-distance}.  Note that the dimension's propensity to
503 @emph{compress} cannot be directly set by the user and is equal to
504 (@code{basic-distance}@tie{}@minus{}@tie{}@code{minimum-distance}).
505
506 @end itemize
507
508 If a page has a ragged bottom, the resulting distance is the
509 largest of:
510
511 @itemize
512
513 @item
514 @code{basic-distance},
515
516 @item
517 @code{minimum-distance}, and
518
519 @item
520 @code{padding} plus the smallest distance necessary to eliminate
521 collisions.
522
523 @end itemize
524
525 For multi-page scores with a ragged bottom on the last page, the last
526 page uses the same spacing as the preceding page, provided there is
527 enough space for that.
528
529 Specific methods for modifying alists are discussed in
530 @ref{Modifying alists}.  The following example demonstrates the
531 two ways these alists can be modified.  The first declaration
532 updates one key-value individually, and the second completely
533 redefines the variable:
534
535 @example
536 \paper @{
537   system-system-spacing #'basic-distance = #8
538   score-system-spacing =
539     #'((basic-distance . 12)
540        (minimum-distance . 6)
541        (padding . 1)
542        (stretchability . 12))
543 @}
544 @end example
545
546
547 @node List of flexible vertical spacing paper variables
548 @unnumberedsubsubsec List of flexible vertical spacing @code{@bs{}paper} variables
549
550 The names of these variables follow the format
551 @code{@var{upper}-@var{lower}-spacing}, where @code{@var{upper}}
552 and @code{@var{lower}} are the items to be spaced.  Each distance
553 is measured between the reference points of the two items (see the
554 description of the alist structure above).  Note that in these
555 variable names, the term @q{@code{markup}} refers to both
556 @emph{title markups} (@code{bookTitleMarkup} or
557 @code{scoreTitleMarkup}) and @emph{top-level markups} (see
558 @ref{File structure}).  All distances are measured in
559 staff-spaces.
560
561 Default settings are defined in @file{ly/paper-defaults-init.ly}.
562
563 @c TODO: Where do headers/footers fit in? -mp
564
565 @table @code
566 @item markup-system-spacing
567 @funindex markup-system-spacing
568
569 the distance between a (title or top-level) markup and the system
570 that follows it.
571
572 @item score-markup-spacing
573 @funindex score-markup-spacing
574
575 the distance between the last system of a score and the (title or
576 top-level) markup that follows it.
577
578 @item score-system-spacing
579 @funindex score-system-spacing
580
581 the distance between the last system of a score and the first
582 system of the score that follows it, when no (title or top-level)
583 markup exists between them.
584
585 @item system-system-spacing
586 @funindex system-system-spacing
587
588 the distance between two systems in the same score.
589
590 @item markup-markup-spacing
591 @funindex markup-markup-spacing
592
593 the distance between two (title or top-level) markups.
594
595 @item last-bottom-spacing
596 @funindex last-bottom-spacing
597
598 the distance from the last system or top-level markup on a page to
599 the bottom of the printable area (i.e. the top of the bottom
600 margin).
601
602 @item top-system-spacing
603 @funindex top-system-spacing
604
605 the distance from the top of the printable area (i.e. the bottom
606 of the top margin) to the first system on a page, when there is no
607 (title or top-level) markup between the two.
608
609 @item top-markup-spacing
610 @funindex top-markup-spacing
611
612 the distance from the top of the printable area (i.e. the bottom
613 of the top margin) to the first (title or top-level) markup on a
614 page, when there is no system between the two.
615 @end table
616
617 @seealso
618 Notation Reference:
619 @ref{Flexible vertical spacing within systems}.
620
621 Installed Files:
622 @file{ly/paper-defaults-init.ly}.
623
624 Snippets:
625 @rlsr{Spacing}.
626
627
628 @node Horizontal spacing paper variables
629 @subsection Horizontal spacing @code{@bs{}paper} variables
630
631 @warning{Some @code{@bs{}paper} dimensions are automatically
632 scaled to the paper size, which may lead to unexpected behavior.
633 See @ref{Automatic scaling to paper size}.}
634
635 @menu
636 * paper variables for widths and margins::
637 * paper variables for two-sided mode::
638 * paper variables for shifts and indents::
639 @end menu
640
641
642 @node paper variables for widths and margins
643 @unnumberedsubsubsec @code{@bs{}paper} variables for widths and margins
644
645 Default values (before scaling) that are not listed here are
646 defined in @file{ly/paper-defaults-init.ly}.
647
648 @table @code
649
650 @item paper-width
651 @funindex paper-width
652
653 The width of the page, unset by default.  While @code{paper-width}
654 has no effect on the automatic scaling of some horizontal
655 dimensions, it does influence the @code{line-width} variable.  If
656 both @code{paper-width} and @code{line-width} are set, then
657 @code{left-margin} and @code{right-margin} will also be updated.
658 Also see @code{check-consistency}.
659
660 @item line-width
661 @funindex line-width
662
663 The horizontal extent of the staff lines in unindented, non-ragged
664 systems, equal to
665 @code{(paper-width@tie{}@minus{}@tie{}left-margin@tie{}@minus{}@tie{}right-margin)}
666 when unset.  If @code{line-width} is set, and both
667 @code{left-margin} and @code{right-margin} are unset, then the
668 margins will be updated to center the systems on the page
669 automatically.  Also see @code{check-consistency}.  This variable
670 can also be set in a @code{\layout} block.
671
672 @item left-margin
673 @funindex left-margin
674
675 The margin between the left edge of the page and the start of the
676 staff lines in unindented systems.  If the paper size is modified,
677 this dimension's default value is scaled accordingly.  If
678 @code{left-margin} is unset, and both @code{line-width} and
679 @code{right-margin} are set, then @code{left-margin} is set to
680 @code{(paper-width@tie{}@minus{}@tie{}line-width@tie{}@minus{}@tie{}right-margin)}.
681 If only @code{line-width} is set, then both margins are set to
682 @code{((paper-width@tie{}@minus{}@tie{}line-width)@tie{}/@tie{}2)},
683 and the systems are consequently centered on the page.  Also see
684 @code{check-consistency}.
685
686 @item right-margin
687 @funindex right-margin
688
689 The margin between the right edge of the page and the end of the
690 staff lines in non-ragged systems.  If the paper size is modified,
691 this dimension's default value is scaled accordingly.  If
692 @code{right-margin} is unset, and both @code{line-width} and
693 @code{left-margin} are set, then @code{right-margin} is set to
694 @code{(paper-width@tie{}@minus{}@tie{}line-width@tie{}@minus{}@tie{}left-margin)}.
695 If only @code{line-width} is set, then both margins are set to
696 @code{((paper-width@tie{}@minus{}@tie{}line-width)@tie{}/@tie{}2)},
697 and the systems are consequently centered on the page.  Also see
698 @code{check-consistency}.
699
700 @item check-consistency
701 @funindex check-consistency
702
703 If set to true, print a warning if @code{left-margin},
704 @code{line-width}, and @code{right-margin} do not exactly add up
705 to @code{paper-width}, and replace each of these (except
706 @code{paper-width}) with its default value (scaled to the paper
707 size if necessary).  If set to false, ignore any inconsistencies
708 and allow systems to run off the edge of the page.
709
710 @item ragged-right
711 @funindex ragged-right
712
713 If set to true, systems will not fill the line width.  Instead,
714 systems end at their natural horizontal length.  Default:
715 @code{#t} for scores with only one system, and @code{#f} for
716 scores with two or more systems.  This variable can also be set in
717 a @code{\layout} block.
718
719 @item ragged-last
720 @funindex ragged-last
721
722 If set to true, the last system in the score will not fill the
723 line width.  Instead the last system ends at its natural
724 horizontal length.  Default: @code{#f}.  This variable can also be
725 set in a @code{\layout} block.
726
727 @end table
728
729 @seealso
730 Notation Reference:
731 @ref{Automatic scaling to paper size}.
732
733 Installed Files:
734 @file{ly/paper-defaults-init.ly}.
735
736 @knownissues
737 Explicitly defined paper-sizes will override any user-defined left or
738 right margin settings.
739
740
741 @node paper variables for two-sided mode
742 @unnumberedsubsubsec @code{@bs{}paper} variables for two-sided mode
743
744 Default values (before scaling) are defined in
745 @file{ly/paper-defaults-init.ly}.
746
747 @table @code
748
749 @item two-sided
750 @funindex two-sided
751
752 @cindex gutter
753 @cindex binding gutter
754
755 If set to true, use @code{inner-margin}, @code{outer-margin} and
756 @code{binding-offset} to determine margins depending on whether
757 the page number is odd or even.  This overrides @code{left-margin}
758 and @code{right-margin}.
759
760 @item inner-margin
761 @funindex inner-margin
762
763 The margin all pages have at the inner side if they are part of a
764 book.  If the paper size is modified, this dimension's default
765 value is scaled accordingly.  Works only with @code{two-sided} set
766 to true.
767
768 @item outer-margin
769 @funindex outer-margin
770
771 The margin all pages have at the outer side if they are part of a
772 book.  If the paper size is modified, this dimension's default
773 value is scaled accordingly.  Works only with @code{two-sided} set
774 to true.
775
776 @item binding-offset
777 @funindex binding-offset
778
779 The amount @code{inner-margin} is increased to make sure nothing
780 will be hidden by the binding.  If the paper size is modified,
781 this dimension's default value is scaled accordingly.  Works only
782 with @code{two-sided} set to true.
783
784 @end table
785
786 @seealso
787 Notation Reference:
788 @ref{Automatic scaling to paper size}.
789
790 Installed Files:
791 @file{ly/paper-defaults-init.ly}.
792
793
794 @node paper variables for shifts and indents
795 @unnumberedsubsubsec @code{@bs{}paper} variables for shifts and indents
796
797 Default values (before scaling) that are not listed here are
798 defined in @file{ly/paper-defaults-init.ly}.
799
800 @table @code
801
802 @item horizontal-shift
803 @funindex horizontal-shift
804
805 @c This default value is buried in the middle of page.scm.  -mp
806
807 The amount that all systems (including titles and system
808 separators) are shifted to the right.  Default: @code{0.0\mm}.
809
810 @item indent
811 @funindex indent
812
813 The level of indentation for the first system in a score.  If the
814 paper size is modified, this dimension's default value is scaled
815 accordingly.  This variable can also be set in a @code{\layout}
816 block.
817
818 @item short-indent
819 @funindex short-indent
820
821 The level of indentation for all systems in a score besides the
822 first system.  If the paper size is modified, this dimension's
823 default value is scaled accordingly.  This variable can also be
824 set in a @code{\layout} block.
825
826 @end table
827
828 @seealso
829 Notation Reference:
830 @ref{Automatic scaling to paper size}.
831
832 Installed Files:
833 @file{ly/paper-defaults-init.ly}.
834
835 Snippets:
836 @rlsr{Spacing}.
837
838
839 @node Other paper variables
840 @subsection Other @code{@bs{}paper} variables
841
842 @menu
843 * paper variables for line breaking::
844 * paper variables for page breaking::
845 * paper variables for page numbering::
846 * Miscellaneous paper variables::
847 @end menu
848
849
850 @node paper variables for line breaking
851 @unnumberedsubsubsec @code{@bs{}paper} variables for line breaking
852
853 @table @code
854
855 @item max-systems-per-page
856 @funindex max-systems-per-page
857
858 The maximum number of systems that will be placed on a page.  This
859 is currently supported only by the @code{ly:optimal-breaking} algorithm.
860 Default: unset.
861
862 @item min-systems-per-page
863 @funindex min-systems-per-page
864
865 The minimum number of systems that will be placed on a page.  This
866 may cause pages to be overfilled if it is made too large.  This is
867 currently supported only by the @code{ly:optimal-breaking} algorithm.
868 Default: unset.
869
870 @item systems-per-page
871 @funindex systems-per-page
872
873 The number of systems that should be placed on each page.
874 This is currently supported only by the @code{ly:optimal-breaking} algorithm.
875 Default: unset.
876
877 @item system-count
878 @funindex system-count
879
880 The number of systems to be used for a score.  Default: unset.
881 This variable can also be set in a @code{\layout} block.
882
883 @end table
884
885 @seealso
886 Notation Reference:
887 @ref{Line breaking}.
888
889
890 @node paper variables for page breaking
891 @unnumberedsubsubsec @code{@bs{}paper} variables for page breaking
892
893 Default values not listed here are defined in
894 @file{ly/paper-defaults-init.ly}
895
896 @table @code
897
898 @item page-breaking
899 @funindex page-breaking
900
901 The page-breaking algorithm to use.  Choices are
902 @code{ly:minimal-breaking}, @code{ly:page-turn-breaking},
903 @code{ly:one-line-breaking} and @code{ly:optimal-breaking}
904 (the default).
905
906 @item page-breaking-system-system-spacing
907 @funindex page-breaking-system-system-spacing
908
909 Tricks the page breaker into thinking that
910 @code{system-system-spacing} is set to something different than
911 it really is.  For example, if
912 @code{page-breaking-system-system-spacing #'padding} is set to something
913 substantially larger than @code{system-system-spacing #'padding}, then the
914 page-breaker will put fewer systems on each page.  Default: unset.
915
916 @item page-count
917 @funindex page-count
918
919 The number of pages to be used for a score, unset by default.
920
921 @end table
922
923 The following variables are effective only when @code{page-breaking}
924 is set to @code{ly:page-turn-breaking}.  Page breaks are then chosen
925 to minimize the number of page turns.  Since page turns are required
926 on moving from an odd-numbered page to an even-numbered one, a
927 layout in which the last page is odd-numbered will usually be
928 favoured.  Places where page turns are preferred can be indicated
929 manually by inserting @code{\allowPageTurn} or automatically by
930 including the @code{Page_turn_engraver} (see @ref{Optimal page turning}).
931
932 If there are insufficient choices available for making suitable page
933 turns, LilyPond may insert a blank page either within a score, between
934 scores (if there are two or more scores), or by ending a score on an
935 even-numbered page.  The values of the following three variables may
936 be increased to make these actions less likely.
937
938 The values are penalties, i.e. the higher the value the less likely
939 will be the associated action relative to other choices.
940
941 @table @code
942
943 @item blank-page-penalty
944 @funindex blank-page-penalty
945
946 The penalty for having a blank page in the middle of a score.  If
947 @code{blank-page-penalty} is large and @code{ly:page-turn-breaking} is
948 selected, then LilyPond will be less likely to insert a page in the
949 middle of a score.  Instead, it will space out the music further to
950 fill the blank page and the following one.  Default: 5.
951
952 @item blank-last-page-penalty
953 @funindex blank-last-page-penalty
954
955 The penalty for ending the score on an even-numbered page.  If
956 @code{blank-last-page-penalty} is large and
957 @code{ly:page-turn-breaking} is selected, then LilyPond will be less
958 likely to produce a score in which the last page is even-numbered.
959 Instead, it will adjust the spacing in order to use one page more or
960 one page less.  Default: 0.
961
962 @item blank-after-score-page-penalty
963 @funindex blank-after-score-page-penalty
964
965 The penalty for having a blank page after the end of one score and
966 before the next.  By default, this is smaller than
967 @code{blank-page-penalty}, so that blank pages after scores are
968 inserted in preference to blank pages within a score.  Default: 2.
969
970 @end table
971
972
973 @seealso
974 Notation Reference:
975 @ref{Page breaking},
976 @ref{Optimal page breaking},
977 @ref{Optimal page turning},
978 @ref{Minimal page breaking},
979 @ref{One-line page breaking}.
980
981 Installed Files:
982 @file{ly/paper-defaults-init.ly}.
983
984
985 @node paper variables for page numbering
986 @unnumberedsubsubsec @code{@bs{}paper} variables for page numbering
987
988 Default values not listed here are defined in
989 @file{ly/paper-defaults-init.ly}
990
991 @table @code
992
993 @cindex page numbers, auto-numbering
994 @item auto-first-page-number
995 @funindex auto-first-page-number
996
997 The page breaking algorithm is affected by the first page number
998 being odd or even.  If set to true, the page breaking algorithm
999 will decide whether to start with an odd or even number.  This
1000 will result in the first page number remaining as is or being
1001 increased by one.  Default: @code{#f}.
1002
1003 @cindex page numbers, specify the first
1004 @item first-page-number
1005 @funindex first-page-number
1006
1007 The value of the page number on the first page.
1008
1009 @item print-first-page-number
1010 @funindex print-first-page-number
1011
1012 If set to true, a page number is printed on the first page.
1013
1014 @cindex page numbers, suppress
1015 @item print-page-number
1016 @funindex print-page-number
1017
1018 If set to false, page numbers are not printed.
1019
1020 @end table
1021
1022 @seealso
1023 Installed Files:
1024 @file{ly/paper-defaults-init.ly}.
1025
1026 @knownissues
1027 Odd page numbers are always on the right.  If you want the
1028 music to start on page 1 there must be a blank page on the back
1029 of the cover page so that page 1 is on the right hand side.
1030
1031
1032 @node Miscellaneous paper variables
1033 @unnumberedsubsubsec Miscellaneous @code{@bs{}paper} variables
1034
1035 @table @code
1036
1037 @item page-spacing-weight
1038 @funindex page-spacing-weight
1039
1040 The relative importance of page (vertical) spacing and line
1041 (horizontal) spacing.  High values will make page spacing more
1042 important.  Default: @code{10}.
1043
1044 @item print-all-headers
1045 @funindex print-all-headers
1046
1047 If set to true, this will print all headers for each @code{\score}
1048 in the output.  Normally only the @code{piece} and @code{opus}
1049 header variables are printed.  Default: @code{#f}.
1050
1051 @item system-separator-markup
1052 @funindex system-separator-markup
1053
1054 A markup object that is inserted between systems, often used for
1055 orchestral scores.  Default: unset.  The @code{\slashSeparator}
1056 markup, defined in @file{ly/titling-init.ly}, is provided as a
1057 sensible default, for example:
1058
1059 @lilypond[quote,verbatim,noragged-right,line-width=30\mm]
1060 #(set-default-paper-size "a8")
1061
1062 \book {
1063   \paper {
1064     system-separator-markup = \slashSeparator
1065   }
1066   \header {
1067     tagline = ##f
1068   }
1069   \score {
1070     \relative c'' { c1 \break c1 \break c1 }
1071   }
1072 }
1073 @end lilypond
1074
1075 @end table
1076
1077 @seealso
1078 Installed Files:
1079 @file{ly/titling-init.ly}.
1080
1081 Snippets:
1082 @rlsr{Spacing}.
1083
1084 @knownissues
1085 The default page header puts the page number and the @code{instrument}
1086 field from the @code{\header} block on a line.
1087
1088
1089 @node Score layout
1090 @section Score layout
1091
1092 This section discusses score layout options for the @code{\layout}
1093 block.
1094
1095 @menu
1096 * The layout block::
1097 * Setting the staff size::
1098 @end menu
1099
1100
1101 @node The layout block
1102 @subsection The @code{@bs{}layout} block
1103
1104 @funindex \layout
1105
1106 While the @code{\paper} block contains settings that relate to the
1107 page formatting of the whole document, the @code{\layout} block
1108 contains settings for score-specific layout.  To set score layout
1109 options globally, enter them in a toplevel @code{\layout} block.
1110 To set layout options for an individual score, enter them in a
1111 @code{\layout} block inside the @code{\score} block, after the
1112 music.  Settings that can appear in a @code{\layout} block
1113 include:
1114
1115 @itemize
1116 @item the @code{layout-set-staff-size} scheme function,
1117 @item context modifications in @code{\context} blocks, and
1118 @item @code{\paper} variables that affect score layout.
1119 @end itemize
1120
1121 The @code{layout-set-staff-size} function is discussed in the next
1122 section, @ref{Setting the staff size}.  Context modifications are
1123 discussed in a separate chapter; see
1124 @ref{Modifying context plug-ins} and
1125 @ref{Changing context default settings}.  The @code{\paper}
1126 variables that can appear in a @code{\layout} block are:
1127
1128 @itemize
1129
1130 @item
1131 @code{line-width}, @code{ragged-right} and @code{ragged-last}
1132 (see @ref{paper variables for widths and margins,,@code{@bs{}paper} variables for widths and margins})
1133
1134 @item
1135 @code{indent} and @code{short-indent}
1136 (see @ref{paper variables for shifts and indents,,@code{@bs{}paper} variables for shifts and indents})
1137
1138 @item
1139 @code{system-count}
1140 (see @ref{paper variables for line breaking,,@code{@bs{}paper} variables for line breaking})
1141
1142 @end itemize
1143
1144 Here is an example @code{\layout} block:
1145
1146 @example
1147 \layout @{
1148   indent = 2\cm
1149   \context @{
1150     \StaffGroup
1151     \override StaffGrouper.staff-staff-spacing.basic-distance = #8
1152   @}
1153   \context @{
1154     \Voice
1155     \override TextScript.padding = #1
1156     \override Glissando.thickness = #3
1157   @}
1158 @}
1159 @end example
1160
1161 Multiple @code{\layout} blocks can be entered as toplevel expressions.
1162 This can, for example, be useful if different settings are stored in
1163 separate files and included optionally.  Internally, when
1164 a @code{\layout} block is evaluated, a copy of the current
1165 @code{\layout} configuration is made, then any changes defined within
1166 the block are applied and the result is saved as the new current
1167 configuration.  From the user's perspective the @code{\layout} blocks
1168 are combined, but in conflicting situations (when the same property
1169 is changed in different blocks) the later definitions take precedence.
1170
1171 For example, if this block:
1172
1173 @example
1174 \layout @{
1175   \context @{
1176     \Voice
1177     \override TextScript.color = #magenta
1178     \override Glissando.thickness = #1.5
1179   @}
1180 @}
1181 @end example
1182
1183 is placed after the one from the preceding example the @code{'padding}
1184 and @code{'color} overrides for @code{TextScript} are combined, but
1185 the later @code{'thickness} override for @code{Glissando} replaces
1186 (or hides) the earlier one.
1187
1188 @code{\layout} blocks may be assigned to variables for reuse later,
1189 but the way this works is slightly but significantly different from
1190 writing them literally.
1191
1192 If a variable is defined like this:
1193
1194 @example
1195 layoutVariable = \layout @{
1196   \context @{
1197     \Voice
1198     \override NoteHead.font-size = #4
1199   @}
1200 @}
1201 @end example
1202
1203 it will hold the current @code{\layout} configuration with the
1204 @code{NoteHead.font-size} override added, but this combination
1205 is @emph{not} saved as the new current configuration.  Be aware
1206 that the @q{current configuration} is read when the variable is
1207 defined and not when it is used, so the content of the variable
1208 is dependent on its position in the source.
1209
1210 The variable can then be used inside another @code{\layout} block,
1211 for example:
1212
1213 @example
1214 \layout @{
1215   \layoutVariable
1216   \context @{
1217     \Voice
1218     \override NoteHead.color = #red
1219   @}
1220 @}
1221 @end example
1222
1223 A @code{\layout} block containing a variable, as in the example above,
1224 does @emph{not} copy the current configuration but instead uses the
1225 content of @code{\layoutVariable} as the base configuration for the
1226 further additions.  This means that any changes defined between the
1227 definition and the use of the variable are lost.
1228
1229 If @code{layoutVariable} is defined (or @code{\include}d) immediately
1230 before being used, its content is just the current configuration plus
1231 the overrides defined within it.  So in the example above showing the
1232 use of @code{\layoutVariable} the final @code{\layout} block would
1233 consist of:
1234
1235 @example
1236   TextScript.padding = #1
1237   TextScript.color = #magenta
1238   Glissando.thickness = #1.5
1239   NoteHead.font-size = #4
1240   NoteHead.color = #red
1241 @end example
1242
1243 plus the @code{indent} and the @code{StaffGrouper} overrides.
1244
1245 But if the variable had already been defined before the first
1246 @code{\layout} block the current configuration would now contain
1247 only
1248
1249 @example
1250   NoteHead.font-size = #4 % (written in the variable definition)
1251   NoteHead.color = #red % (added after the use of the variable)
1252 @end example
1253
1254 If carefully planned, @code{\layout} variables can be a valuable tool
1255 to structure the layout design of sources, and also to reset the
1256 @code{\layout} configuration to a known state.
1257
1258 @seealso
1259 Notation Reference:
1260 @ref{Changing context default settings}.
1261
1262 Snippets:
1263 @rlsr{Spacing}.
1264
1265
1266 @node Setting the staff size
1267 @subsection Setting the staff size
1268
1269 @cindex font size, setting
1270 @cindex staff size, setting
1271 @funindex layout file
1272
1273 The default @strong{staff size} is set to 20 points.
1274 This may be changed in two ways:
1275
1276 To set the staff size globally for all scores in a file (or
1277 in a @code{book} block, to be precise), use @code{set-global-staff-size}.
1278
1279 @example
1280 #(set-global-staff-size 14)
1281 @end example
1282
1283 @noindent
1284 This sets the global default size to 14pt staff height and scales all
1285 fonts accordingly.
1286
1287 To set the staff size individually for each score, use
1288 @example
1289 \score@{
1290   @dots{}
1291   \layout @{
1292     #(layout-set-staff-size 15)
1293   @}
1294 @}
1295 @end example
1296
1297 The Feta font provides musical symbols at eight different
1298 sizes.  Each font is tuned for a different staff size: at a smaller size
1299 the font becomes heavier, to match the relatively heavier staff lines.
1300 The recommended font sizes are listed in the following table:
1301
1302 @quotation
1303 @multitable @columnfractions .15 .2 .22 .2
1304
1305 @item @b{font name}
1306 @tab @b{staff height (pt)}
1307 @tab @b{staff height (mm)}
1308 @tab @b{use}
1309
1310 @item feta11
1311 @tab 11.22
1312 @tab 3.9
1313 @tab pocket scores
1314
1315 @item feta13
1316 @tab 12.60
1317 @tab 4.4
1318 @tab
1319
1320 @item feta14
1321 @tab 14.14
1322 @tab 5.0
1323 @tab
1324
1325 @item feta16
1326 @tab 15.87
1327 @tab 5.6
1328 @tab
1329
1330 @item feta18
1331 @tab 17.82
1332 @tab 6.3
1333 @tab song books
1334
1335 @item feta20
1336 @tab 20
1337 @tab 7.0
1338 @tab standard parts
1339
1340 @item feta23
1341 @tab 22.45
1342 @tab 7.9
1343 @tab
1344
1345 @item feta26
1346 @tab 25.2
1347 @tab 8.9
1348 @tab
1349 @c modern rental material?
1350
1351 @end multitable
1352 @end quotation
1353
1354 These fonts are available in any sizes.  The context property
1355 @code{fontSize} and the layout property @code{staff-space} (in
1356 @rinternals{StaffSymbol}) can be used to tune the size for individual
1357 staves.  The sizes of individual staves are relative to the global size.
1358
1359 @seealso
1360 Notation Reference:
1361 @ref{Selecting notation font size}.
1362
1363 Snippets:
1364 @rlsr{Spacing}.
1365
1366 @knownissues
1367 @code{layout-set-staff-size} does not change the distance between the
1368 staff lines.
1369
1370
1371 @node Breaks
1372 @section Breaks
1373
1374 @menu
1375 * Line breaking::
1376 * Page breaking::
1377 * Optimal page breaking::
1378 * Optimal page turning::
1379 * Minimal page breaking::
1380 * One-line page breaking::
1381 * Explicit breaks::
1382 * Using an extra voice for breaks::
1383 @end menu
1384
1385
1386 @node Line breaking
1387 @subsection Line breaking
1388
1389 @cindex line breaks
1390 @cindex breaking lines
1391
1392 Line breaks are normally determined automatically.  They are chosen
1393 so that lines look neither cramped nor loose, and consecutive
1394 lines have similar density.
1395
1396 To manually force a line break at a bar line, use the
1397 @code{\break} command:
1398
1399 @lilypond[quote,ragged-right,relative=2,verbatim]
1400 c4 c c c | \break
1401 c4 c c c |
1402 @end lilypond
1403
1404 By default, a @code{\break} in the middle of a measure is ignored,
1405 and a warning is printed.  To force a line break in the middle of
1406 a measure, add an invisible bar line with @w{@samp{\bar ""}}:
1407
1408 @lilypond[quote,ragged-right,relative=2,verbatim]
1409 c4 c c
1410 \bar "" \break
1411 c |
1412 c4 c c c |
1413 @end lilypond
1414
1415 A @code{\break} occurring at a bar line is also ignored if the
1416 previous measure ends in the middle of a note, such as when a
1417 tuplet begins and ends in different measures.  To allow
1418 @code{\break} commands to work in these situations, remove the
1419 @code{Forbid_line_break_engraver} from the @code{Voice} context.
1420 Note that manually forced line breaks have to be added in parallel
1421 with the music:
1422
1423 @lilypond[quote,ragged-right,verbatim]
1424 \new Voice \with {
1425   \remove "Forbid_line_break_engraver"
1426 } \relative c'' {
1427   <<
1428     { c2. \tuplet 3/2 { c4 c c } c2. | }
1429     { s1 | \break s1 | }
1430   >>
1431 }
1432 @end lilypond
1433
1434 Similarly, line breaks are normally forbidden when beams cross bar
1435 lines.  This behavior can be changed by setting
1436 @code{\override Beam.breakable = ##t}:
1437
1438 @lilypond[quote,ragged-right,relative=2,verbatim]
1439 \override Beam.breakable = ##t
1440 c2. c8[ c | \break
1441 c8 c] c2. |
1442 @end lilypond
1443
1444 The @code{\noBreak} command forbids a line break at the bar line
1445 where it is inserted.
1446
1447 The most basic settings influencing line spacing are @code{indent}
1448 and @code{line-width}.  They are set in the @code{\layout} block.
1449 They control the indentation of the first line of music, and the
1450 lengths of the lines.
1451
1452 If @code{ragged-right} is set to true in the @code{\layout} block,
1453 then systems end at their natural horizontal length, instead of
1454 being spread horizontally to fill the whole line.  This is useful
1455 for short fragments, and for checking how tight the natural
1456 spacing is.
1457
1458 @c TODO Check and add para on default for ragged-right
1459
1460 The option @code{ragged-last} is similar to @code{ragged-right},
1461 but affects only the last line of the piece.
1462
1463 @example
1464 \layout @{
1465   indent = 0\mm
1466   line-width = 150\mm
1467   ragged-last = ##t
1468 @}
1469 @end example
1470
1471
1472
1473 @cindex regular line breaks
1474 @cindex four bar music.
1475
1476 For line breaks at regular intervals use @code{\break} separated by
1477 skips and repeated with @code{\repeat}.  For example, this would
1478 cause the following 28 measures (assuming 4/4 time) to be broken
1479 every 4 measures, and only there:
1480
1481 @example
1482 <<
1483   \repeat unfold 7 @{
1484     s1 \noBreak s1 \noBreak
1485     s1 \noBreak s1 \break
1486   @}
1487   @{ @var{the actual music@dots{}} @}
1488 >>
1489 @end example
1490
1491
1492 @predefined
1493 @funindex \break
1494 @code{\break},
1495 @funindex \noBreak
1496 @code{\noBreak}.
1497 @endpredefined
1498
1499 @seealso
1500 Notation Reference:
1501 @ref{paper variables for line breaking,,@code{@bs{}paper} variables for line breaking}.
1502
1503 Snippets:
1504 @rlsr{Spacing}.
1505
1506 Internals Reference:
1507 @rinternals{LineBreakEvent}.
1508
1509
1510 @node Page breaking
1511 @subsection Page breaking
1512
1513 The default page breaking may be overridden by inserting
1514 @code{\pageBreak} or @code{\noPageBreak} commands.  These commands are
1515 analogous to @code{\break} and @code{\noBreak}.  They should be
1516 inserted at a bar line.  These commands force and forbid a page-break
1517 from happening.  Of course, the @code{\pageBreak} command also forces
1518 a line break.
1519
1520 The @code{\pageBreak} and @code{\noPageBreak} commands may also be
1521 inserted at top-level, between scores and top-level markups.
1522
1523 There are also analogous settings to @code{ragged-right} and
1524 @code{ragged-last} which have the same effect on vertical spacing:
1525 @code{ragged-bottom} and @code{ragged-last-bottom}.  If set to
1526 @code{#t} the systems on all pages or just the last page
1527 respectively will not be justified vertically.  See
1528 @ref{Fixed vertical spacing paper variables,,Fixed vertical spacing @code{@bs{}paper} variables}.
1529
1530 Page breaks are computed by the @code{page-breaking} function.  LilyPond
1531 provides three algorithms for computing page breaks,
1532 @code{ly:optimal-breaking}, @code{ly:page-turn-breaking} and
1533 @code{ly:minimal-breaking}.  The default is @code{ly:optimal-breaking},
1534 but the value can be changed in the @code{\paper} block:
1535
1536 @example
1537 \paper @{
1538   page-breaking = #ly:page-turn-breaking
1539 @}
1540 @end example
1541
1542 @funindex \bookpart
1543
1544 When a book has many scores and pages, the page breaking problem may be
1545 difficult to solve, requiring large processing time and memory.  To ease
1546 the page breaking process, @code{\bookpart} blocks are used to divide
1547 the book into several parts: the page breaking occurs separately on each
1548 part.  Different page breaking functions may also be used in different
1549 book parts.
1550
1551 @example
1552 \bookpart @{
1553   \header @{
1554     subtitle = "Preface"
1555   @}
1556   \paper @{
1557      %% In a part consisting mostly of text,
1558      %% ly:minimal-breaking may be preferred
1559      page-breaking = #ly:minimal-breaking
1560   @}
1561   \markup @{ @dots{} @}
1562   @dots{}
1563 @}
1564 \bookpart @{
1565   %% In this part, consisting of music, the default optimal
1566   %% page breaking function is used.
1567   \header @{
1568     subtitle = "First movement"
1569   @}
1570   \score @{ @dots{} @}
1571   @dots{}
1572 @}
1573 @end example
1574
1575
1576 @predefined
1577 @funindex \pageBreak
1578 @code{\pageBreak},
1579 @funindex \noPageBreak
1580 @code{\noPageBreak}.
1581 @endpredefined
1582
1583 @seealso
1584 Notation Reference:
1585 @ref{paper variables for page breaking,,@code{@bs{}paper} variables for page breaking}.
1586
1587 Snippets:
1588 @rlsr{Spacing}.
1589
1590
1591 @node Optimal page breaking
1592 @subsection Optimal page breaking
1593
1594 @funindex ly:optimal-breaking
1595
1596 The @code{ly:optimal-breaking} function is LilyPond's default method of
1597 determining page breaks.  It attempts to find a page breaking that minimizes
1598 cramping and stretching, both horizontally and vertically.  Unlike
1599 @code{ly:page-turn-breaking}, it has no concept of page turns.
1600
1601 @seealso
1602 Snippets:
1603 @rlsr{Spacing}.
1604
1605
1606 @node Optimal page turning
1607 @subsection Optimal page turning
1608
1609 @funindex ly:page-turn-breaking
1610
1611 Often it is necessary to find a page breaking configuration so that there is
1612 a rest at the end of every second page.  This way, the musician can turn the
1613 page without having to miss notes.  The @code{ly:page-turn-breaking} function
1614 attempts to find a page breaking minimizing cramping and stretching, but with
1615 the additional restriction that it is only allowed to introduce page turns
1616 in specified places.
1617
1618 There are two steps to using this page breaking function.  First, you
1619 must enable it in the @code{\paper} block, as explained in @ref{Page
1620 breaking}.  Then you must tell the function where you would like to allow
1621 page breaks.
1622
1623 There are two ways to achieve the second step.  First, you can specify each
1624 potential page turn manually, by inserting @code{\allowPageTurn} into your
1625 input file at the appropriate places.
1626
1627 If this is too tedious, you can add a @code{Page_turn_engraver} to a Staff or
1628 Voice context.  The @code{Page_turn_engraver} will scan the context for
1629 sections without notes (note that it does not scan for rests; it scans for
1630 the absence of notes.  This is so that single-staff polyphony with rests in one
1631 of the parts does not throw off the @code{Page_turn_engraver}).  When it finds
1632 a sufficiently long section without notes, the @code{Page_turn_engraver} will
1633 insert an @code{\allowPageTurn} at the final bar line in that section, unless
1634 there is a @q{special} bar line (such as a double bar), in which case the
1635 @code{\allowPageTurn} will be inserted at the final @q{special} bar line in
1636 the section.
1637
1638 @funindex minimumPageTurnLength
1639 The @code{Page_turn_engraver} reads the context property
1640 @code{minimumPageTurnLength} to determine how long a note-free section must
1641 be before a page turn is considered.  The default value for
1642 @code{minimumPageTurnLength} is @code{(ly:make-moment 1/1)}.  If you want
1643 to disable page turns, you can set it to something very large.
1644
1645 @example
1646 \new Staff \with @{ \consists "Page_turn_engraver" @}
1647 @{
1648   a4 b c d |
1649   R1 | % a page turn will be allowed here
1650   a4 b c d |
1651   \set Staff.minimumPageTurnLength = #(ly:make-moment 5/2)
1652   R1 | % a page turn will not be allowed here
1653   a4 b r2 |
1654   R1*2 | % a page turn will be allowed here
1655   a1
1656 @}
1657 @end example
1658
1659 @funindex minimumRepeatLengthForPageTurn
1660 The @code{Page_turn_engraver} detects volta repeats.  It will only allow a page
1661 turn during the repeat if there is enough time at the beginning and end of the
1662 repeat to turn the page back.  The @code{Page_turn_engraver} can also disable
1663 page turns if the repeat is very short.  If you set the context property
1664 @code{minimumRepeatLengthForPageTurn} then the @code{Page_turn_engraver} will
1665 only allow turns in repeats whose duration is longer than this value.
1666
1667 The page turning commands, @code{\pageTurn}, @code{\noPageTurn} and
1668 @code{\allowPageTurn}, may also be used at top-level, between scores and
1669 top-level markups.
1670
1671 @predefined
1672 @funindex \pageTurn
1673 @code{\pageTurn},
1674 @funindex \noPageTurn
1675 @code{\noPageTurn},
1676 @funindex \allowPageTurn
1677 @code{\allowPageTurn}.
1678 @endpredefined
1679
1680 @seealso
1681 Notation Reference:
1682 @ref{paper variables for line breaking,,@code{@bs{}paper} variables for line breaking}.
1683
1684 Snippets:
1685 @rlsr{Spacing}.
1686
1687 @knownissues
1688 There should only be one @code{Page_turn_engraver} in a score.  If there is more
1689 than one, they will interfere with each other.
1690
1691
1692 @node Minimal page breaking
1693 @subsection Minimal page breaking
1694
1695 @funindex ly:minimal-breaking
1696
1697 The @code{ly:minimal-breaking} function performs minimal computations to
1698 calculate the page breaking: it fills a page with as many systems as
1699 possible before moving to the next one.  Thus, it may be preferred for
1700 scores with many pages, where the other page breaking functions could be
1701 too slow or memory demanding, or a lot of texts.  It is enabled using:
1702
1703 @example
1704 \paper @{
1705   page-breaking = #ly:minimal-breaking
1706 @}
1707 @end example
1708
1709 @seealso
1710 Snippets:
1711 @rlsr{Spacing}.
1712
1713 @node One-line page breaking
1714 @subsection One-line page breaking
1715
1716 @funindex ly:one-line-breaking
1717
1718 The @code{ly:one-line-breaking} function is a special-purpose
1719 page breaking algorithm that puts each score on its own page,
1720 and on a single line.  This page breaking function does not
1721 typeset titles or margins; only the score will be displayed.
1722
1723 The page width will be adjusted so that
1724 the longest score fits on one line.  In particular,
1725 @code{paper-width}, @code{line-width} and @code{indent}
1726 variables in the @code{\paper} block will be ignored, although
1727 @code{left-margin} and @code{right-margin} will
1728 still be honored.  The height of the page will
1729 be left unmodified.
1730
1731 @node Explicit breaks
1732 @subsection Explicit breaks
1733
1734 Lily sometimes rejects explicit @code{\break} and @code{\pageBreak}
1735 commands.  There are two commands to override this behavior:
1736
1737 @example
1738 \override NonMusicalPaperColumn.line-break-permission = ##f
1739 \override NonMusicalPaperColumn.page-break-permission = ##f
1740 @end example
1741
1742 When @code{line-break-permission} is overridden to false, Lily will insert
1743 line breaks at explicit @code{\break} commands and nowhere else.  When
1744 @code{page-break-permission} is overridden to false, Lily will insert
1745 page breaks at explicit @code{\pageBreak} commands and nowhere else.
1746
1747 @lilypond[quote,verbatim]
1748 \paper {
1749   indent = #0
1750   ragged-right = ##t
1751   ragged-bottom = ##t
1752 }
1753
1754 music = \relative c'' { c8 c c c }
1755
1756 \score {
1757   \new Staff {
1758     \repeat unfold 2 { \music } \break
1759     \repeat unfold 4 { \music } \break
1760     \repeat unfold 6 { \music } \break
1761     \repeat unfold 8 { \music } \pageBreak
1762     \repeat unfold 8 { \music } \break
1763     \repeat unfold 6 { \music } \break
1764     \repeat unfold 4 { \music } \break
1765     \repeat unfold 2 { \music }
1766   }
1767   \layout {
1768     \context {
1769       \Score
1770       \override NonMusicalPaperColumn.line-break-permission = ##f
1771       \override NonMusicalPaperColumn.page-break-permission = ##f
1772     }
1773   }
1774 }
1775 @end lilypond
1776
1777 @seealso
1778 Snippets:
1779 @rlsr{Spacing}.
1780
1781
1782 @node Using an extra voice for breaks
1783 @subsection Using an extra voice for breaks
1784
1785 Line- and page-breaking information usually appears within note entry directly.
1786
1787 @example
1788 music = \relative c'' @{ c4 c c c @}
1789
1790 \score @{
1791   \new Staff @{
1792     \repeat unfold 2 @{ \music @} \break
1793     \repeat unfold 3 @{ \music @}
1794   @}
1795 @}
1796 @end example
1797
1798 This makes @code{\break} and @code{\pageBreak} commands easy to enter but mixes
1799 music entry with information that specifies how music should lay out
1800 on the page.  You can keep music entry and line- and page-breaking
1801 information in two separate places by introducing an extra voice to
1802 contain the  breaks.  This extra voice
1803 contains only skips together with @code{\break}, @code{pageBreak} and other
1804 breaking layout information.
1805
1806 @lilypond[quote,verbatim]
1807 music = \relative c'' { c4 c c c }
1808
1809 \header { tagline = ##f }
1810 \paper { left-margin = 0\mm }
1811 \book {
1812   \score {
1813     \new Staff <<
1814       \new Voice {
1815         s1 * 2 \break
1816         s1 * 3 \break
1817         s1 * 6 \break
1818         s1 * 5 \break
1819       }
1820       \new Voice {
1821         \repeat unfold 2 { \music }
1822         \repeat unfold 3 { \music }
1823         \repeat unfold 6 { \music }
1824         \repeat unfold 5 { \music }
1825       }
1826     >>
1827   }
1828 }
1829 @end lilypond
1830
1831 This pattern becomes especially helpful when overriding
1832 @code{line-break-system-details} and the other useful but long properties of
1833 @code{NonMusicalPaperColumnGrob}, as explained in @ref{Vertical spacing}.
1834
1835 @lilypond[quote,verbatim]
1836 music = \relative c'' { c4 c c c }
1837
1838 \header { tagline = ##f }
1839 \paper { left-margin = 0\mm }
1840 \book {
1841   \score {
1842     \new Staff <<
1843       \new Voice {
1844         \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
1845           #'((Y-offset . 0))
1846         s1 * 2 \break
1847
1848         \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
1849           #'((Y-offset . 5))
1850         s1 * 3 \break
1851
1852         \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
1853           #'((Y-offset . 15))
1854         s1 * 6 \break
1855
1856         \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
1857           #'((Y-offset . 30))
1858         s1 * 5 \break
1859       }
1860       \new Voice {
1861         \repeat unfold 2 { \music }
1862         \repeat unfold 3 { \music }
1863         \repeat unfold 6 { \music }
1864         \repeat unfold 5 { \music }
1865       }
1866     >>
1867   }
1868 }
1869 @end lilypond
1870
1871 @seealso
1872 Notation Reference:
1873 @ref{Vertical spacing}.
1874
1875 Snippets:
1876 @rlsr{Spacing}.
1877
1878
1879 @node Vertical spacing
1880 @section Vertical spacing
1881
1882 @cindex vertical spacing
1883 @cindex spacing, vertical
1884
1885 Vertical spacing is controlled by three things: the amount of
1886 space available (i.e., paper size and margins), the amount of
1887 space between systems, and the amount of space between
1888 staves inside a system.
1889
1890 @menu
1891 * Flexible vertical spacing within systems::
1892 * Explicit staff and system positioning::
1893 * Vertical collision avoidance::
1894 @end menu
1895
1896
1897 @node Flexible vertical spacing within systems
1898 @subsection Flexible vertical spacing within systems
1899
1900 @cindex distance between staves
1901 @cindex staff distance
1902 @cindex space between staves
1903 @cindex space inside systems
1904
1905 Three separate mechanisms control the flexible vertical spacing
1906 within systems, one for each of the following categories:
1907
1908 @itemize
1909
1910 @item
1911 @emph{ungrouped staves},
1912
1913 @item
1914 @emph{grouped staves} (staves within a staff-group such as
1915 @code{ChoirStaff}, etc.), and
1916
1917 @item
1918 @emph{non-staff lines} (such as @code{Lyrics}, @code{ChordNames},
1919 etc.).
1920
1921 @end itemize
1922
1923 @c TODO: Clarify this.  This almost implies that non-staff lines
1924 @c       have NO effect on the spacing between staves.  -mp
1925
1926 The height of each system is determined in two steps.  First, all
1927 of the staves are spaced according to the amount of space
1928 available.  Then, the non-staff lines are distributed between the
1929 staves.
1930
1931 Note that the spacing mechanisms discussed in this section only
1932 control the vertical spacing of staves and non-staff lines within
1933 individual systems.  The vertical spacing between separate
1934 systems, scores, markups, and margins is controlled by
1935 @code{\paper} variables, which are discussed in
1936 @ref{Flexible vertical spacing paper variables,,Flexible vertical spacing @code{@bs{}paper} variables}.
1937
1938 @menu
1939 * Within-system spacing properties::
1940 * Spacing of ungrouped staves::
1941 * Spacing of grouped staves::
1942 * Spacing of non-staff lines::
1943 @end menu
1944
1945
1946 @node Within-system spacing properties
1947 @unnumberedsubsubsec Within-system spacing properties
1948
1949 @funindex staff-affinity
1950 @funindex staffgroup-staff-spacing
1951 @funindex staff-staff-spacing
1952 @funindex nonstaff-unrelatedstaff-spacing
1953 @funindex nonstaff-relatedstaff-spacing
1954 @funindex nonstaff-nonstaff-spacing
1955 @funindex default-staff-staff-spacing
1956 @funindex minimum-Y-extent
1957 @funindex extra-offset
1958 @funindex self-alignment-X
1959 @funindex X-offset
1960 @funindex VerticalAxisGroup
1961
1962 The within-system vertical spacing mechanisms are controlled by
1963 two sets of grob properties.  The first set is associated with the
1964 @code{VerticalAxisGroup} grob, which is created by all staves and
1965 non-staff lines.  The second set is associated with the
1966 @code{StaffGrouper} grob, which can be created by staff-groups,
1967 but only if explicitly called.  These properties are described
1968 individually at the end of this section.
1969
1970 The names of these properties (except for @code{staff-affinity})
1971 follow the format @code{@var{item1}-@var{item2}-spacing}, where
1972 @code{@var{item1}} and @code{@var{item2}} are the items to be
1973 spaced.  Note that @code{@var{item2}} is not necessarily below
1974 @code{@var{item1}}; for example,
1975 @code{nonstaff-relatedstaff-spacing} will measure upwards from the
1976 non-staff line if @code{staff-affinity} is @code{UP}.
1977
1978 Each distance is measured between the @emph{reference points} of
1979 the two items.  The reference point for a staff is the vertical
1980 center of its @code{StaffSymbol} (i.e. the middle line if
1981 @code{line-count} is odd; the middle space if @code{line-count} is
1982 even).  The reference points for individual non-staff lines are
1983 given in the following table:
1984
1985 @multitable {Non-staff line} {Reference point}
1986 @headitem Non-staff line @tab Reference point
1987 @item @code{ChordNames}  @tab baseline
1988 @item @code{NoteNames}   @tab baseline
1989 @item @code{Lyrics}      @tab baseline
1990 @item @code{Dynamics}    @tab mid-height of @q{m}
1991 @item @code{FiguredBass} @tab highest point
1992 @item @code{FretBoards}  @tab top line
1993 @end multitable
1994
1995 In the following image, horizontal lines indicate the positions
1996 of these reference points:
1997
1998 @lilypond[quote,noragged-right,line-width=110\mm]
1999 #(define zero-space '((padding . -inf.0) (basic-distance . 0)))
2000
2001 alignToZero = \with {
2002   \override VerticalAxisGroup.nonstaff-relatedstaff-spacing = #zero-space
2003   \override VerticalAxisGroup.nonstaff-nonstaff-spacing = #zero-space
2004   \override VerticalAxisGroup.staff-affinity = #DOWN
2005   \remove Text_engraver % avoid having two
2006   \consists Text_engraver
2007 }
2008 lowerCaseChords = \with {
2009   chordNameLowercaseMinor = ##t
2010 }
2011 labelContext =
2012 #(define-music-function
2013      (parser location context)
2014      (string?)
2015      #{ s1*0^\markup { \upright {\typewriter #context } } #})
2016
2017 \layout {
2018   \context { \Dynamics    \alignToZero }
2019   \context { \FiguredBass \alignToZero }
2020   \context { \Lyrics      \alignToZero }
2021   \context { \NoteNames   \alignToZero }
2022   \context { \ChordNames  \alignToZero \lowerCaseChords }
2023   \context { \FretBoards  \alignToZero }
2024   \context { \Score
2025     \omit BarLine
2026     \override DynamicText.self-alignment-X = #-1
2027     \override FretBoard.X-offset = #1.75
2028     \override InstrumentName.minimum-Y-extent = #'(-1 . 2)
2029     \textLengthOn
2030     \omit TimeSignature
2031   }
2032 }
2033
2034 %% These contexts have reference points at the baseline:
2035 %%   ChordNames, NoteNames, and Lyrics
2036 <<
2037   \new ChordNames { \chords { \labelContext "ChordNames"  g1:m } }
2038   \new NoteNames { s1 |\labelContext "NoteNames"  g1 | }
2039   \new Lyrics { \lyrics { \skip 1*2 | \labelContext "Lyrics" ghijk1 | } }
2040   \new RhythmicStaff \with { instrumentName = #"baseline " } s1*3
2041 >>
2042
2043 %% The reference point for Dynamics is the midline of 'm' in the font
2044 <<
2045   \new Dynamics { \labelContext "Dynamics" s1\mp s\fp }
2046   \new RhythmicStaff \with { instrumentName = #"mid-height " } s1*3
2047 >>
2048
2049 %% The reference point for FiguredBass is its highest point
2050 <<
2051   \new FiguredBass { \labelContext "FiguredBass" \figuremode { <6 5>1 } }
2052   \new RhythmicStaff \with { instrumentName = #"highest point " } s1
2053 >>
2054
2055 %% The reference point for FretBoards is the top line
2056 \include "predefined-guitar-fretboards.ly"
2057 <<
2058   \new FretBoards { \labelContext "FretBoards" \chordmode { e1 } }
2059   \new RhythmicStaff \with { instrumentName = #"top line " } s1
2060 >>
2061 @end lilypond
2062
2063 Each of the vertical spacing grob properties (except
2064 @code{staff-affinity}) uses the same alist structure as the
2065 @code{\paper} spacing variables discussed in
2066 @ref{Flexible vertical spacing paper variables,,Flexible vertical spacing @code{@bs{}paper} variables}.
2067 Specific methods
2068 for modifying alists are discussed in @ref{Modifying alists}.
2069 Grob properties should be adjusted with an @code{\override} inside
2070 a @code{\score} or @code{\layout} block, and not inside a
2071 @code{\paper} block.
2072
2073 The following example demonstrates the two ways these alists can
2074 be modified.  The first declaration updates one key-value
2075 individually, and the second completely re-defines the property:
2076
2077 @example
2078 \new Staff \with @{
2079   \override VerticalAxisGroup.default-staff-staff-spacing.basic-distance = #10
2080 @} @{ @dots{} @}
2081
2082 \new Staff \with @{
2083   \override VerticalAxisGroup.default-staff-staff-spacing =
2084     #'((basic-distance . 10)
2085        (minimum-distance . 9)
2086        (padding . 1)
2087        (stretchability . 10))
2088 @} @{ @dots{} @}
2089 @end example
2090
2091 To change any spacing settings globally, put them in the
2092 @code{\layout} block:
2093
2094 @example
2095 \layout @{
2096   \context @{
2097     \Staff
2098     \override VerticalAxisGroup.default-staff-staff-spacing.basic-distance = #10
2099   @}
2100 @}
2101 @end example
2102
2103 Standard settings for the vertical spacing grob properties are
2104 listed in @rinternals{VerticalAxisGroup} and
2105 @rinternals{StaffGrouper}.  Default overrides for specific types
2106 of non-staff lines are listed in the relevant context descriptions
2107 in @rinternals{Contexts}.
2108
2109
2110 @subsubheading Properties of the @code{VerticalAxisGroup} grob
2111
2112 @code{VerticalAxisGroup} properties are typically adjusted with an
2113 @code{\override} at the @code{Staff} level (or equivalent).
2114
2115 @table @code
2116 @item staff-staff-spacing
2117
2118 Used to determine the distance between the current staff and the
2119 staff just below it in the same system, even if one or more
2120 non-staff lines (such as @code{Lyrics}) are placed between the two
2121 staves.  Does not apply to the bottom staff of a system.
2122
2123 Initially, the @code{staff-staff-spacing} of a
2124 @code{VerticalAxisGroup} is a Scheme function that applies the
2125 properties of the @code{StaffGrouper} if the staff is part of a
2126 group, or the @code{default-staff-staff-spacing} of the staff
2127 otherwise.  This allows staves to be spaced differently when they
2128 are grouped.  For uniform spacing regardless of grouping, this
2129 function may be replaced by a flexible-spacing alist, using the
2130 complete-redefinition form of override shown above.
2131
2132 @item default-staff-staff-spacing
2133 A flexible-spacing alist defining the @code{staff-staff-spacing} used for
2134 ungrouped staves, unless @code{staff-staff-spacing} has been explicitly
2135 set with an @code{\override}.
2136
2137 @item staff-affinity
2138 The direction of the staff to use for spacing the current
2139 non-staff line.  Choices are @code{UP}, @code{DOWN}, and
2140 @code{CENTER}.  If @code{CENTER}, the non-staff line will be
2141 placed equidistant between the two nearest staves on either side,
2142 unless collisions or other spacing constraints prevent this.
2143 Adjacent non-staff lines should have non-increasing
2144 @code{staff-affinity} from top to bottom, e.g. a non-staff line
2145 set to @code{UP} should not immediately follow one that is set to
2146 @code{DOWN}.  Non-staff lines at the top of a system should use
2147 @code{DOWN}; those at the bottom should use @code{UP}.  Setting
2148 @code{staff-affinity} for a staff causes it to be treated as a
2149 non-staff line.  Setting @code{staff-affinity} to @code{#f} causes
2150 a non-staff line to be treated as a staff.  Setting
2151 @code{staff-affinity} to @code{UP}, @code{CENTER}, or @code{DOWN}
2152 causes a staff to be spaced as a non-staff line.
2153
2154 @item nonstaff-relatedstaff-spacing
2155 The distance between the current non-staff line and the nearest
2156 staff in the direction of @code{staff-affinity}, if there are no
2157 non-staff lines between the two, and @code{staff-affinity} is
2158 either @code{UP} or @code{DOWN}.  If @code{staff-affinity} is
2159 @code{CENTER}, then @code{nonstaff-relatedstaff-spacing} is used
2160 for the nearest staves on @emph{both} sides, even if other
2161 non-staff lines appear between the current one and either of the
2162 staves.  This means that the placement of a non-staff line depends
2163 on both the surrounding staves and the surrounding non-staff lines.
2164 Setting the @code{stretchability} of one of these types of spacing to
2165 a small value will make that spacing dominate.  Setting the
2166 @code{stretchability} to a large value will make that spacing have
2167 little effect.
2168
2169 @item nonstaff-nonstaff-spacing
2170 The distance between the current non-staff line and the next
2171 non-staff line in the direction of @code{staff-affinity}, if both
2172 are on the same side of the related staff, and
2173 @code{staff-affinity} is either @code{UP} or @code{DOWN}.
2174
2175 @item nonstaff-unrelatedstaff-spacing
2176 The distance between the current non-staff line and the staff in
2177 the opposite direction from @code{staff-affinity}, if there are no
2178 other non-staff lines between the two, and @code{staff-affinity}
2179 is either @code{UP} or @code{DOWN}.  This can be used, for
2180 example, to require a minimum amount of padding between a
2181 @code{Lyrics} line and the staff to which it does not belong.
2182 @end table
2183
2184
2185 @subsubheading Properties of the @code{StaffGrouper} grob
2186
2187 @code{StaffGrouper} properties are typically adjusted with an
2188 @code{\override} at the @code{StaffGroup} level (or equivalent).
2189
2190 @table @code
2191 @item staff-staff-spacing
2192 The distance between consecutive staves within the current
2193 staff-group.  The @code{staff-staff-spacing} property of an
2194 individual staff's @code{VerticalAxisGroup} grob can be
2195 overriden with different spacing settings for that staff.
2196
2197 @item staffgroup-staff-spacing
2198 The distance between the last staff of the current staff-group and
2199 the staff just below it in the same system, even if one or more
2200 non-staff lines (such as @code{Lyrics}) exist between the two
2201 staves.  Does not apply to the bottom staff of a system.  The
2202 @code{staff-staff-spacing} property of an individual staff's
2203 @code{VerticalAxisGroup} grob can be overriden with different
2204 spacing settings for that staff.
2205 @end table
2206
2207 @seealso
2208 Notation Reference:
2209 @ref{Flexible vertical spacing paper variables,,Flexible vertical spacing @code{@bs{}paper} variables},
2210 @ref{Modifying alists}.
2211
2212 Installed Files:
2213 @file{ly/engraver-init.ly},
2214 @file{scm/define-grobs.scm}.
2215
2216 Internals Reference:
2217 @rinternals{Contexts},
2218 @rinternals{VerticalAxisGroup},
2219 @rinternals{StaffGrouper}.
2220
2221
2222 @node Spacing of ungrouped staves
2223 @unnumberedsubsubsec Spacing of ungrouped staves
2224
2225 @emph{Staves} (such as @code{Staff}, @code{DrumStaff},
2226 @code{TabStaff}, etc.) are contexts that can contain one or more
2227 voice contexts, but cannot contain any other staves.
2228
2229 The following properties affect the spacing of @emph{ungrouped}
2230 staves:
2231
2232 @itemize
2233 @item @code{VerticalAxisGroup} properties:
2234 @itemize
2235 @item @code{default-staff-staff-spacing}
2236 @item @code{staff-staff-spacing}
2237 @end itemize
2238 @end itemize
2239
2240 These grob properties are described individually above; see
2241 @ref{Within-system spacing properties}.
2242
2243 Additional properties are involved for staves that are part of a
2244 staff-group; see @ref{Spacing of grouped staves}.
2245
2246 The following example shows how the @code{default-staff-staff-spacing}
2247 property can affect the spacing of ungrouped staves.
2248 The same overrides applied to @code{staff-staff-spacing} would
2249 have the same effect, but would also apply in cases where the staves
2250 are combined in a group or groups.
2251
2252 @lilypond[verbatim,quote,staffsize=16]
2253 \layout {
2254   \context {
2255     \Staff
2256     \override VerticalAxisGroup.default-staff-staff-spacing =
2257       #'((basic-distance . 8)
2258          (minimum-distance . 7)
2259          (padding . 1))
2260   }
2261 }
2262
2263 <<
2264   % The very low note here needs more room than 'basic-distance
2265   % can provide, so the distance between this staff and the next
2266   % is determined by 'padding.
2267   \new Staff { b,2 r | }
2268
2269   % Here, 'basic-distance provides enough room, and there is no
2270   % need to compress the space (towards 'minimum-distance) to make
2271   % room for anything else on the page, so the distance between
2272   % this staff and the next is determined by 'basic-distance.
2273   \new Staff { \clef bass g2 r | }
2274
2275   % By setting 'padding to a negative value, staves can be made to
2276   % collide.  The lowest acceptable value for 'basic-distance is 0.
2277   \new Staff \with {
2278     \override VerticalAxisGroup.default-staff-staff-spacing =
2279       #'((basic-distance . 3.5)
2280          (padding . -10))
2281   } { \clef bass g2 r | }
2282   \new Staff { \clef bass g2 r | }
2283 >>
2284 @end lilypond
2285
2286 @seealso
2287 Installed Files:
2288 @file{scm/define-grobs.scm}.
2289
2290 Snippets:
2291 @rlsr{Spacing}.
2292
2293 Internals Reference:
2294 @rinternals{VerticalAxisGroup}.
2295
2296
2297 @node Spacing of grouped staves
2298 @unnumberedsubsubsec Spacing of grouped staves
2299
2300 In orchestral and other large scores, it is common to place staves
2301 in groups.  The space between groups is typically larger than the
2302 space between staves of the same group.
2303
2304 @emph{Staff-groups} (such as @code{StaffGroup}, @code{ChoirStaff},
2305 etc.) are contexts that can contain one or more staves
2306 simultaneously.
2307
2308 The following properties affect the spacing of staves inside
2309 staff-groups:
2310
2311 @itemize
2312 @item @code{VerticalAxisGroup} properties:
2313 @itemize
2314 @item @code{staff-staff-spacing}
2315 @end itemize
2316 @item @code{StaffGrouper} properties:
2317 @itemize
2318 @item @code{staff-staff-spacing}
2319 @item @code{staffgroup-staff-spacing}
2320 @end itemize
2321 @end itemize
2322
2323 These grob properties are described individually above; see
2324 @ref{Within-system spacing properties}.
2325
2326 The following example shows how properties of the
2327 @code{StaffGrouper} grob can affect the spacing of grouped staves:
2328
2329 @lilypond[verbatim,quote,staffsize=16]
2330 \layout {
2331   \context {
2332     \Score
2333     \override StaffGrouper.staff-staff-spacing.padding = #0
2334     \override StaffGrouper.staff-staff-spacing.basic-distance = #1
2335   }
2336 }
2337
2338 <<
2339   \new PianoStaff \with {
2340     \override StaffGrouper.staffgroup-staff-spacing.basic-distance = #20
2341   } <<
2342     \new Staff { c'1 }
2343     \new Staff { c'1 }
2344   >>
2345
2346   \new StaffGroup <<
2347     \new Staff { c'1 }
2348     \new Staff { c'1 }
2349   >>
2350 >>
2351 @end lilypond
2352
2353 @seealso
2354 Installed Files:
2355 @file{scm/define-grobs.scm}.
2356
2357 Snippets:
2358 @rlsr{Spacing}.
2359
2360 Internals Reference:
2361 @rinternals{VerticalAxisGroup},
2362 @rinternals{StaffGrouper}.
2363
2364
2365 @node Spacing of non-staff lines
2366 @unnumberedsubsubsec Spacing of non-staff lines
2367
2368 @emph{Non-staff lines} (such as @code{Lyrics}, @code{ChordNames},
2369 etc.) are contexts whose layout objects are engraved like staves
2370 (i.e. in horizontal lines within systems).  Specifically,
2371 non-staff lines are non-staff contexts that create the
2372 @code{VerticalAxisGroup} layout object.
2373
2374 The following properties affect the spacing of non-staff lines:
2375
2376 @itemize
2377 @item @code{VerticalAxisGroup} properties:
2378 @itemize
2379 @item @code{staff-affinity}
2380 @item @code{nonstaff-relatedstaff-spacing}
2381 @item @code{nonstaff-nonstaff-spacing}
2382 @item @code{nonstaff-unrelatedstaff-spacing}
2383 @end itemize
2384 @end itemize
2385
2386 These grob properties are described individually above; see
2387 @ref{Within-system spacing properties}.
2388
2389 The following example shows how the
2390 @code{nonstaff-nonstaff-spacing} property can affect the spacing
2391 of consecutive non-staff lines.  Here, by setting the
2392 @code{stretchability} key to a very high value, the lyrics are
2393 able to stretch much more than usual:
2394
2395 @lilypond[verbatim,quote,staffsize=16]
2396 \layout {
2397   \context {
2398     \Lyrics
2399     \override VerticalAxisGroup.nonstaff-nonstaff-spacing.stretchability = #1000
2400   }
2401 }
2402
2403 \new StaffGroup
2404 <<
2405   \new Staff \with {
2406     \override VerticalAxisGroup.staff-staff-spacing = #'((basic-distance . 30))
2407   } { c'1 }
2408   \new Lyrics \with {
2409     \override VerticalAxisGroup.staff-affinity = #UP
2410   } \lyricmode { up }
2411   \new Lyrics \with {
2412     \override VerticalAxisGroup.staff-affinity = #CENTER
2413   } \lyricmode { center }
2414   \new Lyrics \with {
2415     \override VerticalAxisGroup.staff-affinity = #DOWN
2416   } \lyricmode { down }
2417   \new Staff { c'1 }
2418 >>
2419 @end lilypond
2420
2421 @seealso
2422 Installed Files:
2423 @file{ly/engraver-init.ly},
2424 @file{scm/define-grobs.scm}.
2425
2426 Snippets:
2427 @rlsr{Spacing}.
2428
2429 @c @lsr{spacing,page-spacing.ly},
2430 @c @lsr{spacing,alignment-vertical-spacing.ly}.
2431
2432 Internals Reference:
2433 @rinternals{Contexts},
2434 @rinternals{VerticalAxisGroup}.
2435
2436
2437 @node Explicit staff and system positioning
2438 @subsection Explicit staff and system positioning
2439
2440 One way to understand the flexible vertical spacing mechanisms
2441 explained above is as a collection of settings that control the
2442 amount of vertical padding between staves and systems.
2443
2444 It is possible to approach vertical spacing in a different way
2445 using @code{NonMusicalPaperColumn.line-break-system-details}.
2446 While the flexible vertical spacing mechanisms specify vertical
2447 padding, @code{NonMusicalPaperColumn.line-break-system-details}
2448 can specify exact vertical positions on the page.
2449
2450 @code{NonMusicalPaperColumn.line-break-system-details} accepts
2451 an associative list of three different settings:
2452
2453 @itemize
2454 @item @code{X-offset}
2455 @item @code{Y-offset}
2456 @item @code{alignment-distances}
2457 @end itemize
2458
2459 Grob overrides, including the overrides for @code{NonMusicalPaperColumn}
2460 below, can occur in any of three different places in an input file:
2461
2462 @itemize
2463 @item in the middle of note entry directly
2464 @item in a @code{\context} block
2465 @item in the @code{\with} block
2466 @end itemize
2467
2468 When we override @code{NonMusicalPaperColumn}, we use the usual
2469 @code{\override} command in @code{\context} blocks and in the
2470 @code{\with} block.  On the other hand, when we override
2471 @code{NonMusicalPaperColumn} in the middle of note entry,
2472 use the special @code{\overrideProperty} command.  Here are some
2473 example @code{NonMusicalPaperColumn} overrides with the special
2474 @code{\overrideProperty} command:
2475
2476 @example
2477 \overrideProperty NonMusicalPaperColumn.line-break-system-details
2478   #'((X-offset . 20))
2479
2480 \overrideProperty NonMusicalPaperColumn.line-break-system-details
2481   #'((Y-offset . 40))
2482
2483 \overrideProperty NonMusicalPaperColumn.line-break-system-details
2484   #'((X-offset . 20)
2485      (Y-offset . 40))
2486
2487 \overrideProperty NonMusicalPaperColumn.line-break-system-details
2488   #'((alignment-distances . (15)))
2489
2490 \overrideProperty NonMusicalPaperColumn.line-break-system-details
2491   #'((X-offset . 20)
2492      (Y-offset . 40)
2493      (alignment-distances . (15)))
2494 @end example
2495
2496 To understand how each of these different settings work, we begin
2497 by looking at an example that includes no overrides at all.
2498
2499 @c \book { } is required in these examples to ensure the spacing
2500 @c overrides can be seen between systems. -np
2501
2502 @lilypond[verbatim,quote,staffsize=16]
2503 \header { tagline = ##f }
2504 \paper { left-margin = 0\mm }
2505 \book {
2506   \score {
2507     <<
2508       \new Staff <<
2509         \new Voice {
2510           s1*5 \break
2511           s1*5 \break
2512           s1*5 \break
2513         }
2514         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
2515       >>
2516       \new Staff {
2517         \repeat unfold 15 { d'4 d' d' d' }
2518       }
2519     >>
2520   }
2521 }
2522 @end lilypond
2523
2524 This score isolates line- and page-breaking information in a dedicated
2525 voice.  This technique of creating a breaks voice will help keep layout
2526 separate from music entry as our example becomes more complicated.
2527 See @ref{Using an extra voice for breaks}.
2528
2529 Explicit @code{\breaks} evenly divide the music into six measures per
2530 line.  Vertical spacing results from LilyPond's defaults.  To set
2531 the vertical startpoint of each system explicitly, we can set
2532 the @code{Y-offset} pair in the @code{line-break-system-details}
2533 attribute of the @code{NonMusicalPaperColumn} grob:
2534
2535 @lilypond[verbatim,quote,staffsize=16]
2536 \header { tagline = ##f }
2537 \paper { left-margin = 0\mm }
2538 \book {
2539   \score {
2540     <<
2541       \new Staff <<
2542         \new Voice {
2543           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2544             #'((Y-offset . 0))
2545           s1*5 \break
2546           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2547             #'((Y-offset . 40))
2548           s1*5 \break
2549           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2550             #'((Y-offset . 60))
2551           s1*5 \break
2552         }
2553         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
2554       >>
2555       \new Staff {
2556         \repeat unfold 15 { d'4 d' d' d' }
2557       }
2558     >>
2559   }
2560 }
2561 @end lilypond
2562
2563 Note that @code{line-break-system-details} takes an associative list of
2564 potentially many values, but that we set only one value here.  Note,
2565 too, that the @code{Y-offset} property here determines the exact vertical
2566 position on the page at which each new system will render.
2567
2568 Now that we have set the vertical startpoint of each system
2569 explicitly, we can also set the vertical distances between staves
2570 within each system manually.  We do this using the @code{alignment-distances}
2571 subproperty of @code{line-break-system-details}.
2572
2573 @lilypond[verbatim,quote,staffsize=16]
2574 \header { tagline = ##f }
2575 \paper { left-margin = 0\mm }
2576 \book {
2577   \score {
2578     <<
2579       \new Staff <<
2580         \new Voice {
2581           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2582             #'((Y-offset . 20)
2583                (alignment-distances . (10)))
2584           s1*5 \break
2585           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2586             #'((Y-offset . 60)
2587                (alignment-distances . (15)))
2588           s1*5 \break
2589           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2590           #'((Y-offset . 85)
2591              (alignment-distances . (20)))
2592           s1*5 \break
2593         }
2594         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
2595       >>
2596       \new Staff {
2597         \repeat unfold 15 { d'4 d' d' d' }
2598       }
2599     >>
2600   }
2601 }
2602 @end lilypond
2603
2604 Note that here we assign two different values to the
2605 @code{line-break-system-details} attribute of the
2606 @code{NonMusicalPaperColumn} grob.  Though the
2607 @code{line-break-system-details} attribute alist accepts many
2608 additional spacing parameters (including, for example, a corresponding
2609 @code{X-offset} pair), we need only set the @code{Y-offset} and
2610 @code{alignment-distances} pairs to control the vertical startpoint of
2611 every system and every staff.  Finally, note that @code{alignment-distances}
2612 specifies the vertical positioning of staves but not of staff groups.
2613
2614 @lilypond[verbatim,quote,staffsize=16]
2615 \header { tagline = ##f }
2616 \paper { left-margin = 0\mm }
2617 \book {
2618   \score {
2619     <<
2620       \new Staff <<
2621         \new Voice {
2622           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2623             #'((Y-offset . 0)
2624                (alignment-distances . (30 10)))
2625           s1*5 \break
2626           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2627             #'((Y-offset . 60)
2628                (alignment-distances . (10 10)))
2629           s1*5 \break
2630           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2631             #'((Y-offset . 100)
2632                (alignment-distances . (10 30)))
2633           s1*5 \break
2634         }
2635         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
2636       >>
2637       \new StaffGroup <<
2638         \new Staff { \repeat unfold 15 { d'4 d' d' d' } }
2639         \new Staff { \repeat unfold 15 { e'4 e' e' e' } }
2640       >>
2641     >>
2642   }
2643 }
2644 @end lilypond
2645
2646 Some points to consider:
2647
2648 @itemize
2649 @item When using @code{alignment-distances}, lyrics and other non-staff lines
2650 do not count as a staff.
2651
2652 @item The units of the numbers passed to @code{X-offset},
2653 @code{Y-offset} and @code{alignment-distances} are interpreted as multiples
2654 of the distance between adjacent staff lines.  Positive values move staves
2655 and lyrics up, negative values move staves and lyrics down.
2656
2657 @item Because the @code{NonMusicalPaperColumn.line-break-system-details}
2658 settings given here allow the positioning of staves and systems anywhere
2659 on the page, it is possible to violate paper or margin boundaries or even
2660 to print staves or systems on top of one another.  Reasonable values
2661 passed to these different settings will avoid this.
2662 @end itemize
2663
2664 @seealso
2665 Snippets:
2666 @rlsr{Spacing}.
2667
2668
2669 @node Vertical collision avoidance
2670 @subsection Vertical collision avoidance
2671
2672 @funindex outside-staff-priority
2673 @funindex outside-staff-padding
2674 @funindex outside-staff-horizontal-padding
2675
2676 Intuitively, there are some objects in musical notation that belong
2677 to the staff and there are other objects that should be placed outside
2678 the staff.  Objects belonging outside the staff include things such as
2679 rehearsal marks, text and dynamic markings (from now on, these will
2680 be called outside-staff objects).  LilyPond's rule for the
2681 vertical placement of outside-staff objects is to place them as close
2682 to the staff as possible but not so close that they collide with
2683 another object.
2684
2685 LilyPond uses the @code{outside-staff-priority} property to determine
2686 whether a grob is an outside-staff object: if @code{outside-staff-priority}
2687 is a number, the grob is an outside-staff object.  In addition,
2688 @code{outside-staff-priority} tells LilyPond in which order the objects
2689 should be placed.
2690
2691 First, LilyPond places all the objects that do not belong outside
2692 the staff.  Then it sorts the outside-staff objects according to their
2693 @code{outside-staff-priority} (in increasing order).  One by one, LilyPond
2694 takes the outside-staff objects and places them so that they do
2695 not collide with any objects that have already been placed.  That
2696 is, if two outside-staff grobs are competing for the same space, the one
2697 with the lower @code{outside-staff-priority} will be placed closer to
2698 the staff.
2699
2700 @lilypond[quote,ragged-right,relative=2,verbatim]
2701 c4_"Text"\pp
2702 r2.
2703 \once \override TextScript.outside-staff-priority = #1
2704 c4_"Text"\pp % this time the text will be closer to the staff
2705 r2.
2706 % by setting outside-staff-priority to a non-number,
2707 % we disable the automatic collision avoidance
2708 \once \override TextScript.outside-staff-priority = ##f
2709 \once \override DynamicLineSpanner.outside-staff-priority = ##f
2710 c4_"Text"\pp % now they will collide
2711 @end lilypond
2712
2713 The vertical padding around outside-staff objects
2714 can be controlled with @code{outside-staff-padding}.
2715
2716 @lilypond[quote,ragged-right,relative=2,verbatim,staffsize=18]
2717 \once \override TextScript.outside-staff-padding = #0
2718 a4-"outside-staff-padding = #0"
2719 \once \override TextScript.outside-staff-padding = #3
2720 d-"outside-staff-padding = #3"
2721 c-"default outside-staff-padding"
2722 b-"default outside-staff-padding"
2723 R1
2724 @end lilypond
2725
2726
2727 By default, outside-staff objects are placed so they avoid
2728 a horizontal collision with previously-positioned grobs.  This
2729 can lead to situations in which objects are placed close to each
2730 other horizontally.
2731 As shown in the example below, setting @code{outside-staff-horizontal-padding}
2732 increases the horizontal spacing required, and in this case moves the text up
2733 to prevent it from getting too close to the ledger lines.
2734
2735 @lilypond[quote,ragged-right,relative=2,verbatim]
2736 c4^"Word" c c''2
2737 R1
2738 \once \override TextScript.outside-staff-horizontal-padding = #1
2739 c,,4^"Word" c c''2
2740 @end lilypond
2741
2742 @seealso
2743 Snippets:
2744 @rlsr{Spacing}.
2745
2746
2747 @node Horizontal spacing
2748 @section Horizontal spacing
2749
2750 @cindex horizontal spacing
2751 @cindex spacing, horizontal
2752
2753 @menu
2754 * Horizontal spacing overview::
2755 * New spacing area::
2756 * Changing horizontal spacing::
2757 * Line length::
2758 * Proportional notation::
2759 @end menu
2760
2761
2762 @node Horizontal spacing overview
2763 @subsection Horizontal spacing overview
2764
2765 The spacing engine translates differences in durations into stretchable
2766 distances (@q{springs}) of differing lengths.  Longer durations get
2767 more space, shorter durations get less.  The shortest durations get a
2768 fixed amount of space (which is controlled by
2769 @code{shortest-duration-space} in the @rinternals{SpacingSpanner}
2770 object).  The longer the duration, the more space it gets: doubling a
2771 duration adds a fixed amount (this amount is controlled by
2772 @code{spacing-increment}) of space to the note.
2773
2774 For example, the following piece contains lots of half, quarter, and
2775 8th notes; the eighth note is followed by 1 note head width (NHW).
2776 The quarter note is followed by 2 NHW, the half by 3 NHW, etc.
2777
2778 @lilypond[quote,verbatim,relative=1]
2779 c2 c4. c8
2780 c4. c8 c4. c8
2781 c8 c c4 c c
2782 @end lilypond
2783
2784 Normally, @code{spacing-increment} is set to 1.2 staff space, which is
2785 approximately the width of a note head, and
2786 @code{shortest-duration-space} is set to 2.0, meaning that the
2787 shortest note gets 2.4 staff space (2.0 times the
2788 @code{spacing-increment}) of horizontal space.  This space is counted
2789 from the left edge of the symbol, so the shortest notes are generally
2790 followed by one NHW of space.
2791
2792 If one would follow the above procedure exactly, then adding a single
2793 32nd note to a score that uses 8th and 16th notes, would widen up the
2794 entire score a lot.  The shortest note is no longer a 16th, but a 32nd,
2795 thus adding 1 NHW to every note.  To prevent this, the shortest
2796 duration for spacing is not the shortest note in the score, but rather
2797 the one which occurs most frequently.
2798
2799
2800 The most common shortest duration is determined as follows: in every
2801 measure, the shortest duration is determined.  The most common shortest
2802 duration is taken as the basis for the spacing, with the stipulation
2803 that this shortest duration should always be equal to or shorter than
2804 an 8th note.  The shortest duration is printed when you run
2805 @code{lilypond} with the @option{--verbose} option.
2806
2807 These durations may also be customized.  If you set the
2808 @code{common-shortest-duration} in @rinternals{SpacingSpanner}, then
2809 this sets the base duration for spacing.  The maximum duration for this
2810 base (normally an 8th), is set through @code{base-shortest-duration}.
2811
2812 @funindex common-shortest-duration
2813 @funindex base-shortest-duration
2814 @funindex stem-spacing-correction
2815 @funindex spacing
2816
2817 Notes that are even shorter than the common shortest note are
2818 followed by a space that is proportional to their duration relative to
2819 the common shortest note.  So if we were to add only a few 16th notes
2820 to the example above, they would be followed by half a NHW:
2821
2822 @lilypond[quote,verbatim,relative=2]
2823 c2 c4. c8 | c4. c16[ c] c4. c8 | c8 c c4 c c
2824 @end lilypond
2825
2826
2827 In the @emph{Essay on automated music engraving}, it was explained
2828 that stem directions influence spacing (see
2829 @ressay{Optical spacing}).  This is controlled with the
2830 @code{stem-spacing-correction} property in the
2831 @rinternals{NoteSpacing}, object.  These are generated for every
2832 @rinternals{Voice} context.  The @code{StaffSpacing} object
2833 (generated in @rinternals{Staff} context) contains the same
2834 property for controlling the stem/bar line spacing.  The following
2835 example shows these corrections, once with default settings, and
2836 once with exaggerated corrections:
2837
2838 @lilypond[quote,ragged-right]
2839 {
2840   c'4 e''4 e'4 b'4 |
2841   b'4 e''4 b'4 e''4 |
2842   \override Staff.NoteSpacing.stem-spacing-correction = #1.5
2843   \override Staff.StaffSpacing.stem-spacing-correction = #1.5
2844   c'4 e''4 e'4 b'4 |
2845   b'4 e''4 b'4 e''4 |
2846 }
2847 @end lilypond
2848
2849 Proportional notation is supported; see @ref{Proportional notation}.
2850
2851 @seealso
2852 Essay on automated music engraving:
2853 @ressay{Optical spacing}.
2854
2855 Snippets:
2856 @rlsr{Spacing}.
2857
2858 Internals Reference:
2859 @rinternals{SpacingSpanner},
2860 @rinternals{NoteSpacing},
2861 @rinternals{StaffSpacing},
2862 @rinternals{NonMusicalPaperColumn}.
2863
2864 @knownissues
2865 There is no convenient mechanism to manually override spacing.  The
2866 following work-around may be used to insert extra space into a score,
2867 adjusting the padding value as necessary.
2868
2869 @example
2870  \override Score.NonMusicalPaperColumn.padding = #10
2871 @end example
2872
2873 No work-around exists for decreasing the amount of space.
2874
2875
2876 @node New spacing area
2877 @subsection New spacing area
2878
2879 @funindex \newSpacingSection
2880 @cindex new spacing area
2881 @cindex spacing area, new
2882 @cindex notes, spacing horizontally
2883
2884 New sections with different spacing parameters can be started with
2885 @code{newSpacingSection}.  This is useful when there are
2886 sections with a different notions of long and short notes.
2887
2888 In the following example, the time signature change introduces a new
2889 section, and hence the 16ths notes are automatically spaced slightly
2890 wider.
2891
2892 @lilypond[relative=1,verbatim,quote]
2893 \time 2/4
2894 c4 c8 c
2895 c8 c c4 c16[ c c8] c4
2896 \newSpacingSection
2897 \time 4/16
2898 c16[ c c8]
2899 @end lilypond
2900
2901 The @code{\newSpacingSection} command creates a new
2902 @code{SpacingSpanner} object at that musical moment.
2903 If the automatic spacing adjustments do not give the required spacing,
2904 manual @code{\override}s may be applied to its properties.  These must
2905 be applied at the same musical moment as the @code{\newSpacingSection}
2906 command itself.  They will then affect the spacing of all the following
2907 music until the properties are changed in a new spacing section, for
2908 example,
2909
2910 @lilypond[relative=1,verbatim,quote]
2911 \time 4/16
2912 c16[ c c8]
2913 \newSpacingSection
2914 \override Score.SpacingSpanner.spacing-increment = #2
2915 c16[ c c8]
2916 \newSpacingSection
2917 \revert Score.SpacingSpanner.spacing-increment
2918 c16[ c c8]
2919 @end lilypond
2920
2921
2922 @seealso
2923 Snippets:
2924 @rlsr{Spacing}.
2925
2926 Internals Reference:
2927 @rinternals{SpacingSpanner}.
2928
2929
2930 @node Changing horizontal spacing
2931 @subsection Changing horizontal spacing
2932
2933 Horizontal spacing may be altered with the
2934 @code{base-shortest-duration} property.  Here
2935 we compare the same music; once without altering
2936 the property, and then altered.  Larger values
2937 of @code{ly:make-moment} will produce smaller
2938 music.  Note that @code{ly:make-moment} constructs
2939 a duration, so @code{1 4} is a longer duration
2940 than @code{1 16}.
2941
2942 @lilypond[verbatim,line-width=12\cm]
2943 \score {
2944   \relative c'' {
2945     g4 e e2 | f4 d d2 | c4 d e f | g4 g g2 |
2946     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2947     d4 d d d | d4 e f2 | e4 e e e | e4 f g2 |
2948     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2949   }
2950 }
2951 @end lilypond
2952
2953 @lilypond[verbatim,line-width=12\cm]
2954 \score {
2955   \relative c'' {
2956     g4 e e2 | f4 d d2 | c4 d e f | g4 g g2 |
2957     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2958     d4 d d d | d4 e f2 | e4 e e e | e4 f g2 |
2959     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2960   }
2961   \layout {
2962     \context {
2963       \Score
2964       \override SpacingSpanner.base-shortest-duration = #(ly:make-moment 1/16)
2965     }
2966   }
2967 }
2968 @end lilypond
2969
2970
2971 @snippets
2972
2973 By default, spacing in tuplets depends on various non-duration
2974 factors (such as accidentals, clef changes, etc).  To disregard
2975 such symbols and force uniform equal-duration spacing, use
2976 @code{Score.SpacingSpanner.uniform-stretching}.  This
2977 property can only be changed at the beginning of a score,
2978
2979 @lilypond[quote,ragged-right,verbatim]
2980 \score {
2981   <<
2982     \new Staff {
2983       \tuplet 5/4 { c8 c c c c } c8 c c c
2984     }
2985     \new Staff {
2986       c8 c c c \tuplet 5/4 { c8 c c c c }
2987     }
2988   >>
2989   \layout {
2990     \context {
2991       \Score
2992       \override SpacingSpanner.uniform-stretching = ##t
2993     }
2994   }
2995 }
2996 @end lilypond
2997
2998 When @code{strict-note-spacing} is set, notes are spaced without
2999 regard for clefs, bar lines, and grace notes,
3000
3001 @lilypond[quote,ragged-right,relative=2,verbatim]
3002 \override Score.SpacingSpanner.strict-note-spacing = ##t
3003 \new Staff { c8[ c \clef alto c \grace { c16 c } c8 c c]  c32[ c] }
3004 @end lilypond
3005
3006 @seealso
3007 Snippets:
3008 @rlsr{Spacing}.
3009
3010
3011 @node Line length
3012 @subsection Line length
3013
3014 @cindex page breaks
3015 @cindex breaking pages
3016
3017 @funindex indent
3018 @funindex line-width
3019 @funindex ragged-right
3020 @funindex ragged-last
3021
3022 @c Although line-width can be set in \layout, it should be set in paper
3023 @c block, to get page layout right.
3024 @c Setting indent in \paper block makes not much sense, but it works.
3025
3026 @c Bit verbose and vague, use examples?
3027 The most basic settings influencing the spacing are @code{indent} and
3028 @code{line-width}.  They are set in the @code{\layout} block.  They
3029 control the indentation of the first line of music, and the lengths of
3030 the lines.
3031
3032 If @code{ragged-right} is set to true in the @code{\layout} block, then
3033 systems ends at their natural horizontal length, instead of being spread
3034 horizontally to fill the whole line.  This is useful for
3035 short fragments, and for checking how tight the natural spacing is.
3036 The normal default setting is false, but if the score has only one
3037 system the default value is true.
3038
3039 @cindex page layout
3040 @cindex vertical spacing
3041
3042 The option @code{ragged-last} is similar to @code{ragged-right}, but
3043 only affects the last line of the piece.  No restrictions are put on
3044 that line.  The result is similar to formatting text paragraphs.  In a
3045 paragraph, the last line simply takes its natural horizontal length.
3046 @c Note that for text there are several options for the last line.
3047 @c While Knuth TeX uses natural length, lead typesetters use the same
3048 @c stretch as the previous line.  eTeX uses \lastlinefit to
3049 @c interpolate between both these solutions.
3050
3051 @example
3052 \layout @{
3053   indent = #0
3054   line-width = #150
3055   ragged-last = ##t
3056 @}
3057 @end example
3058
3059 @seealso
3060 Snippets:
3061 @rlsr{Spacing}.
3062
3063
3064 @node Proportional notation
3065 @subsection Proportional notation
3066
3067 LilyPond supports proportional notation, a type of horizontal spacing
3068 in which each note consumes an amount of horizontal space exactly
3069 equivalent to its rhythmic duration.  This type of proportional spacing
3070 is comparable to horizontal spacing on top of graph paper.  Some late
3071 20th- and early 21st-century scores use proportional notation to
3072 clarify complex rhythmic relationships or to facilitate the placement
3073 of timelines or other graphics directly in the score.
3074
3075 LilyPond supports five different settings for proportional notation,
3076 which may be used together or alone:
3077
3078 @itemize
3079 @item @code{proportionalNotationDuration}
3080 @item @code{uniform-stretching}
3081 @item @code{strict-note-spacing}
3082 @item @code{\remove "Separating_line_group_engraver"}
3083 @item @code{\override PaperColumn.used = ##t}
3084 @end itemize
3085
3086 In the examples that follow, we explore these five different
3087 proportional notation settings and examine how these settings interact.
3088
3089 We start with the following one-measure example, which uses classical
3090 spacing with ragged-right turned on.
3091
3092 @lilypond[quote,verbatim,ragged-right]
3093 \score {
3094   <<
3095     \new RhythmicStaff {
3096       c'2 c'16 c' c' c' \tuplet 5/4 { c'16 c' c' c' c' }
3097     }
3098   >>
3099 }
3100 @end lilypond
3101
3102 Notice that the half note which begins the measure takes up far less
3103 than half of the horizontal space of the measure.  Likewise, the
3104 sixteenth notes and sixteenth-note quintuplets (or twentieth notes)
3105 which end the measure together take up far more than half the
3106 horizontal space of the measure.
3107
3108 In classical engraving, this spacing may be exactly what we want
3109 because we can borrow horizontal space from the half note and conserve
3110 horizontal space across the measure as a whole.
3111
3112 On the other hand, if we want to insert a measured timeline or other
3113 graphic above or below our score, we need proportional notation.  We
3114 turn proportional notation on with the proportionalNotationDuration
3115 setting.
3116
3117 @lilypond[quote,verbatim,ragged-right]
3118 \score {
3119   <<
3120     \new RhythmicStaff {
3121       c'2 c'16 c' c' c' \tuplet 5/4 { c'16 c' c' c' c' }
3122     }
3123   >>
3124  \layout {
3125     \context {
3126       \Score
3127       proportionalNotationDuration = #(ly:make-moment 1/20)
3128     }
3129   }
3130 }
3131 @end lilypond
3132
3133 The half note at the beginning of the measure and the faster notes in
3134 the second half of the measure now occupy equal amounts of horizontal
3135 space.  We could place a measured timeline or graphic above or below
3136 this example.
3137
3138 The @code{proportionalNotationDuration} setting is a context setting
3139 that lives in @code{Score}.  Remember that context settings can appear
3140 in one of three locations within our input file -- in a @code{\with}
3141 block, in a @code{\context} block, or directly in music entry preceded
3142 by the @code{\set} command.  As with all context settings, users can
3143 pick which of the three different locations they would like to
3144 set @code{proportionalNotationDuration} in to.
3145
3146 The @code{proportionalNotationDuration} setting takes a single argument,
3147 which is the reference duration against that all music will be spaced.
3148 The LilyPond Scheme function @code{make-moment} takes two arguments
3149 -- a numerator and denominator which together express some fraction of
3150 a whole note.  The call @code{(ly:make-moment 1/20)} therefore produces
3151 a reference duration of a twentieth note.  Values such as
3152 @code{(ly:make-moment 1/16)}, @code{(ly:make-moment 1/8)}, and
3153 @code{(ly:make-moment 3/97)} are all possible as well.
3154
3155 How do we select the right reference duration to pass to
3156 @code{proportionalNotationDuration}?  Usually by a process of trial
3157 and error, beginning with a duration close to the fastest (or smallest)
3158 duration in the piece.  Smaller reference durations space music loosely;
3159 larger reference durations space music tightly.
3160
3161 @lilypond[quote,verbatim,ragged-right]
3162 \score {
3163   <<
3164     \new RhythmicStaff {
3165       c'2 c'16 c' c' c' \tuplet 5/4 { c'16 c' c' c' c' }
3166     }
3167   >>
3168   \layout {
3169     \context {
3170       \Score
3171       proportionalNotationDuration = #(ly:make-moment 1/8)
3172     }
3173   }
3174 }
3175
3176 \score {
3177   <<
3178     \new RhythmicStaff {
3179       c'2 c'16 c' c' c' \tuplet 5/4 { c'16 c' c' c' c' }
3180     }
3181   >>
3182   \layout {
3183     \context {
3184       \Score
3185       proportionalNotationDuration = #(ly:make-moment 1/16)
3186     }
3187   }
3188 }
3189
3190 \score {
3191   <<
3192     \new RhythmicStaff {
3193       c'2 c'16 c' c' c' \tuplet 5/4 { c'16 c' c' c' c' }
3194     }
3195   >>
3196   \layout {
3197     \context {
3198       \Score
3199       proportionalNotationDuration = #(ly:make-moment 1/32)
3200     }
3201   }
3202 }
3203 @end lilypond
3204
3205 Note that too large a reference duration -- such as the eighth note,
3206 above -- spaces music too tightly and can cause note head collisions.
3207 Also that proportional notation in general takes up more horizontal
3208 space than classical spacing.  Proportional spacing provides rhythmic
3209 clarity at the expense of horizontal space.
3210
3211 Next we examine how to optimally space overlapping tuplets.
3212
3213 We start by examining what happens to our original example, with
3214 classical spacing, when we add a second staff with a different type of
3215 tuplet.
3216
3217 @lilypond[quote,verbatim,ragged-right]
3218 \score {
3219   <<
3220     \new RhythmicStaff {
3221       c'2 c'16 c' c' c' \tuplet 5/4 { c'16 c' c' c' c' }
3222     }
3223     \new RhythmicStaff {
3224       \tuplet 9/8 { c'8 c' c' c' c' c' c' c' c' }
3225     }
3226   >>
3227 }
3228 @end lilypond
3229
3230 The spacing is bad because the evenly spaced notes of the bottom staff
3231 do not stretch uniformly.  Classical engravings include very few complex
3232 triplets and so classical engraving rules can generate this type of
3233 result.  Setting @code{proportionalNotationDuration} fixes this.
3234
3235 @lilypond[quote,verbatim,ragged-right]
3236 \score {
3237   <<
3238     \new RhythmicStaff {
3239       c'2 c'16 c' c' c' \tuplet 5/4 { c'16 c' c' c' c' }
3240     }
3241     \new RhythmicStaff {
3242       \tuplet 9/8 { c'8 c' c' c' c' c' c' c' c' }
3243     }
3244   >>
3245   \layout {
3246     \context {
3247       \Score
3248       proportionalNotationDuration = #(ly:make-moment 1/20)
3249     }
3250   }
3251 }
3252 @end lilypond
3253
3254 But if we look very carefully we can see that notes of the second half
3255 of the 9-tuplet space ever so slightly more widely than the notes
3256 of the first half of the 9-tuplet.  To ensure uniform stretching, we
3257 turn on @code{uniform-stretching}, which is a property of
3258 @code{SpacingSpanner}.
3259
3260 @lilypond[quote,verbatim,ragged-right]
3261 \score {
3262   <<
3263     \new RhythmicStaff {
3264       c'2 c'16 c' c' c' \tuplet 5/4 { c'16 c' c' c' c' }
3265     }
3266     \new RhythmicStaff {
3267       \tuplet 9/8 { c'8 c' c' c' c' c' c' c' c' }
3268     }
3269   >>
3270   \layout {
3271     \context {
3272       \Score
3273       proportionalNotationDuration = #(ly:make-moment 1/20)
3274       \override SpacingSpanner.uniform-stretching = ##t
3275     }
3276   }
3277 }
3278 @end lilypond
3279
3280 Our two-staff example now spaces exactly, our rhythmic
3281 relationships are visually clear, and we can include a measured
3282 timeline or graphic if we want.
3283
3284 Note that the LilyPond's proportional notation package expects
3285 that all proportional scores set the SpacingSpanner's
3286 'uniform-stretching attribute to ##t.  Setting
3287 proportionalNotationDuration without also setting the
3288 SpacingSpanner's 'uniform-stretching attribute to ##t will, for
3289 example, cause Skips to consume an incorrect amount of horizontal
3290 space.
3291
3292 The SpacingSpanner is an abstract grob that lives in the Score
3293 context.  As with our settings of proportionalNotationDuration,
3294 overrides to the SpacingSpanner can occur in any of three
3295 different places in our input file â€“ in the Score \with block, in
3296 a Score \context block, or in note entry directly.
3297
3298 There is by default only one @code{SpacingSpanner} per @code{Score}.  This
3299 means that, by default, @code{uniform-stretching} is either turned on for the
3300 entire score or turned off for the entire score.  We can, however,
3301 override this behavior and turn on different spacing features at
3302 different places in the score.  We do this with the command
3303 @code{\newSpacingSection}.  See @ref{New spacing area}, for more info.
3304
3305 Next we examine the effects of the @code{Separating_line_group_engraver} and
3306 see why proportional scores frequently remove this engraver.  The following
3307 example shows that there is a small amount of @qq{prefatory} space
3308 just before the first note in each system.
3309
3310 @lilypond[quote,verbatim,ragged-right]
3311 \paper {
3312   indent = #0
3313 }
3314
3315 \new Staff {
3316   c'1
3317   \break
3318   c'1
3319 }
3320 @end lilypond
3321
3322
3323 The amount of this prefatory space is the same whether after a time
3324 signature, a key signature or a clef.  @code{Separating_line_group_engraver}
3325 is responsible for this space.  Removing @code{Separating_line_group_engraver}
3326 reduces this space to zero.
3327
3328 @lilypond[quote,verbatim,ragged-right]
3329 \paper {
3330   indent = #0
3331 }
3332
3333 \new Staff \with {
3334   \remove "Separating_line_group_engraver"
3335 } {
3336   c'1
3337   \break
3338   c'1
3339 }
3340 @end lilypond
3341
3342 non-musical elements like time signatures, key signatures, clefs and
3343 accidentals are problematic in proportional notation.  None of these
3344 elements has rhythmic duration.  But all of these elements consume
3345 horizontal space.  Different proportional scores approach these
3346 problems differently.
3347
3348 It may be possible to avoid spacing problems with key signatures
3349 simply by not having any.  This is a valid option since most
3350 proportional scores are contemporary music.  The same may be true
3351 of time signatures, especially for those scores
3352 that include a measured timeline or other graphic.  But these scores
3353 are exceptional and most proportional scores include at least some
3354 time signatures.  Clefs and accidentals are even more essential.
3355
3356 So what strategies exist for spacing non-musical elements in a
3357 proportional context?  One good option is the @code{strict-note-spacing}
3358 property of @code{SpacingSpanner}.  Compare the two scores below:
3359
3360 @lilypond[quote,verbatim,ragged-right]
3361 \new Staff {
3362   \set Score.proportionalNotationDuration = #(ly:make-moment 1/16)
3363   c''8 c'' c'' \clef alto d' d'2
3364 }
3365
3366 \new Staff {
3367   \set Score.proportionalNotationDuration = #(ly:make-moment 1/16)
3368   \override Score.SpacingSpanner.strict-note-spacing = ##t
3369   c''8 c'' c'' \clef alto d' d'2
3370 }
3371 @end lilypond
3372
3373 Both scores are proportional, but the spacing in the first score
3374 is too loose because of the clef change.  The spacing of the second
3375 score remains strict, however, because strict-note-spacing is
3376 turned on.  Turning on strict-note-spacing causes the width of
3377 time signatures, key signatures, clefs and accidentals to play no
3378 part in the spacing algorithm.
3379
3380 In addition to the settings given here, there are other settings
3381 that frequently appear in proportional scores.  These include:
3382
3383 @itemize
3384 @item @code{\override SpacingSpanner.strict-grace-spacing = ##t}
3385 @item @code{\set tupletFullLength = ##t}
3386 @item @code{\override Beam.breakable = ##t}
3387 @item @code{\override Glissando.breakable = ##t}
3388 @item @code{\override TextSpanner.breakable = ##t}
3389 @item @code{\remove "Forbid_line_break_engraver" in the Voice context}
3390 @end itemize
3391
3392 These settings space grace notes strictly, extend tuplet brackets to
3393 mark both rhythmic start- and stop-points, and allow spanning elements
3394 to break across systems and pages.  See the respective parts of the manual
3395 for these related settings.
3396
3397 @seealso
3398 Notation Reference:
3399 @ref{New spacing area}.
3400
3401 Snippets:
3402 @rlsr{Spacing}.
3403
3404
3405 @node Fitting music onto fewer pages
3406 @section Fitting music onto fewer pages
3407
3408 Sometimes you can end up with one or two staves on a second
3409 (or third, or fourth@dots{}) page.  This is annoying, especially
3410 if you look at previous pages and it looks like there is plenty
3411 of room left on those.
3412
3413 When investigating layout issues, @code{annotate-spacing} is an
3414 invaluable tool.  This command prints the values of various layout
3415 spacing variables; for more details see the following section,
3416 @ref{Displaying spacing}.
3417
3418 @menu
3419 * Displaying spacing::
3420 * Changing spacing::
3421 @end menu
3422
3423
3424 @node Displaying spacing
3425 @subsection Displaying spacing
3426
3427 @funindex annotate-spacing
3428 @cindex spacing, display of layout
3429
3430 To graphically display the dimensions of vertical layout variables
3431 that may be altered for page formatting, set
3432 @code{annotate-spacing} in the @code{\paper} block:
3433
3434 @lilypond[verbatim,quote,papersize=a6landscape]
3435 \book {
3436   \score { { c4 } }
3437   \paper { annotate-spacing = ##t }
3438 }
3439 @end lilypond
3440
3441
3442 @noindent
3443 All layout dimensions are displayed in staff-spaces, regardless
3444 of the units specified in the @code{\paper} or @code{\layout} block.
3445 In the above example, @code{paper-height} has a value of 59.75
3446 @code{staff-spaces}, and the @code{staff-size} is 20 points (the
3447 default value).  Note that:
3448
3449 @multitable {1 staff-space} {staff-size)/4 * (25.4/72.27) mm}
3450
3451 @item 1 point
3452 @tab = (25.4/72.27) mm
3453
3454 @item 1 staff-space
3455 @tab = (@code{staff-size})/4 pts
3456 @item
3457 @tab = (@code{staff-size})/4 * (25.4/72.27) mm
3458
3459 @end multitable
3460
3461 @noindent
3462 In this case, one @code{staff-space} is approximately equal to
3463 1.757mm.  Thus the @code{paper-height} measurement of 59.75
3464 @code{staff-spaces} is equivalent to 105 millimeters, the height
3465 of @code{a6} paper in landscape orientation.  The pairs
3466 (@var{a},@var{b}) are intervals, where @var{a} is the lower
3467 edge and @var{b} the upper edge of the interval.
3468
3469 @seealso
3470 Notation Reference:
3471 @ref{Setting the staff size}.
3472
3473 Snippets:
3474 @rlsr{Spacing}.
3475
3476
3477 @node Changing spacing
3478 @subsection Changing spacing
3479
3480 The output of @code{annotate-spacing} reveals vertical dimensions
3481 in great detail.  For details about modifying margins and other
3482 layout variables, see @ref{Page layout}.
3483
3484 Other than margins, there are a few other options to save space:
3485
3486 @itemize
3487 @item
3488 Force systems to move as close together as possible (to fit as
3489 many systems as possible onto a page) while being spaced so that
3490 there is no blank space at the bottom of the page.
3491
3492 @example
3493 \paper @{
3494   system-system-spacing = #'((basic-distance . 0.1) (padding . 0))
3495   ragged-last-bottom = ##f
3496   ragged-bottom = ##f
3497 @}
3498 @end example
3499
3500 @item
3501 Force the number of systems.  This can help in two ways.  Just
3502 setting a value, even the same value as the number of systems
3503 being typeset by default, will sometimes cause more systems to
3504 be fitted onto each page, as an estimation step is then bypassed,
3505 giving a more accurate fit to each page.  Also, forcing an actual
3506 reduction in the number of systems may save a further page.  For
3507 example, if the default layout has 11 systems, the following
3508 assignment will force a layout with 10 systems.
3509
3510 @example
3511 \paper @{
3512   system-count = #10
3513 @}
3514 @end example
3515
3516 @item
3517 Force the number of pages.  For example, the following
3518 assignment will force a layout with 2 pages.
3519
3520 @example
3521 \paper @{
3522   page-count = #2
3523 @}
3524 @end example
3525
3526 @item
3527 Avoid (or reduce) objects that increase the vertical size of a
3528 system.  For example, volta repeats (or alternate repeats) require
3529 extra space.  If these repeats are spread over two systems, they
3530 will take up more space than one system with the volta repeats and
3531 another system without.  For example, dynamics that @q{stick out} of
3532 a system can be moved closer to the staff:
3533
3534 @lilypond[verbatim,quote,relative=1]
3535 e4 c g\f c
3536 e4 c g-\tweak X-offset #-2.7 \f c
3537 @end lilypond
3538
3539 @item
3540 Alter the horizontal spacing via @code{SpacingSpanner}.  For more
3541 details, see @ref{Changing horizontal spacing}.  The following
3542 example illustrates the default spacing:
3543
3544 @lilypond[verbatim,quote]
3545 \score {
3546   \relative c'' {
3547     g4 e e2 |
3548     f4 d d2 |
3549     c4 d e f |
3550     g4 g g2 |
3551     g4 e e2 |
3552   }
3553 }
3554 @end lilypond
3555
3556 @noindent
3557 The next example modifies @code{common-shortest-duration} from a
3558 value of @code{1/4} to @code{1/2}.  The quarter note is the most
3559 common and shortest duration in this example, so by making this
3560 duration longer, a @q{squeezing} effect occurs:
3561
3562 @lilypond[verbatim,quote]
3563 \score {
3564   \relative c'' {
3565     g4 e e2 |
3566     f4 d d2 |
3567     c4 d e f |
3568     g4 g g2 |
3569     g4 e e2 |
3570   }
3571   \layout {
3572     \context {
3573       \Score
3574       \override SpacingSpanner.common-shortest-duration =
3575         #(ly:make-moment 1/2)
3576     }
3577   }
3578 }
3579 @end lilypond
3580
3581 @noindent
3582 The @code{common-shortest-duration} property cannot be modified
3583 dynamically, so it must always be placed in a @code{\context}
3584 block so that it applies to the whole score.
3585
3586 @end itemize
3587
3588 @seealso
3589 Notation Reference:
3590 @ref{Page layout},
3591 @ref{Changing horizontal spacing}.
3592
3593 Snippets:
3594 @rlsr{Spacing}.