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