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