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