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