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