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