]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/spacing.itely
Doc: change some warnings to knownissues.
[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 Non-staff lines admit three properties to control their spacing.  Each
1526 of the these properties is an alist of the same format as
1527 @var{next-staff-spacing}, above.
1528 @itemize
1529 @item
1530 If the nearest line in the @var{staff-affinity} direction is a staff
1531 then @var{inter-staff-spacing} gives the spacing between the non-staff
1532 and the staff.  If @var{staff-affinity} is @code{CENTER}, then
1533 @var{inter-staff-spacing} is used for both directions.
1534
1535 @item
1536 If the nearest line in the @var{staff-affinity} direction is a non-staff
1537 then @var{inter-loose-line-spacing} gives the spacing between the two
1538 non-staff lines.
1539
1540 @item
1541 If the nearest line in the opposite direction to @var{staff-affinity} is
1542 a staff then @var{non-affinity-spacing} gives the spacing between the
1543 non-staff and the staff.  This can be used, for example, to require
1544 a minimum amount of padding between a Lyrics line and the staff
1545 to which it does not belong.
1546 @end itemize
1547
1548 @lilypond[verbatim]
1549 #(set-global-staff-size 16)
1550 \layout {
1551   \context {
1552     \Lyrics
1553     % By default, Lyrics are placed close together. Here, we allow them to be stretched
1554     % more widely.
1555     \override VerticalAxisGroup #'inter-loose-line-spacing #'stretchability = #1000
1556   }
1557 }
1558
1559 \new StaffGroup
1560 <<
1561   \new Staff \with { \override VerticalAxisGroup #'next-staff-spacing = #'((space . 30)) } c'1
1562   \new Lyrics \with { \override VerticalAxisGroup #'staff-affinity = #UP } \lyricmode { up }
1563   \new Lyrics \with { \override VerticalAxisGroup #'staff-affinity = #CENTER } \lyricmode { center }
1564   \new Lyrics \with { \override VerticalAxisGroup #'staff-affinity = #DOWN } \lyricmode { down }
1565   \new Staff c'1
1566 >>
1567 @end lilypond
1568
1569 @seealso
1570 Snippets:
1571 @rlsr{Spacing}.
1572
1573 @c @lsr{spacing,page-spacing.ly},
1574 @c @lsr{spacing,alignment-vertical-spacing.ly}.
1575
1576 Internals Reference:
1577 @rinternals{VerticalAxisGroup},
1578 @rinternals{VerticalAlignment},
1579 @rinternals{Axis_group_engraver}.
1580
1581 @knownissues
1582 Adjacent non-staff lines should have non-increasing
1583 @var{staff-affinity} from top-to-bottom.  For example, the behavior of
1584 @example
1585 <<
1586   \new Staff c
1587   \new Lyrics \with @{ \override VerticalAxisGroup #'staff-affinity = #DOWN @}
1588   \new Lyrics \with @{ \override VerticalAxisGroup #'staff-affinity = #UP @}
1589   \new Staff c
1590 >>
1591 @end example
1592 is undefined.
1593
1594 A non-staff line at the bottom of a system should have
1595 @var{staff-affinity} set to @code{UP}.  Similarly, a non-staff
1596 line at the top of a system should have @var{staff-affinity} set
1597 to @code{DOWN}.
1598
1599 @node Vertical spacing between systems
1600 @subsection Vertical spacing between systems
1601
1602 Space between systems are controlled by four @code{\paper} variables,
1603
1604 @example
1605 \paper @{
1606   between-system-space = 1.5\cm
1607   between-system-padding = #1
1608   ragged-bottom=##f
1609   ragged-last-bottom=##f
1610 @}
1611 @end example
1612
1613 When only a couple of flat systems are placed on a page, the resulting
1614 vertical spacing may be non-elegant: one system at the top of the page,
1615 and the other at the bottom, with a huge gap between them.  To avoid this
1616 situation, the space added between the systems can be limited.  This
1617 feature is activated by setting to @code{#t} the
1618 @code{page-limit-inter-system-space} variable in the @code{\paper}
1619 block.  The paper variable @code{page-limit-inter-system-space-factor}
1620 determines how much the space can be increased: for instance, the value
1621 @code{1.3} means that the space can be 30% larger than what it would be
1622 on a ragged-bottom page.
1623
1624 In the following example, if the inter system space were not limited,
1625 the second system of page 1 would be placed at the page bottom.  By
1626 activating the space limitation, the second system is placed closer to
1627 the first one.  By setting @code{page-limit-inter-system-space-factor} to
1628 @code{1}, the spacing would the same as on a ragged-bottom page, like
1629 the last one.
1630
1631 @lilypond[verbatim]
1632 #(set-default-paper-size "a6")
1633 \book {
1634   \paper {
1635     page-limit-inter-system-space = ##t
1636     page-limit-inter-system-space-factor = 1.3
1637
1638     oddFooterMarkup = \markup "page bottom"
1639     evenFooterMarkup = \markup "page bottom"
1640     oddHeaderMarkup = \markup \fill-line {
1641       "page top" \fromproperty #'page:page-number-string }
1642     evenHeaderMarkup = \markup \fill-line {
1643       "page top" \fromproperty #'page:page-number-string }
1644   }
1645   \new Staff << \repeat unfold 4 { g'4 g' g' g' \break }
1646                 { s1*2 \pageBreak } >>
1647 }
1648 @end lilypond
1649
1650
1651 @seealso
1652 Snippets:
1653 @rlsr{Spacing}.
1654
1655
1656 @node Explicit staff and system positioning
1657 @subsection Explicit staff and system positioning
1658
1659 One way to understand the @code{VerticalAxisGroup} and @code{\paper}
1660 settings explained in the previous two sections is as a collection of
1661 different settings that primarily concern the amount of vertical padding
1662 different staves and systems running down the page.
1663
1664 It is possible to approach vertical spacing in a different way using
1665 @code{NonMusicalPaperColumn #'line-break-system-details}.  Where
1666 @code{VerticalAxisGroup} and @code{\paper} settings specify vertical padding,
1667 @code{NonMusicalPaperColumn #'line-break-system-details} specifies exact
1668 vertical positions on the page.
1669
1670 @code{NonMusicalPaperColumn #'line-break-system-details} accepts an associative
1671 list of five different settings:
1672
1673 @itemize
1674 @item @code{X-offset}
1675 @item @code{Y-offset}
1676 @item @code{alignment-offsets}
1677 @item @code{alignment-extra-space}
1678 @item @code{fixed-alignment-extra-space}
1679 @end itemize
1680
1681 Grob overrides, including the overrides for @code{NonMusicalPaperColumn}
1682 below, can occur in any of three different places in an input file:
1683
1684 @itemize
1685 @item in the middle of note entry directly
1686 @item in a @code{\context} block
1687 @item in the @code{\with} block
1688 @end itemize
1689
1690 When we override @code{NonMusicalPaperColumn}, we use the usual
1691 @code{\override} command in @code{\context} blocks and in the
1692 @code{\with} block.  On the other hand, when we override
1693 @code{NonMusicalPaperColumn} in the middle of note entry,
1694 use the special @code{\overrideProperty} command.  Here are some
1695 example @code{NonMusicalPaperColumn} overrides with the special
1696 @code{\overrideProperty} command:
1697
1698 @example
1699 \overrideProperty NonMusicalPaperColumn
1700   #'line-break-system-details #'((X-offset . 20))
1701
1702 \overrideProperty NonMusicalPaperColumn
1703   #'line-break-system-details #'((Y-offset . 40))
1704
1705 \overrideProperty NonMusicalPaperColumn
1706   #'line-break-system-details #'((X-offset . 20) (Y-offset . 40))
1707
1708 \overrideProperty NonMusicalPaperColumn
1709   #'line-break-system-details #'((alignment-offsets . (0 -15)))
1710
1711 \overrideProperty NonMusicalPaperColumn
1712   #'line-break-system-details #'((X-offset . 20) (Y-offset . 40)
1713                                  (alignment-offsets . (0 -15)))
1714 @end example
1715
1716 To understand how each of these different settings work, we begin
1717 by looking at an example that includes no overrides at all.
1718
1719 @c \book { } is required in these examples to ensure the spacing
1720 @c overrides can be seen between systems. -np
1721
1722 @lilypond[quote]
1723 \header { tagline = ##f }
1724 \paper { left-margin = 0\mm }
1725 \book {
1726   \score {
1727     <<
1728       \new Staff <<
1729         \new Voice {
1730           s1*5 \break
1731           s1*5 \break
1732           s1*5 \break
1733         }
1734         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
1735       >>
1736       \new Staff {
1737         \repeat unfold 15 { d'4 d' d' d' }
1738       }
1739     >>
1740   }
1741 }
1742 @end lilypond
1743
1744 This score isolates line- and page-breaking information in a dedicated
1745 voice.  This technique of creating a breaks voice will help keep layout
1746 separate from music entry as our example becomes more complicated.
1747 See @ref{Using an extra voice for breaks}.
1748
1749 Explicit @code{\breaks} evenly divide the music into six measures per
1750 line.  Vertical spacing results from LilyPond's defaults.  To set
1751 the vertical startpoint of each system explicitly, we can set
1752 the @code{Y-offset} pair in the @code{line-break-system-details}
1753 attribute of the @code{NonMusicalPaperColumn} grob:
1754
1755 @lilypond[quote]
1756 \header { tagline = ##f }
1757 \paper { left-margin = 0\mm }
1758 \book {
1759   \score {
1760     <<
1761       \new Staff <<
1762         \new Voice {
1763           \overrideProperty #"Score.NonMusicalPaperColumn"
1764             #'line-break-system-details #'((Y-offset . 0))
1765           s1*5 \break
1766           \overrideProperty #"Score.NonMusicalPaperColumn"
1767             #'line-break-system-details #'((Y-offset . 40))
1768           s1*5 \break
1769           \overrideProperty #"Score.NonMusicalPaperColumn"
1770             #'line-break-system-details #'((Y-offset . 80))
1771           s1*5 \break
1772         }
1773         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
1774       >>
1775       \new Staff {
1776         \repeat unfold 15 { d'4 d' d' d' }
1777       }
1778     >>
1779   }
1780 }
1781 @end lilypond
1782
1783 Note that @code{line-break-system-details} takes an associative list of
1784 potentially many values, but that we set only one value here.  Note,
1785 too, that the @code{Y-offset} property here determines the exact vertical
1786 position on the page at which each new system will render.
1787
1788 Now that we have set the vertical startpoint of each system
1789 explicitly, we can also set the vertical startpoint of each staff
1790 within each system manually.  We do this using the @code{alignment-offsets}
1791 subproperty of @code{line-break-system-details}.
1792
1793 @lilypond[quote]
1794 \header { tagline = ##f }
1795 \paper { left-margin = 0\mm }
1796 \book {
1797   \score {
1798     <<
1799       \new Staff <<
1800         \new Voice {
1801           \overrideProperty #"Score.NonMusicalPaperColumn"
1802             #'line-break-system-details #'((Y-offset . 20)
1803                                            (alignment-offsets . (0 -15)))
1804           s1*5 \break
1805           \overrideProperty #"Score.NonMusicalPaperColumn"
1806             #'line-break-system-details #'((Y-offset . 60)
1807                                            (alignment-offsets . (0 -15)))
1808           s1*5 \break
1809           \overrideProperty #"Score.NonMusicalPaperColumn"
1810             #'line-break-system-details #'((Y-offset . 100)
1811                                            (alignment-offsets . (0 -15)))
1812           s1*5 \break
1813         }
1814         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
1815       >>
1816       \new Staff {
1817         \repeat unfold 15 { d'4 d' d' d' }
1818       }
1819     >>
1820   }
1821 }
1822 @end lilypond
1823
1824 Note that here we assign two different values to the
1825 @code{line-break-system-details} attribute of the
1826 @code{NonMusicalPaperColumn} grob.  Though the
1827 @code{line-break-system-details} attribute alist accepts many
1828 additional spacing parameters (including, for example, a corresponding
1829 @code{X-offset} pair), we need only set the @code{Y-offset} and
1830 @code{alignment-offsets} pairs to control the vertical startpoint of
1831 every system and every staff.  Finally, note that @code{alignment-offsets}
1832 specifies the vertical positioning of staves but not of staff groups.
1833
1834 @lilypond[quote]
1835 \header { tagline = ##f }
1836 \paper { left-margin = 0\mm }
1837 \book {
1838   \score {
1839     <<
1840       \new Staff <<
1841         \new Voice {
1842           \overrideProperty #"Score.NonMusicalPaperColumn"
1843             #'line-break-system-details #'((Y-offset . 0)
1844                                            (alignment-offsets . (0 -30 -40)))
1845           s1*5 \break
1846           \overrideProperty #"Score.NonMusicalPaperColumn"
1847             #'line-break-system-details #'((Y-offset . 60)
1848                                            (alignment-offsets . (0 -10 -20)))
1849           s1*5 \break
1850           \overrideProperty #"Score.NonMusicalPaperColumn"
1851             #'line-break-system-details #'((Y-offset . 100)
1852                                            (alignment-offsets . (0 -10 -40)))
1853           s1*5 \break
1854         }
1855         \new Voice { \repeat unfold 15 { c'4 c' c' c' } }
1856       >>
1857       \new StaffGroup <<
1858         \new Staff { \repeat unfold 15 { d'4 d' d' d' } }
1859         \new Staff { \repeat unfold 15 { e'4 e' e' e' } }
1860       >>
1861     >>
1862   }
1863 }
1864 @end lilypond
1865
1866 Some points to consider:
1867
1868 @itemize
1869 @item When using @code{alignment-offsets}, lyrics count as a staff.
1870
1871 @item The units of the numbers passed to @code{X-offset},
1872 @code{Y-offset} and @code{alignment-offsets} are interpreted as multiples
1873 of the distance between adjacent staff lines.  Positive values move staves
1874 and lyrics up, negative values move staves and lyrics down.
1875
1876 @item Because the @code{NonMusicalPaperColumn #'line-break-system-details}
1877 settings given here allow the positioning of staves and systems anywhere
1878 on the page, it is possible to violate paper or margin boundaries or even
1879 to print staves or systems on top of one another.  Reasonable values
1880 passed to these different settings will avoid this.
1881 @end itemize
1882
1883
1884 @seealso
1885 Snippets:
1886 @rlsr{Spacing}.
1887
1888
1889 @node Vertical collision avoidance
1890 @subsection Vertical collision avoidance
1891
1892 @funindex outside-staff-priority
1893 @funindex outside-staff-padding
1894 @funindex outside-staff-horizontal-padding
1895
1896 Intuitively, there are some objects in musical notation that belong
1897 to the staff and there are other objects that should be placed outside
1898 the staff.  Objects belonging outside the staff include things such as
1899 rehearsal marks, text and dynamic markings (from now on, these will
1900 be called outside-staff objects).  LilyPond's rule for the
1901 vertical placement of outside-staff objects is to place them as close
1902 to the staff as possible but not so close that they collide with
1903 another object.
1904
1905 LilyPond uses the @code{outside-staff-priority} property to determine
1906 whether a grob is an outside-staff object: if @code{outside-staff-priority}
1907 is a number, the grob is an outside-staff object.  In addition,
1908 @code{outside-staff-priority} tells LilyPond in which order the objects
1909 should be placed.
1910
1911 First, LilyPond places all the objects that do not belong outside
1912 the staff.  Then it sorts the outside-staff objects according to their
1913 @code{outside-staff-priority} (in increasing order).  One by one, LilyPond
1914 takes the outside-staff objects and places them so that they do
1915 not collide with any objects that have already been placed.  That
1916 is, if two outside-staff grobs are competing for the same space, the one
1917 with the lower @code{outside-staff-priority} will be placed closer to
1918 the staff.
1919
1920 @lilypond[quote,ragged-right,relative=2,fragment,verbatim]
1921 c4_"Text"\pp
1922 r2.
1923 \once \override TextScript #'outside-staff-priority = #1
1924 c4_"Text"\pp % this time the text will be closer to the staff
1925 r2.
1926 % by setting outside-staff-priority to a non-number,
1927 % we disable the automatic collision avoidance
1928 \once \override TextScript #'outside-staff-priority = ##f
1929 \once \override DynamicLineSpanner #'outside-staff-priority = ##f
1930 c4_"Text"\pp % now they will collide
1931 @end lilypond
1932
1933 The vertical padding between an outside-staff object and the
1934 previously-positioned grobs can be controlled with
1935 @code{outside-staff-padding}.
1936
1937 @lilypond[quote,ragged-right,relative=2,fragment,verbatim]
1938 \once \override TextScript #'outside-staff-padding = #0
1939 a'^"This text is placed very close to the note"
1940 \once \override TextScript #'outside-staff-padding = #3
1941 c^"This text is padded away from the previous text"
1942 c^"This text is placed close to the previous text"
1943 @end lilypond
1944
1945
1946 By default, outside-staff objects are placed only to avoid
1947 a horizontal collision with previously-positioned grobs.  This
1948 can lead to situations in which objects are placed very close to each
1949 other horizontally.  The vertical spacing between staffs can
1950 also be set so that outside staff objects are interleaved.
1951 Setting @code{outside-staff-horizontal-padding}
1952 causes an object to be offset vertically so that such a situation
1953 doesn't occur.
1954
1955 @lilypond[quote,ragged-right,relative=2,fragment,verbatim]
1956 % the markup is too close to the following note
1957 c4^"Text"
1958 c4
1959 c''2
1960 % setting outside-staff-horizontal-padding fixes this
1961 R1
1962 \once \override TextScript #'outside-staff-horizontal-padding = #1
1963 c,,4^"Text"
1964 c4
1965 c''2
1966 @end lilypond
1967
1968
1969 @seealso
1970 Snippets:
1971 @rlsr{Spacing}.
1972
1973
1974 @node Horizontal spacing
1975 @section Horizontal spacing
1976
1977 @cindex horizontal spacing
1978 @cindex spacing, horizontal
1979
1980 @menu
1981 * Horizontal spacing overview::
1982 * New spacing area::
1983 * Changing horizontal spacing::
1984 * Line length::
1985 * Proportional notation::
1986 @end menu
1987
1988
1989 @node Horizontal spacing overview
1990 @subsection Horizontal spacing overview
1991
1992 The spacing engine translates differences in durations into stretchable
1993 distances (@q{springs}) of differing lengths.  Longer durations get
1994 more space, shorter durations get less.  The shortest durations get a
1995 fixed amount of space (which is controlled by
1996 @code{shortest-duration-space} in the @rinternals{SpacingSpanner}
1997 object).  The longer the duration, the more space it gets: doubling a
1998 duration adds a fixed amount (this amount is controlled by
1999 @code{spacing-increment}) of space to the note.
2000
2001 For example, the following piece contains lots of half, quarter, and
2002 8th notes; the eighth note is followed by 1 note head width (NHW).
2003 The quarter note is followed by 2 NHW, the half by 3 NHW, etc.
2004
2005 @lilypond[quote,fragment,verbatim,relative=1]
2006 c2 c4. c8 c4. c8 c4. c8 c8
2007 c8 c4 c4 c4
2008 @end lilypond
2009
2010 Normally, @code{spacing-increment} is set to 1.2 staff space, which is
2011 approximately the width of a note head, and
2012 @code{shortest-duration-space} is set to 2.0, meaning that the
2013 shortest note gets 2.4 staff space (2.0 times the
2014 @code{spacing-increment}) of horizontal space.  This space is counted
2015 from the left edge of the symbol, so the shortest notes are generally
2016 followed by one NHW of space.
2017
2018 If one would follow the above procedure exactly, then adding a single
2019 32nd note to a score that uses 8th and 16th notes, would widen up the
2020 entire score a lot.  The shortest note is no longer a 16th, but a 32nd,
2021 thus adding 1 NHW to every note.  To prevent this, the shortest
2022 duration for spacing is not the shortest note in the score, but rather
2023 the one which occurs most frequently.
2024
2025
2026 The most common shortest duration is determined as follows: in every
2027 measure, the shortest duration is determined.  The most common shortest
2028 duration is taken as the basis for the spacing, with the stipulation
2029 that this shortest duration should always be equal to or shorter than
2030 an 8th note.  The shortest duration is printed when you run
2031 @code{lilypond} with the @code{--verbose} option.
2032
2033 These durations may also be customized.  If you set the
2034 @code{common-shortest-duration} in @rinternals{SpacingSpanner}, then
2035 this sets the base duration for spacing.  The maximum duration for this
2036 base (normally an 8th), is set through @code{base-shortest-duration}.
2037
2038 @funindex common-shortest-duration
2039 @funindex base-shortest-duration
2040 @funindex stem-spacing-correction
2041 @funindex spacing
2042
2043 Notes that are even shorter than the common shortest note are
2044 followed by a space that is proportional to their duration relative to
2045 the common shortest note.  So if we were to add only a few 16th notes
2046 to the example above, they would be followed by half a NHW:
2047
2048 @lilypond[quote,fragment,verbatim,relative=2]
2049 c2 c4. c8 c4. c16[ c] c4. c8 c8 c8 c4 c4 c4
2050 @end lilypond
2051
2052
2053 In the introduction
2054 FIXME FIXME FIXME
2055 @c (see @rlearning{Engraving}),
2056 it was explained that stem
2057 directions influence spacing.  This is controlled with the
2058 @code{stem-spacing-correction} property in the
2059 @rinternals{NoteSpacing}, object.  These are generated for every
2060 @rinternals{Voice} context.  The @code{StaffSpacing} object
2061 (generated in @rinternals{Staff} context) contains the same property
2062 for controlling the stem/bar line spacing.  The following example shows
2063 these corrections, once with default settings, and once with
2064 exaggerated corrections:
2065
2066 @lilypond[quote,ragged-right]
2067 {
2068   c'4 e''4 e'4 b'4 |
2069   b'4 e''4 b'4 e''4|
2070   \override Staff.NoteSpacing #'stem-spacing-correction = #1.5
2071   \override Staff.StaffSpacing #'stem-spacing-correction = #1.5
2072   c'4 e''4 e'4 b'4 |
2073   b'4 e''4 b'4 e''4|
2074 }
2075 @end lilypond
2076
2077 Proportional notation is supported; see @ref{Proportional notation}.
2078
2079
2080 @seealso
2081 Snippets:
2082 @rlsr{Spacing}.
2083
2084 Internals Reference:
2085 @rinternals{SpacingSpanner},
2086 @rinternals{NoteSpacing},
2087 @rinternals{StaffSpacing},
2088 @rinternals{NonMusicalPaperColumn}.
2089
2090
2091 @knownissues
2092
2093 There is no convenient mechanism to manually override spacing.  The
2094 following work-around may be used to insert extra space into a score,
2095 adjusting the padding value as necessary.
2096 @example
2097  \override Score.NonMusicalPaperColumn #'padding = #10
2098 @end example
2099
2100 No work-around exists for decreasing the amount of space.
2101
2102
2103 @node New spacing area
2104 @subsection New spacing area
2105
2106 New sections with different spacing parameters can be started with
2107 @code{newSpacingSection}.  This is useful when there are
2108 sections with a different notions of long and short notes.
2109
2110 In the following example, the time signature change introduces a new
2111 section, and hence the 16ths notes are spaced wider.
2112
2113 @lilypond[relative,fragment,verbatim,quote]
2114 \time 2/4
2115 c4 c8 c
2116 c8 c c4 c16[ c c8] c4
2117 \newSpacingSection
2118 \time 4/16
2119 c16[ c c8]
2120 @end lilypond
2121
2122 The @code{\newSpacingSection} command creates a new
2123 @code{SpacingSpanner} object, and hence new @code{\override}s
2124 may be used in that location.
2125
2126
2127 @seealso
2128 Snippets:
2129 @rlsr{Spacing}.
2130
2131 Internals Reference:
2132 @rinternals{SpacingSpanner}.
2133
2134
2135 @node Changing horizontal spacing
2136 @subsection Changing horizontal spacing
2137
2138 Horizontal spacing may be altered with the
2139 @code{base-shortest-duration} property.  Here
2140 we compare the same music; once without altering
2141 the property, and then altered.  Larger values
2142 of @code{ly:make-moment} will produce smaller
2143 music.  Note that @code{ly:make-moment} constructs
2144 a duration, so @code{1 4} is a longer duration
2145 than @code{1 16}.
2146
2147 @lilypond[verbatim,line-width=12\cm]
2148 \score {
2149   \relative c'' {
2150     g4 e e2 | f4 d d2 | c4 d e f | g4 g g2 |
2151     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2152     d4 d d d | d4 e f2 | e4 e e e | e4 f g2 |
2153     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2154   }
2155 }
2156 @end lilypond
2157
2158 @lilypond[verbatim,line-width=12\cm]
2159 \score {
2160   \relative c'' {
2161     g4 e e2 | f4 d d2 | c4 d e f | g4 g g2 |
2162     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2163     d4 d d d | d4 e f2 | e4 e e e | e4 f g2 |
2164     g4 e e2 | f4 d d2 | c4 e g g | c,1 |
2165   }
2166   \layout {
2167     \context {
2168       \Score
2169       \override SpacingSpanner
2170                 #'base-shortest-duration = #(ly:make-moment 1 16)
2171     }
2172   }
2173 }
2174 @end lilypond
2175
2176
2177 @snippets
2178
2179 By default, spacing in tuplets depends on various non-duration
2180 factors (such as accidentals, clef changes, etc).  To disregard
2181 such symbols and force uniform equal-duration spacing, use
2182 @code{Score.SpacingSpanner #'uniform-stretching}.  This
2183 property can only be changed at the beginning of a score,
2184
2185 @lilypond[quote,ragged-right,relative=2,fragment,verbatim]
2186 \new Score \with {
2187   \override SpacingSpanner #'uniform-stretching = ##t
2188 } <<
2189   \new Staff{
2190     \times 4/5 {
2191       c8 c8 c8 c8 c8
2192     }
2193     c8 c8 c8 c8
2194   }
2195   \new Staff{
2196     c8 c8 c8 c8
2197     \times 4/5 {
2198       c8 c8 c8 c8 c8
2199     }
2200   }
2201 >>
2202 @end lilypond
2203
2204 When @code{strict-note-spacing} is set, notes are spaced without
2205 regard for clefs, bar lines, and grace notes,
2206
2207 @lilypond[quote,ragged-right,relative=2,fragment,verbatim]
2208 \override Score.SpacingSpanner #'strict-note-spacing = ##t
2209 \new Staff { c8[ c \clef alto c \grace { c16[ c] } c8 c c]  c32[ c32] }
2210 @end lilypond
2211
2212
2213 @seealso
2214 Snippets:
2215 @rlsr{Spacing}.
2216
2217
2218 @node Line length
2219 @subsection Line length
2220
2221 @cindex page breaks
2222 @cindex breaking pages
2223
2224 @funindex indent
2225 @funindex line-width
2226 @funindex ragged-right
2227 @funindex ragged-last
2228
2229 @c Although line-width can be set in \layout, it should be set in paper
2230 @c block, to get page layout right.
2231 @c Setting indent in \paper block makes not much sense, but it works.
2232
2233 @c Bit verbose and vague, use examples?
2234 The most basic settings influencing the spacing are @code{indent} and
2235 @code{line-width}.  They are set in the @code{\layout} block.  They
2236 control the indentation of the first line of music, and the lengths of
2237 the lines.
2238
2239 If @code{ragged-right} is set to true in the @code{\layout} block, then
2240 systems ends at their natural horizontal length, instead of being spread
2241 horizontally to fill the whole line.  This is useful for
2242 short fragments, and for checking how tight the natural spacing is.
2243 The normal default setting is false, but if the score has only one
2244 system the default value is true.
2245
2246 @cindex page layout
2247 @cindex vertical spacing
2248
2249 The option @code{ragged-last} is similar to @code{ragged-right}, but
2250 only affects the last line of the piece.  No restrictions are put on
2251 that line.  The result is similar to formatting text paragraphs.  In a
2252 paragraph, the last line simply takes its natural horizontal length.
2253 @c Note that for text there are several options for the last line.
2254 @c While Knuth TeX uses natural length, lead typesetters use the same
2255 @c stretch as the previous line.  eTeX uses \lastlinefit to
2256 @c interpolate between both these solutions.
2257
2258 @example
2259 \layout @{
2260   indent = #0
2261   line-width = #150
2262   ragged-last = ##t
2263 @}
2264 @end example
2265
2266
2267 @seealso
2268 Snippets:
2269 @rlsr{Spacing}.
2270
2271
2272 @node Proportional notation
2273 @subsection Proportional notation
2274
2275 LilyPond supports proportional notation, a type of horizontal spacing
2276 in which each note consumes an amount of horizontal space exactly
2277 equivalent to its rhythmic duration.  This type of proportional spacing
2278 is comparable to horizontal spacing on top of graph paper.  Some late
2279 20th- and early 21st-century scores use proportional notation to
2280 clarify complex rhythmic relationships or to facilitate the placement
2281 of timelines or other graphics directly in the score.
2282
2283 LilyPond supports five different settings for proportional notation,
2284 which may be used together or alone:
2285
2286 @itemize
2287 @item @code{proportionalNotationDuration}
2288 @item @code{uniform-stretching}
2289 @item @code{strict-note-spacing}
2290 @item @code{\remove Separating_line_group_engraver}
2291 @item @code{\override PaperColumn #'used = ##t}
2292 @end itemize
2293
2294 In the examples that follow, we explore these five different
2295 proportional notation settings and examine how these settings interact.
2296
2297 We start with the following one-measure example, which uses classical
2298 spacing with ragged-right turned on.
2299
2300 @lilypond[quote,verbatim,ragged-right]
2301 \new Score <<
2302   \new RhythmicStaff {
2303     c'2
2304     c'16 c'16 c'16 c'16
2305     \times 4/5 {
2306       c'16 c'16 c'16 c'16 c'16
2307     }
2308   }
2309 >>
2310 @end lilypond
2311
2312 Notice that the half note which begins the measure takes up far less
2313 than half of the horizontal space of the measure.  Likewise, the
2314 sixteenth notes and sixteenth-note quintuplets (or twentieth notes)
2315 which end the measure together take up far more than half the
2316 horizontal space of the measure.
2317
2318 In classical engraving, this spacing may be exactly what we want
2319 because we can borrow horizontal space from the half note and conserve
2320 horizontal space across the measure as a whole.
2321
2322 On the other hand, if we want to insert a measured timeline or other
2323 graphic above or below our score, we need proportional notation.  We
2324 turn proportional notation on with the proportionalNotationDuration
2325 setting.
2326
2327 @lilypond[quote,verbatim,ragged-right]
2328 \new Score \with {
2329   proportionalNotationDuration = #(ly:make-moment 1 20)
2330 } <<
2331   \new RhythmicStaff {
2332     c'2
2333     c'16 c'16 c'16 c'16
2334     \times 4/5 {
2335       c'16 c'16 c'16 c'16 c'16
2336     }
2337   }
2338 >>
2339 @end lilypond
2340
2341 The half note at the beginning of the measure and the faster notes in
2342 the second half of the measure now occupy equal amounts of horizontal
2343 space.  We could place a measured timeline or graphic above or below
2344 this example.
2345
2346 The @code{proportionalNotationDuration} setting is a context setting that
2347 lives in @code{Score}.  Recall that context settings appear in one of
2348 three locations in our input file -- in a @code{\with} block, in a
2349 @code{\context} block, or directly in music entry
2350 preceded by the @code{\set} command.  As with all
2351 context settings, users can pick which of the three different
2352 locations they would like to set @code{proportionalNotationDuration}.
2353
2354 The @code{proportionalNotationDuration} setting takes a single argument,
2355 which is the reference duration against which all music will be
2356 spaced.  The LilyPond Scheme function make-moment takes two arguments
2357 -- a numerator and denominator which together express some fraction of
2358 a whole note.  The call @code{#(ly:make-moment 1 20)} therefore produces a
2359 reference duration of a twentieth note.  The values
2360 @code{#(ly:make-moment 1 16)}, @code{#(ly:make-moment 1 8)}, and
2361 @code{#(ly:make-moment 3 97)} are all possible as well.
2362
2363 How do we select the right reference duration to pass to
2364 @code{proportionalNotationDuration}?  Usually by a process of trial and error,
2365 beginning with a duration close to the fastest (or smallest) duration
2366 in the piece.  Smaller reference durations space music loosely; larger
2367 reference durations space music tightly.
2368
2369 @lilypond[quote,verbatim,ragged-right]
2370 \new Score \with {
2371   proportionalNotationDuration = #(ly:make-moment 1 8)
2372 } <<
2373   \new RhythmicStaff {
2374     c'2
2375     c'16 c'16 c'16 c'16
2376     \times 4/5 {
2377       c'16 c'16 c'16 c'16 c'16
2378     }
2379   }
2380 >>
2381
2382 \new Score \with {
2383   proportionalNotationDuration = #(ly:make-moment 1 16)
2384 } <<
2385   \new RhythmicStaff {
2386     c'2
2387     c'16 c'16 c'16 c'16
2388     \times 4/5 {
2389       c'16 c'16 c'16 c'16 c'16
2390     }
2391   }
2392 >>
2393
2394 \new Score \with {
2395   proportionalNotationDuration = #(ly:make-moment 1 32)
2396 } <<
2397   \new RhythmicStaff {
2398     c'2
2399     c'16 c'16 c'16 c'16
2400     \times 4/5 {
2401       c'16 c'16 c'16 c'16 c'16
2402     }
2403   }
2404 >>
2405 @end lilypond
2406
2407 Note that too large a reference duration -- such as the eighth note,
2408 above -- spaces music too tightly and can cause note head collisions.
2409 Note also that proportional notation in general takes up more
2410 horizontal space that does classical spacing.  Proportional spacing
2411 provides rhythmic clarity at the expense of horizontal space.
2412
2413 Next we examine how to optimally space overlapping tuplets.
2414
2415 We start by examining what happens to our original example, with
2416 classical spacing, when we add a second staff with a different type of
2417 tuplet.
2418
2419 @lilypond[quote,verbatim,ragged-right]
2420 \new Score <<
2421   \new RhythmicStaff {
2422     c'2
2423     c'16 c'16 c'16 c'16
2424     \times 4/5 {
2425       c'16 c'16 c'16 c'16 c'16
2426     }
2427   }
2428   \new RhythmicStaff {
2429     \times 8/9 {
2430       c'8 c'8 c'8 c'8 c'8 c'8 c'8 c'8 c'8
2431     }
2432   }
2433 >>
2434 @end lilypond
2435
2436 The spacing is bad because the evenly notes of the bottom staff do not
2437 stretch uniformly.  Classical engraving includes very few complex
2438 triplets and so classical engraving rules can generate this type of
2439 result.  Setting @code{proportionalNotationDuration} remedies this
2440 situation considerably.
2441
2442 @lilypond[quote,verbatim,ragged-right]
2443 \new Score \with {
2444   proportionalNotationDuration = #(ly:make-moment 1 20)
2445 } <<
2446   \new RhythmicStaff {
2447     c'2
2448     c'16 c'16 c'16 c'16
2449     \times 4/5 {
2450       c'16 c'16 c'16 c'16 c'16
2451     }
2452   }
2453   \new RhythmicStaff {
2454     \times 8/9 {
2455       c'8 c'8 c'8 c'8 c'8 c'8 c'8 c'8 c'8
2456     }
2457   }
2458 >>
2459 @end lilypond
2460
2461 But if we look very carefully we can see that notes of the second half
2462 of the 9-tuplet space ever so slightly more widely than do the notes
2463 of the first half of the 9-tuplet.  To ensure uniform stretching, we
2464 turn on @code{uniform-stretching}, which is a property of
2465 @code{SpacingSpanner}.
2466
2467 @lilypond[quote,verbatim,ragged-right]
2468 \new Score \with {
2469   proportionalNotationDuration = #(ly:make-moment 1 20)
2470   \override SpacingSpanner #'uniform-stretching = ##t
2471 } <<
2472   \new RhythmicStaff {
2473     c'2
2474     c'16 c'16 c'16 c'16
2475     \times 4/5 {
2476       c'16 c'16 c'16 c'16 c'16
2477     }
2478   }
2479   \new RhythmicStaff {
2480     \times 8/9 {
2481       c'8 c'8 c'8 c'8 c'8 c'8 c'8 c'8 c'8
2482     }
2483   }
2484 >>
2485 @end lilypond
2486
2487 Our two-staff example now spaces exactly, our rhythmic
2488 relationships are visually clear, and we can include a measured
2489 timeline or graphic if we want.
2490
2491 Note that the LilyPond's proportional notation package expects
2492 that all proportional scores set the SpacingSpanner's
2493 'uniform-stretching attribute to ##t. Setting
2494 proportionalNotationDuration without also setting the
2495 SpacingSpanner's 'uniform-stretching attribute to ##t will, for
2496 example, cause Skips to consume an incorrect amount of horizontal
2497 space.
2498
2499 The SpacingSpanner is an abstract grob that lives in the Score
2500 context. As with our settings of proportionalNotationDuration,
2501 overrides to the SpacingSpanner can occur in any of three
2502 different places in our input file â€“ in the Score \with block, in
2503 a Score \context block, or in note entry directly.
2504
2505 There is by default only one @code{SpacingSpanner} per @code{Score}.  This
2506 means that, by default, @code{uniform-stretching} is either turned on for the
2507 entire score or turned off for the entire score.  We can, however,
2508 override this behavior and turn on different spacing features at
2509 different places in the score.  We do this with the command
2510 @code{\newSpacingSection}.  See @ref{New spacing area}, for more info.
2511
2512 Next we examine the effects of the @code{Separating_line_group_engraver} and
2513 see why proportional scores frequently remove this engraver.  The following
2514 example shows that there is a small amount of @qq{preferatory} space
2515 just before the first note in each system.
2516
2517 @lilypond[quote,verbatim,ragged-right]
2518 \paper {
2519   indent = #0
2520 }
2521
2522 \new Staff {
2523   c'1
2524   \break
2525   c'1
2526 }
2527 @end lilypond
2528
2529
2530 The amount of this preferatory space is the same whether after a time
2531 signature, a key signature or a clef.  @code{Separating_line_group_engraver}
2532 is responsible for this space.  Removing @code{Separating_line_group_engraver}
2533 reduces this space to zero.
2534
2535 @lilypond[quote,verbatim,ragged-right]
2536 \paper {
2537   indent = #0
2538 }
2539
2540 \new Staff \with {
2541   \remove Separating_line_group_engraver
2542 } {
2543   c'1
2544   \break
2545   c'1
2546 }
2547 @end lilypond
2548
2549 Nonmusical elements like time signatures, key signatures, clefs and
2550 accidentals are problematic in proportional notation.  None of these
2551 elements has rhythmic duration.  But all of these elements consume
2552 horizontal space.  Different proportional scores approach these
2553 problems differently.
2554
2555 It may be possible to avoid spacing problems with key signatures
2556 simply by not having any.  This is a valid option since most
2557 proportional scores are contemporary music.  The same may be true
2558 of time signatures, especially for those scores
2559 that include a measured timeline or other graphic.  But these scores
2560 are exceptional and most proportional scores include at least some
2561 time signatures.  Clefs and accidentals are even more essential.
2562
2563 So what strategies exist for spacing nonmusical elements in a
2564 proportional context?  One good option is the @code{strict-note-spacing}
2565 property of @code{SpacingSpanner}.  Compare the two scores below:
2566
2567 @lilypond[quote,verbatim,ragged-right]
2568 \new Staff {
2569   \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
2570   c''8
2571   c''8
2572   c''8
2573   \clef alto
2574   d'8
2575   d'2
2576 }
2577
2578 \new Staff {
2579   \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
2580   \override Score.SpacingSpanner #'strict-note-spacing = ##t
2581   c''8
2582   c''8
2583   c''8
2584   \clef alto
2585   d'8
2586   d'2
2587 }
2588 @end lilypond
2589
2590 Both scores are proportional, but the spacing in the first score
2591 is too loose because of the clef change. The spacing of the second
2592 score remains strict, however, because strict-note-spacing is
2593 turned on.  Turning on strict-note-spacing causes the width of
2594 time signatures, key signatures, clefs and accidentals to play no
2595 part in the spacing algorithm.
2596
2597 In addition to the settings given here, there are other settings
2598 that frequently appear in proportional scores. These include:
2599
2600 @itemize
2601 @item @code{\override SpacingSpanner #'strict-grace-spacing = ##t}
2602 @item @code{tupletFullLength = ##t}
2603 @item @code{\override Beam #'breakable = ##t}
2604 @item @code{\override Glissando #'breakable = ##t}
2605 @item @code{\override TextSpanner #'breakable = ##t}
2606 @item @code{\remove Forbid_line_break_engraver in the Voice context}
2607 @end itemize
2608
2609 These settings space grace notes strictly, extend tuplet brackets to
2610 mark both rhythmic start- and stop-points, and allow spanning elements
2611 to break across systems and pages.  See the respective parts of the manual
2612 for these related settings.
2613
2614
2615 @seealso
2616 Notation Reference:
2617 @ref{New spacing area}.
2618
2619 Snippets:
2620 @rlsr{Spacing}.
2621
2622
2623 @node Fitting music onto fewer pages
2624 @section Fitting music onto fewer pages
2625
2626 Sometimes you can end up with one or two staves on a second
2627 (or third, or fourth...) page.  This is annoying, especially
2628 if you look at previous pages and it looks like there is plenty
2629 of room left on those.
2630
2631 When investigating layout issues, @code{annotate-spacing} is an
2632 invaluable tool.  This command prints the values of various layout
2633 spacing variables; for more details see the following section,
2634 @ref{Displaying spacing}.
2635
2636 @menu
2637 * Displaying spacing::
2638 * Changing spacing::
2639 @end menu
2640
2641
2642 @node Displaying spacing
2643 @subsection Displaying spacing
2644
2645 @funindex annotate-spacing
2646 @cindex spacing, display of layout
2647
2648 To graphically display the dimensions of vertical layout variables
2649 that may be altered for page formatting, set
2650 @code{annotate-spacing} in the @code{\paper} block:
2651
2652 @c need to have \book{} otherwise we get the separate systems. -hwn
2653 @lilypond[verbatim,quote]
2654 #(set-default-paper-size "a6" 'landscape)
2655 \book {
2656   \score { { c4 } }
2657   \paper { annotate-spacing = ##t }
2658 }
2659 @end lilypond
2660
2661
2662 @noindent
2663 All layout dimensions are displayed in staff-spaces, regardless
2664 of the units specified in the @code{\paper} or @code{\layout} block.
2665 In the above example, @code{paper-height} has a value of 59.75
2666 @code{staff-spaces}, and the @code{staff-size} is 20 points (the
2667 default value). Note that:
2668
2669 @multitable {1 staff-space} {staff-size)/4 * (25.4/72.27) mm}
2670
2671 @item 1 point
2672 @tab = (25.4/72.27) mm
2673
2674 @item 1 staff-space
2675 @tab = (@code{staff-size})/4 pts
2676 @item
2677 @tab = (@code{staff-size})/4 * (25.4/72.27) mm
2678
2679 @end multitable
2680
2681 @noindent
2682 In this case, one @code{staff-space} is approximately equal to
2683 1.757mm. Thus the @code{paper-height} measurement of 59.75
2684 @code{staff-spaces} is equivalent to 105 millimeters, the height
2685 of @code{a6} paper in landscape orientation.  The pairs
2686 (@var{a},@var{b}) are intervals, where @var{a} is the lower
2687 edge and @var{b} the upper edge of the interval.
2688
2689
2690 @seealso
2691 Notation Reference:
2692 @ref{Setting the staff size}.
2693
2694 Snippets:
2695 @rlsr{Spacing}.
2696
2697
2698 @node Changing spacing
2699 @subsection Changing spacing
2700
2701 The output of @code{annotate-spacing} reveals vertical dimensions
2702 in great detail.  For details about modifying margins and other
2703 layout variables, see @ref{Page formatting}.
2704
2705 Other than margins, there are a few other options to save space:
2706
2707 @itemize
2708 @item
2709 Force systems to move as close together as possible (to fit as
2710 many systems as possible onto a page) while being spaced so that
2711 there is no blank space at the bottom of the page.
2712
2713 @example
2714 \paper @{
2715   between-system-padding = #0.1
2716   between-system-space = #0.1
2717   ragged-last-bottom = ##f
2718   ragged-bottom = ##f
2719 @}
2720 @end example
2721
2722 @item
2723 Force the number of systems.  This can help in two ways.  Just
2724 setting a value, even the same value as the number of systems
2725 being typeset by default, will sometimes cause more systems to
2726 be fitted onto each page, as an estimation step is then bypassed,
2727 giving a more accurate fit to each page.  Also, forcing an actual
2728 reduction in the number of systems may save a further page. For
2729 example, if the default layout has 11 systems, the following
2730 assignment will force a layout with 10 systems.
2731
2732 @example
2733 \paper @{
2734   system-count = #10
2735 @}
2736 @end example
2737
2738 @item
2739 Avoid (or reduce) objects that increase the vertical size of a
2740 system.  For example, volta repeats (or alternate repeats) require
2741 extra space.  If these repeats are spread over two systems, they
2742 will take up more space than one system with the volta repeats and
2743 another system without.  For example, dynamics that @q{stick out} of
2744 a system can be moved closer to the staff:
2745
2746 @lilypond[verbatim,quote,relative=1]
2747 e4 c g\f c
2748 \override DynamicText #'extra-offset = #'( -2.2 . 2.0)
2749 e4 c g\f c
2750 @end lilypond
2751
2752 @item
2753 Alter the horizontal spacing via @code{SpacingSpanner}.  For more
2754 details, see @ref{Changing horizontal spacing}.  The following
2755 example illustrates the default spacing:
2756
2757 @lilypond[verbatim,quote]
2758 \score {
2759   \relative c'' {
2760     g4 e e2 |
2761     f4 d d2 |
2762     c4 d e f |
2763     g4 g g2 |
2764     g4 e e2 |
2765   }
2766 }
2767 @end lilypond
2768
2769 @noindent
2770 The next example modifies @code{common-shortest-duration} from a
2771 value of @code{1/4} to @code{1/2}.  The quarter note is the most
2772 common and shortest duration in this example, so by making this
2773 duration longer, a @q{squeezing} effect occurs:
2774
2775 @lilypond[verbatim,quote]
2776 \score {
2777   \relative c'' {
2778     g4 e e2 |
2779     f4 d d2 |
2780     c4 d e f |
2781     g4 g g2 |
2782     g4 e e2 |
2783   }
2784   \layout {
2785     \context {
2786       \Score
2787       \override SpacingSpanner
2788         #'common-shortest-duration = #(ly:make-moment 1 2)
2789     }
2790   }
2791 }
2792 @end lilypond
2793
2794 @noindent
2795 The @code{common-shortest-duration} property cannot be modified
2796 dynamically, so it must always be placed in a @code{\context}
2797 block so that it applies to the whole score.
2798
2799 @end itemize
2800
2801
2802 @seealso
2803 Notation Reference:
2804 @ref{Page formatting},
2805 @ref{Changing horizontal spacing}.
2806
2807 Snippets:
2808 @rlsr{Spacing}.