]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/spacing.itely
773bbf9e48b16cd2f7659547bbb80032ed551232
[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 @{ \Voice
938     \override TextScript #'padding = #1.0
939     \override Glissando #'thickness = #3
940   @}
941 @}
942 @end example
943
944
945 @seealso
946 Notation Reference:
947 @ref{Changing context default settings}.
948
949 Snippets:
950 @rlsr{Spacing}.
951
952
953 @node Breaks
954 @section Breaks
955
956 @menu
957 * Line breaking::
958 * Page breaking::
959 * Optimal page breaking::
960 * Optimal page turning::
961 * Minimal page breaking::
962 * Explicit breaks::
963 * Using an extra voice for breaks::
964 @end menu
965
966
967 @node Line breaking
968 @subsection Line breaking
969
970 @cindex line breaks
971 @cindex breaking lines
972
973 Line breaks are normally determined automatically.  They are chosen
974 so that lines look neither cramped nor loose, and consecutive
975 lines have similar density.  Occasionally you might want to
976 override the automatic breaks; you can do this by specifying
977 @code{\break}.  This will force a line break at this point.  However,
978 line breaks can only occur at the end of @q{complete} bars, i.e.,
979 where there are no notes or tuplets left @q{hanging} over the bar
980 line.  If you want to have a line break where there is no bar line,
981 you can force an invisible bar line by entering @code{\bar ""},
982 although again there must be no notes left hanging over in any of
983 the staves at this point, or it will be ignored.
984
985 The opposite command, @code{\noBreak}, forbids a line break at the
986 bar line where it is inserted.
987
988 The most basic settings influencing line spacing are @code{indent}
989 and @code{line-width}.  They are set in the @code{\layout} block.
990 They control the indentation of the first line of music, and the
991 lengths of the lines.
992
993 If @code{ragged-right} is set to true in the @code{\layout} block,
994 then systems end at their natural horizontal length, instead of
995 being spread horizontally to fill the whole line.  This is useful
996 for short fragments, and for checking how tight the natural
997 spacing is.
998
999 @c TODO Check and add para on default for ragged-right
1000
1001 The option @code{ragged-last} is similar to @code{ragged-right},
1002 but affects only the last line of the piece.
1003
1004 @example
1005 \layout @{
1006 indent = #0
1007 line-width = #150
1008 ragged-last = ##t
1009 @}
1010 @end example
1011
1012
1013
1014 @cindex regular line breaks
1015 @cindex four bar music.
1016
1017 For line breaks at regular intervals use @code{\break} separated by
1018 skips and repeated with @code{\repeat}.  For example, this would
1019 cause the following 28 measures (assuming 4/4 time) to be broken
1020 every 4 measures, and only there:
1021
1022 @example
1023 << \repeat unfold 7 @{
1024          s1 \noBreak s1 \noBreak
1025          s1 \noBreak s1 \break @}
1026    @emph{the real music}
1027 >>
1028 @end example
1029
1030 @c TODO Check this
1031 A linebreaking configuration can be saved as a @code{.ly} file
1032 automatically.  This allows vertical alignments to be stretched to
1033 fit pages in a second formatting run.  This is fairly new and
1034 complicated.  More details are available in
1035 @rlsr{Spacing}.
1036
1037
1038 @predefined
1039 @funindex \break
1040 @code{\break},
1041 @funindex \noBreak
1042 @code{\noBreak}.
1043 @endpredefined
1044
1045
1046 @seealso
1047 Internals Reference:
1048 @rinternals{LineBreakEvent}.
1049
1050 Snippets:
1051 @rlsr{Spacing}.
1052
1053
1054 @knownissues
1055
1056 Line breaks can only occur if there is a @q{proper} bar line.  A note
1057 which is hanging over a bar line is not proper, such as
1058
1059 @lilypond[quote,ragged-right,relative=2,verbatim]
1060 c4 c2 << c2 {s4 \break } >>  % this does nothing
1061 c2 c4 |           % a break here would work
1062 c4 c2 c4 ~ \break % as does this break
1063 c4 c2 c4
1064 @end lilypond
1065
1066 This can be avoided by removing the @code{Forbid_line_break_engraver}.
1067 Note that manually forced line breaks have to be added in parallel
1068 with the music.
1069
1070 @lilypond[quote,ragged-right,verbatim]
1071 \new Voice \with {
1072   \remove Forbid_line_break_engraver
1073 } {
1074   c4 c2 << c2 {s4 \break } >>  % now the break is allowed
1075   c2 c4
1076 }
1077 @end lilypond
1078
1079 Similarly, line breaks are normally forbidden when beams cross bar
1080 lines.  This behavior can be changed by setting
1081 @code{\override Beam #'breakable = ##t}.
1082
1083
1084 @node Page breaking
1085 @subsection Page breaking
1086
1087 The default page breaking may be overridden by inserting
1088 @code{\pageBreak} or @code{\noPageBreak} commands.  These commands are
1089 analogous to @code{\break} and @code{\noBreak}.  They should be
1090 inserted at a bar line.  These commands force and forbid a page-break
1091 from happening.  Of course, the @code{\pageBreak} command also forces
1092 a line break.
1093
1094 The @code{\pageBreak} and @code{\noPageBreak} commands may also be
1095 inserted at top-level, between scores and top-level markups.
1096
1097 There are also analogous settings to @code{ragged-right} and
1098 @code{ragged-last} which have the same effect on vertical spacing:
1099 @code{ragged-bottom} and @code{ragged-last-bottom}.  If set to
1100 @code{##t} the systems on all pages or just the last page
1101 respectively will not be justified vertically.
1102
1103 For more details see @ref{Vertical spacing}.
1104
1105 Page breaks are computed by the @code{page-breaking} function.  LilyPond
1106 provides three algorithms for computing page breaks,
1107 @code{ly:optimal-breaking}, @code{ly:page-turn-breaking} and
1108 @code{ly:minimal-breaking}.  The default is @code{ly:optimal-breaking},
1109 but the value can be changed in the @code{\paper} block:
1110
1111 @example
1112 \paper@{
1113   #(define page-breaking ly:page-turn-breaking)
1114 @}
1115 @end example
1116
1117 @funindex \bookpart
1118
1119 When a book has many scores and pages, the page breaking problem may be
1120 difficult to solve, requiring large processing time and memory.  To ease
1121 the page breaking process, @code{\bookpart} blocks are used to divide
1122 the book into several parts: the page breaking occurs separately on each
1123 part.  Different page breaking functions may also be used in different
1124 book parts.
1125
1126 @example
1127 \bookpart @{
1128   \header @{
1129     subtitle = "Preface"
1130   @}
1131   \paper @{
1132      %% In a part consisting mostly of text,
1133      %% ly:minimal-breaking may be preferred
1134      #(define page-breaking ly:minimal-breaking)
1135   @}
1136   \markup @{ @dots{} @}
1137   @dots{}
1138 @}
1139 \bookpart @{
1140   %% In this part, consisting of music, the default optimal
1141   %% page breaking function is used.
1142   \header @{
1143     subtitle = "First movement"
1144   @}
1145   \score @{ @dots{} @}
1146   @dots{}
1147 @}
1148 @end example
1149
1150
1151 @predefined
1152 @funindex \pageBreak
1153 @code{\pageBreak},
1154 @funindex \noPageBreak
1155 @code{\noPageBreak}.
1156 @endpredefined
1157
1158
1159 @seealso
1160 Snippets:
1161 @rlsr{Spacing}.
1162
1163
1164 @node Optimal page breaking
1165 @subsection Optimal page breaking
1166
1167 @funindex ly:optimal-breaking
1168
1169 The @code{ly:optimal-breaking} function is LilyPond's default method of
1170 determining page breaks.  It attempts to find a page breaking that minimizes
1171 cramping and stretching, both horizontally and vertically.  Unlike
1172 @code{ly:page-turn-breaking}, it has no concept of page turns.
1173
1174
1175 @seealso
1176 Snippets:
1177 @rlsr{Spacing}.
1178
1179
1180 @node Optimal page turning
1181 @subsection Optimal page turning
1182
1183 @funindex ly:page-turn-breaking
1184
1185 Often it is necessary to find a page breaking configuration so that there is
1186 a rest at the end of every second page.  This way, the musician can turn the
1187 page without having to miss notes.  The @code{ly:page-turn-breaking} function
1188 attempts to find a page breaking minimizing cramping and stretching, but with
1189 the additional restriction that it is only allowed to introduce page turns
1190 in specified places.
1191
1192 There are two steps to using this page breaking function.  First, you
1193 must enable it in the @code{\paper} block, as explained in @ref{Page
1194 breaking}.  Then you must tell the function where you would like to allow
1195 page breaks.
1196
1197 There are two ways to achieve the second step.  First, you can specify each
1198 potential page turn manually, by inserting @code{\allowPageTurn} into your
1199 input file at the appropriate places.
1200
1201 If this is too tedious, you can add a @code{Page_turn_engraver} to a Staff or
1202 Voice context.  The @code{Page_turn_engraver} will scan the context for
1203 sections without notes (note that it does not scan for rests; it scans for
1204 the absence of notes.  This is so that single-staff polyphony with rests in one
1205 of the parts does not throw off the @code{Page_turn_engraver}).  When it finds
1206 a sufficiently long section without notes, the @code{Page_turn_engraver} will
1207 insert an @code{\allowPageTurn} at the final bar line in that section, unless
1208 there is a @q{special} bar line (such as a double bar), in which case the
1209 @code{\allowPageTurn} will be inserted at the final @q{special} bar line in
1210 the section.
1211
1212 @funindex minimumPageTurnLength
1213 The @code{Page_turn_engraver} reads the context property
1214 @code{minimumPageTurnLength} to determine how long a note-free section must
1215 be before a page turn is considered.  The default value for
1216 @code{minimumPageTurnLength} is @code{#(ly:make-moment 1 1)}.  If you want
1217 to disable page turns, you can set it to something very large.
1218
1219 @example
1220 \new Staff \with @{ \consists "Page_turn_engraver" @}
1221 @{
1222   a4 b c d |
1223   R1 | % a page turn will be allowed here
1224   a4 b c d |
1225   \set Staff.minimumPageTurnLength = #(ly:make-moment 5 2)
1226   R1 | % a page turn will not be allowed here
1227   a4 b r2 |
1228   R1*2 | % a page turn will be allowed here
1229   a1
1230 @}
1231 @end example
1232
1233 @funindex minimumRepeatLengthForPageTurn
1234 The @code{Page_turn_engraver} detects volta repeats.  It will only allow a page
1235 turn during the repeat if there is enough time at the beginning and end of the
1236 repeat to turn the page back.  The @code{Page_turn_engraver} can also disable
1237 page turns if the repeat is very short.  If you set the context property
1238 @code{minimumRepeatLengthForPageTurn} then the @code{Page_turn_engraver} will
1239 only allow turns in repeats whose duration is longer than this value.
1240
1241 The page turning commands, @code{\pageTurn}, @code{\noPageTurn} and
1242 @code{\allowPageTurn}, may also be used at top-level, between scores and
1243 top-level markups.
1244
1245
1246 @predefined
1247 @funindex \pageTurn
1248 @code{\pageTurn},
1249 @funindex \noPageTurn
1250 @code{\noPageTurn},
1251 @funindex \allowPageTurn
1252 @code{\allowPageTurn}.
1253 @endpredefined
1254
1255
1256 @seealso
1257 Snippets:
1258 @rlsr{Spacing}.
1259
1260
1261 @knownissues
1262
1263 There should only be one @code{Page_turn_engraver} in a score.  If there is more
1264 than one, they will interfere with each other.
1265
1266
1267 @node Minimal page breaking
1268 @subsection Minimal page breaking
1269
1270 @funindex ly:minimal-breaking
1271
1272 The @code{ly:minimal-breaking} function performs minimal computations to
1273 calculate the page breaking: it fills a page with as many systems as
1274 possible before moving to the next one.  Thus, it may be preferred for
1275 scores with many pages, where the other page breaking functions could be
1276 too slow or memory demanding, or a lot of texts.  It is enabled using:
1277
1278 @example
1279 \paper @{
1280   #(define page-breaking ly:minimal-breaking)
1281 @}
1282 @end example
1283
1284
1285 @seealso
1286 Snippets:
1287 @rlsr{Spacing}.
1288
1289
1290 @node Explicit breaks
1291 @subsection Explicit breaks
1292
1293 Lily sometimes rejects explicit @code{\break} and @code{\pageBreak}
1294 commands.  There are two commands to override this behavior:
1295
1296 @example
1297 \override NonMusicalPaperColumn #'line-break-permission = ##f
1298 \override NonMusicalPaperColumn #'page-break-permission = ##f
1299 @end example
1300
1301 When @code{line-break-permission} is overridden to false, Lily will insert
1302 line breaks at explicit @code{\break} commands and nowhere else.  When
1303 @code{page-break-permission} is overridden to false, Lily will insert
1304 page breaks at explicit @code{\pageBreak} commands and nowhere else.
1305
1306 @lilypond[quote,verbatim]
1307 \paper {
1308   indent = #0
1309   ragged-right = ##t
1310   ragged-bottom = ##t
1311 }
1312
1313 \score {
1314   \new Staff {
1315     \repeat unfold 2 { c'8 c'8 c'8 c'8 } \break
1316     \repeat unfold 4 { c'8 c'8 c'8 c'8 } \break
1317     \repeat unfold 6 { c'8 c'8 c'8 c'8 } \break
1318     \repeat unfold 8 { c'8 c'8 c'8 c'8 } \pageBreak
1319     \repeat unfold 8 { 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 4 { c'8 c'8 c'8 c'8 } \break
1322     \repeat unfold 2 { c'8 c'8 c'8 c'8 }
1323     }
1324   \layout {
1325     \context {
1326       \Score
1327       \override NonMusicalPaperColumn #'line-break-permission = ##f
1328       \override NonMusicalPaperColumn #'page-break-permission = ##f
1329     }
1330   }
1331 }
1332 @end lilypond
1333
1334
1335 @seealso
1336 Snippets:
1337 @rlsr{Spacing}.
1338
1339
1340 @node Using an extra voice for breaks
1341 @subsection Using an extra voice for breaks
1342
1343 Line- and page-breaking information usually appears within note entry directly.
1344
1345 @example
1346 \score @{
1347   \new Staff @{
1348     \repeat unfold 2 @{ c'4 c'4 c'4 c'4 @}
1349     \break
1350     \repeat unfold 3 @{ c'4 c'4 c'4 c'4 @}
1351   @}
1352 @}
1353 @end example
1354
1355 This makes @code{\break} and @code{\pageBreak} commands easy to enter but mixes
1356 music entry with information that specifies how music should lay out
1357 on the page.  You can keep music entry and line- and page-breaking
1358 information in two separate places by introducing an extra voice to
1359 contain the  breaks.  This extra voice
1360 contains only skips together with @code{\break}, @code{pageBreak} and other
1361 breaking layout information.
1362
1363 @lilypond[quote,verbatim]
1364 \score {
1365   \new Staff <<
1366     \new Voice {
1367       s1 * 2 \break
1368       s1 * 3 \break
1369       s1 * 6 \break
1370       s1 * 5 \break
1371     }
1372     \new Voice {
1373       \repeat unfold 2 { c'4 c'4 c'4 c'4 }
1374       \repeat unfold 3 { c'4 c'4 c'4 c'4 }
1375       \repeat unfold 6 { c'4 c'4 c'4 c'4 }
1376       \repeat unfold 5 { c'4 c'4 c'4 c'4 }
1377     }
1378   >>
1379 }
1380 @end lilypond
1381
1382 This pattern becomes especially helpful when overriding
1383 @code{line-break-system-details} and the other useful but long properties of
1384 @code{NonMusicalPaperColumnGrob}, as explained in @ref{Vertical spacing}.
1385
1386 @lilypond[quote,verbatim]
1387 \score {
1388   \new Staff <<
1389     \new Voice {
1390       \overrideProperty "Score.NonMusicalPaperColumn"
1391         #'line-break-system-details #'((Y-offset . 0))
1392       s1 * 2 \break
1393
1394       \overrideProperty "Score.NonMusicalPaperColumn"
1395         #'line-break-system-details #'((Y-offset . 35))
1396       s1 * 3 \break
1397
1398       \overrideProperty "Score.NonMusicalPaperColumn"
1399         #'line-break-system-details #'((Y-offset . 70))
1400       s1 * 6 \break
1401
1402       \overrideProperty "Score.NonMusicalPaperColumn"
1403         #'line-break-system-details #'((Y-offset . 105))
1404       s1 * 5 \break
1405     }
1406     \new Voice {
1407       \repeat unfold 2 { c'4 c'4 c'4 c'4 }
1408       \repeat unfold 3 { c'4 c'4 c'4 c'4 }
1409       \repeat unfold 6 { c'4 c'4 c'4 c'4 }
1410       \repeat unfold 5 { c'4 c'4 c'4 c'4 }
1411     }
1412   >>
1413 }
1414 @end lilypond
1415
1416
1417 @seealso
1418 Notation Reference:
1419 @ref{Vertical spacing}.
1420
1421 Snippets:
1422 @rlsr{Spacing}.
1423
1424
1425 @node Vertical spacing
1426 @section Vertical spacing
1427
1428 @cindex vertical spacing
1429 @cindex spacing, vertical
1430
1431 Vertical spacing is controlled by three things: the amount of
1432 space available (i.e., paper size and margins), the amount of
1433 space between systems, and the amount of space between
1434 staves inside a system.
1435
1436 @menu
1437 * Flexible vertical spacing within systems::
1438 * Explicit staff and system positioning::
1439 * Vertical collision avoidance::
1440 @end menu
1441
1442
1443 @node Flexible vertical spacing within systems
1444 @subsection Flexible vertical spacing within systems
1445
1446 @cindex distance between staves
1447 @cindex staff distance
1448 @cindex space between staves
1449 @cindex space inside systems
1450
1451 Three separate mechanisms control the flexible vertical spacing
1452 within systems, one for each of the following categories:
1453
1454 @itemize
1455 @item @emph{ungrouped staves},
1456 @item @emph{grouped staves} (staves within a staff-group such as
1457 @code{ChoirStaff}, etc.), and
1458 @item @emph{non-staff lines} (such as @code{Lyrics},
1459 @code{ChordNames}, etc.).
1460 @end itemize
1461
1462 @c TODO: Clarify this.  This almost implies that non-staff lines
1463 @c       have NO effect on the spacing between staves.  -mp
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 The names of these properties (except for @code{staff-affinity})
1497 follow the format @code{@var{item1}-@var{item2}-spacing}, where
1498 @code{@var{item1}} and @code{@var{item2}} are the items to be
1499 spaced.  Note that @code{@var{item2}} is not necessarily below
1500 @code{@var{item1}}; for example,
1501 @code{nonstaff-relatedstaff-spacing} will measure upwards from the
1502 non-staff line if @code{staff-affinity} is @code{#UP}.
1503
1504 Each distance is measured between the @emph{reference points} of
1505 the two items.  The reference point for a staff is the vertical
1506 center of its @code{StaffSymbol} (i.e. the middle line if
1507 @code{line-count} is odd; the middle space if @code{line-count} is
1508 even).  The reference points for individual non-staff lines are
1509 given in the following table:
1510
1511 @multitable {Non-staff line} {Reference point}
1512 @headitem Non-staff line @tab Reference point
1513 @item @code{ChordNames}  @tab baseline
1514 @item @code{NoteNames}   @tab baseline
1515 @item @code{Lyrics}      @tab baseline
1516 @item @code{Dynamics}    @tab vertical center
1517 @item @code{FiguredBass} @tab highest point
1518 @item @code{FretBoards}  @tab top line
1519 @end multitable
1520
1521 In the following image, horizontal lines indicate the positions
1522 of these reference points:
1523
1524 @lilypond[quote,noragged-right,line-width=110\mm]
1525 #(define zero-space '((padding . -inf.0) (space . 0)))
1526
1527 alignToZero = \with {
1528   \override VerticalAxisGroup #'nonstaff-relatedstaff-spacing = #zero-space
1529   \override VerticalAxisGroup #'nonstaff-nonstaff-spacing = #zero-space
1530 }
1531 lowerCaseChords = \with {
1532   chordNameLowercaseMinor = ##t
1533 }
1534 staffAffinityDown = \with {
1535   \override VerticalAxisGroup #'staff-affinity = #DOWN
1536 }
1537 labelContext =
1538 #(define-music-function
1539      (parser location context)
1540      (string?)
1541    #{ s1*0^\markup { \typewriter $context } #})
1542
1543 \layout {
1544   \context { \Dynamics    \alignToZero }
1545   \context { \FiguredBass \alignToZero }
1546   \context { \Lyrics      \alignToZero }
1547   \context { \NoteNames   \alignToZero }
1548   \context { \ChordNames  \alignToZero \lowerCaseChords }
1549   \context { \FretBoards  \alignToZero \staffAffinityDown }
1550   \context { \Score
1551     \override BarLine #'stencil = ##f
1552     \override DynamicText #'self-alignment-X = #-1
1553     \override FretBoard #'X-offset = #1.75
1554     \override InstrumentName #'minimum-Y-extent = #'(-2 . 2)
1555     \override InstrumentName #'extra-offset = #'(0 . -0.5)
1556     \override TextScript #'minimum-Y-extent = #'(-2 . 3)
1557     \override TimeSignature #'stencil = ##f
1558   }
1559 }
1560
1561 %% These contexts have reference points at the baseline:
1562 %%   ChordNames, NoteNames, and Lyrics
1563 <<
1564   \new ChordNames { \chords { g1:m } }
1565   \new NoteNames { s1 | g1 | }
1566   \new RhythmicStaff {
1567     \set RhythmicStaff.instrumentName = #"baseline "
1568     \textLengthOn
1569     \labelContext "ChordNames" s1 |
1570     \labelContext "NoteNames"  s1 |
1571     \labelContext "Lyrics"     s1 |
1572   }
1573   \new Lyrics { \lyrics { \skip 1*2 | ghijk1 | } }
1574 >>
1575
1576 %% The reference point for Dynamics is its vertical center
1577 <<
1578   \new RhythmicStaff {
1579     \set RhythmicStaff.instrumentName = #"vertical center "
1580     \labelContext "Dynamics" s1*3
1581   }
1582   \new Dynamics { s2\mp s\fp }
1583 >>
1584
1585 %% The reference point for FiguredBass is its highest point
1586 <<
1587   \new RhythmicStaff {
1588     \set RhythmicStaff.instrumentName = #"highest point "
1589     \labelContext "FiguredBass" s1
1590   }
1591   \new FiguredBass { \figuremode { <6 5>1 } }
1592 >>
1593
1594 %% The reference point for FretBoards is the top line
1595 \include "predefined-guitar-fretboards.ly"
1596 <<
1597   \new FretBoards { \chordmode { e1 } }
1598   \new RhythmicStaff {
1599     \set RhythmicStaff.instrumentName = #"top line "
1600     \labelContext "FretBoards " s1
1601   }
1602 >>
1603 @end lilypond
1604
1605 Each of the vertical spacing grob properties (except
1606 @code{staff-affinity}) is stored as an alist (association list),
1607 and each uses the same alist structure as the @code{\paper}
1608 spacing variables discussed in @ref{Flexible vertical dimensions}.
1609 Specific methods for modifying alists are discussed in
1610 @ref{Modifying alists}.  Grob properties should be adjusted with
1611 an @code{\override} inside a @code{\score} or @code{\layout}
1612 block, and not inside a @code{\paper} block.
1613
1614 The following example demonstrates the two ways these alists can
1615 be modified.  The first declaration updates one key-value
1616 individually, and the second completely re-defines the property:
1617
1618 @example
1619 \new Staff \with @{
1620   \override VerticalAxisGroup #'staff-staff-spacing #'space = #10
1621 @} @{ @dots{} @}
1622
1623 \new Staff \with @{
1624   \override VerticalAxisGroup #'staff-staff-spacing =
1625     #'((padding . 1)
1626        (space . 10)
1627        (minimum-distance . 9)
1628        (stretchability . 10))
1629 @} @{ @dots{} @}
1630 @end example
1631
1632 To change any spacing settings globally, put them in the
1633 @code{\layout} block:
1634
1635 @example
1636 \layout @{
1637   \context @{
1638     \Staff
1639     \override VerticalAxisGroup #'staff-staff-spacing #'space = #10
1640   @}
1641 @}
1642 @end example
1643
1644 Standard settings for the vertical spacing grob properties are
1645 listed in @rinternals{VerticalAxisGroup} and
1646 @rinternals{StaffGrouper}.  Default overrides for specific types
1647 of non-staff lines are listed in the relevant context descriptions
1648 in @rinternals{Contexts}.
1649
1650
1651 @subsubheading Properties of the @code{VerticalAxisGroup} grob
1652
1653 @code{VerticalAxisGroup} properties are typically adjusted with an
1654 @code{\override} at the @code{Staff} level (or equivalent).
1655
1656 @table @code
1657 @item staff-staff-spacing
1658 The distance between the current staff and the staff just below it
1659 in the same system, even if one or more non-staff lines (such as
1660 @code{Lyrics}) are placed between the two staves.  Does not apply
1661 to the bottom staff of a system.  This replaces any settings
1662 inherited from the @code{StaffGrouper} grob of the containing
1663 staff-group, if there is one.  If this is unset, and there are no
1664 @code{StaffGrouper} properties to inherit, the
1665 @code{default-staff-staff-spacing} property is used.
1666
1667 @item default-staff-staff-spacing
1668 The settings to use for @code{staff-staff-spacing} when it is
1669 unset.  This applies to ungrouped staves and to grouped staves
1670 that do not inherit settings from the @code{StaffGrouper} grob.
1671
1672 @item staff-affinity
1673 The direction of the staff to use for spacing the current
1674 non-staff line.  Choices are @code{UP}, @code{DOWN}, and
1675 @code{CENTER}.  If @code{CENTER}, the non-staff line will be
1676 placed equidistant between the two nearest staves on either side,
1677 unless collisions or other spacing constraints prevent this.
1678 Adjacent non-staff lines should have non-increasing
1679 @code{staff-affinity} from top to bottom, e.g. a non-staff line
1680 set to @code{UP} should not immediately follow one that is set to
1681 @code{DOWN}.  Non-staff lines at the top of a system should use
1682 @code{DOWN}; those at the bottom should use @code{UP}.  Setting
1683 @code{staff-affinity} for a staff causes it to be treated as a
1684 non-staff line.  Setting @code{staff-affinity} to @code{#f} causes
1685 a non-staff line to be treated as a staff.
1686
1687 @c TODO: verify last clause below ("even if other...")
1688
1689 @item nonstaff-relatedstaff-spacing
1690 The distance between the current non-staff line and the nearest
1691 staff in the direction of @code{staff-affinity}, if there are no
1692 non-staff lines between the two, and @code{staff-affinity} is
1693 either @code{UP} or @code{DOWN}.  If @code{staff-affinity} is
1694 @code{CENTER}, then @code{nonstaff-relatedstaff-spacing} is used
1695 for the nearest staves on @emph{both} sides, even if other
1696 non-staff lines appear between the current one and either of the
1697 staves.
1698
1699 @item nonstaff-nonstaff-spacing
1700 The distance between the current non-staff line and the next
1701 non-staff line in the direction of @code{staff-affinity}, if both
1702 are on the same side of the related staff, and
1703 @code{staff-affinity} is either @code{UP} or @code{DOWN}.
1704
1705 @item nonstaff-unrelatedstaff-spacing
1706 The distance between the current non-staff line and the staff in
1707 the opposite direction from @code{staff-affinity}, if there are no
1708 other non-staff lines between the two, and @code{staff-affinity}
1709 is either @code{UP} or @code{DOWN}.  This can be used, for
1710 example, to require a minimum amount of padding between a
1711 @code{Lyrics} line and the staff to which it does not belong.
1712 @end table
1713
1714
1715 @subsubheading Properties of the @code{StaffGrouper} grob
1716
1717 @code{StaffGrouper} properties are typically adjusted with an
1718 @code{\override} at the @code{StaffGroup} level (or equivalent).
1719
1720 @table @code
1721 @item staff-staff-spacing
1722 The distance between consecutive staves within the current
1723 staff-group.  The @code{staff-staff-spacing} property of an
1724 individual staff's @code{VerticalAxisGroup} grob will be used
1725 instead for any staves in the staff-group that have it set.  Also
1726 see @code{default-staff-staff-spacing}.
1727
1728 @item staffgroup-staff-spacing
1729 The distance between the last staff of the current staff-group and
1730 the staff just below it in the same system, even if one or more
1731 non-staff lines (such as @code{Lyrics}) exist between the two
1732 staves.  Does not apply to the bottom staff of a system.  The
1733 @code{staff-staff-spacing} property of an individual staff's
1734 @code{VerticalAxisGroup} grob will be used instead for any staves
1735 in the staff-group that have it set.  Also see
1736 @code{default-staff-staff-spacing}.
1737 @end table
1738
1739 @seealso
1740 Installed files:
1741 @file{ly/engraver-init.ly},
1742 @file{scm/define-grobs.scm}.
1743
1744 Internals Reference:
1745 @rinternals{Contexts},
1746 @rinternals{VerticalAxisGroup},
1747 @rinternals{StaffGrouper}.
1748
1749
1750 @node Spacing of ungrouped staves
1751 @unnumberedsubsubsec Spacing of ungrouped staves
1752
1753 @emph{Staves} (such as @code{Staff}, @code{DrumStaff},
1754 @code{TabStaff}, etc.) are contexts that can contain one or more
1755 voice contexts, but cannot contain any other staves.
1756
1757 The following properties affect the spacing of @emph{ungrouped}
1758 staves:
1759
1760 @itemize
1761 @item @code{VerticalAxisGroup} properties:
1762 @itemize
1763 @item @code{staff-staff-spacing}
1764 @end itemize
1765 @end itemize
1766
1767 These grob properties are described individually above; see
1768 @ref{Within-system spacing properties}.
1769
1770 Additional properties are involved for staves that are part of a
1771 staff-group; see @ref{Spacing of grouped staves}.
1772
1773 The following example shows how the @code{staff-staff-spacing}
1774 property can affect the spacing of ungrouped staves:
1775
1776 @lilypond[verbatim,quote,staffsize=16]
1777 \layout {
1778   \context {
1779     \Staff
1780     \override VerticalAxisGroup #'staff-staff-spacing =
1781       #'((padding . 1)
1782          (space . 8)
1783          (minimum-distance . 7))
1784   }
1785 }
1786
1787 \new StaffGroup <<
1788   % The very low note here needs more room than 'space can
1789   % provide, so the distance between this staff and the next is
1790   % determined by 'padding.
1791   \new Staff { b,2 r | }
1792
1793   % Here, 'space provides enough room, and there is no need to
1794   % compress the space (towards 'minimum-distance) to make room
1795   % for anything else on the page, so the distance between this
1796   % staff and the next is determined by 'space.
1797   \new Staff { \clef bass g2 r | }
1798
1799   % By setting 'padding to a negative value, staves can be made to
1800   % collide.  The lowest acceptable value for 'space is 0.
1801   \new Staff \with {
1802     \override VerticalAxisGroup #'staff-staff-spacing =
1803       #'((padding . -10)
1804          (space . 3.5))
1805   } { \clef bass g2 r | }
1806   \new Staff { \clef bass g2 r | }
1807 >>
1808 @end lilypond
1809
1810 @seealso
1811 Installed Files:
1812 @file{scm/define-grobs.scm}.
1813
1814 Snippets:
1815 @rlsr{Spacing}.
1816
1817 Internals Reference:
1818 @rinternals{VerticalAxisGroup}.
1819
1820
1821 @node Spacing of grouped staves
1822 @unnumberedsubsubsec Spacing of grouped staves
1823
1824 In orchestral and other large scores, it is common to place staves
1825 in groups.  The space between groups is typically larger than the
1826 space between staves of the same group.
1827
1828 @emph{Staff-groups} (such as @code{StaffGroup}, @code{ChoirStaff},
1829 etc.) are contexts that can contain one or more staves
1830 simultaneously.
1831
1832 The following properties affect the spacing of staves inside
1833 staff-groups:
1834
1835 @itemize
1836 @item @code{VerticalAxisGroup} properties:
1837 @itemize
1838 @item @code{staff-staff-spacing}
1839 @item @code{default-staff-staff-spacing}
1840 @end itemize
1841 @item @code{StaffGrouper} properties:
1842 @itemize
1843 @item @code{staff-staff-spacing}
1844 @item @code{staffgroup-staff-spacing}
1845 @end itemize
1846 @end itemize
1847
1848 These grob properties are described individually above; see
1849 @ref{Within-system spacing properties}.
1850
1851 The following example shows how properties of the
1852 @code{StaffGrouper} grob can affect the spacing of grouped staves:
1853
1854 @lilypond[verbatim,quote,staffsize=16]
1855 \layout {
1856   \context {
1857     \Score
1858     \override StaffGrouper #'staff-staff-spacing #'padding = #0
1859     \override StaffGrouper #'staff-staff-spacing #'space = #1
1860   }
1861 }
1862
1863 <<
1864   \new PianoStaff \with {
1865     \override StaffGrouper #'staffgroup-staff-spacing #'space = #20
1866   } <<
1867     \new Staff { c'1 }
1868     \new Staff { c'1 }
1869   >>
1870
1871   \new StaffGroup <<
1872     \new Staff { c'1 }
1873     \new Staff { c'1 }
1874   >>
1875 >>
1876 @end lilypond
1877
1878 @seealso
1879 Installed Files:
1880 @file{scm/define-grobs.scm}.
1881
1882 Snippets:
1883 @rlsr{Spacing}.
1884
1885 Internals Reference:
1886 @rinternals{VerticalAxisGroup},
1887 @rinternals{StaffGrouper}.
1888
1889
1890 @node Spacing of non-staff lines
1891 @unnumberedsubsubsec Spacing of non-staff lines
1892
1893 @emph{Non-staff lines} (such as @code{Lyrics}, @code{ChordNames},
1894 etc.) are contexts whose layout objects are engraved like staves
1895 (i.e. in horizontal lines within systems).  Specifically,
1896 non-staff lines are non-staff contexts that create the
1897 @code{VerticalAxisGroup} layout object.
1898
1899 The following properties affect the spacing of non-staff lines:
1900
1901 @itemize
1902 @item @code{VerticalAxisGroup} properties:
1903 @itemize
1904 @item @code{staff-affinity}
1905 @item @code{nonstaff-relatedstaff-spacing}
1906 @item @code{nonstaff-nonstaff-spacing}
1907 @item @code{nonstaff-unrelatedstaff-spacing}
1908 @end itemize
1909 @end itemize
1910
1911 These grob properties are described individually above; see
1912 @ref{Within-system spacing properties}.
1913
1914 The following example shows how the
1915 @code{nonstaff-nonstaff-spacing} property can affect the spacing
1916 of consecutive non-staff lines.  Here, by setting the
1917 @code{stretchability} key to a very high value, the lyrics are
1918 able to stretch much more than usual:
1919
1920 @lilypond[verbatim,quote,staffsize=16]
1921 \layout {
1922   \context {
1923     \Lyrics
1924     \override VerticalAxisGroup
1925       #'nonstaff-nonstaff-spacing #'stretchability = #1000
1926   }
1927 }
1928
1929 \new StaffGroup
1930 <<
1931   \new Staff \with {
1932     \override VerticalAxisGroup #'staff-staff-spacing = #'((space . 30))
1933   } { c'1 }
1934   \new Lyrics \with {
1935     \override VerticalAxisGroup #'staff-affinity = #UP
1936   } \lyricmode { up }
1937   \new Lyrics \with {
1938     \override VerticalAxisGroup #'staff-affinity = #CENTER
1939   } \lyricmode { center }
1940   \new Lyrics \with {
1941     \override VerticalAxisGroup #'staff-affinity = #DOWN
1942   } \lyricmode { down }
1943   \new Staff { c'1 }
1944 >>
1945 @end lilypond
1946
1947
1948 @seealso
1949 Installed Files:
1950 @file{ly/engraver-init.ly},
1951 @file{scm/define-grobs.scm}.
1952
1953 Snippets:
1954 @rlsr{Spacing}.
1955
1956 @c @lsr{spacing,page-spacing.ly},
1957 @c @lsr{spacing,alignment-vertical-spacing.ly}.
1958
1959 Internals Reference:
1960 @rinternals{Contexts},
1961 @rinternals{VerticalAxisGroup}.
1962
1963
1964 @node Explicit staff and system positioning
1965 @subsection Explicit staff and system positioning
1966
1967 One way to understand the @code{VerticalAxisGroup} and @code{\paper}
1968 settings explained in the previous two sections is as a collection of
1969 different settings that primarily concern the amount of vertical padding
1970 different staves and systems running down the page.
1971
1972 It is possible to approach vertical spacing in a different way using
1973 @code{NonMusicalPaperColumn #'line-break-system-details}.  Where
1974 @code{VerticalAxisGroup} and @code{\paper} settings specify vertical padding,
1975 @code{NonMusicalPaperColumn #'line-break-system-details} specifies exact
1976 vertical positions on the page.
1977
1978 @code{NonMusicalPaperColumn #'line-break-system-details} accepts an associative
1979 list of three different settings:
1980
1981 @itemize
1982 @item @code{X-offset}
1983 @item @code{Y-offset}
1984 @item @code{alignment-distances}
1985 @end itemize
1986
1987 Grob overrides, including the overrides for @code{NonMusicalPaperColumn}
1988 below, can occur in any of three different places in an input file:
1989
1990 @itemize
1991 @item in the middle of note entry directly
1992 @item in a @code{\context} block
1993 @item in the @code{\with} block
1994 @end itemize
1995
1996 When we override @code{NonMusicalPaperColumn}, we use the usual
1997 @code{\override} command in @code{\context} blocks and in the
1998 @code{\with} block.  On the other hand, when we override
1999 @code{NonMusicalPaperColumn} in the middle of note entry,
2000 use the special @code{\overrideProperty} command.  Here are some
2001 example @code{NonMusicalPaperColumn} overrides with the special
2002 @code{\overrideProperty} command:
2003
2004 @example
2005 \overrideProperty NonMusicalPaperColumn
2006   #'line-break-system-details #'((X-offset . 20))
2007
2008 \overrideProperty NonMusicalPaperColumn
2009   #'line-break-system-details #'((Y-offset . 40))
2010
2011 \overrideProperty NonMusicalPaperColumn
2012   #'line-break-system-details #'((X-offset . 20) (Y-offset . 40))
2013
2014 \overrideProperty NonMusicalPaperColumn
2015   #'line-break-system-details #'((alignment-distances . (15)))
2016
2017 \overrideProperty NonMusicalPaperColumn
2018   #'line-break-system-details #'((X-offset . 20) (Y-offset . 40)
2019                                  (alignment-distances . (15)))
2020 @end example
2021
2022 To understand how each of these different settings work, we begin
2023 by looking at an example that includes no overrides at all.
2024
2025 @c \book { } is required in these examples to ensure the spacing
2026 @c overrides can be seen between systems. -np
2027
2028 @lilypond[quote]
2029 \header { tagline = ##f }
2030 \paper { left-margin = 0\mm }
2031 \book {
2032   \score {
2033     <<
2034       \new Staff <<
2035         \new Voice {
2036           s1*5 \break
2037           s1*5 \break
2038           s1*5 \break
2039         }
2040         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
2041       >>
2042       \new Staff {
2043         \repeat unfold 15 { d'4 d' d' d' }
2044       }
2045     >>
2046   }
2047 }
2048 @end lilypond
2049
2050 This score isolates line- and page-breaking information in a dedicated
2051 voice.  This technique of creating a breaks voice will help keep layout
2052 separate from music entry as our example becomes more complicated.
2053 See @ref{Using an extra voice for breaks}.
2054
2055 Explicit @code{\breaks} evenly divide the music into six measures per
2056 line.  Vertical spacing results from LilyPond's defaults.  To set
2057 the vertical startpoint of each system explicitly, we can set
2058 the @code{Y-offset} pair in the @code{line-break-system-details}
2059 attribute of the @code{NonMusicalPaperColumn} grob:
2060
2061 @lilypond[quote]
2062 \header { tagline = ##f }
2063 \paper { left-margin = 0\mm }
2064 \book {
2065   \score {
2066     <<
2067       \new Staff <<
2068         \new Voice {
2069           \overrideProperty #"Score.NonMusicalPaperColumn"
2070             #'line-break-system-details #'((Y-offset . 0))
2071           s1*5 \break
2072           \overrideProperty #"Score.NonMusicalPaperColumn"
2073             #'line-break-system-details #'((Y-offset . 40))
2074           s1*5 \break
2075           \overrideProperty #"Score.NonMusicalPaperColumn"
2076             #'line-break-system-details #'((Y-offset . 80))
2077           s1*5 \break
2078         }
2079         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
2080       >>
2081       \new Staff {
2082         \repeat unfold 15 { d'4 d' d' d' }
2083       }
2084     >>
2085   }
2086 }
2087 @end lilypond
2088
2089 Note that @code{line-break-system-details} takes an associative list of
2090 potentially many values, but that we set only one value here.  Note,
2091 too, that the @code{Y-offset} property here determines the exact vertical
2092 position on the page at which each new system will render.
2093
2094 Now that we have set the vertical startpoint of each system
2095 explicitly, we can also set the vertical distances between staves
2096 within each system manually.  We do this using the @code{alignment-distances}
2097 subproperty of @code{line-break-system-details}.
2098
2099 @lilypond[quote]
2100 \header { tagline = ##f }
2101 \paper { left-margin = 0\mm }
2102 \book {
2103   \score {
2104     <<
2105       \new Staff <<
2106         \new Voice {
2107           \overrideProperty #"Score.NonMusicalPaperColumn"
2108             #'line-break-system-details #'((Y-offset . 20)
2109                                            (alignment-distances . (15)))
2110           s1*5 \break
2111           \overrideProperty #"Score.NonMusicalPaperColumn"
2112             #'line-break-system-details #'((Y-offset . 60)
2113                                            (alignment-distances . (15)))
2114           s1*5 \break
2115           \overrideProperty #"Score.NonMusicalPaperColumn"
2116             #'line-break-system-details #'((Y-offset . 100)
2117                                            (alignment-distances . (15)))
2118           s1*5 \break
2119         }
2120         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
2121       >>
2122       \new Staff {
2123         \repeat unfold 15 { d'4 d' d' d' }
2124       }
2125     >>
2126   }
2127 }
2128 @end lilypond
2129
2130 Note that here we assign two different values to the
2131 @code{line-break-system-details} attribute of the
2132 @code{NonMusicalPaperColumn} grob.  Though the
2133 @code{line-break-system-details} attribute alist accepts many
2134 additional spacing parameters (including, for example, a corresponding
2135 @code{X-offset} pair), we need only set the @code{Y-offset} and
2136 @code{alignment-distances} pairs to control the vertical startpoint of
2137 every system and every staff.  Finally, note that @code{alignment-distances}
2138 specifies the vertical positioning of staves but not of staff groups.
2139
2140 @lilypond[quote]
2141 \header { tagline = ##f }
2142 \paper { left-margin = 0\mm }
2143 \book {
2144   \score {
2145     <<
2146       \new Staff <<
2147         \new Voice {
2148           \overrideProperty #"Score.NonMusicalPaperColumn"
2149             #'line-break-system-details #'((Y-offset . 0)
2150                                            (alignment-distances . (30 10)))
2151           s1*5 \break
2152           \overrideProperty #"Score.NonMusicalPaperColumn"
2153             #'line-break-system-details #'((Y-offset . 60)
2154                                            (alignment-distances . (10 10)))
2155           s1*5 \break
2156           \overrideProperty #"Score.NonMusicalPaperColumn"
2157             #'line-break-system-details #'((Y-offset . 100)
2158                                            (alignment-distances . (10 30)))
2159           s1*5 \break
2160         }
2161         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
2162       >>
2163       \new StaffGroup <<
2164         \new Staff { \repeat unfold 15 { d'4 d' d' d' } }
2165         \new Staff { \repeat unfold 15 { e'4 e' e' e' } }
2166       >>
2167     >>
2168   }
2169 }
2170 @end lilypond
2171
2172 Some points to consider:
2173
2174 @itemize
2175 @item When using @code{alignment-distances}, lyrics and other non-staff lines
2176 do not count as a staff.
2177
2178 @item The units of the numbers passed to @code{X-offset},
2179 @code{Y-offset} and @code{alignment-distances} are interpreted as multiples
2180 of the distance between adjacent staff lines.  Positive values move staves
2181 and lyrics up, negative values move staves and lyrics down.
2182
2183 @item Because the @code{NonMusicalPaperColumn #'line-break-system-details}
2184 settings given here allow the positioning of staves and systems anywhere
2185 on the page, it is possible to violate paper or margin boundaries or even
2186 to print staves or systems on top of one another.  Reasonable values
2187 passed to these different settings will avoid this.
2188 @end itemize
2189
2190
2191 @seealso
2192 Snippets:
2193 @rlsr{Spacing}.
2194
2195
2196 @node Vertical collision avoidance
2197 @subsection Vertical collision avoidance
2198
2199 @funindex outside-staff-priority
2200 @funindex outside-staff-padding
2201 @funindex outside-staff-horizontal-padding
2202
2203 Intuitively, there are some objects in musical notation that belong
2204 to the staff and there are other objects that should be placed outside
2205 the staff.  Objects belonging outside the staff include things such as
2206 rehearsal marks, text and dynamic markings (from now on, these will
2207 be called outside-staff objects).  LilyPond's rule for the
2208 vertical placement of outside-staff objects is to place them as close
2209 to the staff as possible but not so close that they collide with
2210 another object.
2211
2212 LilyPond uses the @code{outside-staff-priority} property to determine
2213 whether a grob is an outside-staff object: if @code{outside-staff-priority}
2214 is a number, the grob is an outside-staff object.  In addition,
2215 @code{outside-staff-priority} tells LilyPond in which order the objects
2216 should be placed.
2217
2218 First, LilyPond places all the objects that do not belong outside
2219 the staff.  Then it sorts the outside-staff objects according to their
2220 @code{outside-staff-priority} (in increasing order).  One by one, LilyPond
2221 takes the outside-staff objects and places them so that they do
2222 not collide with any objects that have already been placed.  That
2223 is, if two outside-staff grobs are competing for the same space, the one
2224 with the lower @code{outside-staff-priority} will be placed closer to
2225 the staff.
2226
2227 @lilypond[quote,ragged-right,relative=2,verbatim]
2228 c4_"Text"\pp
2229 r2.
2230 \once \override TextScript #'outside-staff-priority = #1
2231 c4_"Text"\pp % this time the text will be closer to the staff
2232 r2.
2233 % by setting outside-staff-priority to a non-number,
2234 % we disable the automatic collision avoidance
2235 \once \override TextScript #'outside-staff-priority = ##f
2236 \once \override DynamicLineSpanner #'outside-staff-priority = ##f
2237 c4_"Text"\pp % now they will collide
2238 @end lilypond
2239
2240 The vertical padding between an outside-staff object and the
2241 previously-positioned grobs can be controlled with
2242 @code{outside-staff-padding}.
2243
2244 @lilypond[quote,ragged-right,relative=2,verbatim]
2245 \once \override TextScript #'outside-staff-padding = #0
2246 a'^"This text is placed very close to the note"
2247 \once \override TextScript #'outside-staff-padding = #3
2248 c^"This text is padded away from the previous text"
2249 c^"This text is placed close to the previous text"
2250 @end lilypond
2251
2252
2253 By default, outside-staff objects are placed only to avoid
2254 a horizontal collision with previously-positioned grobs.  This
2255 can lead to situations in which objects are placed very close to each
2256 other horizontally.  The vertical spacing between staves can
2257 also be set so that outside staff objects are interleaved.
2258 Setting @code{outside-staff-horizontal-padding}
2259 causes an object to be offset vertically so that such a situation
2260 doesn't occur.
2261
2262 @lilypond[quote,ragged-right,relative=2,verbatim]
2263 % the markup is too close to the following note
2264 c4^"Text"
2265 c4
2266 c''2
2267 % setting outside-staff-horizontal-padding fixes this
2268 R1
2269 \once \override TextScript #'outside-staff-horizontal-padding = #1
2270 c,,4^"Text"
2271 c4
2272 c''2
2273 @end lilypond
2274
2275
2276 @seealso
2277 Snippets:
2278 @rlsr{Spacing}.
2279
2280
2281 @node Horizontal spacing
2282 @section Horizontal spacing
2283
2284 @cindex horizontal spacing
2285 @cindex spacing, horizontal
2286
2287 @menu
2288 * Horizontal spacing overview::
2289 * New spacing area::
2290 * Changing horizontal spacing::
2291 * Line length::
2292 * Proportional notation::
2293 @end menu
2294
2295
2296 @node Horizontal spacing overview
2297 @subsection Horizontal spacing overview
2298
2299 The spacing engine translates differences in durations into stretchable
2300 distances (@q{springs}) of differing lengths.  Longer durations get
2301 more space, shorter durations get less.  The shortest durations get a
2302 fixed amount of space (which is controlled by
2303 @code{shortest-duration-space} in the @rinternals{SpacingSpanner}
2304 object).  The longer the duration, the more space it gets: doubling a
2305 duration adds a fixed amount (this amount is controlled by
2306 @code{spacing-increment}) of space to the note.
2307
2308 For example, the following piece contains lots of half, quarter, and
2309 8th notes; the eighth note is followed by 1 note head width (NHW).
2310 The quarter note is followed by 2 NHW, the half by 3 NHW, etc.
2311
2312 @lilypond[quote,verbatim,relative=1]
2313 c2 c4. c8 c4. c8 c4. c8 c8
2314 c8 c4 c4 c4
2315 @end lilypond
2316
2317 Normally, @code{spacing-increment} is set to 1.2 staff space, which is
2318 approximately the width of a note head, and
2319 @code{shortest-duration-space} is set to 2.0, meaning that the
2320 shortest note gets 2.4 staff space (2.0 times the
2321 @code{spacing-increment}) of horizontal space.  This space is counted
2322 from the left edge of the symbol, so the shortest notes are generally
2323 followed by one NHW of space.
2324
2325 If one would follow the above procedure exactly, then adding a single
2326 32nd note to a score that uses 8th and 16th notes, would widen up the
2327 entire score a lot.  The shortest note is no longer a 16th, but a 32nd,
2328 thus adding 1 NHW to every note.  To prevent this, the shortest
2329 duration for spacing is not the shortest note in the score, but rather
2330 the one which occurs most frequently.
2331
2332
2333 The most common shortest duration is determined as follows: in every
2334 measure, the shortest duration is determined.  The most common shortest
2335 duration is taken as the basis for the spacing, with the stipulation
2336 that this shortest duration should always be equal to or shorter than
2337 an 8th note.  The shortest duration is printed when you run
2338 @code{lilypond} with the @code{--verbose} option.
2339
2340 These durations may also be customized.  If you set the
2341 @code{common-shortest-duration} in @rinternals{SpacingSpanner}, then
2342 this sets the base duration for spacing.  The maximum duration for this
2343 base (normally an 8th), is set through @code{base-shortest-duration}.
2344
2345 @funindex common-shortest-duration
2346 @funindex base-shortest-duration
2347 @funindex stem-spacing-correction
2348 @funindex spacing
2349
2350 Notes that are even shorter than the common shortest note are
2351 followed by a space that is proportional to their duration relative to
2352 the common shortest note.  So if we were to add only a few 16th notes
2353 to the example above, they would be followed by half a NHW:
2354
2355 @lilypond[quote,verbatim,relative=2]
2356 c2 c4. c8 c4. c16[ c] c4. c8 c8 c8 c4 c4 c4
2357 @end lilypond
2358
2359
2360 In the @emph{Essay on automated music engraving}, it was explained
2361 that stem directions influence spacing (see @ressay{Optical
2362 spacing}).  This is controlled with the
2363 @code{stem-spacing-correction} property in the
2364 @rinternals{NoteSpacing}, object.  These are generated for every
2365 @rinternals{Voice} context.  The @code{StaffSpacing} object
2366 (generated in @rinternals{Staff} context) contains the same
2367 property for controlling the stem/bar line spacing.  The following
2368 example shows these corrections, once with default settings, and
2369 once with exaggerated corrections:
2370
2371 @lilypond[quote,ragged-right]
2372 {
2373   c'4 e''4 e'4 b'4 |
2374   b'4 e''4 b'4 e''4 |
2375   \override Staff.NoteSpacing #'stem-spacing-correction = #1.5
2376   \override Staff.StaffSpacing #'stem-spacing-correction = #1.5
2377   c'4 e''4 e'4 b'4 |
2378   b'4 e''4 b'4 e''4 |
2379 }
2380 @end lilypond
2381
2382 Proportional notation is supported; see @ref{Proportional notation}.
2383
2384
2385 @seealso
2386 Snippets:
2387 @rlsr{Spacing}.
2388
2389 Internals Reference:
2390 @rinternals{SpacingSpanner},
2391 @rinternals{NoteSpacing},
2392 @rinternals{StaffSpacing},
2393 @rinternals{NonMusicalPaperColumn}.
2394
2395
2396 @knownissues
2397
2398 There is no convenient mechanism to manually override spacing.  The
2399 following work-around may be used to insert extra space into a score,
2400 adjusting the padding value as necessary.
2401 @example
2402  \override Score.NonMusicalPaperColumn #'padding = #10
2403 @end example
2404
2405 No work-around exists for decreasing the amount of space.
2406
2407
2408 @node New spacing area
2409 @subsection New spacing area
2410
2411 New sections with different spacing parameters can be started with
2412 @code{newSpacingSection}.  This is useful when there are
2413 sections with a different notions of long and short notes.
2414
2415 In the following example, the time signature change introduces a new
2416 section, and hence the 16ths notes are spaced wider.
2417
2418 @lilypond[relative=1,verbatim,quote]
2419 \time 2/4
2420 c4 c8 c
2421 c8 c c4 c16[ c c8] c4
2422 \newSpacingSection
2423 \time 4/16
2424 c16[ c c8]
2425 @end lilypond
2426
2427 The @code{\newSpacingSection} command creates a new
2428 @code{SpacingSpanner} object, and hence new @code{\override}s
2429 may be used in that location.
2430
2431
2432 @seealso
2433 Snippets:
2434 @rlsr{Spacing}.
2435
2436 Internals Reference:
2437 @rinternals{SpacingSpanner}.
2438
2439
2440 @node Changing horizontal spacing
2441 @subsection Changing horizontal spacing
2442
2443 Horizontal spacing may be altered with the
2444 @code{base-shortest-duration} property.  Here
2445 we compare the same music; once without altering
2446 the property, and then altered.  Larger values
2447 of @code{ly:make-moment} will produce smaller
2448 music.  Note that @code{ly:make-moment} constructs
2449 a duration, so @code{1 4} is a longer duration
2450 than @code{1 16}.
2451
2452 @lilypond[verbatim,line-width=12\cm]
2453 \score {
2454   \relative c'' {
2455     g4 e e2 | f4 d d2 | c4 d e f | g4 g g2 |
2456     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2457     d4 d d d | d4 e f2 | e4 e e e | e4 f g2 |
2458     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2459   }
2460 }
2461 @end lilypond
2462
2463 @lilypond[verbatim,line-width=12\cm]
2464 \score {
2465   \relative c'' {
2466     g4 e e2 | f4 d d2 | c4 d e f | g4 g g2 |
2467     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2468     d4 d d d | d4 e f2 | e4 e e e | e4 f g2 |
2469     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2470   }
2471   \layout {
2472     \context {
2473       \Score
2474       \override SpacingSpanner
2475         #'base-shortest-duration = #(ly:make-moment 1 16)
2476     }
2477   }
2478 }
2479 @end lilypond
2480
2481
2482 @snippets
2483
2484 By default, spacing in tuplets depends on various non-duration
2485 factors (such as accidentals, clef changes, etc).  To disregard
2486 such symbols and force uniform equal-duration spacing, use
2487 @code{Score.SpacingSpanner #'uniform-stretching}.  This
2488 property can only be changed at the beginning of a score,
2489
2490 @lilypond[quote,ragged-right,verbatim]
2491 \score {
2492   <<
2493     \new Staff {
2494       \times 4/5 {
2495         c8 c8 c8 c8 c8
2496       }
2497       c8 c8 c8 c8
2498     }
2499     \new Staff {
2500       c8 c8 c8 c8
2501       \times 4/5 {
2502         c8 c8 c8 c8 c8
2503       }
2504     }
2505   >>
2506   \layout {
2507     \context {
2508       \Score
2509       \override SpacingSpanner #'uniform-stretching = ##t
2510     }
2511   }
2512 }
2513 @end lilypond
2514
2515 When @code{strict-note-spacing} is set, notes are spaced without
2516 regard for clefs, bar lines, and grace notes,
2517
2518 @lilypond[quote,ragged-right,relative=2,verbatim]
2519 \override Score.SpacingSpanner #'strict-note-spacing = ##t
2520 \new Staff { c8[ c \clef alto c \grace { c16[ c] } c8 c c]  c32[ c32] }
2521 @end lilypond
2522
2523
2524 @seealso
2525 Snippets:
2526 @rlsr{Spacing}.
2527
2528
2529 @node Line length
2530 @subsection Line length
2531
2532 @cindex page breaks
2533 @cindex breaking pages
2534
2535 @funindex indent
2536 @funindex line-width
2537 @funindex ragged-right
2538 @funindex ragged-last
2539
2540 @c Although line-width can be set in \layout, it should be set in paper
2541 @c block, to get page layout right.
2542 @c Setting indent in \paper block makes not much sense, but it works.
2543
2544 @c Bit verbose and vague, use examples?
2545 The most basic settings influencing the spacing are @code{indent} and
2546 @code{line-width}.  They are set in the @code{\layout} block.  They
2547 control the indentation of the first line of music, and the lengths of
2548 the lines.
2549
2550 If @code{ragged-right} is set to true in the @code{\layout} block, then
2551 systems ends at their natural horizontal length, instead of being spread
2552 horizontally to fill the whole line.  This is useful for
2553 short fragments, and for checking how tight the natural spacing is.
2554 The normal default setting is false, but if the score has only one
2555 system the default value is true.
2556
2557 @cindex page layout
2558 @cindex vertical spacing
2559
2560 The option @code{ragged-last} is similar to @code{ragged-right}, but
2561 only affects the last line of the piece.  No restrictions are put on
2562 that line.  The result is similar to formatting text paragraphs.  In a
2563 paragraph, the last line simply takes its natural horizontal length.
2564 @c Note that for text there are several options for the last line.
2565 @c While Knuth TeX uses natural length, lead typesetters use the same
2566 @c stretch as the previous line.  eTeX uses \lastlinefit to
2567 @c interpolate between both these solutions.
2568
2569 @example
2570 \layout @{
2571   indent = #0
2572   line-width = #150
2573   ragged-last = ##t
2574 @}
2575 @end example
2576
2577
2578 @seealso
2579 Snippets:
2580 @rlsr{Spacing}.
2581
2582
2583 @node Proportional notation
2584 @subsection Proportional notation
2585
2586 LilyPond supports proportional notation, a type of horizontal spacing
2587 in which each note consumes an amount of horizontal space exactly
2588 equivalent to its rhythmic duration.  This type of proportional spacing
2589 is comparable to horizontal spacing on top of graph paper.  Some late
2590 20th- and early 21st-century scores use proportional notation to
2591 clarify complex rhythmic relationships or to facilitate the placement
2592 of timelines or other graphics directly in the score.
2593
2594 LilyPond supports five different settings for proportional notation,
2595 which may be used together or alone:
2596
2597 @itemize
2598 @item @code{proportionalNotationDuration}
2599 @item @code{uniform-stretching}
2600 @item @code{strict-note-spacing}
2601 @item @code{\remove Separating_line_group_engraver}
2602 @item @code{\override PaperColumn #'used = ##t}
2603 @end itemize
2604
2605 In the examples that follow, we explore these five different
2606 proportional notation settings and examine how these settings interact.
2607
2608 We start with the following one-measure example, which uses classical
2609 spacing with ragged-right turned on.
2610
2611 @lilypond[quote,verbatim,ragged-right]
2612 \score {
2613   <<
2614     \new RhythmicStaff {
2615       c'2
2616       c'16 c'16 c'16 c'16
2617       \times 4/5 {
2618         c'16 c'16 c'16 c'16 c'16
2619       }
2620     }
2621   >>
2622 }
2623 @end lilypond
2624
2625 Notice that the half note which begins the measure takes up far less
2626 than half of the horizontal space of the measure.  Likewise, the
2627 sixteenth notes and sixteenth-note quintuplets (or twentieth notes)
2628 which end the measure together take up far more than half the
2629 horizontal space of the measure.
2630
2631 In classical engraving, this spacing may be exactly what we want
2632 because we can borrow horizontal space from the half note and conserve
2633 horizontal space across the measure as a whole.
2634
2635 On the other hand, if we want to insert a measured timeline or other
2636 graphic above or below our score, we need proportional notation.  We
2637 turn proportional notation on with the proportionalNotationDuration
2638 setting.
2639
2640 @lilypond[quote,verbatim,ragged-right]
2641 \score {
2642   <<
2643     \new RhythmicStaff {
2644       c'2
2645       c'16 c'16 c'16 c'16
2646       \times 4/5 {
2647         c'16 c'16 c'16 c'16 c'16
2648       }
2649     }
2650   >>
2651  \layout {
2652     \context {
2653       \Score
2654       proportionalNotationDuration = #(ly:make-moment 1 20)
2655     }
2656   }
2657 }
2658 @end lilypond
2659
2660 The half note at the beginning of the measure and the faster notes in
2661 the second half of the measure now occupy equal amounts of horizontal
2662 space.  We could place a measured timeline or graphic above or below
2663 this example.
2664
2665 The @code{proportionalNotationDuration} setting is a context setting
2666 that lives in @code{Score}.  Remember that context settings can appear
2667 in one of three locations within our input file -- in a @code{\with}
2668 block, in a @code{\context} block, or directly in music entry preceded
2669 by the @code{\set} command.  As with all context settings, users can
2670 pick which of the three different locations they would like to
2671 set @code{proportionalNotationDuration} in to.
2672
2673 The @code{proportionalNotationDuration} setting takes a single argument,
2674 which is the reference duration against that all music will be spaced.
2675 The LilyPond Scheme function @code{make-moment} takes two arguments
2676 -- a numerator and denominator which together express some fraction of
2677 a whole note.  The call @code{#(ly:make-moment 1 20)} therefore produces
2678 a reference duration of a twentieth note.  Values such as
2679 @code{#(ly:make-moment 1 16)}, @code{#(ly:make-moment 1 8)}, and
2680 @code{#(ly:make-moment 3 97)} are all possible as well.
2681
2682 How do we select the right reference duration to pass to
2683 @code{proportionalNotationDuration}?  Usually by a process of trial
2684 and error, beginning with a duration close to the fastest (or smallest)
2685 duration in the piece.  Smaller reference durations space music loosely;
2686 larger reference durations space music tightly.
2687
2688 @lilypond[quote,verbatim,ragged-right]
2689 \score {
2690   <<
2691     \new RhythmicStaff {
2692       c'2
2693       c'16 c'16 c'16 c'16
2694       \times 4/5 {
2695         c'16 c'16 c'16 c'16 c'16
2696       }
2697     }
2698   >>
2699   \layout {
2700     \context {
2701       \Score
2702       proportionalNotationDuration = #(ly:make-moment 1 8)
2703     }
2704   }
2705 }
2706
2707 \score {
2708   <<
2709     \new RhythmicStaff {
2710       c'2
2711       c'16 c'16 c'16 c'16
2712       \times 4/5 {
2713         c'16 c'16 c'16 c'16 c'16
2714       }
2715     }
2716   >>
2717   \layout {
2718     \context {
2719       \Score
2720       proportionalNotationDuration = #(ly:make-moment 1 16)
2721     }
2722   }
2723 }
2724
2725 \score {
2726   <<
2727     \new RhythmicStaff {
2728       c'2
2729       c'16 c'16 c'16 c'16
2730       \times 4/5 {
2731         c'16 c'16 c'16 c'16 c'16
2732       }
2733     }
2734   >>
2735   \layout {
2736     \context {
2737       \Score
2738       proportionalNotationDuration = #(ly:make-moment 1 32)
2739     }
2740   }
2741 }
2742 @end lilypond
2743
2744 Note that too large a reference duration -- such as the eighth note,
2745 above -- spaces music too tightly and can cause note head collisions.
2746 Also that proportional notation in general takes up more horizontal
2747 space than classical spacing.  Proportional spacing provides rhythmic
2748 clarity at the expense of horizontal space.
2749
2750 Next we examine how to optimally space overlapping tuplets.
2751
2752 We start by examining what happens to our original example, with
2753 classical spacing, when we add a second staff with a different type of
2754 tuplet.
2755
2756 @lilypond[quote,verbatim,ragged-right]
2757 \score {
2758   <<
2759     \new RhythmicStaff {
2760       c'2
2761       c'16 c'16 c'16 c'16
2762       \times 4/5 {
2763         c'16 c'16 c'16 c'16 c'16
2764       }
2765     }
2766     \new RhythmicStaff {
2767       \times 8/9 {
2768         c'8 c'8 c'8 c'8 c'8 c'8 c'8 c'8 c'8
2769       }
2770     }
2771   >>
2772 }
2773 @end lilypond
2774
2775 The spacing is bad because the evenly spaced notes of the bottom staff
2776 do not stretch uniformly.  Classical engravings include very few complex
2777 triplets and so classical engraving rules can generate this type of
2778 result.  Setting @code{proportionalNotationDuration} fixes this.
2779
2780 @lilypond[quote,verbatim,ragged-right]
2781 \score {
2782   <<
2783     \new RhythmicStaff {
2784       c'2
2785       c'16 c'16 c'16 c'16
2786       \times 4/5 {
2787         c'16 c'16 c'16 c'16 c'16
2788       }
2789     }
2790     \new RhythmicStaff {
2791       \times 8/9 {
2792         c'8 c'8 c'8 c'8 c'8 c'8 c'8 c'8 c'8
2793       }
2794     }
2795   >>
2796   \layout {
2797     \context {
2798       \Score
2799       proportionalNotationDuration = #(ly:make-moment 1 20)
2800     }
2801   }
2802 }
2803 @end lilypond
2804
2805 But if we look very carefully we can see that notes of the second half
2806 of the 9-tuplet space ever so slightly more widely than the notes
2807 of the first half of the 9-tuplet.  To ensure uniform stretching, we
2808 turn on @code{uniform-stretching}, which is a property of
2809 @code{SpacingSpanner}.
2810
2811 @lilypond[quote,verbatim,ragged-right]
2812 \score {
2813   <<
2814     \new RhythmicStaff {
2815       c'2
2816       c'16 c'16 c'16 c'16
2817       \times 4/5 {
2818         c'16 c'16 c'16 c'16 c'16
2819       }
2820     }
2821     \new RhythmicStaff {
2822       \times 8/9 {
2823         c'8 c'8 c'8 c'8 c'8 c'8 c'8 c'8 c'8
2824       }
2825     }
2826   >>
2827   \layout {
2828     \context {
2829       \Score
2830       proportionalNotationDuration = #(ly:make-moment 1 20)
2831       \override SpacingSpanner #'uniform-stretching = ##t
2832     }
2833   }
2834 }
2835 @end lilypond
2836
2837 Our two-staff example now spaces exactly, our rhythmic
2838 relationships are visually clear, and we can include a measured
2839 timeline or graphic if we want.
2840
2841 Note that the LilyPond's proportional notation package expects
2842 that all proportional scores set the SpacingSpanner's
2843 'uniform-stretching attribute to ##t.  Setting
2844 proportionalNotationDuration without also setting the
2845 SpacingSpanner's 'uniform-stretching attribute to ##t will, for
2846 example, cause Skips to consume an incorrect amount of horizontal
2847 space.
2848
2849 The SpacingSpanner is an abstract grob that lives in the Score
2850 context.  As with our settings of proportionalNotationDuration,
2851 overrides to the SpacingSpanner can occur in any of three
2852 different places in our input file â€“ in the Score \with block, in
2853 a Score \context block, or in note entry directly.
2854
2855 There is by default only one @code{SpacingSpanner} per @code{Score}.  This
2856 means that, by default, @code{uniform-stretching} is either turned on for the
2857 entire score or turned off for the entire score.  We can, however,
2858 override this behavior and turn on different spacing features at
2859 different places in the score.  We do this with the command
2860 @code{\newSpacingSection}.  See @ref{New spacing area}, for more info.
2861
2862 Next we examine the effects of the @code{Separating_line_group_engraver} and
2863 see why proportional scores frequently remove this engraver.  The following
2864 example shows that there is a small amount of @qq{preferatory} space
2865 just before the first note in each system.
2866
2867 @lilypond[quote,verbatim,ragged-right]
2868 \paper {
2869   indent = #0
2870 }
2871
2872 \new Staff {
2873   c'1
2874   \break
2875   c'1
2876 }
2877 @end lilypond
2878
2879
2880 The amount of this preferatory space is the same whether after a time
2881 signature, a key signature or a clef.  @code{Separating_line_group_engraver}
2882 is responsible for this space.  Removing @code{Separating_line_group_engraver}
2883 reduces this space to zero.
2884
2885 @lilypond[quote,verbatim,ragged-right]
2886 \paper {
2887   indent = #0
2888 }
2889
2890 \new Staff \with {
2891   \remove Separating_line_group_engraver
2892 } {
2893   c'1
2894   \break
2895   c'1
2896 }
2897 @end lilypond
2898
2899 Nonmusical elements like time signatures, key signatures, clefs and
2900 accidentals are problematic in proportional notation.  None of these
2901 elements has rhythmic duration.  But all of these elements consume
2902 horizontal space.  Different proportional scores approach these
2903 problems differently.
2904
2905 It may be possible to avoid spacing problems with key signatures
2906 simply by not having any.  This is a valid option since most
2907 proportional scores are contemporary music.  The same may be true
2908 of time signatures, especially for those scores
2909 that include a measured timeline or other graphic.  But these scores
2910 are exceptional and most proportional scores include at least some
2911 time signatures.  Clefs and accidentals are even more essential.
2912
2913 So what strategies exist for spacing nonmusical elements in a
2914 proportional context?  One good option is the @code{strict-note-spacing}
2915 property of @code{SpacingSpanner}.  Compare the two scores below:
2916
2917 @lilypond[quote,verbatim,ragged-right]
2918 \new Staff {
2919   \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
2920   c''8
2921   c''8
2922   c''8
2923   \clef alto
2924   d'8
2925   d'2
2926 }
2927
2928 \new Staff {
2929   \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
2930   \override Score.SpacingSpanner #'strict-note-spacing = ##t
2931   c''8
2932   c''8
2933   c''8
2934   \clef alto
2935   d'8
2936   d'2
2937 }
2938 @end lilypond
2939
2940 Both scores are proportional, but the spacing in the first score
2941 is too loose because of the clef change.  The spacing of the second
2942 score remains strict, however, because strict-note-spacing is
2943 turned on.  Turning on strict-note-spacing causes the width of
2944 time signatures, key signatures, clefs and accidentals to play no
2945 part in the spacing algorithm.
2946
2947 In addition to the settings given here, there are other settings
2948 that frequently appear in proportional scores.  These include:
2949
2950 @itemize
2951 @item @code{\override SpacingSpanner #'strict-grace-spacing = ##t}
2952 @item @code{tupletFullLength = ##t}
2953 @item @code{\override Beam #'breakable = ##t}
2954 @item @code{\override Glissando #'breakable = ##t}
2955 @item @code{\override TextSpanner #'breakable = ##t}
2956 @item @code{\remove Forbid_line_break_engraver in the Voice context}
2957 @end itemize
2958
2959 These settings space grace notes strictly, extend tuplet brackets to
2960 mark both rhythmic start- and stop-points, and allow spanning elements
2961 to break across systems and pages.  See the respective parts of the manual
2962 for these related settings.
2963
2964
2965 @seealso
2966 Notation Reference:
2967 @ref{New spacing area}.
2968
2969 Snippets:
2970 @rlsr{Spacing}.
2971
2972
2973 @node Fitting music onto fewer pages
2974 @section Fitting music onto fewer pages
2975
2976 Sometimes you can end up with one or two staves on a second
2977 (or third, or fourth...) page.  This is annoying, especially
2978 if you look at previous pages and it looks like there is plenty
2979 of room left on those.
2980
2981 When investigating layout issues, @code{annotate-spacing} is an
2982 invaluable tool.  This command prints the values of various layout
2983 spacing variables; for more details see the following section,
2984 @ref{Displaying spacing}.
2985
2986 @menu
2987 * Displaying spacing::
2988 * Changing spacing::
2989 @end menu
2990
2991
2992 @node Displaying spacing
2993 @subsection Displaying spacing
2994
2995 @funindex annotate-spacing
2996 @cindex spacing, display of layout
2997
2998 To graphically display the dimensions of vertical layout variables
2999 that may be altered for page formatting, set
3000 @code{annotate-spacing} in the @code{\paper} block:
3001
3002 @c need to have \book{} otherwise we get the separate systems. -hwn
3003 @lilypond[verbatim,quote]
3004 #(set-default-paper-size "a6" 'landscape)
3005 \book {
3006   \score { { c4 } }
3007   \paper { annotate-spacing = ##t }
3008 }
3009 @end lilypond
3010
3011
3012 @noindent
3013 All layout dimensions are displayed in staff-spaces, regardless
3014 of the units specified in the @code{\paper} or @code{\layout} block.
3015 In the above example, @code{paper-height} has a value of 59.75
3016 @code{staff-spaces}, and the @code{staff-size} is 20 points (the
3017 default value).  Note that:
3018
3019 @multitable {1 staff-space} {staff-size)/4 * (25.4/72.27) mm}
3020
3021 @item 1 point
3022 @tab = (25.4/72.27) mm
3023
3024 @item 1 staff-space
3025 @tab = (@code{staff-size})/4 pts
3026 @item
3027 @tab = (@code{staff-size})/4 * (25.4/72.27) mm
3028
3029 @end multitable
3030
3031 @noindent
3032 In this case, one @code{staff-space} is approximately equal to
3033 1.757mm.  Thus the @code{paper-height} measurement of 59.75
3034 @code{staff-spaces} is equivalent to 105 millimeters, the height
3035 of @code{a6} paper in landscape orientation.  The pairs
3036 (@var{a},@var{b}) are intervals, where @var{a} is the lower
3037 edge and @var{b} the upper edge of the interval.
3038
3039
3040 @seealso
3041 Notation Reference:
3042 @ref{Setting the staff size}.
3043
3044 Snippets:
3045 @rlsr{Spacing}.
3046
3047
3048 @node Changing spacing
3049 @subsection Changing spacing
3050
3051 The output of @code{annotate-spacing} reveals vertical dimensions
3052 in great detail.  For details about modifying margins and other
3053 layout variables, see @ref{Page formatting}.
3054
3055 Other than margins, there are a few other options to save space:
3056
3057 @itemize
3058 @item
3059 Force systems to move as close together as possible (to fit as
3060 many systems as possible onto a page) while being spaced so that
3061 there is no blank space at the bottom of the page.
3062
3063 @example
3064 \paper @{
3065   system-system-spacing = #'((padding . 0) (space . 0.1))
3066   ragged-last-bottom = ##f
3067   ragged-bottom = ##f
3068 @}
3069 @end example
3070
3071 @item
3072 Force the number of systems.  This can help in two ways.  Just
3073 setting a value, even the same value as the number of systems
3074 being typeset by default, will sometimes cause more systems to
3075 be fitted onto each page, as an estimation step is then bypassed,
3076 giving a more accurate fit to each page.  Also, forcing an actual
3077 reduction in the number of systems may save a further page.  For
3078 example, if the default layout has 11 systems, the following
3079 assignment will force a layout with 10 systems.
3080
3081 @example
3082 \paper @{
3083   system-count = #10
3084 @}
3085 @end example
3086
3087 @item
3088 Avoid (or reduce) objects that increase the vertical size of a
3089 system.  For example, volta repeats (or alternate repeats) require
3090 extra space.  If these repeats are spread over two systems, they
3091 will take up more space than one system with the volta repeats and
3092 another system without.  For example, dynamics that @q{stick out} of
3093 a system can be moved closer to the staff:
3094
3095 @lilypond[verbatim,quote,relative=1]
3096 e4 c g\f c
3097 e4 c g-\tweak #'X-offset #-2.7 -\tweak #'Y-offset #2.5 \f c
3098 @end lilypond
3099
3100 @item
3101 Alter the horizontal spacing via @code{SpacingSpanner}.  For more
3102 details, see @ref{Changing horizontal spacing}.  The following
3103 example illustrates the default spacing:
3104
3105 @lilypond[verbatim,quote]
3106 \score {
3107   \relative c'' {
3108     g4 e e2 |
3109     f4 d d2 |
3110     c4 d e f |
3111     g4 g g2 |
3112     g4 e e2 |
3113   }
3114 }
3115 @end lilypond
3116
3117 @noindent
3118 The next example modifies @code{common-shortest-duration} from a
3119 value of @code{1/4} to @code{1/2}.  The quarter note is the most
3120 common and shortest duration in this example, so by making this
3121 duration longer, a @q{squeezing} effect occurs:
3122
3123 @lilypond[verbatim,quote]
3124 \score {
3125   \relative c'' {
3126     g4 e e2 |
3127     f4 d d2 |
3128     c4 d e f |
3129     g4 g g2 |
3130     g4 e e2 |
3131   }
3132   \layout {
3133     \context {
3134       \Score
3135       \override SpacingSpanner
3136         #'common-shortest-duration = #(ly:make-moment 1 2)
3137     }
3138   }
3139 }
3140 @end lilypond
3141
3142 @noindent
3143 The @code{common-shortest-duration} property cannot be modified
3144 dynamically, so it must always be placed in a @code{\context}
3145 block so that it applies to the whole score.
3146
3147 @end itemize
3148
3149
3150 @seealso
3151 Notation Reference:
3152 @ref{Page formatting},
3153 @ref{Changing horizontal spacing}.
3154
3155 Snippets:
3156 @rlsr{Spacing}.