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