]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/global.itely
Minor stuff from mailist.
[lilypond.git] / Documentation / user / global.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
3
4 @c A menu is needed before every deeper *section nesting of @node's; run 
5 @c     M-x texinfo-all-menus-update
6 @c to automatically fill in these menus before saving changes
7
8 @node Global issues
9 @chapter Global issues
10
11 This section deals with general lilypond issues, rather than
12 specific notation.
13
14 @menu
15 * Input files::                 
16 * Music expressions again::     
17 * Titles and headers::          
18 * Paper and pages::             
19 * Music layout::                
20 * Multiple movements::          
21 * MIDI output::                 
22 @end menu
23
24
25 @node Input files
26 @section Input files
27
28 The main format of input for LilyPond are text files.  By convention,
29 these files end with ``@code{.ly}''.
30
31 @menu
32 * File structure (introduction)::  
33 * File structure::              
34 * Including LilyPond files::    
35 * Text encoding::               
36 @end menu
37
38
39 @node File structure (introduction)
40 @subsection File structure (introduction)
41
42 A basic example of a lilypond input file is
43
44 @example
45 \version "2.8.0"
46 \score @{
47   @{ @}     % this is a single music expression;
48             % all the music goes in here.
49   \header @{ @}
50   \layout @{ @}
51   \midi @{ @}
52 @}
53 @end example
54
55 @noindent
56 There are many variations of this basic pattern, but this
57 example serves as a useful starting place.
58
59 The major part of this manual is concerned with entering various
60 forms of music in LilyPond.  However, many music expressions are not
61 valid input on their own, for example, a @code{.ly} file containing
62 only a note
63 @example
64 c'4
65 @end example
66
67 @noindent
68 will result in a parsing error.  Instead, music should be inside other
69 expressions, which may be put in a file by themselves.  Such
70 expressions are called toplevel expressions.  The next section enumerates
71 them all.
72
73
74 @node File structure
75 @subsection File structure
76
77 A @code{.ly} file contains any number of toplevel expressions, where a
78 toplevel expression is one of the following
79
80 @itemize @bullet
81 @item
82 An output definition, such as @code{\paper}, @code{\midi}, and
83 @code{\layout}.  Such a definition at the toplevel changes the default
84 settings for the block entered.
85
86 @item
87 A @code{\header} block.  This sets the global header block.  This
88 is the block containing the definitions for book-wide settings, like
89 composer, title, etc. 
90
91 @item
92 An @code{\addquote} statement.  See @ref{Quoting other voices}
93 for more information.
94
95 @item
96 A @code{\score} block.  This score will be collected with other
97 toplevel scores, and combined as a single @code{\book}.
98
99 This behavior can be changed by setting the variable
100 @code{toplevel-score-handler} at toplevel.  The default handler is
101 defined in the init file @file{scm/@/lily@/.scm}.
102
103 The @code{\score} must begin with music, and may contain only
104 one music block.
105
106 @item
107 A @code{\book} block logically combines multiple movements
108 (i.e., multiple @code{\score} blocks) in one document.  A number of
109 @code{\scores} creates a single output file, where all movement are
110 concatenated.
111
112 This behavior can be changed by setting the variable
113 @code{toplevel-book-handler} at toplevel.  The default handler is
114 defined in the init file @file{scm/@/lily@/.scm}.
115
116 @item
117 A compound music expression, such as
118 @example
119 @{ c'4 d' e'2 @}
120 @end example
121
122 This will add the piece in a @code{\score} and format it in a
123 single book together with all other toplevel @code{\score}s and music
124 expressions.  In other words, a file containing only the above
125 music expression will be translated into
126
127 @example
128 \book @{
129   \score @{
130     \new Staff @{
131       \new Voice @{
132         @{ c'4 d' e'2 @}
133       @}
134     @}
135   @}
136         \layout @{ @}
137         \header @{ @}
138 @}
139 @end example
140  
141 This behavior can be changed by setting the variable
142 @code{toplevel-music-handler} at toplevel.  The default handler is
143 defined in the init file @file{scm/@/lily@/.scm}.
144
145 @item
146 A markup text, a verse for example
147 @example
148 \markup @{
149    2.  The first line verse two.
150 @}
151 @end example
152
153 Markup texts are rendered above, between or below the scores or music
154 expressions, wherever they appear.
155
156 @item
157 An identifier, such as
158 @example
159 foo = @{ c4 d e d @}
160 @end example
161
162 This can be used later on in the file by entering @code{\foo}.  The
163 name of an identifier should have alphabetic characters only; no
164 numbers, underscores or dashes.
165
166 @end itemize
167
168 The following example shows three things that may be entered at
169 toplevel
170
171 @example
172 \layout @{
173   % movements are non-justified by default    
174   ragged-right = ##t
175 @}
176
177 \header @{
178    title = "Do-re-mi"
179 @}
180    
181 @{ c'4 d' e2 @}
182 @end example
183
184
185 At any point in a file, any of the following lexical instructions can
186 be entered:
187
188 @itemize @bullet
189 @item @code{\version}
190 @item @code{\include}
191 @item @code{\renameinput}
192 @end itemize 
193
194
195 @node Including LilyPond files
196 @subsection Including LilyPond files
197
198 @cindex @code{\include}
199 @cindex including files
200
201 A large project may be split up into separate files.  To refer to another
202 file, use
203
204 @example
205 \include "otherfile.ly"
206 @end example
207
208 The line @code{\include "file.ly"} is equivalent to pasting the contents
209 of file.ly into the current file at the place where you have the
210 \include.  For example, for a large project you might write separate files
211 for each instrument part and create a ``full score'' file which brings
212 together the individual instrument files.
213
214 The initialization of LilyPond is done in a number of files that are
215 included by default when you start the program, normally transparent to the
216 user.  Run lilypond --verbose to see a list of paths and files that Lily
217 finds.
218
219 Files placed in directory @file{PATH/TO/share/lilypond/VERSION/ly/} (where
220 VERSION is in the form ``2.6.1'') are on the path and available to
221 @code{\include}.  Files in the
222 current working directory are available to \include, but a file of the same
223 name in LilyPond's installation takes precedence.  Files are
224 available to \include from directories in the search path specified as an
225 option when invoking @code{lilypond --include=DIR} which adds DIR to the search
226 path.
227
228 The @code{\include} statement can use full path information, but with the Unix
229 convention @code{"/"} rather than the DOS/Windows @code{"\"}.  For example,
230 if @file{stuff.ly} is located one directory higher than the current working
231 directory, use
232
233 @example
234 \include "../stuff.ly"
235 @end example
236
237
238 @node Text encoding
239 @subsection Text encoding
240
241 LilyPond uses the Pango library to format multi-lingual texts, and
242 does not perform any input-encoding conversions.  This means that any
243 text, be it title, lyric text, or musical instruction containing
244 non-ASCII characters, must be utf-8.  The easiest way to enter such text is
245 by using a Unicode-aware editor and saving the file with utf-8 encoding.  Most
246 popular modern editors have utf-8 support, for example, vim, Emacs,
247 jEdit, and GEdit do.
248
249 Depending on the fonts installed, the following fragment shows Hebrew
250 and Cyrillic lyrics,
251
252 @cindex Cyrillic
253 @cindex Hebrew
254 @cindex ASCII, non
255
256 @lilypondfile[fontload]{utf-8.ly}
257
258 The @TeX{} backend does not handle encoding specially at all.  Strings
259 in the input are put in the output as-is.  Extents of text items in the
260 @TeX{} backend, are determined by reading a file created via the
261 @file{texstr} backend,
262
263 @example
264 lilypond -b texstr input/les-nereides.ly
265 latex les-nereides.texstr
266 @end example
267
268 The last command produces @file{les-nereides.textmetrics}, which is
269 read when you execute
270
271 @example
272 lilypond -b tex input/les-nereides.ly
273 @end example
274
275 Both @file{les-nereides.texstr} and @file{les-nereides.tex} need
276 suitable LaTeX wrappers to load appropriate La@TeX{} packages for
277 interpreting non-ASCII strings.
278
279 To use a Unicode escape sequence, use
280
281 @example
282 #(ly:export (ly:wide-char->utf-8 #x2014))
283 @end example
284
285
286 @seealso
287
288 @inputfileref{input/regression,utf-8.ly}
289
290
291
292 @c  FIXME: --must-- delete/modify this before 2.8.0!!!  -gp
293 @node Music expressions again
294 @section Music expressions again
295
296 Should we include anything about this here?
297
298
299 @node Titles and headers
300 @section Titles and headers
301
302 Almost all printed music includes a title and the composer's name;
303 some pieces include a lot more information.
304
305 @menu
306 * Creating titles::             
307 * Custom titles::               
308 @end menu
309
310
311 @node Creating titles
312 @subsection Creating titles
313
314 Titles are created for each @code{\score} block, and over a
315 @code{\book}.
316
317 The contents of the titles are taken from the @code{\header} blocks.
318 The header block for a book supports the following
319 @table @code
320 @item dedication
321 The dedicatee of the music, centered at the top of the first page.
322
323 @item title
324 The title of the music, centered just below the dedication.
325
326 @item subtitle
327 Subtitle, centered below the title.
328
329 @item subsubtitle
330 Subsubtitle, centered below the subtitle.
331
332 @item poet
333 Name of the poet, flush-left below the subtitle.
334
335 @item composer
336 Name of the composer, flush-right below the subtitle.
337
338 @item meter
339 Meter string, flush-left below the poet.
340
341 @item opus
342 Name of the opus, flush-right below the composer.
343
344 @item arranger
345 Name of the arranger, flush-right below the opus.
346
347 @item instrument
348 Name of the instrument, centered below the arranger.  Also
349 centered at the top of pages (other than the first page).
350
351 @item piece
352 Name of the piece, flush-left below the instrument.
353
354 @cindex page breaks, forcing
355 @item breakbefore
356 This forces the title to start on a new page (set to ##t or ##f).
357
358 @item copyright
359 Copyright notice, centered at the bottom of the first page.  To
360 insert the copyright symbol, see @ref{Text encoding}.
361
362 @item tagline
363 Centered at the bottom of the last page.
364
365 @end table
366
367 Here is a demonstration of the fields available.  Note that you
368 may use any @ref{Text markup} commands in the header.
369
370 @lilypond[quote,verbatim,line-width=11.0\cm]
371 \paper {
372   line-width = 9.0\cm
373   paper-height = 10.0\cm
374 }
375
376 \book {
377   \header {
378     dedication = "dedicated to me"
379     title = \markup \center-align { "Title first line" "Title second line, longer" }
380     subtitle = "the subtitle,"
381     subsubtitle = #(string-append "subsubtitle LilyPond version " (lilypond-version))
382     poet = "Poet"
383     composer =  \markup \center-align { "composer" \small "(1847-1973)" }
384     texttranslator = "Text Translator"
385     meter = \markup { \teeny "m" \tiny "e" \normalsize "t" \large "e" \huge "r" }
386     arranger = \markup { \fontsize #8.5 "a" \fontsize #2.5 "r" \fontsize #-2.5 "r" \fontsize #-5.3 "a" \fontsize #7.5 "nger" }
387     instrument = \markup \bold \italic "instrument"
388     piece = "Piece"
389   }
390
391   \score {
392     { c'1 }
393     \header {
394       piece = "piece1"
395       opus = "opus1" 
396     }
397   }
398   \markup {
399       and now...
400   }
401   \score {
402     { c'1 }
403     \header {
404       piece = "piece2"
405       opus = "opus2" 
406     }
407   }
408 }
409 @end lilypond
410
411 As demonstrated before, you can use multiple @code{\header} blocks. 
412 When same fields appear in different blocks, the latter is used.  
413 Here is a short example.
414
415 @example 
416 \header @{
417   composer = "Composer"
418 @}
419 \header @{
420   title = "Title"
421 @}
422 \score @{
423   \new Staff @{ c'4 @}
424   \header @{
425     title = "New title"  % overwrite previous one
426   @}
427 @}
428 @end example
429
430 If you define the @code{\header} inside the @code{\score} block, then
431 normally only the @code{piece} and @code{opus} headers will be printed.
432 Note that the music expression must come before the @code{\header}.
433
434 @lilypond[quote,verbatim,line-width=11.0\cm]
435 \score {
436   { c'4 }
437   \header {
438     title = "title"  % not printed
439     piece = "piece"
440     opus = "opus"
441   }
442 }
443 @end lilypond
444
445 @cindex @code{printallheaders}
446 @noindent
447 You may change this behavior (and print all the headers when defining
448 @code{\header} inside @code{\score}) by using
449
450 @example
451 \paper@{
452   printallheaders=##t
453 @}
454 @end example
455
456
457 @node Custom titles
458 @subsection Custom titles
459
460 A more advanced option is to change the definitions of the following
461 variables in the @code{\paper} block.  The init file
462 @file{ly/titling-init.ly} lists the default layout.
463
464 @table @code
465 @cindex @code{bookTitleMarkup}
466 @item bookTitleMarkup
467   This is the title put over an entire @code{\book} block.  Typically,
468   it has the composer and the title of the piece
469   
470 @cindex @code{scoreTitleMarkup}
471 @item scoreTitleMarkup
472   This is the title put over a @code{\score} block within a
473 @code{\book}.  Typically, it has the name of the movement (@code{piece}
474 field).
475
476 @cindex @code{oddHeaderMarkup}
477 @item oddHeaderMarkup
478   This is the page header for odd-numbered pages. 
479
480 @cindex @code{evenHeaderMarkup}
481 @item evenHeaderMarkup
482   This is the page header for even-numbered pages.  If unspecified,
483   the odd header is used instead.
484
485   By default, headers are defined such that the page number is on the
486   outside edge, and the instrument is centered.
487
488 @cindex @code{oddFooterMarkup}
489 @item oddFooterMarkup
490   This is the page footer for odd-numbered pages. 
491   
492 @cindex @code{evenFotterMarkup}
493 @item evenFooterMarkup
494   This is the page footer for even-numbered pages.  If unspecified,
495   the odd header is used instead.
496
497   By default, the footer has the copyright notice on the first, and
498   the tagline on the last page.
499 @end table
500
501
502 @cindex \paper
503 @cindex header
504 @cindex footer
505 @cindex page layout
506 @cindex titles
507
508 The following definition will put the title flush left, and the
509 composer flush right on a single line.
510
511 @verbatim
512 \paper {
513   bookTitleMarkup = \markup {
514    \fill-line {
515      \fromproperty #'header:title
516      \fromproperty #'header:composer
517    }
518   }
519 }
520 @end verbatim
521
522
523 @refbugs
524
525 The @code{breakbefore=##t} header requires that there is a @code{piece} header as well.  It may be used as a normal header, or left  blank (@code{=""}) as in the example above, but it must be present.
526
527
528
529 @node Paper and pages
530 @section Paper and pages
531
532 This section deals with the display of music on physical paper.
533
534 @menu
535 * Paper size::                  
536 * Page formatting::             
537 @end menu
538
539
540 @node Paper size
541 @subsection Paper size
542
543 @cindex paper size
544 @cindex page size
545 @cindex @code{papersize}
546
547 To change the paper size, there are two commands,
548 @example
549 #(set-default-paper-size "a4")
550 \paper @{
551   #(set-paper-size "a4")
552 @}
553 @end example
554
555 The first command sets the size of all pages.  The second command sets the size
556 of the pages that the @code{\paper} block applies to -- if the @code{\paper}
557 block is at the top of the file, then it will apply to all pages.  If the
558 @code{\paper} block is inside a @code{\book}, then the paper size will only
559 apply to that book.
560
561 Support for the following paper sizes are included by default,
562 @code{a6}, @code{a5}, @code{a4}, @code{a3}, @code{legal}, @code{letter},
563 @code{11x17} (also known as tabloid).
564
565 Extra sizes may be added by editing the definition for
566 @code{paper-alist} in the initialization file @file{scm/paper.scm}.
567
568 @cindex orientation
569 @cindex landscape
570
571 If the symbol @code{landscape} is supplied as an argument to
572 @code{set-default-paper-size}, the pages will be rotated by 90 degrees,
573 and wider line widths will be set correspondingly.
574
575 @example
576 #(set-default-paper-size "a6" 'landscape)
577 @end example 
578
579
580 @node Page formatting
581 @subsection Page formatting
582
583 @cindex page formatting
584 @cindex margins
585 @cindex header, page
586 @cindex footer, page
587
588 LilyPond will do page layout, set margins, and add headers and
589 footers to each page.
590
591 The default layout responds to the following settings in the
592 @code{\paper} block.
593
594 @cindex @code{\paper}
595
596 @quotation
597 @table @code
598 @cindex @code{first-page-number}
599 @item first-page-number
600 The value of the page number of the first page.  Default is@tie{}1.
601
602 @cindex @code{printfirst-page-number}
603 @item printfirst-page-number
604 If set to true, will print the page number in the first page.  Default is
605 false.
606
607 @cindex @code{print-page-number}
608 @item print-page-number
609 If set to false, page numbers will not be printed.
610
611 @cindex @code{paper-width}
612 @item paper-width
613 The width of the page.
614
615 @cindex @code{paper-height}
616 @item paper-height
617 The height of the page.
618
619 @cindex @code{top-margin}
620 @item top-margin
621 Margin between header and top of the page.
622
623 @cindex @code{bottom-margin}
624 @item bottom-margin
625 Margin between footer and bottom of the page.
626
627 @cindex @code{left-margin}
628 @item left-margin
629 Margin between the left side of the page and the beginning of the music.
630
631 @cindex @code{line-width}
632 @item line-width
633 The length of the systems.
634
635 @cindex @code{head-separation}
636 @item head-separation
637 Distance between the top-most music system and the page header.
638
639 @cindex @code{foot-separation}
640 @item foot-separation
641 Distance between the bottom-most music system and the page footer.
642
643 @cindex @code{page-top-space}
644 Distance from the top of the printable area to the center of the first
645 staff. This only works for staves which are vertically small. Big staves
646 are set with the top of their bounding box aligned to the top of the
647 printable area.
648
649 @cindex @code{ragged-bottom}
650 @item ragged-bottom
651 If set to true, systems will not be spread across the page.
652
653 This should be set false for pieces that have only two or three
654 systems per page, for example orchestral scores.
655  
656 @cindex @code{ragged-last-bottom}
657 @item ragged-last-bottom
658 If set to false, systems will be spread to fill the last page.
659
660 Pieces that amply fill two pages or more should have this set to
661 true.
662
663 @cindex @code{between-system-space}
664 @item between-system-space
665 This dimensions determines the distance between systems.  It is the
666 ideal distance between the center of the bottom staff of one system
667 and the center of the top staff of the next system.
668
669 Increasing this will provide a more even appearance of the page at the
670 cost of using more vertical space.
671
672 @cindex @code{between-system-padding}
673 @item between-system-padding
674 This dimension is the minimum amount of white space that will always
675 be present between the bottom-most symbol of one system, and the
676 top-most of the next system.
677
678 Increasing this will put systems whose bounding boxes almost touch
679 farther apart.
680
681
682 @cindex @code{horizontal-shift}
683 @item horizontal-shift
684 All systems (including titles and system separators) are shifted by
685 this amount to the right. Page markup, such as headers and footers are
686 not affected by this. The purpose of this variable is to make space
687 for instrument names at the left.
688
689 @cindex @code{after-title-space}
690 @item after-title-space
691 Amount of space between the title and the first system.
692
693 @cindex @code{after-title-space}
694 @item before-title-space 
695 Amount of space between the last system of the previous piece and the
696 title of the next.
697
698 @cindex @code{between-title-space}
699 @item between-title-space
700 Amount of space between consecutive titles (e.g., the title of the
701 book and the title of a piece).
702
703 @cindex @code{printallheaders}
704 @item printallheaders
705 Setting this to #t will print all headers for each \score in a
706 \book.  Normally only the piece and opus \headers are printed.
707
708 @cindex @code{systemSeparatorMarkup}
709 @item systemSeparatorMarkup
710 This contains a markup object, which will be inserted between
711 systems.  This is often used for orchestral scores.
712
713 The markup command @code{\slashSeparator} is provided as a sensible
714 default,  for example
715
716 @lilypond[ragged-right]
717 \paper {
718   systemSeparatorMarkup = \slashSeparator
719 }
720
721 \relative { c1 \break c1 }
722 @end lilypond
723
724
725 @end table
726 @end quotation
727
728 Example:
729
730 @example
731 \paper@{
732   paper-width = 2\cm
733   top-margin = 3\cm
734   bottom-margin = 3\cm
735   ragged-last-bottom = ##t
736 @}
737 @end example
738
739 You can also define these values in Scheme.  In that case @code{mm},
740 @code{in}, @code{pt}, and @code{cm} are variables defined in
741 @file{paper-defaults.ly} with values in millimeters.  That's why the
742 value has to be multiplied in the example
743
744 @example
745 \paper @{
746   #(define bottom-margin (* 2 cm)) 
747 @}
748 @end example
749
750 @cindex copyright
751 @cindex tagline
752
753 The default footer is empty, except for the first page, where the
754 @code{copyright} field from @code{\header} is inserted, and the last
755 page, where @code{tagline} from @code{\header} is added.  The default
756 tagline is ``Music engraving by LilyPond (@var{version})''.@footnote{Nicely
757 printed parts are good PR for us, so please leave the tagline if you
758 can.}
759
760 The header and footer are created by the functions @code{make-footer}
761 and @code{make-header}, defined in @code{\paper}.  The default
762 implementations are in @file{scm/@/page@/-layout@/.scm}.
763
764 The page layout itself is done by two functions in the
765 @code{\paper} block, @code{page-music-height} and
766 @code{page-make-stencil}.  The former tells the line-breaking algorithm
767 how much space can be spent on a page, the latter creates the actual
768 page given the system to put on it.
769
770
771 @refbugs
772
773 The option right-margin is defined but doesn't set the right margin
774 yet.  The value for the right margin has to be defined adjusting the
775 values of @code{left-margin} and @code{line-width}.
776
777 The default page header puts the page number and the @code{instrument}
778 field from the @code{\header} block on a line.
779
780
781
782 @node Music layout
783 @section Music layout
784
785 This section deals with the manner in which the music is printed
786 within the boundaries defined by the @code{\paper} block.
787
788 The global paper layout is determined by three factors: the page layout, the
789 line breaks, and the spacing.  These all influence each other.  The
790 choice of spacing determines how densely each system of music is set.
791 This influences where line breaks are chosen, and thus ultimately, how
792 many pages a piece of music takes.
793
794 Globally spoken, this procedure happens in three steps: first,
795 flexible distances (``springs'') are chosen, based on durations.  All
796 possible line breaking combinations are tried, and the one with the
797 best results -- a layout that has uniform density and requires as
798 little stretching or cramping as possible -- is chosen.
799
800 After spacing and linebreaking, the systems are distributed across
801 pages, taking into account the size of the page, and the size of the
802 titles.
803
804 @menu
805 * Setting global staff size::   
806 * Selecting notation font size::  
807 * Score layout::                
808 * Vertical spacing::            
809 * Vertical spacing of piano staves::  
810 * Horizontal spacing::          
811 * Line length::                 
812 * Line breaking::               
813 * Page breaking::               
814 @end menu
815
816
817 @node Setting global staff size
818 @subsection Setting global staff size
819
820 @cindex font size, setting
821 @cindex staff size, setting
822 @cindex @code{layout} file
823
824 To set the global staff size, use @code{set-global-staff-size}.
825
826 @example
827 #(set-global-staff-size 14)
828 @end example
829
830 @noindent
831 This sets the global default size to 14pt staff height and scales all
832 fonts accordingly.
833
834 The Feta font provides musical symbols at eight different
835 sizes.  Each font is tuned for a different staff size: at a smaller size
836 the font becomes heavier, to match the relatively heavier staff lines.
837 The recommended font sizes are listed in the following table:
838
839 @quotation
840 @multitable @columnfractions .15 .2 .22 .2
841
842 @item @b{font name}
843 @tab @b{staff height (pt)}
844 @tab @b{staff height (mm)}
845 @tab @b{use}
846
847 @item feta11
848 @tab 11.22
849 @tab 3.9 
850 @tab pocket scores
851
852 @item feta13
853 @tab 12.60
854 @tab 4.4
855 @tab
856  
857 @item feta14
858 @tab 14.14
859 @tab 5.0
860 @tab 
861
862 @item feta16
863 @tab 15.87
864 @tab 5.6
865 @tab 
866
867 @item feta18
868 @tab 17.82
869 @tab 6.3
870 @tab song books
871
872 @item feta20
873 @tab 20
874 @tab 7.0
875 @tab standard parts 
876
877 @item feta23
878 @tab 22.45 
879 @tab 7.9
880 @tab 
881
882 @item feta26
883 @tab 25.2 
884 @tab 8.9
885 @tab
886 @c modern rental material?
887
888 @end multitable
889 @end quotation
890
891 These fonts are available in any sizes.  The context property
892 @code{fontSize} and the layout property @code{staff-space} (in
893 @internalsref{StaffSymbol}) can be used to tune the size for individual
894 staves.  The sizes of individual staves are relative to the global size.
895
896 @example
897
898 @end example
899
900 @seealso
901
902 This manual: @ref{Selecting notation font size}.
903
904
905 @node Selecting notation font size
906 @subsection Selecting notation font size
907
908 The easiest method of setting the font size of any context, is by
909 setting the @code{fontSize} property.
910
911 @lilypond[quote,fragment,relative=1,verbatim]
912 c8
913 \set fontSize = #-4
914 c f
915 \set fontSize = #3
916 g
917 @end lilypond
918
919 @noindent
920 It does not change the size of variable symbols, such as beams or
921 slurs.
922
923 Internally, the @code{fontSize} context property will cause the
924 @code{font-size} property to be set in all layout objects.  The value
925 of @code{font-size} is a number indicating the size relative to the
926 standard size for the current staff height.  Each step up is an
927 increase of approximately 12% of the font size.  Six steps is exactly a
928 factor two.  The Scheme function @code{magstep} converts a
929 @code{font-size} number to a scaling factor.
930
931 @lilypond[quote,fragment,relative=1,verbatim]
932 c8
933 \override NoteHead #'font-size = #-4
934 c f
935 \override NoteHead #'font-size = #3
936 g
937 @end lilypond
938
939 LilyPond has fonts in different design sizes.  The music fonts for
940 smaller sizes are chubbier, while the text fonts are relatively wider.
941 Font size changes are achieved by scaling the design size that is
942 closest to the desired size.  The standard font size (for
943 @code{font-size} equals 0), depends on the standard staff height.  For
944 a 20pt staff, a 10pt font is selected.
945
946 The @code{font-size} property can only be set on layout objects that
947 use fonts. These are the ones supporting the
948 @internalsref{font-interface} layout interface.
949
950 @refcommands
951
952 The following commands set @code{fontSize} for the current voice:
953
954 @cindex @code{\tiny}
955 @code{\tiny}, 
956 @cindex @code{\small}
957 @code{\small}, 
958 @cindex @code{\normalsize}
959 @code{\normalsize}.
960
961
962 @node Score layout
963 @subsection Score layout
964
965 @cindex @code{\layout}
966
967 While @code{\paper} contains settings that relate to the page formatting
968 of the whole document, @code{\layout} contains settings for score-specific
969 layout.
970
971 @example
972 \layout @{
973   indent = 2.0\cm
974   \context @{ \Staff
975     \override VerticalAxisGroup #'minimum-Y-extent = #'(-6 . 6)
976   @}
977   \context @{ \Voice
978     \override TextScript #'padding = #1.0
979     \override Glissando #'thickness = #3
980   @}
981 @}
982 @end example
983
984
985 @seealso
986
987 This manual: @ref{Changing context default settings}
988
989
990 @node Vertical spacing
991 @subsection Vertical spacing
992
993 @cindex vertical spacing
994 @cindex distance between staves
995 @cindex staff distance
996 @cindex between staves, distance
997 @cindex staves per page
998 @cindex space between staves
999
1000 The height of each system is determined automatically.  To prevent
1001 systems from bumping into each other, some minimum distances are set.
1002 By changing these, you can put staves closer together, and thus put
1003 more systems onto one page.
1004
1005 Normally staves are stacked vertically.  To make staves maintain a
1006 distance, their vertical size is padded.  This is done with the
1007 property @code{minimum-Y-extent}.  It takes a pair of numbers, so
1008 if you want to make it smaller than its default @code{#'(-4 . 4)},
1009 then you could set. When applied to a
1010 @internalsref{VerticalAxisGroup}, it controls the size of a horizontal
1011 line, such as a staff or a line of lyrics.  
1012
1013 @example
1014 \override Staff.VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
1015 @end example
1016
1017 @noindent
1018 This sets the vertical size of the current staff to 3 staff spaces on
1019 either side of the center staff line.  The value @code{(-3 . 3)} is
1020 interpreted as an interval, where the center line is the 0, so the
1021 first number is generally negative.  The staff can be made larger at
1022 the bottom by setting it to @code{(-6 . 4)}.
1023
1024 The spacing of staves in a system may also be tuned per system.  This is
1025 done with the command
1026
1027 @example
1028 \overrideProperty
1029 #"Score.NonMusicalPaperColumn"
1030 #'line-break-system-details
1031 #'((alignment-extra-space . 15))
1032 @end example
1033
1034 @noindent
1035 at the line break before the system to be changed. The distance
1036 @code{15} is distributed over all staves that have a fixed distance
1037 alignment.  For example,
1038
1039 @lilypond[ragged-right, fragment, relative=2, staffsize=13]
1040 \new StaffGroup <<
1041   \new Staff { 
1042     c1\break 
1043         
1044     \overrideProperty
1045     #"Score.NonMusicalPaperColumn"
1046     #'line-break-system-details
1047     #'((fixed-alignment-extra-space . 15))
1048
1049     c\break 
1050   }
1051   \new Staff { c c }
1052 >>
1053 @end lilypond
1054
1055 The distance for @code{alignment-extra-space} may also be negative.
1056
1057
1058 To change the amount of space between systems, use
1059 @code{between-system-space}.  A score with only one staff is still
1060 considered to have systems, so setting @code{between-system-space} will
1061 be much more useful than changing @code{minimum-Y-extent} of a Staff
1062 context.
1063
1064 @example
1065 \paper @{
1066   between-system-space = 10\mm
1067 @}
1068 @end example
1069
1070 If you simply want to tell LilyPond ``fit as much as possible onto
1071 these pages, then expand to fill any available space on the pages,''
1072 then use the following
1073
1074 @example
1075 \paper @{
1076   between-system-padding = #1
1077   ragged-bottom=##f
1078   ragged-last-bottom=##f
1079 @}
1080 @end example
1081
1082
1083 @c let's wait for a some comments before writing more.
1084
1085 The vertical spacing on a page can also be changed for each system individually.
1086 Some examples are found in the example file
1087 @inputfileref{input/regression/,page-spacing.ly}.
1088
1089 When setting @code{annotatespacing} in the @code{\paper} block LilyPond
1090 will graphically indicate the dimensions of properties that may be set
1091 for page spacing,
1092
1093 @lilypond[verbatim]
1094 #(set-default-paper-size "a7" 'landscape)
1095 \paper { annotatespacing = ##t }
1096 { c4 }
1097 @end lilypond
1098
1099 @noindent
1100 All units dimensions are measured in staff spaces. The pairs
1101 (@var{a},@var{b}) are intervals, where @var{a} is the lower edge and
1102 @var{b} the upper edge of the interval.
1103
1104 @seealso
1105
1106 Internals: Vertical alignment of staves is handled by the
1107 @internalsref{VerticalAlignment} object. The context parameters
1108 specifying  the vertical extent are described in connection with 
1109 the @internalsref{Axis_group_engraver}.
1110
1111 Example files: @inputfileref{input/regression/,page-spacing.ly},
1112 @inputfileref{input/regression/,alignment-vertical-spacing.ly}.
1113
1114
1115
1116
1117 @node Vertical spacing of piano staves
1118 @subsection Vertical spacing of piano staves
1119
1120 The distance between staves of a @internalsref{PianoStaff} cannot be
1121 computed during formatting.  Rather, to make cross-staff beaming work
1122 correctly, that distance has to be fixed beforehand.
1123  
1124 The distance of staves in a @code{PianoStaff} is set with the
1125 @code{forced-distance} property of the
1126 @internalsref{VerticalAlignment} object, created in
1127 @internalsref{PianoStaff}.
1128
1129 It can be adjusted as follows
1130 @example
1131 \new PianoStaff \with @{
1132   \override VerticalAlignment #'forced-distance = #7
1133 @} @{
1134   ...
1135 @}
1136 @end example
1137
1138 @noindent
1139 This would bring the staves together at a distance of 7 staff spaces,
1140 measured from the center line of each staff.
1141
1142 The difference is demonstrated in the following example,
1143 @lilypond[quote,verbatim]
1144 \relative c'' <<
1145   \new PianoStaff \with {
1146     \override VerticalAlignment #'forced-distance = #7
1147   } <<
1148     \new Staff { c1 }
1149     \new Staff { c }
1150   >>
1151   \new PianoStaff <<
1152     \new Staff { c }
1153     \new Staff { c }
1154   >>
1155 >>    
1156 @end lilypond
1157
1158
1159 It is also possible to change the distance between for each system
1160 individually.  This is done by including the command 
1161
1162 @example
1163 \overrideProperty
1164 #"Score.NonMusicalPaperColumn"
1165 #'line-break-system-details
1166 #'((fixed-alignment-extra-space . 15))
1167 @end example
1168
1169 @noindent
1170 at the line break before the system to be changed. The distance
1171 @code{15} is distributed over all staves that have a fixed distance
1172 alignment.  For example,
1173
1174 @lilypond[ragged-right, fragment, relative=2, staffsize=13]
1175 \new PianoStaff <<
1176   \new Staff { 
1177     c1\break 
1178         
1179     \overrideProperty
1180     #"Score.NonMusicalPaperColumn"
1181     #'line-break-system-details
1182     #'((fixed-alignment-extra-space . 15))
1183
1184     c\break 
1185   }
1186   \new Staff { c c }
1187 >>
1188 @end lilypond
1189
1190 The distance for @code{fixed-alignment-extra-space} may also be
1191 negative.
1192
1193 @seealso
1194
1195 Example files: @inputfileref{input/regression/,alignment-vertical-spacing.ly}.
1196
1197 @node Horizontal spacing
1198 @subsection Horizontal Spacing
1199
1200 The spacing engine translates differences in durations into stretchable
1201 distances (``springs'') of differring lengths.  Longer durations get
1202 more space, shorter durations get less.  The shortest durations get a
1203 fixed amount of space (which is controlled by
1204 @code{shortest-duration-space} in the @internalsref{SpacingSpanner}
1205 object).  The longer the duration, the more space it gets: doubling a
1206 duration adds a fixed amount (this amount is controlled by
1207 @code{spacing-increment}) of space to the note.
1208
1209 For example, the following piece contains lots of half, quarter, and
1210 8th notes; the eighth note is followed by 1 note head width (NHW). 
1211 The quarter note is followed by 2 NHW, the half by 3 NHW, etc.
1212
1213 @lilypond[quote,fragment,verbatim,relative=1]
1214 c2 c4. c8 c4. c8 c4. c8 c8
1215 c8 c4 c4 c4
1216 @end lilypond
1217
1218 Normally, @code{spacing-increment} is set to 1.2 staff space, which is
1219 approximately the width of a note head, and
1220 @code{shortest-duration-space} is set to 2.0, meaning that the
1221 shortest note gets 2.4 staff space (2.0 times the
1222 @code{spacing-increment}) of horizontal space.  This space is counted
1223 from the left edge of the symbol, so the shortest notes are generally
1224 followed by one NHW of space.
1225
1226 If one would follow the above procedure exactly, then adding a single
1227 32nd note to a score that uses 8th and 16th notes, would widen up the
1228 entire score a lot.  The shortest note is no longer a 16th, but a 32nd,
1229 thus adding 1 NHW to every note.  To prevent this, the shortest
1230 duration for spacing is not the shortest note in the score, but rather
1231 the one which occurs most frequently.
1232
1233
1234 The most common shortest duration is determined as follows: in every
1235 measure, the shortest duration is determined.  The most common shortest
1236 duration is taken as the basis for the spacing, with the stipulation
1237 that this shortest duration should always be equal to or shorter than
1238 an 8th note.  The shortest duration is printed when you run
1239 @code{lilypond} with the @code{--verbose} option.
1240
1241 These durations may also be customized.  If you set the
1242 @code{common-shortest-duration} in @internalsref{SpacingSpanner}, then
1243 this sets the base duration for spacing.  The maximum duration for this
1244 base (normally an 8th), is set through @code{base-shortest-duration}.
1245
1246 @cindex @code{common-shortest-duration}
1247 @cindex @code{base-shortest-duration}
1248 @cindex @code{stem-spacing-correction}
1249 @cindex @code{spacing}
1250
1251 Notes that are even shorter than the common shortest note are
1252 followed by a space that is proportional to their duration relative to
1253 the common shortest note.  So if we were to add only a few 16th notes
1254 to the example above, they would be followed by half a NHW:
1255
1256 @lilypond[quote,fragment,verbatim,relative=2]
1257 c2 c4. c8 c4. c16[ c] c4. c8 c8 c8 c4 c4 c4
1258 @end lilypond
1259
1260
1261 In the introduction (see @ref{Engraving}), it was explained that stem
1262 directions influence spacing.  This is controlled with the
1263 @code{stem-spacing-correction} property in the
1264 @internalsref{NoteSpacing}, object.  These are generated for every
1265 @internalsref{Voice} context.  The @code{StaffSpacing} object
1266 (generated in @internalsref{Staff} context) contains the same property
1267 for controlling the stem/bar line spacing.  The following example shows
1268 these corrections, once with default settings, and once with
1269 exaggerated corrections:
1270
1271 @lilypond[quote,ragged-right]
1272 {
1273   c'4 e''4 e'4 b'4 |
1274   b'4 e''4 b'4 e''4|
1275   \override Staff.NoteSpacing #'stem-spacing-correction = #1.5
1276   \override Staff.StaffSpacing #'stem-spacing-correction = #1.5
1277   c'4 e''4 e'4 b'4 |
1278   b'4 e''4 b'4 e''4|      
1279 }
1280 @end lilypond
1281
1282 Proportional notation is supported; see @ref{Proportional notation}.
1283
1284 By default, spacing in tuplets depends on various non-duration
1285 factors (such as accidentals, clef changes, etc).  To disregard
1286 such symbols and force uniform equal-duration spacing, use
1287 @code{Score.SpacingSpanner #'uniform-stretching}.  This
1288 property can only be changed at the beginning of a score,
1289
1290 @lilypond[quote,ragged-right,relative=2,fragment]
1291 \new Score \with {
1292   \override SpacingSpanner #'uniform-stretching = ##t
1293 } <<
1294   \new Staff{
1295     \times 4/5 {
1296       c'8 c'8 c'8 c'8 c'8
1297     }
1298     c'8 c'8 c'8 c'8
1299   }
1300   \new Staff{
1301     c'8 c'8 c'8 c'8
1302     \times 4/5 {
1303       c'8 c'8 c'8 c'8 c'8
1304     }
1305   }
1306 >>
1307 @end lilypond
1308
1309
1310 When @code{strict-note-spacing} is set, notes are spaced without
1311 regard for clefs, bar lines, and grace notes,
1312
1313 @lilypond[quote,ragged-right,relative=2,fragment]
1314 \override Score.SpacingSpanner #'strict-note-spacing = ##t 
1315 \new Staff { c8[ c \clef alto c \grace { c16[ c] } c8 c c]  c32[ c32] }
1316 @end lilypond
1317
1318
1319 @seealso
1320
1321 Internals: @internalsref{SpacingSpanner}, @internalsref{NoteSpacing},
1322 @internalsref{StaffSpacing}, @internalsref{SeparationItem}, and
1323 @internalsref{SeparatingGroupSpanner}.
1324
1325 @refbugs
1326
1327 Spacing is determined on a score wide basis.  If you have a score that
1328 changes its character (measured in durations) halfway during the
1329 score, the part containing the longer durations will be spaced too
1330 widely.
1331
1332 There is no convenient mechanism to manually override spacing.  The
1333 following work-around may be used to insert extra space into a score.
1334 @example
1335  \once \override Score.SeparationItem #'padding = #1
1336 @end example
1337
1338 No work-around exists for decreasing the amount of space.
1339
1340
1341 @node Line length
1342 @subsection Line length
1343
1344 @cindex page breaks
1345 @cindex breaking pages
1346
1347 @cindex @code{indent}
1348 @cindex @code{line-width}
1349 @cindex @code{ragged-right}
1350
1351 @c Although line-width can be set in \layout, it should be set in paper
1352 @c block, to get page layout right.
1353 @c Setting indent in \paper block makes not much sense, but it works.
1354
1355 @c Bit verbose and vague, use examples?
1356 The most basic settings influencing the spacing are @code{indent} and
1357 @code{line-width}.  They are set in the @code{\layout} block.  They
1358 control the indentation of the first line of music, and the lengths of
1359 the lines.
1360
1361 If @code{ragged-right} is set to true in the @code{\layout} block, then
1362 the lines are justified at their natural length.  This is useful for
1363 short fragments, and for checking how tight the natural spacing is.
1364
1365 @cindex page layout
1366 @cindex vertical spacing
1367
1368 The option @code{raggedlast} is similar to @code{ragged-right}, but
1369 only affects the last line of the piece.  No restrictions are put on
1370 that line.  The result is similar to formatting text paragraphs.  In a
1371 paragraph, the last line simply takes its natural length.
1372 @c Note that for text there are several options for the last line.
1373 @c While Knuth TeX uses natural length, lead typesetters use the same
1374 @c stretch as the previous line.  eTeX uses \lastlinefit to
1375 @c interpolate between both these solutions.
1376
1377
1378 @node Line breaking
1379 @subsection Line breaking
1380
1381 @cindex line breaks
1382 @cindex breaking lines
1383
1384 Line breaks are normally computed automatically.  They are chosen so
1385 that lines look neither cramped nor loose, and that consecutive lines
1386 have similar density.
1387
1388 Occasionally you might want to override the automatic breaks; you can
1389 do this by specifying @code{\break}.  This will force a line break at
1390 this point.  Line breaks can only occur at places where there are bar
1391 lines.  If you want to have a line break where there is no bar line,
1392 you can force an invisible bar line by entering @code{\bar
1393 ""}.  Similarly, @code{\noBreak} forbids a line break at a 
1394 point.
1395
1396
1397 @cindex regular line breaks
1398 @cindex four bar music. 
1399
1400 For line breaks at regular intervals use @code{\break} separated by
1401 skips and repeated with @code{\repeat}:
1402 @example
1403 << \repeat unfold 7 @{
1404          s1 \noBreak s1 \noBreak
1405          s1 \noBreak s1 \break @}
1406    @emph{the real music}
1407 >> 
1408 @end example
1409
1410 @noindent
1411 This makes the following 28 measures (assuming 4/4 time) be broken every
1412 4 measures, and only there.
1413
1414 @refcommands
1415
1416 @code{\break}, and @code{\noBreak}.
1417 @cindex @code{\break}
1418 @cindex @code{\noBreak}
1419
1420 @seealso
1421
1422 Internals: @internalsref{BreakEvent}.
1423
1424 A linebreaking configuration can now be saved as a @code{.ly} file
1425 automatically.  This allows vertical alignments to be stretched to
1426 fit pages in a second formatting run.  This is fairly new and
1427 complicated; see @inputfileref{input/regression/,page-layout-twopass.ly}
1428 for details.
1429
1430
1431 @node Page breaking
1432 @subsection Page breaking
1433
1434 The default page breaking may be overriden by inserting
1435 @code{\pageBreak} or @code{\noPageBreak} commands.  These commands are
1436 analogous to @code{\break} and @code{\noBreak}.  They should be
1437 inserted at a bar line.  These commands force and forbid a page-break
1438 from happening.  Of course, the @code{\pageBreak} command also forces
1439 a line break.
1440
1441 Page breaks are computed by the @code{page-breaking} function in the
1442 @code{\paper} block. 
1443
1444 To force a new page for a new piece (in a collection of pieces or a
1445 piece in several movements), use @code{breakbefore} in the header.
1446
1447 @example
1448 \header@{
1449   breakbefore = ##t
1450   piece = ""
1451 @}
1452 @end example
1453
1454 @refcommands
1455
1456 @cindex @code{\pageBreak}
1457 @code{\pageBreak}
1458 @cindex @code{\noPageBreak} 
1459 @code{\noPageBreak} 
1460
1461
1462 @refbugs
1463
1464 The @code{breakbefore=##t} header requires that there is a @code{piece} header as well.  It may be used as a normal header, or left  blank (@code{=""}) as in the example above, but it must be present.
1465
1466
1467
1468 @node Multiple movements
1469 @section Multiple movements
1470
1471 @cindex bibliographic information
1472 @cindex titles
1473 @cindex composer
1474 @cindex Music engraving by LilyPond
1475
1476 A document may contain multiple pieces of music and texts.  Examples
1477 of these are an etude book, or an orchestral part with multiple
1478 movements.  Each movement is entered with a @code{\score} block,
1479
1480 @example
1481 \score @{
1482   @var{..music..}
1483 @}
1484 @end example
1485
1486 and texts are entered with a @code{\markup} block,
1487
1488 @example
1489 \markup @{
1490   @var{..text..}
1491 @}
1492 @end example
1493
1494 @cindex @code{\book}
1495
1496 The movements and texts are combined together in a @code{\book} block,
1497 like
1498
1499 @example
1500 \book @{
1501   \score @{
1502     @var{..}
1503   @}
1504   \markup @{
1505     @var{..}
1506   @}
1507   \score @{
1508     @var{..}
1509   @}
1510 @}
1511 @end example
1512
1513
1514 The header for each piece of music can be put inside the @code{\score}
1515 block.  The @code{piece} name from the header will be printed before
1516 each movement.  The title for the entire book can be put inside the
1517 @code{\book}, but if it is not present, the @code{\header} which is at
1518 the top of the file is inserted.
1519
1520 @cindex Engraved by LilyPond
1521 @cindex signature line
1522
1523 @example 
1524 \book @{
1525   \header @{
1526     title = "Eight miniatures" 
1527     composer = "Igor Stravinsky"
1528   @}
1529   \score @{
1530     @dots{}
1531     \header @{ piece = "Romanze" @}
1532   @}
1533   \markup @{
1534      ..text of second verse..
1535   @}
1536   \markup @{
1537      ..text of third verse..
1538   @}
1539   \score @{
1540     @dots{}
1541     \header @{ piece = "Menuetto" @}
1542   @}
1543 @}
1544 @end example
1545
1546
1547
1548 @node MIDI output
1549 @section MIDI output
1550
1551 @cindex Sound
1552 @cindex MIDI
1553
1554 MIDI (Musical Instrument Digital Interface) is a standard for
1555 connecting and controlling digital instruments.  A MIDI file is a
1556 series of notes in a number of tracks.  It is not an actual
1557 sound file; you need special software to translate between the
1558 series of notes and actual sounds.
1559
1560 Pieces of music can be converted to MIDI files, so you can listen to
1561 what was entered.  This is convenient for checking the music; octaves
1562 that are off or accidentals that were mistyped stand out very much
1563 when listening to the MIDI output.
1564
1565 @refbugs
1566
1567 Many musically interesting effects, such as swing, articulation,
1568 slurring, etc., are not translated to midi.
1569
1570 The midi output allocates a channel for each staff, and one for global
1571 settings.  Therefore the midi file should not have more than 15 staves
1572 (or 14 if you do not use drums).  Other staves will remain silent.
1573
1574 Not all midi players correctly handle tempo changes in the midi
1575 output.  Players that are known to work include
1576 @uref{http://@/timidity@/.sourceforge@/.net/,timidity}.
1577
1578 @menu
1579 * Creating MIDI files::         
1580 * MIDI block::                  
1581 * MIDI instrument names::       
1582 @end menu
1583
1584 @node Creating MIDI files
1585 @subsection Creating MIDI files 
1586
1587 To create a MIDI from a music piece of music, add a @code{\midi} block
1588 to a score, for example,
1589
1590 @example 
1591 \score @{
1592   @var{...music...}
1593   \midi @{ \tempo 4=72 @}
1594 @}
1595 @end example 
1596
1597 The tempo is specified using the @code{\tempo} command.  In this
1598 example the tempo of quarter notes is set to 72 beats per minute.
1599
1600
1601 If there is a @code{\midi} command in a @code{\score}, only MIDI will
1602 be produced.  When notation is needed too, a @code{\layout} block must
1603 be added
1604
1605 @example 
1606 \score @{
1607   @var{...music...}
1608   \midi @{ \tempo 4=72 @}
1609   \layout @{ @}
1610 @}
1611 @end example 
1612 @cindex layout block
1613
1614
1615
1616 Ties, dynamics, and tempo changes are interpreted.  Dynamic marks,
1617 crescendi and decrescendi translate into MIDI volume levels.  Dynamic
1618 marks translate to a fixed fraction of the available MIDI volume
1619 range, crescendi and decrescendi make the volume vary linearly between
1620 their two extremes.  The fractions can be adjusted by
1621 @code{dynamicAbsoluteVolumeFunction} in @internalsref{Voice} context.
1622 For each type of MIDI instrument, a volume range can be defined.  This
1623 gives a basic equalizer control, which can enhance the quality of
1624 the MIDI output remarkably.  The equalizer can be controlled by
1625 setting @code{instrumentEqualizer}.
1626
1627 To remove dynamics from the MIDI output, insert the following lines
1628 in the @code{\midi@{@}} section.
1629
1630 @example
1631 \midi @{
1632   ...
1633   \context @{
1634     \Voice
1635     \remove "Dynamic_performer"
1636     \remove "Span_dynamic_performer"
1637   @}
1638 @}
1639 @end example
1640
1641
1642 @refbugs
1643
1644 Unterminated (de)crescendos will not render properly in the midi file,
1645 resulting in silent passages of music.  The workaround is to explicitly
1646 terminate the (de)crescendo.  For example,
1647
1648 @example
1649 @{ a\< b c d\f @}
1650 @end example
1651
1652 @noindent
1653 will not work properly but
1654
1655 @example
1656 @{ a\< b c d\!\f @}
1657 @end example
1658
1659 @noindent
1660 will.
1661
1662
1663 @node MIDI block
1664 @subsection MIDI block
1665 @cindex MIDI block
1666
1667
1668 The MIDI block is analogous to the layout block, but it is somewhat
1669 simpler.  The @code{\midi} block can contain
1670 @cindex MIDI block
1671
1672 @itemize @bullet
1673   @item a @code{\tempo} definition, and
1674   @item context definitions.
1675 @end itemize
1676
1677 A number followed by a period is interpreted as a real number, so
1678 for setting the tempo for dotted notes, an extra space should be
1679 inserted, for example
1680
1681 @example
1682 \midi @{ \tempo 4 . = 120 @} 
1683 @end example
1684
1685
1686 @cindex context definition
1687
1688 Context definitions follow precisely the same syntax as within the
1689 \layout block.  Translation modules for sound are called performers.
1690 The contexts for MIDI output are defined in @file{ly/@/performer@/-init@/.ly}.
1691
1692
1693 @node MIDI instrument names
1694 @subsection MIDI instrument names
1695
1696 @cindex instrument names
1697 @cindex @code{Staff.midiInstrument}
1698
1699 The MIDI instrument name is set by the @code{Staff.midiInstrument}
1700 property.  The instrument name should be chosen from the list in
1701 @ref{MIDI instruments}.
1702
1703 @example
1704 \set Staff.midiInstrument = "glockenspiel"
1705 @var{...notes...}
1706 @end example
1707
1708 If the selected instrument does not exactly match an instrument from
1709 the list of MIDI instruments, the Grand Piano (@code{"acoustic grand"})
1710 instrument is used.
1711