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