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