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