]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/spacing.itely
page-breaking: allow ragged pages to be compressed
[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 this is set to true,
398 systems will be set at their natural spacing, neither compressed
399 nor stretched vertically to fit the page.
400
401 @item ragged-last-bottom
402 @funindex ragged-last-bottom
403
404 If this is set to false, then the last page,
405 and the last page in each section created with a @code{\bookpart} block,
406 will be vertically justified in the same way as the earlier pages.
407
408 @end table
409
410 @seealso
411 Notation Reference:
412 @ref{Automatic scaling to paper size}.
413
414 Installed Files:
415 @file{ly/paper-defaults-init.ly}.
416
417 Snippets:
418 @rlsr{Spacing}.
419
420 @knownissues
421 The titles (from the @code{\header} block) are treated as a
422 system, so @code{ragged-bottom} and @code{ragged-last-bottom} will
423 add space between the titles and the first system of the score.
424
425 Explicitly defined paper-sizes will override any user-defined top or
426 bottom margin settings.
427
428
429 @node Flexible vertical spacing paper variables
430 @subsection Flexible vertical spacing @code{@bs{}paper} variables
431
432 In most cases, it is preferable for the vertical distances between
433 certain items (such as margins, titles, systems, and separate
434 scores) to be flexible, so that they stretch and compress nicely
435 according to each situation.  A number of @code{\paper} variables
436 (listed below) are available to fine-tune the stretching behavior
437 of these dimensions.
438
439 Note that the @code{\paper} variables discussed in this section do
440 not control the spacing of staves within individual systems.
441 Within-system spacing is controlled by grob properties, with
442 settings typically entered inside a @code{\score} or
443 @code{\layout} block, and not inside a @code{\paper} block.  See
444 @ref{Flexible vertical spacing within systems}.
445
446 @menu
447 * Structure of flexible vertical spacing alists::
448 * List of flexible vertical spacing paper variables::
449 @end menu
450
451
452 @node Structure of flexible vertical spacing alists
453 @unnumberedsubsubsec Structure of flexible vertical spacing alists
454
455 Each of the flexible vertical spacing @code{\paper} variables is
456 an alist (association list) containing four @emph{keys}:
457
458 @itemize
459
460 @item
461 @code{basic-distance} -- the vertical distance, measured in
462 staff-spaces, between the @emph{reference points} of the two
463 items, when no collisions would result, and no stretching or
464 compressing is in effect.  The reference point of a (title or
465 top-level) markup is its highest point, and the reference point of
466 a system is the vertical center of the nearest @code{StaffSymbol}
467 -- even if a non-staff line (such as a @code{Lyrics} context) is
468 in the way.  Values for @code{basic-distance} that are less than
469 either @code{padding} or @code{minimum-distance} are not
470 meaningful, since the resulting distance will never be less than
471 either @code{padding} or @code{minimum-distance}.
472
473 @item
474 @code{minimum-distance} -- the smallest allowable vertical
475 distance, measured in staff-spaces, between the reference points
476 of the two items, when compressing is in effect.  Values for
477 @code{minimum-distance} that are less than @code{padding} are not
478 meaningful, since the resulting distance will never be less than
479 @code{padding.}
480
481 @c TODO: explain skylines somewhere and xref to it from here.
482
483 @item
484 @code{padding} -- the minimum required amount of unobstructed
485 vertical whitespace between the bounding boxes (or skylines) of
486 the two items, measured in staff-spaces.
487
488 @item
489 @code{stretchability} -- a unitless measure of the dimension's
490 relative propensity to stretch.  If zero, the distance will not
491 stretch (unless collisions would result).  When positive, the
492 significance of a particular dimension's @code{stretchability}
493 value lies only in its relation to the @code{stretchability}
494 values of the other dimensions.  For example, if one dimension has
495 twice the @code{stretchability} of another, it will stretch twice
496 as easily.  Values should be non-negative and finite.  The value
497 @code{+inf.0} triggers a @code{programming_error} and is ignored,
498 but @code{1.0e7} can be used for an almost infinitely stretchable
499 spring.  If unset, the default value is set to
500 @code{basic-distance}.  Note that the dimension's propensity to
501 @emph{compress} cannot be directly set by the user and is equal to
502 (@code{basic-distance}@tie{}@minus{}@tie{}@code{minimum-distance}).
503
504 @end itemize
505
506 If a page has a ragged bottom, the resulting distance is the
507 largest of:
508
509 @itemize
510
511 @item
512 @code{basic-distance},
513
514 @item
515 @code{minimum-distance}, and
516
517 @item
518 @code{padding} plus the smallest distance necessary to eliminate
519 collisions.
520
521 @end itemize
522
523 For multi-page scores with a ragged bottom on the last page, the last
524 page uses the same spacing as the preceding page, provided there is
525 enough space for that.
526
527 Specific methods for modifying alists are discussed in
528 @ref{Modifying alists}.  The following example demonstrates the
529 two ways these alists can be modified.  The first declaration
530 updates one key-value individually, and the second completely
531 redefines the variable:
532
533 @example
534 \paper @{
535   system-system-spacing #'basic-distance = #8
536   score-system-spacing =
537     #'((basic-distance . 12)
538        (minimum-distance . 6)
539        (padding . 1)
540        (stretchability . 12))
541 @}
542 @end example
543
544
545 @node List of flexible vertical spacing paper variables
546 @unnumberedsubsubsec List of flexible vertical spacing @code{@bs{}paper} variables
547
548 The names of these variables follow the format
549 @code{@var{upper}-@var{lower}-spacing}, where @code{@var{upper}}
550 and @code{@var{lower}} are the items to be spaced.  Each distance
551 is measured between the reference points of the two items (see the
552 description of the alist structure above).  Note that in these
553 variable names, the term @q{@code{markup}} refers to both
554 @emph{title markups} (@code{bookTitleMarkup} or
555 @code{scoreTitleMarkup}) and @emph{top-level markups} (see
556 @ref{File structure}).  All distances are measured in
557 staff-spaces.
558
559 Default settings are defined in @file{ly/paper-defaults-init.ly}.
560
561 @c TODO: Where do headers/footers fit in? -mp
562
563 @table @code
564 @item markup-system-spacing
565 @funindex markup-system-spacing
566
567 the distance between a (title or top-level) markup and the system
568 that follows it.
569
570 @item score-markup-spacing
571 @funindex score-markup-spacing
572
573 the distance between the last system of a score and the (title or
574 top-level) markup that follows it.
575
576 @item score-system-spacing
577 @funindex score-system-spacing
578
579 the distance between the last system of a score and the first
580 system of the score that follows it, when no (title or top-level)
581 markup exists between them.
582
583 @item system-system-spacing
584 @funindex system-system-spacing
585
586 the distance between two systems in the same score.
587
588 @item markup-markup-spacing
589 @funindex markup-markup-spacing
590
591 the distance between two (title or top-level) markups.
592
593 @item last-bottom-spacing
594 @funindex last-bottom-spacing
595
596 the distance from the last system or top-level markup on a page to
597 the bottom of the printable area (i.e. the top of the bottom
598 margin).
599
600 @item top-system-spacing
601 @funindex top-system-spacing
602
603 the distance from the top of the printable area (i.e. the bottom
604 of the top margin) to the first system on a page, when there is no
605 (title or top-level) markup between the two.
606
607 @item top-markup-spacing
608 @funindex top-markup-spacing
609
610 the distance from the top of the printable area (i.e. the bottom
611 of the top margin) to the first (title or top-level) markup on a
612 page, when there is no system between the two.
613 @end table
614
615 @seealso
616 Notation Reference:
617 @ref{Flexible vertical spacing within systems}.
618
619 Installed Files:
620 @file{ly/paper-defaults-init.ly}.
621
622 Snippets:
623 @rlsr{Spacing}.
624
625
626 @node Horizontal spacing paper variables
627 @subsection Horizontal spacing @code{@bs{}paper} variables
628
629 @warning{Some @code{@bs{}paper} dimensions are automatically
630 scaled to the paper size, which may lead to unexpected behavior.
631 See @ref{Automatic scaling to paper size}.}
632
633 @menu
634 * paper variables for widths and margins::
635 * paper variables for two-sided mode::
636 * paper variables for shifts and indents::
637 @end menu
638
639
640 @node paper variables for widths and margins
641 @unnumberedsubsubsec @code{@bs{}paper} variables for widths and margins
642
643 Default values (before scaling) that are not listed here are
644 defined in @file{ly/paper-defaults-init.ly}.
645
646 @table @code
647
648 @item paper-width
649 @funindex paper-width
650
651 The width of the page, unset by default.  While @code{paper-width}
652 has no effect on the automatic scaling of some horizontal
653 dimensions, it does influence the @code{line-width} variable.  If
654 both @code{paper-width} and @code{line-width} are set, then
655 @code{left-margin} and @code{right-margin} will also be updated.
656 Also see @code{check-consistency}.
657
658 @item line-width
659 @funindex line-width
660
661 The horizontal extent of the staff lines in unindented, non-ragged
662 systems, equal to
663 @code{(paper-width@tie{}@minus{}@tie{}left-margin@tie{}@minus{}@tie{}right-margin)}
664 when unset.  If @code{line-width} is set, and both
665 @code{left-margin} and @code{right-margin} are unset, then the
666 margins will be updated to center the systems on the page
667 automatically.  Also see @code{check-consistency}.  This variable
668 can also be set in a @code{\layout} block.
669
670 @item left-margin
671 @funindex left-margin
672
673 The margin between the left edge of the page and the start of the
674 staff lines in unindented systems.  If the paper size is modified,
675 this dimension's default value is scaled accordingly.  If
676 @code{left-margin} is unset, and both @code{line-width} and
677 @code{right-margin} are set, then @code{left-margin} is set to
678 @code{(paper-width@tie{}@minus{}@tie{}line-width@tie{}@minus{}@tie{}right-margin)}.
679 If only @code{line-width} is set, then both margins are set to
680 @code{((paper-width@tie{}@minus{}@tie{}line-width)@tie{}/@tie{}2)},
681 and the systems are consequently centered on the page.  Also see
682 @code{check-consistency}.
683
684 @item right-margin
685 @funindex right-margin
686
687 The margin between the right edge of the page and the end of the
688 staff lines in non-ragged systems.  If the paper size is modified,
689 this dimension's default value is scaled accordingly.  If
690 @code{right-margin} is unset, and both @code{line-width} and
691 @code{left-margin} are set, then @code{right-margin} is set to
692 @code{(paper-width@tie{}@minus{}@tie{}line-width@tie{}@minus{}@tie{}left-margin)}.
693 If only @code{line-width} is set, then both margins are set to
694 @code{((paper-width@tie{}@minus{}@tie{}line-width)@tie{}/@tie{}2)},
695 and the systems are consequently centered on the page.  Also see
696 @code{check-consistency}.
697
698 @item check-consistency
699 @funindex check-consistency
700
701 If set to true, print a warning if @code{left-margin},
702 @code{line-width}, and @code{right-margin} do not exactly add up
703 to @code{paper-width}, and replace each of these (except
704 @code{paper-width}) with its default value (scaled to the paper
705 size if necessary).  If set to false, ignore any inconsistencies
706 and allow systems to run off the edge of the page.
707
708 @item ragged-right
709 @funindex ragged-right
710
711 If set to true, systems will not fill the line width.  Instead,
712 systems end at their natural horizontal length.  Default:
713 @code{#t} for scores with only one system, and @code{#f} for
714 scores with two or more systems.  This variable can also be set in
715 a @code{\layout} block.
716
717 @item ragged-last
718 @funindex ragged-last
719
720 If set to true, the last system in the score will not fill the
721 line width.  Instead the last system ends at its natural
722 horizontal length.  Default: @code{#f}.  This variable can also be
723 set in a @code{\layout} block.
724
725 @end table
726
727 @seealso
728 Notation Reference:
729 @ref{Automatic scaling to paper size}.
730
731 Installed Files:
732 @file{ly/paper-defaults-init.ly}.
733
734 @knownissues
735 Explicitly defined paper-sizes will override any user-defined left or
736 right margin settings.
737
738
739 @node paper variables for two-sided mode
740 @unnumberedsubsubsec @code{@bs{}paper} variables for two-sided mode
741
742 Default values (before scaling) are defined in
743 @file{ly/paper-defaults-init.ly}.
744
745 @table @code
746
747 @item two-sided
748 @funindex two-sided
749
750 @cindex gutter
751 @cindex binding gutter
752
753 If set to true, use @code{inner-margin}, @code{outer-margin} and
754 @code{binding-offset} to determine margins depending on whether
755 the page number is odd or even.  This overrides @code{left-margin}
756 and @code{right-margin}.
757
758 @item inner-margin
759 @funindex inner-margin
760
761 The margin all pages have at the inner side if they are part of a
762 book.  If the paper size is modified, this dimension's default
763 value is scaled accordingly.  Works only with @code{two-sided} set
764 to true.
765
766 @item outer-margin
767 @funindex outer-margin
768
769 The margin all pages have at the outer side if they are part of a
770 book.  If the paper size is modified, this dimension's default
771 value is scaled accordingly.  Works only with @code{two-sided} set
772 to true.
773
774 @item binding-offset
775 @funindex binding-offset
776
777 The amount @code{inner-margin} is increased to make sure nothing
778 will be hidden by the binding.  If the paper size is modified,
779 this dimension's default value is scaled accordingly.  Works only
780 with @code{two-sided} set to true.
781
782 @end table
783
784 @seealso
785 Notation Reference:
786 @ref{Automatic scaling to paper size}.
787
788 Installed Files:
789 @file{ly/paper-defaults-init.ly}.
790
791
792 @node paper variables for shifts and indents
793 @unnumberedsubsubsec @code{@bs{}paper} variables for shifts and indents
794
795 Default values (before scaling) that are not listed here are
796 defined in @file{ly/paper-defaults-init.ly}.
797
798 @table @code
799
800 @item horizontal-shift
801 @funindex horizontal-shift
802
803 @c This default value is buried in the middle of page.scm.  -mp
804
805 The amount that all systems (including titles and system
806 separators) are shifted to the right.  Default: @code{0.0\mm}.
807
808 @item indent
809 @funindex indent
810
811 The level of indentation for the first system in a score.  If the
812 paper size is modified, this dimension's default value is scaled
813 accordingly.  This variable can also be set in a @code{\layout}
814 block.
815
816 @item short-indent
817 @funindex short-indent
818
819 The level of indentation for all systems in a score besides the
820 first system.  If the paper size is modified, this dimension's
821 default value is scaled accordingly.  This variable can also be
822 set in a @code{\layout} block.
823
824 @end table
825
826 @seealso
827 Notation Reference:
828 @ref{Automatic scaling to paper size}.
829
830 Installed Files:
831 @file{ly/paper-defaults-init.ly}.
832
833 Snippets:
834 @rlsr{Spacing}.
835
836
837 @node Other paper variables
838 @subsection Other @code{@bs{}paper} variables
839
840 @menu
841 * paper variables for line breaking::
842 * paper variables for page breaking::
843 * paper variables for page numbering::
844 * Miscellaneous paper variables::
845 @end menu
846
847
848 @node paper variables for line breaking
849 @unnumberedsubsubsec @code{@bs{}paper} variables for line breaking
850
851 @table @code
852
853 @item max-systems-per-page
854 @funindex max-systems-per-page
855
856 The maximum number of systems that will be placed on a page.  This
857 is currently supported only by the @code{ly:optimal-breaking} algorithm.
858 Default: unset.
859
860 @item min-systems-per-page
861 @funindex min-systems-per-page
862
863 The minimum number of systems that will be placed on a page.  This
864 may cause pages to be overfilled if it is made too large.  This is
865 currently supported only by the @code{ly:optimal-breaking} algorithm.
866 Default: unset.
867
868 @item systems-per-page
869 @funindex systems-per-page
870
871 The number of systems that should be placed on each page.
872 This is currently supported only by the @code{ly:optimal-breaking} algorithm.
873 Default: unset.
874
875 @item system-count
876 @funindex system-count
877
878 The number of systems to be used for a score.  Default: unset.
879 This variable can also be set in a @code{\layout} block.
880
881 @end table
882
883 @seealso
884 Notation Reference:
885 @ref{Line breaking}.
886
887
888 @node paper variables for page breaking
889 @unnumberedsubsubsec @code{@bs{}paper} variables for page breaking
890
891 Default values not listed here are defined in
892 @file{ly/paper-defaults-init.ly}
893
894 @table @code
895
896 @item page-breaking
897 @funindex page-breaking
898
899 The page-breaking algorithm to use.  Choices are
900 @code{ly:minimal-breaking}, @code{ly:page-turn-breaking},
901 @code{ly:one-line-breaking} and @code{ly:optimal-breaking}
902 (the default).
903
904 @item page-breaking-system-system-spacing
905 @funindex page-breaking-system-system-spacing
906
907 Tricks the page breaker into thinking that
908 @code{system-system-spacing} is set to something different than
909 it really is.  For example, if
910 @code{page-breaking-system-system-spacing #'padding} is set to something
911 substantially larger than @code{system-system-spacing #'padding}, then the
912 page-breaker will put fewer systems on each page.  Default: unset.
913
914 @item page-count
915 @funindex page-count
916
917 The number of pages to be used for a score, unset by default.
918
919 @end table
920
921 The following variables are effective only when @code{page-breaking}
922 is set to @code{ly:page-turn-breaking}.  Page breaks are then chosen
923 to minimize the number of page turns.  Since page turns are required
924 on moving from an odd-numbered page to an even-numbered one, a
925 layout in which the last page is odd-numbered will usually be
926 favoured.  Places where page turns are preferred can be indicated
927 manually by inserting @code{\allowPageTurn} or automatically by
928 including the @code{Page_turn_engraver} (see @ref{Optimal page turning}).
929
930 If there are insufficient choices available for making suitable page
931 turns, LilyPond may insert a blank page either within a score, between
932 scores (if there are two or more scores), or by ending a score on an
933 even-numbered page.  The values of the following three variables may
934 be increased to make these actions less likely.
935
936 The values are penalties, i.e. the higher the value the less likely
937 will be the associated action relative to other choices.
938
939 @table @code
940
941 @item blank-page-penalty
942 @funindex blank-page-penalty
943
944 The penalty for having a blank page in the middle of a score.  If
945 @code{blank-page-penalty} is large and @code{ly:page-turn-breaking} is
946 selected, then LilyPond will be less likely to insert a page in the
947 middle of a score.  Instead, it will space out the music further to
948 fill the blank page and the following one.  Default: 5.
949
950 @item blank-last-page-penalty
951 @funindex blank-last-page-penalty
952
953 The penalty for ending the score on an even-numbered page.  If
954 @code{blank-last-page-penalty} is large and
955 @code{ly:page-turn-breaking} is selected, then LilyPond will be less
956 likely to produce a score in which the last page is even-numbered.
957 Instead, it will adjust the spacing in order to use one page more or
958 one page less.  Default: 0.
959
960 @item blank-after-score-page-penalty
961 @funindex blank-after-score-page-penalty
962
963 The penalty for having a blank page after the end of one score and
964 before the next.  By default, this is smaller than
965 @code{blank-page-penalty}, so that blank pages after scores are
966 inserted in preference to blank pages within a score.  Default: 2.
967
968 @end table
969
970
971 @seealso
972 Notation Reference:
973 @ref{Page breaking},
974 @ref{Optimal page breaking},
975 @ref{Optimal page turning},
976 @ref{Minimal page breaking},
977 @ref{One-line page breaking}.
978
979 Installed Files:
980 @file{ly/paper-defaults-init.ly}.
981
982
983 @node paper variables for page numbering
984 @unnumberedsubsubsec @code{@bs{}paper} variables for page numbering
985
986 Default values not listed here are defined in
987 @file{ly/paper-defaults-init.ly}
988
989 @table @code
990
991 @cindex page numbers, auto-numbering
992 @item auto-first-page-number
993 @funindex auto-first-page-number
994
995 The page breaking algorithm is affected by the first page number
996 being odd or even.  If set to true, the page breaking algorithm
997 will decide whether to start with an odd or even number.  This
998 will result in the first page number remaining as is or being
999 increased by one.  Default: @code{#f}.
1000
1001 @cindex page numbers, specify the first
1002 @item first-page-number
1003 @funindex first-page-number
1004
1005 The value of the page number on the first page.
1006
1007 @item print-first-page-number
1008 @funindex print-first-page-number
1009
1010 If set to true, a page number is printed on the first page.
1011
1012 @cindex page numbers, suppress
1013 @item print-page-number
1014 @funindex print-page-number
1015
1016 If set to false, page numbers are not printed.
1017
1018 @end table
1019
1020 @seealso
1021 Installed Files:
1022 @file{ly/paper-defaults-init.ly}.
1023
1024 @knownissues
1025 Odd page numbers are always on the right.  If you want the
1026 music to start on page 1 there must be a blank page on the back
1027 of the cover page so that page 1 is on the right hand side.
1028
1029
1030 @node Miscellaneous paper variables
1031 @unnumberedsubsubsec Miscellaneous @code{@bs{}paper} variables
1032
1033 @table @code
1034
1035 @item page-spacing-weight
1036 @funindex page-spacing-weight
1037
1038 The relative importance of page (vertical) spacing and line
1039 (horizontal) spacing.  High values will make page spacing more
1040 important.  Default: @code{10}.
1041
1042 @item print-all-headers
1043 @funindex print-all-headers
1044
1045 If set to true, this will print all headers for each @code{\score}
1046 in the output.  Normally only the @code{piece} and @code{opus}
1047 header variables are printed.  Default: @code{#f}.
1048
1049 @item system-separator-markup
1050 @funindex system-separator-markup
1051
1052 A markup object that is inserted between systems, often used for
1053 orchestral scores.  Default: unset.  The @code{\slashSeparator}
1054 markup, defined in @file{ly/titling-init.ly}, is provided as a
1055 sensible default, for example:
1056
1057 @lilypond[quote,verbatim,noragged-right,line-width=30\mm]
1058 #(set-default-paper-size "a8")
1059
1060 \book {
1061   \paper {
1062     system-separator-markup = \slashSeparator
1063   }
1064   \header {
1065     tagline = ##f
1066   }
1067   \score {
1068     \relative c'' { c1 \break c1 \break c1 }
1069   }
1070 }
1071 @end lilypond
1072
1073 @end table
1074
1075 @seealso
1076 Installed Files:
1077 @file{ly/titling-init.ly}.
1078
1079 Snippets:
1080 @rlsr{Spacing}.
1081
1082 @knownissues
1083 The default page header puts the page number and the @code{instrument}
1084 field from the @code{\header} block on a line.
1085
1086
1087 @node Score layout
1088 @section Score layout
1089
1090 This section discusses score layout options for the @code{\layout}
1091 block.
1092
1093 @menu
1094 * The layout block::
1095 * Setting the staff size::
1096 @end menu
1097
1098
1099 @node The layout block
1100 @subsection The @code{@bs{}layout} block
1101
1102 @funindex \layout
1103
1104 While the @code{\paper} block contains settings that relate to the
1105 page formatting of the whole document, the @code{\layout} block
1106 contains settings for score-specific layout.  To set score layout
1107 options globally, enter them in a toplevel @code{\layout} block.
1108 To set layout options for an individual score, enter them in a
1109 @code{\layout} block inside the @code{\score} block, after the
1110 music.  Settings that can appear in a @code{\layout} block
1111 include:
1112
1113 @itemize
1114 @item the @code{layout-set-staff-size} scheme function,
1115 @item context modifications in @code{\context} blocks, and
1116 @item @code{\paper} variables that affect score layout.
1117 @end itemize
1118
1119 The @code{layout-set-staff-size} function is discussed in the next
1120 section, @ref{Setting the staff size}.  Context modifications are
1121 discussed in a separate chapter; see
1122 @ref{Modifying context plug-ins} and
1123 @ref{Changing context default settings}.  The @code{\paper}
1124 variables that can appear in a @code{\layout} block are:
1125
1126 @itemize
1127
1128 @item
1129 @code{line-width}, @code{ragged-right} and @code{ragged-last}
1130 (see @ref{paper variables for widths and margins,,@code{@bs{}paper} variables for widths and margins})
1131
1132 @item
1133 @code{indent} and @code{short-indent}
1134 (see @ref{paper variables for shifts and indents,,@code{@bs{}paper} variables for shifts and indents})
1135
1136 @item
1137 @code{system-count}
1138 (see @ref{paper variables for line breaking,,@code{@bs{}paper} variables for line breaking})
1139
1140 @end itemize
1141
1142 Here is an example @code{\layout} block:
1143
1144 @example
1145 \layout @{
1146   indent = 2\cm
1147   \context @{
1148     \StaffGroup
1149     \override StaffGrouper.staff-staff-spacing.basic-distance = #8
1150   @}
1151   \context @{
1152     \Voice
1153     \override TextScript.padding = #1
1154     \override Glissando.thickness = #3
1155   @}
1156 @}
1157 @end example
1158
1159 Multiple @code{\layout} blocks can be entered as toplevel expressions.
1160 This can, for example, be useful if different settings are stored in
1161 separate files and included optionally.  Internally, when
1162 a @code{\layout} block is evaluated, a copy of the current
1163 @code{\layout} configuration is made, then any changes defined within
1164 the block are applied and the result is saved as the new current
1165 configuration.  From the user's perspective the @code{\layout} blocks
1166 are combined, but in conflicting situations (when the same property
1167 is changed in different blocks) the later definitions take precedence.
1168
1169 For example, if this block:
1170
1171 @example
1172 \layout @{
1173   \context @{
1174     \Voice
1175     \override TextScript.color = #magenta
1176     \override Glissando.thickness = #1.5
1177   @}
1178 @}
1179 @end example
1180
1181 is placed after the one from the preceding example the @code{'padding}
1182 and @code{'color} overrides for @code{TextScript} are combined, but
1183 the later @code{'thickness} override for @code{Glissando} replaces
1184 (or hides) the earlier one.
1185
1186 @code{\layout} blocks may be assigned to variables for reuse later,
1187 but the way this works is slightly but significantly different from
1188 writing them literally.
1189
1190 If a variable is defined like this:
1191
1192 @example
1193 layoutVariable = \layout @{
1194   \context @{
1195     \Voice
1196     \override NoteHead.font-size = #4
1197   @}
1198 @}
1199 @end example
1200
1201 it will hold the current @code{\layout} configuration with the
1202 @code{NoteHead.font-size} override added, but this combination
1203 is @emph{not} saved as the new current configuration.  Be aware
1204 that the @q{current configuration} is read when the variable is
1205 defined and not when it is used, so the content of the variable
1206 is dependent on its position in the source.
1207
1208 The variable can then be used inside another @code{\layout} block,
1209 for example:
1210
1211 @example
1212 \layout @{
1213   \layoutVariable
1214   \context @{
1215     \Voice
1216     \override NoteHead.color = #red
1217   @}
1218 @}
1219 @end example
1220
1221 A @code{\layout} block containing a variable, as in the example above,
1222 does @emph{not} copy the current configuration but instead uses the
1223 content of @code{\layoutVariable} as the base configuration for the
1224 further additions.  This means that any changes defined between the
1225 definition and the use of the variable are lost.
1226
1227 If @code{layoutVariable} is defined (or @code{\include}d) immediately
1228 before being used, its content is just the current configuration plus
1229 the overrides defined within it.  So in the example above showing the
1230 use of @code{\layoutVariable} the final @code{\layout} block would
1231 consist of:
1232
1233 @example
1234   TextScript.padding = #1
1235   TextScript.color = #magenta
1236   Glissando.thickness = #1.5
1237   NoteHead.font-size = #4
1238   NoteHead.color = #red
1239 @end example
1240
1241 plus the @code{indent} and the @code{StaffGrouper} overrides.
1242
1243 But if the variable had already been defined before the first
1244 @code{\layout} block the current configuration would now contain
1245 only
1246
1247 @example
1248   NoteHead.font-size = #4 % (written in the variable definition)
1249   NoteHead.color = #red % (added after the use of the variable)
1250 @end example
1251
1252 If carefully planned, @code{\layout} variables can be a valuable tool
1253 to structure the layout design of sources, and also to reset the
1254 @code{\layout} configuration to a known state.
1255
1256 @seealso
1257 Notation Reference:
1258 @ref{Changing context default settings}.
1259
1260 Snippets:
1261 @rlsr{Spacing}.
1262
1263
1264 @node Setting the staff size
1265 @subsection Setting the staff size
1266
1267 @cindex font size, setting
1268 @cindex staff size, setting
1269 @funindex layout file
1270
1271 The default @strong{staff size} is set to 20 points.
1272 This may be changed in two ways:
1273
1274 To set the staff size globally for all scores in a file (or
1275 in a @code{book} block, to be precise), use @code{set-global-staff-size}.
1276
1277 @example
1278 #(set-global-staff-size 14)
1279 @end example
1280
1281 @noindent
1282 This sets the global default size to 14pt staff height and scales all
1283 fonts accordingly.
1284
1285 To set the staff size individually for each score, use
1286 @example
1287 \score@{
1288   @dots{}
1289   \layout @{
1290     #(layout-set-staff-size 15)
1291   @}
1292 @}
1293 @end example
1294
1295 The Feta font provides musical symbols at eight different
1296 sizes.  Each font is tuned for a different staff size: at a smaller size
1297 the font becomes heavier, to match the relatively heavier staff lines.
1298 The recommended font sizes are listed in the following table:
1299
1300 @quotation
1301 @multitable @columnfractions .15 .2 .22 .2
1302
1303 @item @b{font name}
1304 @tab @b{staff height (pt)}
1305 @tab @b{staff height (mm)}
1306 @tab @b{use}
1307
1308 @item feta11
1309 @tab 11.22
1310 @tab 3.9
1311 @tab pocket scores
1312
1313 @item feta13
1314 @tab 12.60
1315 @tab 4.4
1316 @tab
1317
1318 @item feta14
1319 @tab 14.14
1320 @tab 5.0
1321 @tab
1322
1323 @item feta16
1324 @tab 15.87
1325 @tab 5.6
1326 @tab
1327
1328 @item feta18
1329 @tab 17.82
1330 @tab 6.3
1331 @tab song books
1332
1333 @item feta20
1334 @tab 20
1335 @tab 7.0
1336 @tab standard parts
1337
1338 @item feta23
1339 @tab 22.45
1340 @tab 7.9
1341 @tab
1342
1343 @item feta26
1344 @tab 25.2
1345 @tab 8.9
1346 @tab
1347 @c modern rental material?
1348
1349 @end multitable
1350 @end quotation
1351
1352 These fonts are available in any sizes.  The context property
1353 @code{fontSize} and the layout property @code{staff-space} (in
1354 @rinternals{StaffSymbol}) can be used to tune the size for individual
1355 staves.  The sizes of individual staves are relative to the global size.
1356
1357 @seealso
1358 Notation Reference:
1359 @ref{Selecting notation font size}.
1360
1361 Snippets:
1362 @rlsr{Spacing}.
1363
1364 @knownissues
1365 @code{layout-set-staff-size} does not change the distance between the
1366 staff lines.
1367
1368
1369 @node Breaks
1370 @section Breaks
1371
1372 @menu
1373 * Line breaking::
1374 * Page breaking::
1375 * Optimal page breaking::
1376 * Optimal page turning::
1377 * Minimal page breaking::
1378 * One-line page breaking::
1379 * Explicit breaks::
1380 * Using an extra voice for breaks::
1381 @end menu
1382
1383
1384 @node Line breaking
1385 @subsection Line breaking
1386
1387 @cindex line breaks
1388 @cindex breaking lines
1389
1390 Line breaks are normally determined automatically.  They are chosen
1391 so that lines look neither cramped nor loose, and consecutive
1392 lines have similar density.
1393
1394 To manually force a line break at a bar line, use the
1395 @code{\break} command:
1396
1397 @lilypond[quote,ragged-right,relative=2,verbatim]
1398 c4 c c c | \break
1399 c4 c c c |
1400 @end lilypond
1401
1402 By default, a @code{\break} in the middle of a measure is ignored,
1403 and a warning is printed.  To force a line break in the middle of
1404 a measure, add an invisible bar line with @w{@samp{\bar ""}}:
1405
1406 @lilypond[quote,ragged-right,relative=2,verbatim]
1407 c4 c c
1408 \bar "" \break
1409 c |
1410 c4 c c c |
1411 @end lilypond
1412
1413 A @code{\break} occurring at a bar line is also ignored if the
1414 previous measure ends in the middle of a note, such as when a
1415 tuplet begins and ends in different measures.  To allow
1416 @code{\break} commands to work in these situations, remove the
1417 @code{Forbid_line_break_engraver} from the @code{Voice} context.
1418 Note that manually forced line breaks have to be added in parallel
1419 with the music:
1420
1421 @lilypond[quote,ragged-right,verbatim]
1422 \new Voice \with {
1423   \remove "Forbid_line_break_engraver"
1424 } \relative c'' {
1425   <<
1426     { c2. \tuplet 3/2 { c4 c c } c2. | }
1427     { s1 | \break s1 | }
1428   >>
1429 }
1430 @end lilypond
1431
1432 Similarly, line breaks are normally forbidden when beams cross bar
1433 lines.  This behavior can be changed by setting
1434 @code{\override Beam.breakable = ##t}:
1435
1436 @lilypond[quote,ragged-right,relative=2,verbatim]
1437 \override Beam.breakable = ##t
1438 c2. c8[ c | \break
1439 c8 c] c2. |
1440 @end lilypond
1441
1442 The @code{\noBreak} command forbids a line break at the bar line
1443 where it is inserted.
1444
1445 The most basic settings influencing line spacing are @code{indent}
1446 and @code{line-width}.  They are set in the @code{\layout} block.
1447 They control the indentation of the first line of music, and the
1448 lengths of the lines.
1449
1450 If @code{ragged-right} is set to true in the @code{\layout} block,
1451 then systems end at their natural horizontal length, instead of
1452 being spread horizontally to fill the whole line.  This is useful
1453 for short fragments, and for checking how tight the natural
1454 spacing is.
1455
1456 @c TODO Check and add para on default for ragged-right
1457
1458 The option @code{ragged-last} is similar to @code{ragged-right},
1459 but affects only the last line of the piece.
1460
1461 @example
1462 \layout @{
1463   indent = 0\mm
1464   line-width = 150\mm
1465   ragged-last = ##t
1466 @}
1467 @end example
1468
1469
1470
1471 @cindex regular line breaks
1472 @cindex four bar music.
1473
1474 For line breaks at regular intervals use @code{\break} separated by
1475 skips and repeated with @code{\repeat}.  For example, this would
1476 cause the following 28 measures (assuming 4/4 time) to be broken
1477 every 4 measures, and only there:
1478
1479 @example
1480 <<
1481   \repeat unfold 7 @{
1482     s1 \noBreak s1 \noBreak
1483     s1 \noBreak s1 \break
1484   @}
1485   @{ @var{the actual music@dots{}} @}
1486 >>
1487 @end example
1488
1489
1490 @predefined
1491 @funindex \break
1492 @code{\break},
1493 @funindex \noBreak
1494 @code{\noBreak}.
1495 @endpredefined
1496
1497 @seealso
1498 Notation Reference:
1499 @ref{paper variables for line breaking,,@code{@bs{}paper} variables for line breaking}.
1500
1501 Snippets:
1502 @rlsr{Spacing}.
1503
1504 Internals Reference:
1505 @rinternals{LineBreakEvent}.
1506
1507
1508 @node Page breaking
1509 @subsection Page breaking
1510
1511 The default page breaking may be overridden by inserting
1512 @code{\pageBreak} or @code{\noPageBreak} commands.  These commands are
1513 analogous to @code{\break} and @code{\noBreak}.  They should be
1514 inserted at a bar line.  These commands force and forbid a page-break
1515 from happening.  Of course, the @code{\pageBreak} command also forces
1516 a line break.
1517
1518 The @code{\pageBreak} and @code{\noPageBreak} commands may also be
1519 inserted at top-level, between scores and top-level markups.
1520
1521 There are also analogous settings to @code{ragged-right} and
1522 @code{ragged-last} which have the same effect on vertical spacing.
1523 If @code{ragged-bottom} is set to @code{#t} the systems will not
1524 be justified vertically.  When @code{ragged-last-bottom} is set
1525 to @code{#t}, as it is by default, empty space is allowed at the
1526 bottom of the final page (or the final page in each
1527 @code{\bookpart}).  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 }
2005 lowerCaseChords = \with {
2006   chordNameLowercaseMinor = ##t
2007 }
2008 staffAffinityDown = \with {
2009   \override VerticalAxisGroup.staff-affinity = #DOWN
2010 }
2011 labelContext =
2012 #(define-music-function
2013      (parser location context)
2014      (string?)
2015    #{ s1*0^\markup { \typewriter #context } #})
2016
2017 \layout {
2018   \context { \Dynamics    \alignToZero }
2019   \context { \FiguredBass \alignToZero }
2020   \context { \Lyrics      \alignToZero }
2021   \context { \NoteNames   \alignToZero \staffAffinityDown }
2022   \context { \ChordNames  \alignToZero
2023                           \staffAffinityDown
2024                           \lowerCaseChords }
2025   \context { \FretBoards  \alignToZero \staffAffinityDown }
2026   \context { \Score
2027     \omit BarLine
2028     \override DynamicText.self-alignment-X = #-1
2029     \override FretBoard.X-offset = #1.75
2030     \override InstrumentName.minimum-Y-extent = #'(-2 . 2)
2031     \override InstrumentName.extra-offset = #'(0 . -0.5)
2032     \override TextScript.minimum-Y-extent = #'(-2 . 3)
2033     \omit TimeSignature
2034   }
2035 }
2036
2037 %% These contexts have reference points at the baseline:
2038 %%   ChordNames, NoteNames, and Lyrics
2039 <<
2040   \new ChordNames { \chords { g1:m } }
2041   \new NoteNames { s1 | g1 | }
2042   \new RhythmicStaff {
2043     \set RhythmicStaff.instrumentName = #"baseline "
2044     \textLengthOn
2045     \labelContext "ChordNames " s1 |
2046     \labelContext "NoteNames "  s1 |
2047     \labelContext "Lyrics"     s1 |
2048   }
2049   \new Lyrics { \lyrics { \skip 1*2 | ghijk1 | } }
2050 >>
2051
2052 %% The reference point for Dynamics is the midline of 'm' in the font
2053 <<
2054   \new RhythmicStaff {
2055     \set RhythmicStaff.instrumentName = #"mid-height "
2056     \labelContext "Dynamics" s1*3
2057   }
2058   \new Dynamics { s1\mp s\fp }
2059 >>
2060
2061 %% The reference point for FiguredBass is its highest point
2062 <<
2063   \new RhythmicStaff {
2064     \set RhythmicStaff.instrumentName = #"highest point "
2065     \labelContext "FiguredBass" s1
2066   }
2067   \new FiguredBass { \figuremode { <6 5>1 } }
2068 >>
2069
2070 %% The reference point for FretBoards is the top line
2071 \include "predefined-guitar-fretboards.ly"
2072 <<
2073   \new FretBoards { \chordmode { e1 } }
2074   \new RhythmicStaff {
2075     \set RhythmicStaff.instrumentName = #"top line "
2076     \labelContext "FretBoards " s1
2077   }
2078 >>
2079 @end lilypond
2080
2081 Each of the vertical spacing grob properties (except
2082 @code{staff-affinity}) uses the same alist structure as the
2083 @code{\paper} spacing variables discussed in
2084 @ref{Flexible vertical spacing paper variables,,Flexible vertical spacing @code{@bs{}paper} variables}.
2085 Specific methods
2086 for modifying alists are discussed in @ref{Modifying alists}.
2087 Grob properties should be adjusted with an @code{\override} inside
2088 a @code{\score} or @code{\layout} block, and not inside a
2089 @code{\paper} block.
2090
2091 The following example demonstrates the two ways these alists can
2092 be modified.  The first declaration updates one key-value
2093 individually, and the second completely re-defines the property:
2094
2095 @example
2096 \new Staff \with @{
2097   \override VerticalAxisGroup.default-staff-staff-spacing.basic-distance = #10
2098 @} @{ @dots{} @}
2099
2100 \new Staff \with @{
2101   \override VerticalAxisGroup.default-staff-staff-spacing =
2102     #'((basic-distance . 10)
2103        (minimum-distance . 9)
2104        (padding . 1)
2105        (stretchability . 10))
2106 @} @{ @dots{} @}
2107 @end example
2108
2109 To change any spacing settings globally, put them in the
2110 @code{\layout} block:
2111
2112 @example
2113 \layout @{
2114   \context @{
2115     \Staff
2116     \override VerticalAxisGroup.default-staff-staff-spacing.basic-distance = #10
2117   @}
2118 @}
2119 @end example
2120
2121 Standard settings for the vertical spacing grob properties are
2122 listed in @rinternals{VerticalAxisGroup} and
2123 @rinternals{StaffGrouper}.  Default overrides for specific types
2124 of non-staff lines are listed in the relevant context descriptions
2125 in @rinternals{Contexts}.
2126
2127
2128 @subsubheading Properties of the @code{VerticalAxisGroup} grob
2129
2130 @code{VerticalAxisGroup} properties are typically adjusted with an
2131 @code{\override} at the @code{Staff} level (or equivalent).
2132
2133 @table @code
2134 @item staff-staff-spacing
2135
2136 Used to determine the distance between the current staff and the
2137 staff just below it in the same system, even if one or more
2138 non-staff lines (such as @code{Lyrics}) are placed between the two
2139 staves.  Does not apply to the bottom staff of a system.
2140
2141 Initially, the @code{staff-staff-spacing} of a
2142 @code{VerticalAxisGroup} is a Scheme function that applies the
2143 properties of the @code{StaffGrouper} if the staff is part of a
2144 group, or the @code{default-staff-staff-spacing} of the staff
2145 otherwise.  This allows staves to be spaced differently when they
2146 are grouped.  For uniform spacing regardless of grouping, this
2147 function may be replaced by a flexible-spacing alist, using the
2148 complete-redefinition form of override shown above.
2149
2150 @item default-staff-staff-spacing
2151 A flexible-spacing alist defining the @code{staff-staff-spacing} used for
2152 ungrouped staves, unless @code{staff-staff-spacing} has been explicitly
2153 set with an @code{\override}.
2154
2155 @item staff-affinity
2156 The direction of the staff to use for spacing the current
2157 non-staff line.  Choices are @code{UP}, @code{DOWN}, and
2158 @code{CENTER}.  If @code{CENTER}, the non-staff line will be
2159 placed equidistant between the two nearest staves on either side,
2160 unless collisions or other spacing constraints prevent this.
2161 Adjacent non-staff lines should have non-increasing
2162 @code{staff-affinity} from top to bottom, e.g. a non-staff line
2163 set to @code{UP} should not immediately follow one that is set to
2164 @code{DOWN}.  Non-staff lines at the top of a system should use
2165 @code{DOWN}; those at the bottom should use @code{UP}.  Setting
2166 @code{staff-affinity} for a staff causes it to be treated as a
2167 non-staff line.  Setting @code{staff-affinity} to @code{#f} causes
2168 a non-staff line to be treated as a staff.  Setting
2169 @code{staff-affinity} to @code{UP}, @code{CENTER}, or @code{DOWN}
2170 causes a staff to be spaced as a non-staff line.
2171
2172 @item nonstaff-relatedstaff-spacing
2173 The distance between the current non-staff line and the nearest
2174 staff in the direction of @code{staff-affinity}, if there are no
2175 non-staff lines between the two, and @code{staff-affinity} is
2176 either @code{UP} or @code{DOWN}.  If @code{staff-affinity} is
2177 @code{CENTER}, then @code{nonstaff-relatedstaff-spacing} is used
2178 for the nearest staves on @emph{both} sides, even if other
2179 non-staff lines appear between the current one and either of the
2180 staves.  This means that the placement of a non-staff line depends
2181 on both the surrounding staves and the surrounding non-staff lines.
2182 Setting the @code{stretchability} of one of these types of spacing to
2183 a small value will make that spacing dominate.  Setting the
2184 @code{stretchability} to a large value will make that spacing have
2185 little effect.
2186
2187 @item nonstaff-nonstaff-spacing
2188 The distance between the current non-staff line and the next
2189 non-staff line in the direction of @code{staff-affinity}, if both
2190 are on the same side of the related staff, and
2191 @code{staff-affinity} is either @code{UP} or @code{DOWN}.
2192
2193 @item nonstaff-unrelatedstaff-spacing
2194 The distance between the current non-staff line and the staff in
2195 the opposite direction from @code{staff-affinity}, if there are no
2196 other non-staff lines between the two, and @code{staff-affinity}
2197 is either @code{UP} or @code{DOWN}.  This can be used, for
2198 example, to require a minimum amount of padding between a
2199 @code{Lyrics} line and the staff to which it does not belong.
2200 @end table
2201
2202
2203 @subsubheading Properties of the @code{StaffGrouper} grob
2204
2205 @code{StaffGrouper} properties are typically adjusted with an
2206 @code{\override} at the @code{StaffGroup} level (or equivalent).
2207
2208 @table @code
2209 @item staff-staff-spacing
2210 The distance between consecutive staves within the current
2211 staff-group.  The @code{staff-staff-spacing} property of an
2212 individual staff's @code{VerticalAxisGroup} grob can be
2213 overriden with different spacing settings for that staff.
2214
2215 @item staffgroup-staff-spacing
2216 The distance between the last staff of the current staff-group and
2217 the staff just below it in the same system, even if one or more
2218 non-staff lines (such as @code{Lyrics}) exist between the two
2219 staves.  Does not apply to the bottom staff of a system.  The
2220 @code{staff-staff-spacing} property of an individual staff's
2221 @code{VerticalAxisGroup} grob can be overriden with different
2222 spacing settings for that staff.
2223 @end table
2224
2225 @seealso
2226 Notation Reference:
2227 @ref{Flexible vertical spacing paper variables,,Flexible vertical spacing @code{@bs{}paper} variables},
2228 @ref{Modifying alists}.
2229
2230 Installed Files:
2231 @file{ly/engraver-init.ly},
2232 @file{scm/define-grobs.scm}.
2233
2234 Internals Reference:
2235 @rinternals{Contexts},
2236 @rinternals{VerticalAxisGroup},
2237 @rinternals{StaffGrouper}.
2238
2239
2240 @node Spacing of ungrouped staves
2241 @unnumberedsubsubsec Spacing of ungrouped staves
2242
2243 @emph{Staves} (such as @code{Staff}, @code{DrumStaff},
2244 @code{TabStaff}, etc.) are contexts that can contain one or more
2245 voice contexts, but cannot contain any other staves.
2246
2247 The following properties affect the spacing of @emph{ungrouped}
2248 staves:
2249
2250 @itemize
2251 @item @code{VerticalAxisGroup} properties:
2252 @itemize
2253 @item @code{default-staff-staff-spacing}
2254 @item @code{staff-staff-spacing}
2255 @end itemize
2256 @end itemize
2257
2258 These grob properties are described individually above; see
2259 @ref{Within-system spacing properties}.
2260
2261 Additional properties are involved for staves that are part of a
2262 staff-group; see @ref{Spacing of grouped staves}.
2263
2264 The following example shows how the @code{default-staff-staff-spacing}
2265 property can affect the spacing of ungrouped staves.
2266 The same overrides applied to @code{staff-staff-spacing} would
2267 have the same effect, but would also apply in cases where the staves
2268 are combined in a group or groups.
2269
2270 @lilypond[verbatim,quote,staffsize=16]
2271 \layout {
2272   \context {
2273     \Staff
2274     \override VerticalAxisGroup.default-staff-staff-spacing =
2275       #'((basic-distance . 8)
2276          (minimum-distance . 7)
2277          (padding . 1))
2278   }
2279 }
2280
2281 <<
2282   % The very low note here needs more room than 'basic-distance
2283   % can provide, so the distance between this staff and the next
2284   % is determined by 'padding.
2285   \new Staff { b,2 r | }
2286
2287   % Here, 'basic-distance provides enough room, and there is no
2288   % need to compress the space (towards 'minimum-distance) to make
2289   % room for anything else on the page, so the distance between
2290   % this staff and the next is determined by 'basic-distance.
2291   \new Staff { \clef bass g2 r | }
2292
2293   % By setting 'padding to a negative value, staves can be made to
2294   % collide.  The lowest acceptable value for 'basic-distance is 0.
2295   \new Staff \with {
2296     \override VerticalAxisGroup.default-staff-staff-spacing =
2297       #'((basic-distance . 3.5)
2298          (padding . -10))
2299   } { \clef bass g2 r | }
2300   \new Staff { \clef bass g2 r | }
2301 >>
2302 @end lilypond
2303
2304 @seealso
2305 Installed Files:
2306 @file{scm/define-grobs.scm}.
2307
2308 Snippets:
2309 @rlsr{Spacing}.
2310
2311 Internals Reference:
2312 @rinternals{VerticalAxisGroup}.
2313
2314
2315 @node Spacing of grouped staves
2316 @unnumberedsubsubsec Spacing of grouped staves
2317
2318 In orchestral and other large scores, it is common to place staves
2319 in groups.  The space between groups is typically larger than the
2320 space between staves of the same group.
2321
2322 @emph{Staff-groups} (such as @code{StaffGroup}, @code{ChoirStaff},
2323 etc.) are contexts that can contain one or more staves
2324 simultaneously.
2325
2326 The following properties affect the spacing of staves inside
2327 staff-groups:
2328
2329 @itemize
2330 @item @code{VerticalAxisGroup} properties:
2331 @itemize
2332 @item @code{staff-staff-spacing}
2333 @end itemize
2334 @item @code{StaffGrouper} properties:
2335 @itemize
2336 @item @code{staff-staff-spacing}
2337 @item @code{staffgroup-staff-spacing}
2338 @end itemize
2339 @end itemize
2340
2341 These grob properties are described individually above; see
2342 @ref{Within-system spacing properties}.
2343
2344 The following example shows how properties of the
2345 @code{StaffGrouper} grob can affect the spacing of grouped staves:
2346
2347 @lilypond[verbatim,quote,staffsize=16]
2348 \layout {
2349   \context {
2350     \Score
2351     \override StaffGrouper.staff-staff-spacing.padding = #0
2352     \override StaffGrouper.staff-staff-spacing.basic-distance = #1
2353   }
2354 }
2355
2356 <<
2357   \new PianoStaff \with {
2358     \override StaffGrouper.staffgroup-staff-spacing.basic-distance = #20
2359   } <<
2360     \new Staff { c'1 }
2361     \new Staff { c'1 }
2362   >>
2363
2364   \new StaffGroup <<
2365     \new Staff { c'1 }
2366     \new Staff { c'1 }
2367   >>
2368 >>
2369 @end lilypond
2370
2371 @seealso
2372 Installed Files:
2373 @file{scm/define-grobs.scm}.
2374
2375 Snippets:
2376 @rlsr{Spacing}.
2377
2378 Internals Reference:
2379 @rinternals{VerticalAxisGroup},
2380 @rinternals{StaffGrouper}.
2381
2382
2383 @node Spacing of non-staff lines
2384 @unnumberedsubsubsec Spacing of non-staff lines
2385
2386 @emph{Non-staff lines} (such as @code{Lyrics}, @code{ChordNames},
2387 etc.) are contexts whose layout objects are engraved like staves
2388 (i.e. in horizontal lines within systems).  Specifically,
2389 non-staff lines are non-staff contexts that create the
2390 @code{VerticalAxisGroup} layout object.
2391
2392 The following properties affect the spacing of non-staff lines:
2393
2394 @itemize
2395 @item @code{VerticalAxisGroup} properties:
2396 @itemize
2397 @item @code{staff-affinity}
2398 @item @code{nonstaff-relatedstaff-spacing}
2399 @item @code{nonstaff-nonstaff-spacing}
2400 @item @code{nonstaff-unrelatedstaff-spacing}
2401 @end itemize
2402 @end itemize
2403
2404 These grob properties are described individually above; see
2405 @ref{Within-system spacing properties}.
2406
2407 The following example shows how the
2408 @code{nonstaff-nonstaff-spacing} property can affect the spacing
2409 of consecutive non-staff lines.  Here, by setting the
2410 @code{stretchability} key to a very high value, the lyrics are
2411 able to stretch much more than usual:
2412
2413 @lilypond[verbatim,quote,staffsize=16]
2414 \layout {
2415   \context {
2416     \Lyrics
2417     \override VerticalAxisGroup.nonstaff-nonstaff-spacing.stretchability = #1000
2418   }
2419 }
2420
2421 \new StaffGroup
2422 <<
2423   \new Staff \with {
2424     \override VerticalAxisGroup.staff-staff-spacing = #'((basic-distance . 30))
2425   } { c'1 }
2426   \new Lyrics \with {
2427     \override VerticalAxisGroup.staff-affinity = #UP
2428   } \lyricmode { up }
2429   \new Lyrics \with {
2430     \override VerticalAxisGroup.staff-affinity = #CENTER
2431   } \lyricmode { center }
2432   \new Lyrics \with {
2433     \override VerticalAxisGroup.staff-affinity = #DOWN
2434   } \lyricmode { down }
2435   \new Staff { c'1 }
2436 >>
2437 @end lilypond
2438
2439 @seealso
2440 Installed Files:
2441 @file{ly/engraver-init.ly},
2442 @file{scm/define-grobs.scm}.
2443
2444 Snippets:
2445 @rlsr{Spacing}.
2446
2447 @c @lsr{spacing,page-spacing.ly},
2448 @c @lsr{spacing,alignment-vertical-spacing.ly}.
2449
2450 Internals Reference:
2451 @rinternals{Contexts},
2452 @rinternals{VerticalAxisGroup}.
2453
2454
2455 @node Explicit staff and system positioning
2456 @subsection Explicit staff and system positioning
2457
2458 One way to understand the flexible vertical spacing mechanisms
2459 explained above is as a collection of settings that control the
2460 amount of vertical padding between staves and systems.
2461
2462 It is possible to approach vertical spacing in a different way
2463 using @code{NonMusicalPaperColumn.line-break-system-details}.
2464 While the flexible vertical spacing mechanisms specify vertical
2465 padding, @code{NonMusicalPaperColumn.line-break-system-details}
2466 can specify exact vertical positions on the page.
2467
2468 @code{NonMusicalPaperColumn.line-break-system-details} accepts
2469 an associative list of three different settings:
2470
2471 @itemize
2472 @item @code{X-offset}
2473 @item @code{Y-offset}
2474 @item @code{alignment-distances}
2475 @end itemize
2476
2477 Grob overrides, including the overrides for @code{NonMusicalPaperColumn}
2478 below, can occur in any of three different places in an input file:
2479
2480 @itemize
2481 @item in the middle of note entry directly
2482 @item in a @code{\context} block
2483 @item in the @code{\with} block
2484 @end itemize
2485
2486 When we override @code{NonMusicalPaperColumn}, we use the usual
2487 @code{\override} command in @code{\context} blocks and in the
2488 @code{\with} block.  On the other hand, when we override
2489 @code{NonMusicalPaperColumn} in the middle of note entry,
2490 use the special @code{\overrideProperty} command.  Here are some
2491 example @code{NonMusicalPaperColumn} overrides with the special
2492 @code{\overrideProperty} command:
2493
2494 @example
2495 \overrideProperty NonMusicalPaperColumn.line-break-system-details
2496   #'((X-offset . 20))
2497
2498 \overrideProperty NonMusicalPaperColumn.line-break-system-details
2499   #'((Y-offset . 40))
2500
2501 \overrideProperty NonMusicalPaperColumn.line-break-system-details
2502   #'((X-offset . 20)
2503      (Y-offset . 40))
2504
2505 \overrideProperty NonMusicalPaperColumn.line-break-system-details
2506   #'((alignment-distances . (15)))
2507
2508 \overrideProperty NonMusicalPaperColumn.line-break-system-details
2509   #'((X-offset . 20)
2510      (Y-offset . 40)
2511      (alignment-distances . (15)))
2512 @end example
2513
2514 To understand how each of these different settings work, we begin
2515 by looking at an example that includes no overrides at all.
2516
2517 @c \book { } is required in these examples to ensure the spacing
2518 @c overrides can be seen between systems. -np
2519
2520 @lilypond[verbatim,quote,staffsize=16]
2521 \header { tagline = ##f }
2522 \paper { left-margin = 0\mm }
2523 \book {
2524   \score {
2525     <<
2526       \new Staff <<
2527         \new Voice {
2528           s1*5 \break
2529           s1*5 \break
2530           s1*5 \break
2531         }
2532         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
2533       >>
2534       \new Staff {
2535         \repeat unfold 15 { d'4 d' d' d' }
2536       }
2537     >>
2538   }
2539 }
2540 @end lilypond
2541
2542 This score isolates line- and page-breaking information in a dedicated
2543 voice.  This technique of creating a breaks voice will help keep layout
2544 separate from music entry as our example becomes more complicated.
2545 See @ref{Using an extra voice for breaks}.
2546
2547 Explicit @code{\breaks} evenly divide the music into six measures per
2548 line.  Vertical spacing results from LilyPond's defaults.  To set
2549 the vertical startpoint of each system explicitly, we can set
2550 the @code{Y-offset} pair in the @code{line-break-system-details}
2551 attribute of the @code{NonMusicalPaperColumn} grob:
2552
2553 @lilypond[verbatim,quote,staffsize=16]
2554 \header { tagline = ##f }
2555 \paper { left-margin = 0\mm }
2556 \book {
2557   \score {
2558     <<
2559       \new Staff <<
2560         \new Voice {
2561           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2562             #'((Y-offset . 0))
2563           s1*5 \break
2564           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2565             #'((Y-offset . 40))
2566           s1*5 \break
2567           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2568             #'((Y-offset . 60))
2569           s1*5 \break
2570         }
2571         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
2572       >>
2573       \new Staff {
2574         \repeat unfold 15 { d'4 d' d' d' }
2575       }
2576     >>
2577   }
2578 }
2579 @end lilypond
2580
2581 Note that @code{line-break-system-details} takes an associative list of
2582 potentially many values, but that we set only one value here.  Note,
2583 too, that the @code{Y-offset} property here determines the exact vertical
2584 position on the page at which each new system will render.
2585
2586 Now that we have set the vertical startpoint of each system
2587 explicitly, we can also set the vertical distances between staves
2588 within each system manually.  We do this using the @code{alignment-distances}
2589 subproperty of @code{line-break-system-details}.
2590
2591 @lilypond[verbatim,quote,staffsize=16]
2592 \header { tagline = ##f }
2593 \paper { left-margin = 0\mm }
2594 \book {
2595   \score {
2596     <<
2597       \new Staff <<
2598         \new Voice {
2599           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2600             #'((Y-offset . 20)
2601                (alignment-distances . (10)))
2602           s1*5 \break
2603           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2604             #'((Y-offset . 60)
2605                (alignment-distances . (15)))
2606           s1*5 \break
2607           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2608           #'((Y-offset . 85)
2609              (alignment-distances . (20)))
2610           s1*5 \break
2611         }
2612         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
2613       >>
2614       \new Staff {
2615         \repeat unfold 15 { d'4 d' d' d' }
2616       }
2617     >>
2618   }
2619 }
2620 @end lilypond
2621
2622 Note that here we assign two different values to the
2623 @code{line-break-system-details} attribute of the
2624 @code{NonMusicalPaperColumn} grob.  Though the
2625 @code{line-break-system-details} attribute alist accepts many
2626 additional spacing parameters (including, for example, a corresponding
2627 @code{X-offset} pair), we need only set the @code{Y-offset} and
2628 @code{alignment-distances} pairs to control the vertical startpoint of
2629 every system and every staff.  Finally, note that @code{alignment-distances}
2630 specifies the vertical positioning of staves but not of staff groups.
2631
2632 @lilypond[verbatim,quote,staffsize=16]
2633 \header { tagline = ##f }
2634 \paper { left-margin = 0\mm }
2635 \book {
2636   \score {
2637     <<
2638       \new Staff <<
2639         \new Voice {
2640           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2641             #'((Y-offset . 0)
2642                (alignment-distances . (30 10)))
2643           s1*5 \break
2644           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2645             #'((Y-offset . 60)
2646                (alignment-distances . (10 10)))
2647           s1*5 \break
2648           \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details
2649             #'((Y-offset . 100)
2650                (alignment-distances . (10 30)))
2651           s1*5 \break
2652         }
2653         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
2654       >>
2655       \new StaffGroup <<
2656         \new Staff { \repeat unfold 15 { d'4 d' d' d' } }
2657         \new Staff { \repeat unfold 15 { e'4 e' e' e' } }
2658       >>
2659     >>
2660   }
2661 }
2662 @end lilypond
2663
2664 Some points to consider:
2665
2666 @itemize
2667 @item When using @code{alignment-distances}, lyrics and other non-staff lines
2668 do not count as a staff.
2669
2670 @item The units of the numbers passed to @code{X-offset},
2671 @code{Y-offset} and @code{alignment-distances} are interpreted as multiples
2672 of the distance between adjacent staff lines.  Positive values move staves
2673 and lyrics up, negative values move staves and lyrics down.
2674
2675 @item Because the @code{NonMusicalPaperColumn.line-break-system-details}
2676 settings given here allow the positioning of staves and systems anywhere
2677 on the page, it is possible to violate paper or margin boundaries or even
2678 to print staves or systems on top of one another.  Reasonable values
2679 passed to these different settings will avoid this.
2680 @end itemize
2681
2682 @seealso
2683 Snippets:
2684 @rlsr{Spacing}.
2685
2686
2687 @node Vertical collision avoidance
2688 @subsection Vertical collision avoidance
2689
2690 @funindex outside-staff-priority
2691 @funindex outside-staff-padding
2692 @funindex outside-staff-horizontal-padding
2693
2694 Intuitively, there are some objects in musical notation that belong
2695 to the staff and there are other objects that should be placed outside
2696 the staff.  Objects belonging outside the staff include things such as
2697 rehearsal marks, text and dynamic markings (from now on, these will
2698 be called outside-staff objects).  LilyPond's rule for the
2699 vertical placement of outside-staff objects is to place them as close
2700 to the staff as possible but not so close that they collide with
2701 another object.
2702
2703 LilyPond uses the @code{outside-staff-priority} property to determine
2704 whether a grob is an outside-staff object: if @code{outside-staff-priority}
2705 is a number, the grob is an outside-staff object.  In addition,
2706 @code{outside-staff-priority} tells LilyPond in which order the objects
2707 should be placed.
2708
2709 First, LilyPond places all the objects that do not belong outside
2710 the staff.  Then it sorts the outside-staff objects according to their
2711 @code{outside-staff-priority} (in increasing order).  One by one, LilyPond
2712 takes the outside-staff objects and places them so that they do
2713 not collide with any objects that have already been placed.  That
2714 is, if two outside-staff grobs are competing for the same space, the one
2715 with the lower @code{outside-staff-priority} will be placed closer to
2716 the staff.
2717
2718 @lilypond[quote,ragged-right,relative=2,verbatim]
2719 c4_"Text"\pp
2720 r2.
2721 \once \override TextScript.outside-staff-priority = #1
2722 c4_"Text"\pp % this time the text will be closer to the staff
2723 r2.
2724 % by setting outside-staff-priority to a non-number,
2725 % we disable the automatic collision avoidance
2726 \once \override TextScript.outside-staff-priority = ##f
2727 \once \override DynamicLineSpanner.outside-staff-priority = ##f
2728 c4_"Text"\pp % now they will collide
2729 @end lilypond
2730
2731 The vertical padding around outside-staff objects
2732 can be controlled with @code{outside-staff-padding}.
2733
2734 @lilypond[quote,ragged-right,relative=2,verbatim,staffsize=18]
2735 \once \override TextScript.outside-staff-padding = #0
2736 a4-"outside-staff-padding = #0"
2737 \once \override TextScript.outside-staff-padding = #3
2738 d-"outside-staff-padding = #3"
2739 c-"default outside-staff-padding"
2740 b-"default outside-staff-padding"
2741 R1
2742 @end lilypond
2743
2744
2745 By default, outside-staff objects are placed so they avoid
2746 a horizontal collision with previously-positioned grobs.  This
2747 can lead to situations in which objects are placed close to each
2748 other horizontally.
2749 As shown in the example below, setting @code{outside-staff-horizontal-padding}
2750 increases the horizontal spacing required, and in this case moves the text up
2751 to prevent it from getting too close to the ledger lines.
2752
2753 @lilypond[quote,ragged-right,relative=2,verbatim]
2754 c4^"Word" c c''2
2755 R1
2756 \once \override TextScript.outside-staff-horizontal-padding = #1
2757 c,,4^"Word" c c''2
2758 @end lilypond
2759
2760 @seealso
2761 Snippets:
2762 @rlsr{Spacing}.
2763
2764
2765 @node Horizontal spacing
2766 @section Horizontal spacing
2767
2768 @cindex horizontal spacing
2769 @cindex spacing, horizontal
2770
2771 @menu
2772 * Horizontal spacing overview::
2773 * New spacing area::
2774 * Changing horizontal spacing::
2775 * Line length::
2776 * Proportional notation::
2777 @end menu
2778
2779
2780 @node Horizontal spacing overview
2781 @subsection Horizontal spacing overview
2782
2783 The spacing engine translates differences in durations into stretchable
2784 distances (@q{springs}) of differing lengths.  Longer durations get
2785 more space, shorter durations get less.  The shortest durations get a
2786 fixed amount of space (which is controlled by
2787 @code{shortest-duration-space} in the @rinternals{SpacingSpanner}
2788 object).  The longer the duration, the more space it gets: doubling a
2789 duration adds a fixed amount (this amount is controlled by
2790 @code{spacing-increment}) of space to the note.
2791
2792 For example, the following piece contains lots of half, quarter, and
2793 8th notes; the eighth note is followed by 1 note head width (NHW).
2794 The quarter note is followed by 2 NHW, the half by 3 NHW, etc.
2795
2796 @lilypond[quote,verbatim,relative=1]
2797 c2 c4. c8
2798 c4. c8 c4. c8
2799 c8 c c4 c c
2800 @end lilypond
2801
2802 Normally, @code{spacing-increment} is set to 1.2 staff space, which is
2803 approximately the width of a note head, and
2804 @code{shortest-duration-space} is set to 2.0, meaning that the
2805 shortest note gets 2.4 staff space (2.0 times the
2806 @code{spacing-increment}) of horizontal space.  This space is counted
2807 from the left edge of the symbol, so the shortest notes are generally
2808 followed by one NHW of space.
2809
2810 If one would follow the above procedure exactly, then adding a single
2811 32nd note to a score that uses 8th and 16th notes, would widen up the
2812 entire score a lot.  The shortest note is no longer a 16th, but a 32nd,
2813 thus adding 1 NHW to every note.  To prevent this, the shortest
2814 duration for spacing is not the shortest note in the score, but rather
2815 the one which occurs most frequently.
2816
2817
2818 The most common shortest duration is determined as follows: in every
2819 measure, the shortest duration is determined.  The most common shortest
2820 duration is taken as the basis for the spacing, with the stipulation
2821 that this shortest duration should always be equal to or shorter than
2822 an 8th note.  The shortest duration is printed when you run
2823 @code{lilypond} with the @option{--verbose} option.
2824
2825 These durations may also be customized.  If you set the
2826 @code{common-shortest-duration} in @rinternals{SpacingSpanner}, then
2827 this sets the base duration for spacing.  The maximum duration for this
2828 base (normally an 8th), is set through @code{base-shortest-duration}.
2829
2830 @funindex common-shortest-duration
2831 @funindex base-shortest-duration
2832 @funindex stem-spacing-correction
2833 @funindex spacing
2834
2835 Notes that are even shorter than the common shortest note are
2836 followed by a space that is proportional to their duration relative to
2837 the common shortest note.  So if we were to add only a few 16th notes
2838 to the example above, they would be followed by half a NHW:
2839
2840 @lilypond[quote,verbatim,relative=2]
2841 c2 c4. c8 | c4. c16[ c] c4. c8 | c8 c c4 c c
2842 @end lilypond
2843
2844
2845 In the @emph{Essay on automated music engraving}, it was explained
2846 that stem directions influence spacing (see
2847 @ressay{Optical spacing}).  This is controlled with the
2848 @code{stem-spacing-correction} property in the
2849 @rinternals{NoteSpacing}, object.  These are generated for every
2850 @rinternals{Voice} context.  The @code{StaffSpacing} object
2851 (generated in @rinternals{Staff} context) contains the same
2852 property for controlling the stem/bar line spacing.  The following
2853 example shows these corrections, once with default settings, and
2854 once with exaggerated corrections:
2855
2856 @lilypond[quote,ragged-right]
2857 {
2858   c'4 e''4 e'4 b'4 |
2859   b'4 e''4 b'4 e''4 |
2860   \override Staff.NoteSpacing.stem-spacing-correction = #1.5
2861   \override Staff.StaffSpacing.stem-spacing-correction = #1.5
2862   c'4 e''4 e'4 b'4 |
2863   b'4 e''4 b'4 e''4 |
2864 }
2865 @end lilypond
2866
2867 Proportional notation is supported; see @ref{Proportional notation}.
2868
2869 @seealso
2870 Essay on automated music engraving:
2871 @ressay{Optical spacing}.
2872
2873 Snippets:
2874 @rlsr{Spacing}.
2875
2876 Internals Reference:
2877 @rinternals{SpacingSpanner},
2878 @rinternals{NoteSpacing},
2879 @rinternals{StaffSpacing},
2880 @rinternals{NonMusicalPaperColumn}.
2881
2882 @knownissues
2883 There is no convenient mechanism to manually override spacing.  The
2884 following work-around may be used to insert extra space into a score,
2885 adjusting the padding value as necessary.
2886
2887 @example
2888  \override Score.NonMusicalPaperColumn.padding = #10
2889 @end example
2890
2891 No work-around exists for decreasing the amount of space.
2892
2893
2894 @node New spacing area
2895 @subsection New spacing area
2896
2897 @funindex \newSpacingSection
2898 @cindex new spacing area
2899 @cindex spacing area, new
2900 @cindex notes, spacing horizontally
2901
2902 New sections with different spacing parameters can be started with
2903 @code{newSpacingSection}.  This is useful when there are
2904 sections with a different notions of long and short notes.
2905
2906 In the following example, the time signature change introduces a new
2907 section, and hence the 16ths notes are automatically spaced slightly
2908 wider.
2909
2910 @lilypond[relative=1,verbatim,quote]
2911 \time 2/4
2912 c4 c8 c
2913 c8 c c4 c16[ c c8] c4
2914 \newSpacingSection
2915 \time 4/16
2916 c16[ c c8]
2917 @end lilypond
2918
2919 The @code{\newSpacingSection} command creates a new
2920 @code{SpacingSpanner} object at that musical moment.
2921 If the automatic spacing adjustments do not give the required spacing,
2922 manual @code{\override}s may be applied to its properties.  These must
2923 be applied at the same musical moment as the @code{\newSpacingSection}
2924 command itself.  They will then affect the spacing of all the following
2925 music until the properties are changed in a new spacing section, for
2926 example,
2927
2928 @lilypond[relative=1,verbatim,quote]
2929 \time 4/16
2930 c16[ c c8]
2931 \newSpacingSection
2932 \override Score.SpacingSpanner.spacing-increment = #2
2933 c16[ c c8]
2934 \newSpacingSection
2935 \revert Score.SpacingSpanner.spacing-increment
2936 c16[ c c8]
2937 @end lilypond
2938
2939
2940 @seealso
2941 Snippets:
2942 @rlsr{Spacing}.
2943
2944 Internals Reference:
2945 @rinternals{SpacingSpanner}.
2946
2947
2948 @node Changing horizontal spacing
2949 @subsection Changing horizontal spacing
2950
2951 Horizontal spacing may be altered with the
2952 @code{base-shortest-duration} property.  Here
2953 we compare the same music; once without altering
2954 the property, and then altered.  Larger values
2955 of @code{ly:make-moment} will produce smaller
2956 music.  Note that @code{ly:make-moment} constructs
2957 a duration, so @code{1 4} is a longer duration
2958 than @code{1 16}.
2959
2960 @lilypond[verbatim,line-width=12\cm]
2961 \score {
2962   \relative c'' {
2963     g4 e e2 | f4 d d2 | c4 d e f | g4 g g2 |
2964     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2965     d4 d d d | d4 e f2 | e4 e e e | e4 f g2 |
2966     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2967   }
2968 }
2969 @end lilypond
2970
2971 @lilypond[verbatim,line-width=12\cm]
2972 \score {
2973   \relative c'' {
2974     g4 e e2 | f4 d d2 | c4 d e f | g4 g g2 |
2975     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2976     d4 d d d | d4 e f2 | e4 e e e | e4 f g2 |
2977     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2978   }
2979   \layout {
2980     \context {
2981       \Score
2982       \override SpacingSpanner.base-shortest-duration = #(ly:make-moment 1/16)
2983     }
2984   }
2985 }
2986 @end lilypond
2987
2988
2989 @snippets
2990
2991 By default, spacing in tuplets depends on various non-duration
2992 factors (such as accidentals, clef changes, etc).  To disregard
2993 such symbols and force uniform equal-duration spacing, use
2994 @code{Score.SpacingSpanner.uniform-stretching}.  This
2995 property can only be changed at the beginning of a score,
2996
2997 @lilypond[quote,ragged-right,verbatim]
2998 \score {
2999   <<
3000     \new Staff {
3001       \tuplet 5/4 { c8 c c c c } c8 c c c
3002     }
3003     \new Staff {
3004       c8 c c c \tuplet 5/4 { c8 c c c c }
3005     }
3006   >>
3007   \layout {
3008     \context {
3009       \Score
3010       \override SpacingSpanner.uniform-stretching = ##t
3011     }
3012   }
3013 }
3014 @end lilypond
3015
3016 When @code{strict-note-spacing} is set, notes are spaced without
3017 regard for clefs, bar lines, and grace notes,
3018
3019 @lilypond[quote,ragged-right,relative=2,verbatim]
3020 \override Score.SpacingSpanner.strict-note-spacing = ##t
3021 \new Staff { c8[ c \clef alto c \grace { c16 c } c8 c c]  c32[ c] }
3022 @end lilypond
3023
3024 @seealso
3025 Snippets:
3026 @rlsr{Spacing}.
3027
3028
3029 @node Line length
3030 @subsection Line length
3031
3032 @cindex page breaks
3033 @cindex breaking pages
3034
3035 @funindex indent
3036 @funindex line-width
3037 @funindex ragged-right
3038 @funindex ragged-last
3039
3040 @c Although line-width can be set in \layout, it should be set in paper
3041 @c block, to get page layout right.
3042 @c Setting indent in \paper block makes not much sense, but it works.
3043
3044 @c Bit verbose and vague, use examples?
3045 The most basic settings influencing the spacing are @code{indent} and
3046 @code{line-width}.  They are set in the @code{\layout} block.  They
3047 control the indentation of the first line of music, and the lengths of
3048 the lines.
3049
3050 If @code{ragged-right} is set to true in the @code{\layout} block, then
3051 systems ends at their natural horizontal length, instead of being spread
3052 horizontally to fill the whole line.  This is useful for
3053 short fragments, and for checking how tight the natural spacing is.
3054 The normal default setting is false, but if the score has only one
3055 system the default value is true.
3056
3057 @cindex page layout
3058 @cindex vertical spacing
3059
3060 The option @code{ragged-last} is similar to @code{ragged-right}, but
3061 only affects the last line of the piece.  No restrictions are put on
3062 that line.  The result is similar to formatting text paragraphs.  In a
3063 paragraph, the last line simply takes its natural horizontal length.
3064 @c Note that for text there are several options for the last line.
3065 @c While Knuth TeX uses natural length, lead typesetters use the same
3066 @c stretch as the previous line.  eTeX uses \lastlinefit to
3067 @c interpolate between both these solutions.
3068
3069 @example
3070 \layout @{
3071   indent = #0
3072   line-width = #150
3073   ragged-last = ##t
3074 @}
3075 @end example
3076
3077 @seealso
3078 Snippets:
3079 @rlsr{Spacing}.
3080
3081
3082 @node Proportional notation
3083 @subsection Proportional notation
3084
3085 LilyPond supports proportional notation, a type of horizontal spacing
3086 in which each note consumes an amount of horizontal space exactly
3087 equivalent to its rhythmic duration.  This type of proportional spacing
3088 is comparable to horizontal spacing on top of graph paper.  Some late
3089 20th- and early 21st-century scores use proportional notation to
3090 clarify complex rhythmic relationships or to facilitate the placement
3091 of timelines or other graphics directly in the score.
3092
3093 LilyPond supports five different settings for proportional notation,
3094 which may be used together or alone:
3095
3096 @itemize
3097 @item @code{proportionalNotationDuration}
3098 @item @code{uniform-stretching}
3099 @item @code{strict-note-spacing}
3100 @item @code{\remove "Separating_line_group_engraver"}
3101 @item @code{\override PaperColumn.used = ##t}
3102 @end itemize
3103
3104 In the examples that follow, we explore these five different
3105 proportional notation settings and examine how these settings interact.
3106
3107 We start with the following one-measure example, which uses classical
3108 spacing with ragged-right turned on.
3109
3110 @c The initial pitch is not necessary as long as RhythmicStaff is
3111 @c not preceded by other material in the score, but we don't want
3112 @c to explain that.
3113 @lilypond[quote,verbatim,ragged-right]
3114 \score {
3115   <<
3116     \new RhythmicStaff {
3117       c2 16 16 16 16 \tuplet 5/4 { 16 16 16 16 16 }
3118     }
3119   >>
3120 }
3121 @end lilypond
3122
3123 Notice that the half note which begins the measure takes up far less
3124 than half of the horizontal space of the measure.  Likewise, the
3125 sixteenth notes and sixteenth-note quintuplets (or twentieth notes)
3126 which end the measure together take up far more than half the
3127 horizontal space of the measure.
3128
3129 In classical engraving, this spacing may be exactly what we want
3130 because we can borrow horizontal space from the half note and conserve
3131 horizontal space across the measure as a whole.
3132
3133 On the other hand, if we want to insert a measured timeline or other
3134 graphic above or below our score, we need proportional notation.  We
3135 turn proportional notation on with the proportionalNotationDuration
3136 setting.
3137
3138 @lilypond[quote,verbatim,ragged-right]
3139 \score {
3140   <<
3141     \new RhythmicStaff {
3142       c2 16 16 16 16 \tuplet 5/4 { 16 16 16 16 16 }
3143     }
3144   >>
3145  \layout {
3146     \context {
3147       \Score
3148       proportionalNotationDuration = #(ly:make-moment 1/20)
3149     }
3150   }
3151 }
3152 @end lilypond
3153
3154 The half note at the beginning of the measure and the faster notes in
3155 the second half of the measure now occupy equal amounts of horizontal
3156 space.  We could place a measured timeline or graphic above or below
3157 this example.
3158
3159 The @code{proportionalNotationDuration} setting is a context setting
3160 that lives in @code{Score}.  Remember that context settings can appear
3161 in one of three locations within our input file -- in a @code{\with}
3162 block, in a @code{\context} block, or directly in music entry preceded
3163 by the @code{\set} command.  As with all context settings, users can
3164 pick which of the three different locations they would like to
3165 set @code{proportionalNotationDuration} in to.
3166
3167 The @code{proportionalNotationDuration} setting takes a single argument,
3168 which is the reference duration against that all music will be spaced.
3169 The LilyPond Scheme function @code{make-moment} takes two arguments
3170 -- a numerator and denominator which together express some fraction of
3171 a whole note.  The call @code{(ly:make-moment 1/20)} therefore produces
3172 a reference duration of a twentieth note.  Values such as
3173 @code{(ly:make-moment 1/16)}, @code{(ly:make-moment 1/8)}, and
3174 @code{(ly:make-moment 3/97)} are all possible as well.
3175
3176 How do we select the right reference duration to pass to
3177 @code{proportionalNotationDuration}?  Usually by a process of trial
3178 and error, beginning with a duration close to the fastest (or smallest)
3179 duration in the piece.  Smaller reference durations space music loosely;
3180 larger reference durations space music tightly.
3181
3182 @lilypond[quote,verbatim,ragged-right]
3183 \score {
3184   <<
3185     \new RhythmicStaff {
3186       c2 16 16 16 16 \tuplet 5/4 { 16 16 16 16 16 }
3187     }
3188   >>
3189   \layout {
3190     \context {
3191       \Score
3192       proportionalNotationDuration = #(ly:make-moment 1/8)
3193     }
3194   }
3195 }
3196
3197 \score {
3198   <<
3199     \new RhythmicStaff {
3200       c2 16 16 16 16 \tuplet 5/4 { 16 16 16 16 16 }
3201     }
3202   >>
3203   \layout {
3204     \context {
3205       \Score
3206       proportionalNotationDuration = #(ly:make-moment 1/16)
3207     }
3208   }
3209 }
3210
3211 \score {
3212   <<
3213     \new RhythmicStaff {
3214       c2 16 16 16 16 \tuplet 5/4 { 16 16 16 16 16 }
3215     }
3216   >>
3217   \layout {
3218     \context {
3219       \Score
3220       proportionalNotationDuration = #(ly:make-moment 1/32)
3221     }
3222   }
3223 }
3224 @end lilypond
3225
3226 Note that too large a reference duration -- such as the eighth note,
3227 above -- spaces music too tightly and can cause note head collisions.
3228 Also that proportional notation in general takes up more horizontal
3229 space than classical spacing.  Proportional spacing provides rhythmic
3230 clarity at the expense of horizontal space.
3231
3232 Next we examine how to optimally space overlapping tuplets.
3233
3234 We start by examining what happens to our original example, with
3235 classical spacing, when we add a second staff with a different type of
3236 tuplet.
3237
3238 @lilypond[quote,verbatim,ragged-right]
3239 \score {
3240   <<
3241     \new RhythmicStaff {
3242       c2 16 16 16 16 \tuplet 5/4 { 16 16 16 16 16 }
3243     }
3244     \new RhythmicStaff {
3245       \tuplet 9/8 { c8 8 8 8 8 8 8 8 8 }
3246     }
3247   >>
3248 }
3249 @end lilypond
3250
3251 The spacing is bad because the evenly spaced notes of the bottom staff
3252 do not stretch uniformly.  Classical engravings include very few complex
3253 triplets and so classical engraving rules can generate this type of
3254 result.  Setting @code{proportionalNotationDuration} fixes this.
3255
3256 @lilypond[quote,verbatim,ragged-right]
3257 \score {
3258   <<
3259     \new RhythmicStaff {
3260       c2 16 16 16 16 \tuplet 5/4 { 16 16 16 16 16 }
3261     }
3262     \new RhythmicStaff {
3263       \tuplet 9/8 { c8 8 8 8 8 8 8 8 8 }
3264     }
3265   >>
3266   \layout {
3267     \context {
3268       \Score
3269       proportionalNotationDuration = #(ly:make-moment 1/20)
3270     }
3271   }
3272 }
3273 @end lilypond
3274
3275 But if we look very carefully we can see that notes of the second half
3276 of the 9-tuplet space ever so slightly more widely than the notes
3277 of the first half of the 9-tuplet.  To ensure uniform stretching, we
3278 turn on @code{uniform-stretching}, which is a property of
3279 @code{SpacingSpanner}.
3280
3281 @lilypond[quote,verbatim,ragged-right]
3282 \score {
3283   <<
3284     \new RhythmicStaff {
3285       c2 16 16 16 16 \tuplet 5/4 { 16 16 16 16 16 }
3286     }
3287     \new RhythmicStaff {
3288       \tuplet 9/8 { c8 8 8 8 8 8 8 8 8 }
3289     }
3290   >>
3291   \layout {
3292     \context {
3293       \Score
3294       proportionalNotationDuration = #(ly:make-moment 1/20)
3295       \override SpacingSpanner.uniform-stretching = ##t
3296     }
3297   }
3298 }
3299 @end lilypond
3300
3301 Our two-staff example now spaces exactly, our rhythmic
3302 relationships are visually clear, and we can include a measured
3303 timeline or graphic if we want.
3304
3305 Note that the LilyPond's proportional notation package expects
3306 that all proportional scores set the SpacingSpanner's
3307 'uniform-stretching attribute to ##t.  Setting
3308 proportionalNotationDuration without also setting the
3309 SpacingSpanner's 'uniform-stretching attribute to ##t will, for
3310 example, cause Skips to consume an incorrect amount of horizontal
3311 space.
3312
3313 The SpacingSpanner is an abstract grob that lives in the Score
3314 context.  As with our settings of proportionalNotationDuration,
3315 overrides to the SpacingSpanner can occur in any of three
3316 different places in our input file â€“ in the Score \with block, in
3317 a Score \context block, or in note entry directly.
3318
3319 There is by default only one @code{SpacingSpanner} per @code{Score}.  This
3320 means that, by default, @code{uniform-stretching} is either turned on for the
3321 entire score or turned off for the entire score.  We can, however,
3322 override this behavior and turn on different spacing features at
3323 different places in the score.  We do this with the command
3324 @code{\newSpacingSection}.  See @ref{New spacing area}, for more info.
3325
3326 Next we examine the effects of the @code{Separating_line_group_engraver} and
3327 see why proportional scores frequently remove this engraver.  The following
3328 example shows that there is a small amount of @qq{prefatory} space
3329 just before the first note in each system.
3330
3331 @lilypond[quote,verbatim,ragged-right]
3332 \paper {
3333   indent = #0
3334 }
3335
3336 \new Staff {
3337   c'1
3338   \break
3339   c'1
3340 }
3341 @end lilypond
3342
3343
3344 The amount of this prefatory space is the same whether after a time
3345 signature, a key signature or a clef.  @code{Separating_line_group_engraver}
3346 is responsible for this space.  Removing @code{Separating_line_group_engraver}
3347 reduces this space to zero.
3348
3349 @lilypond[quote,verbatim,ragged-right]
3350 \paper {
3351   indent = #0
3352 }
3353
3354 \new Staff \with {
3355   \remove "Separating_line_group_engraver"
3356 } {
3357   c'1
3358   \break
3359   c'1
3360 }
3361 @end lilypond
3362
3363 non-musical elements like time signatures, key signatures, clefs and
3364 accidentals are problematic in proportional notation.  None of these
3365 elements has rhythmic duration.  But all of these elements consume
3366 horizontal space.  Different proportional scores approach these
3367 problems differently.
3368
3369 It may be possible to avoid spacing problems with key signatures
3370 simply by not having any.  This is a valid option since most
3371 proportional scores are contemporary music.  The same may be true
3372 of time signatures, especially for those scores
3373 that include a measured timeline or other graphic.  But these scores
3374 are exceptional and most proportional scores include at least some
3375 time signatures.  Clefs and accidentals are even more essential.
3376
3377 So what strategies exist for spacing non-musical elements in a
3378 proportional context?  One good option is the @code{strict-note-spacing}
3379 property of @code{SpacingSpanner}.  Compare the two scores below:
3380
3381 @lilypond[quote,verbatim,ragged-right]
3382 \new Staff {
3383   \set Score.proportionalNotationDuration = #(ly:make-moment 1/16)
3384   c''8 8 8 \clef alto d'2 2
3385 }
3386
3387 \new Staff {
3388   \set Score.proportionalNotationDuration = #(ly:make-moment 1/16)
3389   \override Score.SpacingSpanner.strict-note-spacing = ##t
3390   c''8 8 8 \clef alto d'2 2
3391 }
3392 @end lilypond
3393
3394 Both scores are proportional, but the spacing in the first score
3395 is too loose because of the clef change.  The spacing of the second
3396 score remains strict, however, because strict-note-spacing is
3397 turned on.  Turning on strict-note-spacing causes the width of
3398 time signatures, key signatures, clefs and accidentals to play no
3399 part in the spacing algorithm.
3400
3401 In addition to the settings given here, there are other settings
3402 that frequently appear in proportional scores.  These include:
3403
3404 @itemize
3405 @item @code{\override SpacingSpanner.strict-grace-spacing = ##t}
3406 @item @code{\set tupletFullLength = ##t}
3407 @item @code{\override Beam.breakable = ##t}
3408 @item @code{\override Glissando.breakable = ##t}
3409 @item @code{\override TextSpanner.breakable = ##t}
3410 @item @code{\remove "Forbid_line_break_engraver" in the Voice context}
3411 @end itemize
3412
3413 These settings space grace notes strictly, extend tuplet brackets to
3414 mark both rhythmic start- and stop-points, and allow spanning elements
3415 to break across systems and pages.  See the respective parts of the manual
3416 for these related settings.
3417
3418 @seealso
3419 Notation Reference:
3420 @ref{New spacing area}.
3421
3422 Snippets:
3423 @rlsr{Spacing}.
3424
3425
3426 @node Fitting music onto fewer pages
3427 @section Fitting music onto fewer pages
3428
3429 Sometimes you can end up with one or two staves on a second
3430 (or third, or fourth@dots{}) page.  This is annoying, especially
3431 if you look at previous pages and it looks like there is plenty
3432 of room left on those.
3433
3434 When investigating layout issues, @code{annotate-spacing} is an
3435 invaluable tool.  This command prints the values of various layout
3436 spacing variables; for more details see the following section,
3437 @ref{Displaying spacing}.
3438
3439 @menu
3440 * Displaying spacing::
3441 * Changing spacing::
3442 @end menu
3443
3444
3445 @node Displaying spacing
3446 @subsection Displaying spacing
3447
3448 @funindex annotate-spacing
3449 @cindex spacing, display of layout
3450
3451 To graphically display the dimensions of vertical layout variables
3452 that may be altered for page formatting, set
3453 @code{annotate-spacing} in the @code{\paper} block:
3454
3455 @lilypond[verbatim,quote,papersize=a6landscape]
3456 \book {
3457   \score { { c4 } }
3458   \paper { annotate-spacing = ##t }
3459 }
3460 @end lilypond
3461
3462
3463 @noindent
3464 All layout dimensions are displayed in staff-spaces, regardless
3465 of the units specified in the @code{\paper} or @code{\layout} block.
3466 In the above example, @code{paper-height} has a value of 59.75
3467 @code{staff-spaces}, and the @code{staff-size} is 20 points (the
3468 default value).  Note that:
3469
3470 @multitable {1 staff-space} {staff-size)/4 * (25.4/72.27) mm}
3471
3472 @item 1 point
3473 @tab = (25.4/72.27) mm
3474
3475 @item 1 staff-space
3476 @tab = (@code{staff-size})/4 pts
3477 @item
3478 @tab = (@code{staff-size})/4 * (25.4/72.27) mm
3479
3480 @end multitable
3481
3482 @noindent
3483 In this case, one @code{staff-space} is approximately equal to
3484 1.757mm.  Thus the @code{paper-height} measurement of 59.75
3485 @code{staff-spaces} is equivalent to 105 millimeters, the height
3486 of @code{a6} paper in landscape orientation.  The pairs
3487 (@var{a},@var{b}) are intervals, where @var{a} is the lower
3488 edge and @var{b} the upper edge of the interval.
3489
3490 @seealso
3491 Notation Reference:
3492 @ref{Setting the staff size}.
3493
3494 Snippets:
3495 @rlsr{Spacing}.
3496
3497
3498 @node Changing spacing
3499 @subsection Changing spacing
3500
3501 The output of @code{annotate-spacing} reveals vertical dimensions
3502 in great detail.  For details about modifying margins and other
3503 layout variables, see @ref{Page layout}.
3504
3505 Other than margins, there are a few other options to save space:
3506
3507 @itemize
3508 @item
3509 Force systems to move as close together as possible (to fit as
3510 many systems as possible onto a page) while being spaced so that
3511 there is no blank space at the bottom of the page.
3512
3513 @example
3514 \paper @{
3515   system-system-spacing = #'((basic-distance . 0.1) (padding . 0))
3516   ragged-last-bottom = ##f
3517   ragged-bottom = ##f
3518 @}
3519 @end example
3520
3521 @item
3522 Force the number of systems.  This can help in two ways.  Just
3523 setting a value, even the same value as the number of systems
3524 being typeset by default, will sometimes cause more systems to
3525 be fitted onto each page, as an estimation step is then bypassed,
3526 giving a more accurate fit to each page.  Also, forcing an actual
3527 reduction in the number of systems may save a further page.  For
3528 example, if the default layout has 11 systems, the following
3529 assignment will force a layout with 10 systems.
3530
3531 @example
3532 \paper @{
3533   system-count = #10
3534 @}
3535 @end example
3536
3537 @item
3538 Force the number of pages.  For example, the following
3539 assignment will force a layout with 2 pages.
3540
3541 @example
3542 \paper @{
3543   page-count = #2
3544 @}
3545 @end example
3546
3547 @item
3548 Avoid (or reduce) objects that increase the vertical size of a
3549 system.  For example, volta repeats (or alternate repeats) require
3550 extra space.  If these repeats are spread over two systems, they
3551 will take up more space than one system with the volta repeats and
3552 another system without.  For example, dynamics that @q{stick out} of
3553 a system can be moved closer to the staff:
3554
3555 @lilypond[verbatim,quote,relative=1]
3556 e4 c g\f c
3557 e4 c g-\tweak X-offset #-2.7 \f c
3558 @end lilypond
3559
3560 @item
3561 Alter the horizontal spacing via @code{SpacingSpanner}.  For more
3562 details, see @ref{Changing horizontal spacing}.  The following
3563 example illustrates the default spacing:
3564
3565 @lilypond[verbatim,quote]
3566 \score {
3567   \relative c'' {
3568     g4 e e2 |
3569     f4 d d2 |
3570     c4 d e f |
3571     g4 g g2 |
3572     g4 e e2 |
3573   }
3574 }
3575 @end lilypond
3576
3577 @noindent
3578 The next example modifies @code{common-shortest-duration} from a
3579 value of @code{1/4} to @code{1/2}.  The quarter note is the most
3580 common and shortest duration in this example, so by making this
3581 duration longer, a @q{squeezing} effect occurs:
3582
3583 @lilypond[verbatim,quote]
3584 \score {
3585   \relative c'' {
3586     g4 e e2 |
3587     f4 d d2 |
3588     c4 d e f |
3589     g4 g g2 |
3590     g4 e e2 |
3591   }
3592   \layout {
3593     \context {
3594       \Score
3595       \override SpacingSpanner.common-shortest-duration =
3596         #(ly:make-moment 1/2)
3597     }
3598   }
3599 }
3600 @end lilypond
3601
3602 @noindent
3603 The @code{common-shortest-duration} property cannot be modified
3604 dynamically, so it must always be placed in a @code{\context}
3605 block so that it applies to the whole score.
3606
3607 @end itemize
3608
3609 @seealso
3610 Notation Reference:
3611 @ref{Page layout},
3612 @ref{Changing horizontal spacing}.
3613
3614 Snippets:
3615 @rlsr{Spacing}.