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