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