]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/input.itely
Doc: NR - Input.itely instructions for Gonville
[lilypond.git] / Documentation / notation / input.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 @node General input and output
14 @chapter General input and output
15
16 This section deals with general LilyPond input and output issues,
17 rather than specific notation.
18
19 @menu
20 * Input structure::
21 * Titles and headers::
22 * Working with input files::
23 * Controlling output::
24 * MIDI output::
25 @end menu
26
27
28 @node Input structure
29 @section Input structure
30
31 The main format of input for LilyPond are text files.  By convention,
32 these files end with @code{.ly}.
33
34 @menu
35 * Structure of a score::
36 * Multiple scores in a book::
37 * File structure::
38 @end menu
39
40
41 @node Structure of a score
42 @subsection Structure of a score
43
44 @funindex \score
45
46 A @code{\score} block must contain a single music expression
47 delimited by curly brackets:
48
49 @example
50 \score @{
51 ...
52 @}
53 @end example
54
55 @warning{There must be @strong{only one} outer music expression in
56 a @code{\score} block, and it @strong{must} be surrounded by
57 curly brackets.}
58
59 This single music expression may be of any size, and may contain
60 other music expressions to any complexity.  All of these examples
61 are music expressions:
62
63 @example
64 @{ c'4 c' c' c' @}
65 @end example
66
67 @lilypond[verbatim,quote]
68 {
69   { c'4 c' c' c' }
70   { d'4 d' d' d' }
71 }
72 @end lilypond
73
74 @lilypond[verbatim,quote]
75 <<
76   \new Staff { c'4 c' c' c' }
77   \new Staff { d'4 d' d' d' }
78 >>
79 @end lilypond
80
81 @example
82 @{
83   \new GrandStaff <<
84     \new StaffGroup <<
85       \new Staff @{ \flute @}
86       \new Staff @{ \oboe @}
87     >>
88     \new StaffGroup <<
89       \new Staff @{ \violinI @}
90       \new Staff @{ \violinII @}
91     >>
92   >>
93 @}
94 @end example
95
96 Comments are one exception to this general rule.  (For others see
97 @ref{File structure}.)  Both single-line comments and comments
98 delimited by @code{%@{ .. %@}} may be placed anywhere within an
99 input file.  They may be placed inside or outside a @code{\score}
100 block, and inside or outside the single music expression within a
101 @code{\score} block.
102
103
104 @seealso
105 Learning Manual:
106 @rlearning{Working on input files},
107 @rlearning{Music expressions explained},
108 @rlearning{Score is a (single) compound musical expression}.
109
110
111 @node Multiple scores in a book
112 @subsection Multiple scores in a book
113
114 @funindex \book
115 @cindex movements, multiple
116
117 A document may contain multiple pieces of music and text.  Examples
118 of these are an etude book, or an orchestral part with multiple
119 movements.  Each movement is entered with a @code{\score} block,
120
121 @example
122 \score @{
123   @var{..music..}
124 @}
125 @end example
126
127 and texts are entered with a @code{\markup} block,
128
129 @example
130 \markup @{
131   @var{..text..}
132 @}
133 @end example
134
135 @funindex \book
136
137 All the movements and texts which appear in the same @code{.ly} file
138 will normally be typeset in the form of a single output file.
139
140 @example
141 \score @{
142   @var{..}
143 @}
144 \markup @{
145   @var{..}
146 @}
147 \score @{
148   @var{..}
149 @}
150 @end example
151
152 However, if you want multiple output files from the same @code{.ly}
153 file, then you can add multiple @code{\book} blocks, where each such
154 @code{\book} block will result in a separate output.  If you do not
155 specify any @code{\book} block in the file, LilyPond will implicitly
156 treat the full file as a single @code{\book} block, see @ref{File
157 structure}.  One important exception is within lilypond-book documents,
158 where you explicitly have to add a @code{\book} block, otherwise only
159 the first @code{\score} or @code{\markup} will appear in the output.
160
161 The header for each piece of music can be put inside the @code{\score}
162 block.  The @code{piece} name from the header will be printed before
163 each movement.  The title for the entire book can be put inside the
164 @code{\book}, but if it is not present, the @code{\header} which is at
165 the top of the file is inserted.
166
167 @example
168 \header @{
169   title = "Eight miniatures"
170   composer = "Igor Stravinsky"
171 @}
172 \score @{
173   @dots{}
174   \header @{ piece = "Romanze" @}
175 @}
176 \markup @{
177    ..text of second verse..
178 @}
179 \markup @{
180    ..text of third verse..
181 @}
182 \score @{
183   @dots{}
184   \header @{ piece = "Menuetto" @}
185 @}
186 @end example
187
188 @funindex \bookpart
189
190 Pieces of music may be grouped into book parts using @code{\bookpart}
191 blocks.  Book parts are separated by a page break, and can start with a
192 title, like the book itself, by specifying a @code{\header} block.
193
194 @example
195 \bookpart @{
196   \header @{
197     title = "Book title"
198     subtitle = "First part"
199   @}
200   \score @{ @dots{} @}
201   @dots{}
202 @}
203 \bookpart @{
204   \header @{
205     subtitle = "Second part"
206   @}
207   \score @{ @dots{} @}
208   @dots{}
209 @}
210 @end example
211
212 @node File structure
213 @subsection File structure
214
215 @funindex \paper
216 @funindex \midi
217 @funindex \layout
218 @funindex \header
219 @funindex \score
220 @funindex \book
221 @funindex \bookpart
222
223 A @code{.ly} file may contain any number of toplevel expressions, where a
224 toplevel expression is one of the following:
225
226 @itemize @bullet
227 @item
228 An output definition, such as @code{\paper}, @code{\midi}, and
229 @code{\layout}.  Such a definition at the toplevel changes the default
230 book-wide settings.  If more than one such definition of
231 the same type is entered at the top level any definitions in the later
232 expressions have precedence.
233
234 @item
235 A direct scheme expression, such as
236 @code{#(set-default-paper-size "a7" 'landscape)} or
237 @code{#(ly:set-option 'point-and-click #f)}.
238
239 @item
240 A @code{\header} block.  This sets the global header block.  This
241 is the block containing the definitions for book-wide settings, like
242 composer, title, etc.
243
244 @item
245 A @code{\score} block.  This score will be collected with other
246 toplevel scores, and combined as a single @code{\book}.
247 This behavior can be changed by setting the variable
248 @code{toplevel-score-handler} at toplevel.  The default handler is
249 defined in the init file @file{../@/scm/@/lily@/.scm}.
250
251 @item
252 A @code{\book} block logically combines multiple movements
253 (i.e., multiple @code{\score} blocks) in one document.  If there
254 are a number of @code{\score}s, one output file will be created
255 for each @code{\book} block, in which all corresponding movements
256 are concatenated.  The only reason to explicitly specify
257 @code{\book} blocks in a @code{.ly} file is if you wish to create
258 multiple output files from a single input file.  One exception is
259 within lilypond-book documents, where you explicitly have to add
260 a @code{\book} block if you want more than a single @code{\score}
261 or @code{\markup} in the same example.  This behavior can be
262 changed by setting the variable @code{toplevel-book-handler} at
263 toplevel.  The default handler is defined in the init file
264 @file{../@/scm/@/lily@/.scm}.
265
266 @item
267 A @code{\bookpart} block.  A book may be divided into several parts,
268 using @code{\bookpart} blocks, in order to ease the page breaking,
269 or to use different @code{\paper} settings in different parts.
270
271 @item
272 A compound music expression, such as
273 @example
274 @{ c'4 d' e'2 @}
275 @end example
276
277 This will add the piece in a @code{\score} and format it in a
278 single book together with all other toplevel @code{\score}s and music
279 expressions.  In other words, a file containing only the above
280 music expression will be translated into
281
282 @example
283 \book @{
284   \score @{
285     \new Staff @{
286       \new Voice @{
287         @{ c'4 d' e'2 @}
288       @}
289     @}
290   @}
291         \layout @{ @}
292         \header @{ @}
293 @}
294 @end example
295
296 This behavior can be changed by setting the variable
297 @code{toplevel-music-handler} at toplevel.  The default handler is
298 defined in the init file @file{../@/scm/@/lily@/.scm}.
299
300 @item
301 A markup text, a verse for example
302 @example
303 \markup @{
304    2.  The first line verse two.
305 @}
306 @end example
307
308 Markup texts are rendered above, between or below the scores or music
309 expressions, wherever they appear.
310
311 @cindex variables
312
313 @item
314 A variable, such as
315 @example
316 foo = @{ c4 d e d @}
317 @end example
318
319 This can be used later on in the file by entering @code{\foo}.  The
320 name of a variable should have alphabetic characters only; no
321 numbers, underscores or dashes.
322
323 @end itemize
324
325 The following example shows three things that may be entered at
326 toplevel
327
328 @example
329 \layout @{
330   % Don't justify the output
331   ragged-right = ##t
332 @}
333
334 \header @{
335    title = "Do-re-mi"
336 @}
337
338 @{ c'4 d' e2 @}
339 @end example
340
341
342 At any point in a file, any of the following lexical instructions can
343 be entered:
344
345 @itemize
346 @item @code{\version}
347 @item @code{\include}
348 @item @code{\sourcefilename}
349 @item @code{\sourcefileline}
350 @item
351 A single-line comment, introduced by a leading @code{%} sign.
352
353 @item
354 A multi-line comment delimited by @code{%@{ .. %@}}.
355
356 @end itemize
357
358 @cindex whitespace
359
360 Whitespace between items in the input stream is generally ignored,
361 and may be freely omitted or extended to enhance readability.
362 However, whitespace should always be used in the following
363 circumstances to avoid errors:
364
365 @itemize
366 @item Around every opening and closing curly bracket.
367 @item After every command or variable, i.e. every item that
368 begins with a @code{\} sign.
369 @item After every item that is to be interpreted as a Scheme
370 expression, i.e. every item that begins with a @code{#} sign.
371 @item To separate all elements of a Scheme expression.
372 @item In @code{lyricmode} to separate all the terms in both
373 @code{\override} and @code{\set} commands.  In particular, spaces
374 must be used around the dot and the equals sign in commands like
375 @code{\override Score . LyricText #'font-size = #5} and before and
376 after the entire command.
377
378 @end itemize
379
380
381 @seealso
382 Learning Manual:
383 @rlearning{How LilyPond input files work}.
384
385
386 @node Titles and headers
387 @section Titles and headers
388
389 Almost all printed music includes a title and the composer's name;
390 some pieces include a lot more information.
391
392 @menu
393 * Creating titles::
394 * Custom titles::
395 * Reference to page numbers::
396 * Table of contents::
397 @end menu
398
399
400 @node Creating titles
401 @subsection Creating titles
402
403 Titles are created for each @code{\score} block, as well as for the full
404 input file (or @code{\book} block) and book parts (created by
405 @code{\bookpart} blocks).
406
407 The contents of the titles are taken from the @code{\header} blocks.
408 The header block for a book supports the following
409
410
411 @table @code
412 @funindex dedication
413 @item dedication
414 The dedicatee of the music, centered at the top of the first page.
415
416 @funindex title
417 @item title
418 The title of the music, centered just below the dedication.
419
420 @funindex subtitle
421 @item subtitle
422 Subtitle, centered below the title.
423
424 @funindex subsubtitle
425 @item subsubtitle
426 Subsubtitle, centered below the subtitle.
427
428 @funindex poet
429 @item poet
430 Name of the poet, flush-left below the subsubtitle.
431
432 @funindex instrument
433 @item instrument
434 Name of the instrument, centered below the subsubtitle.  Also
435 centered at the top of pages (other than the first page).
436
437 @funindex composer
438 @item composer
439 Name of the composer, flush-right below the subsubtitle.
440
441 @funindex meter
442 @item meter
443 Meter string, flush-left below the poet.
444
445 @funindex arranger
446 @item arranger
447 Name of the arranger, flush-right below the composer.
448
449 @funindex piece
450 @item piece
451 Name of the piece, flush-left below the meter.
452
453 @funindex opus
454 @item opus
455 Name of the opus, flush-right below the arranger.
456
457 @cindex page breaks, forcing
458 @funindex breakbefore
459 @item breakbefore
460 This forces the title to start on a new page (set to ##t or ##f).
461
462 @funindex copyright
463 @item copyright
464 Copyright notice, centered at the bottom of the first page.  To
465 insert the copyright symbol, see @ref{Text encoding}.
466
467 @funindex tagline
468 @item tagline
469 Centered at the bottom of the last page.
470
471 @end table
472
473 Here is a demonstration of the fields available.  Note that you
474 may use any @ref{Formatting text}, commands in the header.
475
476 @lilypond[quote,verbatim,line-width=11.0\cm]
477 \paper {
478   line-width = 9.0\cm
479   paper-height = 10.0\cm
480 }
481
482 \book {
483   \header {
484     dedication = "dedicated to me"
485     title = \markup \center-column { "Title first line" "Title second line,
486 longer" }
487     subtitle = "the subtitle,"
488     subsubtitle = #(string-append "subsubtitle LilyPond version "
489 (lilypond-version))
490     poet = "Poet"
491     composer =  \markup \center-column { "composer" \small "(1847-1973)" }
492     texttranslator = "Text Translator"
493     meter = \markup { \teeny "m" \tiny "e" \normalsize "t" \large "e" \huge
494 "r" }
495     arranger = \markup { \fontsize #8.5 "a" \fontsize #2.5 "r" \fontsize
496 #-2.5 "r" \fontsize #-5.3 "a" \fontsize #7.5 "nger" }
497     instrument = \markup \bold \italic "instrument"
498     piece = "Piece"
499   }
500
501   \score {
502     { c'1 }
503     \header {
504       piece = "piece1"
505       opus = "opus1"
506     }
507   }
508   \markup {
509       and now...
510   }
511   \score {
512     { c'1 }
513     \header {
514       piece = "piece2"
515       opus = "opus2"
516     }
517   }
518 }
519 @end lilypond
520
521 As demonstrated before, you can use multiple @code{\header} blocks.
522 When same fields appear in different blocks, the latter is used.
523 Here is a short example.
524
525 @example
526 \header @{
527   composer = "Composer"
528 @}
529 \header @{
530   piece = "Piece"
531 @}
532 \score @{
533   \new Staff @{ c'4 @}
534   \header @{
535     piece = "New piece"  % overwrite previous one
536   @}
537 @}
538 @end example
539
540 If you define the @code{\header} inside the @code{\score} block, then
541 normally only the @code{piece} and @code{opus} headers will be printed.
542 Note that the music expression must come before the @code{\header}.
543
544 @lilypond[quote,verbatim,line-width=11.0\cm]
545 \score {
546   { c'4 }
547   \header {
548     title = "title"  % not printed
549     piece = "piece"
550     opus = "opus"
551   }
552 }
553 @end lilypond
554
555 @funindex print-all-headers
556 @noindent
557 You may change this behavior (and print all the headers when defining
558 @code{\header} inside @code{\score}) by using
559
560 @example
561 \paper@{
562   print-all-headers = ##t
563 @}
564 @end example
565
566 @cindex copyright
567 @cindex tagline
568
569 The default footer is empty, except for the first page, where the
570 @code{copyright} field from @code{\header} is inserted, and the last
571 page, where @code{tagline} from @code{\header} is added.  The default
572 tagline is @qq{Music engraving by LilyPond (@var{version})}.@footnote{Nicely
573 printed parts are good PR for us, so please leave the tagline if you
574 can.}
575
576 Headers may be completely removed by setting them to false.
577
578 @example
579 \header @{
580   tagline = ##f
581   composer = ##f
582 @}
583 @end example
584
585
586 @node Custom titles
587 @subsection Custom titles
588
589 A more advanced option is to change the definitions of the following
590 variables in the @code{\paper} block.  The init file
591 @file{../@/ly/@/titling@/-init@/.ly} lists the default layout.
592
593 @table @code
594 @funindex bookTitleMarkup
595 @item bookTitleMarkup
596   This is the title added at the top of the entire output document.
597 Typically, it has the composer and the title of the piece
598
599 @funindex scoreTitleMarkup
600 @item scoreTitleMarkup
601   This is the title put over a @code{\score} block.  Typically, it has
602 the name of the movement (@code{piece} field).
603
604 @funindex oddHeaderMarkup
605 @item oddHeaderMarkup
606   This is the page header for odd-numbered pages.
607
608 @funindex evenHeaderMarkup
609 @item evenHeaderMarkup
610   This is the page header for even-numbered pages.  If unspecified,
611   the odd header is used instead.
612
613   By default, headers are defined such that the page number is on the
614   outside edge, and the instrument is centered.
615
616 @funindex oddFooterMarkup
617 @item oddFooterMarkup
618   This is the page footer for odd-numbered pages.
619
620 @funindex evenFooterMarkup
621 @item evenFooterMarkup
622   This is the page footer for even-numbered pages.  If unspecified,
623   the odd header is used instead.
624
625   By default, the footer has the copyright notice on the first, and
626   the tagline on the last page.
627 @end table
628
629
630 @cindex \paper
631 @cindex header
632 @cindex footer
633 @cindex page layout
634 @cindex titles
635
636 The following definition will put the title flush left, and the
637 composer flush right on a single line.
638
639 @verbatim
640 \paper {
641   bookTitleMarkup = \markup {
642    \fill-line {
643      \fromproperty #'header:title
644      \fromproperty #'header:composer
645    }
646   }
647 }
648 @end verbatim
649
650 @node Reference to page numbers
651 @subsection Reference to page numbers
652
653 A particular place of a score can be marked using the @code{\label}
654 command, either at top-level or inside music.  This label can then be
655 referred to in a markup, to get the number of the page where the marked
656 point is placed, using the @code{\page-ref} markup command.
657
658 @lilypond[verbatim,line-width=11.0\cm]
659 \header { tagline = ##f }
660 \book {
661   \label #'firstScore
662   \score {
663     {
664       c'1
665       \pageBreak \mark A \label #'markA
666       c'1
667     }
668   }
669
670   \markup { The first score begins on page \page-ref #'firstScore "0" "?" }
671   \markup { Mark A is on page \page-ref #'markA "0" "?" }
672 }
673 @end lilypond
674
675 The @code{\page-ref} markup command takes three arguments:
676 @enumerate
677 @item the label, a scheme symbol, eg. @code{#'firstScore};
678 @item a markup that will be used as a gauge to estimate the dimensions
679 of the markup;
680 @item a markup that will be used in place of the page number if the label
681 is not known;
682 @end enumerate
683
684 The reason why a gauge is needed is that, at the time markups are
685 interpreted, the page breaking has not yet occurred, so the page numbers
686 are not yet known.  To work around this issue, the actual markup
687 interpretation is delayed to a later time; however, the dimensions of
688 the markup have to be known before, so a gauge is used to decide these
689 dimensions.  If the book has between 10 and 99 pages, it may be "00",
690 ie. a two digit number.
691
692
693 @predefined
694 @funindex \label
695 @code{\label},
696 @funindex \page-ref
697 @code{\page-ref}.
698 @endpredefined
699
700
701 @node Table of contents
702 @subsection Table of contents
703 A table of contents is included using the @code{\markuplines \table-of-contents}
704 command.  The elements which should appear in the table of contents are
705 entered with the @code{\tocItem} command, which may be used either at
706 top-level, or inside a music expression.
707
708 @verbatim
709 \markuplines \table-of-contents
710 \pageBreak
711
712 \tocItem \markup "First score"
713 \score {
714   {
715     c'4  % ...
716     \tocItem \markup "Some particular point in the first score"
717     d'4  % ...
718   }
719 }
720
721 \tocItem \markup "Second score"
722 \score {
723   {
724     e'4 % ...
725   }
726 }
727 @end verbatim
728
729 The markups which are used to format the table of contents are defined
730 in the @code{\paper} block.  The default ones are @code{tocTitleMarkup},
731 for formatting the title of the table, and @code{tocItemMarkup}, for
732 formatting the toc elements, composed of the element title and page
733 number.  These variables may be changed by the user:
734
735 @verbatim
736 \paper {
737   %% Translate the toc title into French:
738   tocTitleMarkup = \markup \huge \column {
739     \fill-line { \null "Table des matières" \null }
740     \hspace #1
741   }
742   %% use larger font size
743   tocItemMarkup = \markup \large \fill-line {
744     \fromproperty #'toc:text \fromproperty #'toc:page
745   }
746 }
747 @end verbatim
748
749 Note how the toc element text and page number are referred to in
750 the @code{tocItemMarkup} definition.
751
752 New commands and markups may also be defined to build more elaborated
753 table of contents:
754 @itemize
755 @item first, define a new markup variable in the @code{\paper} block
756 @item then, define a music function which aims at adding a toc element
757 using this markup paper variable.
758 @end itemize
759
760 In the following example, a new style is defined for entering act names
761 in the table of contents of an opera:
762
763 @verbatim
764 \paper {
765   tocActMarkup = \markup \large \column {
766     \hspace #1
767     \fill-line { \null \italic \fromproperty #'toc:text \null }
768     \hspace #1
769   }
770 }
771
772 tocAct =
773 #(define-music-function (parser location text) (markup?)
774    (add-toc-item! 'tocActMarkup text))
775 @end verbatim
776
777 @lilypond[line-width=11.0\cm]
778 \header { tagline = ##f }
779 \paper {
780   tocActMarkup = \markup \large \column {
781     \hspace #1
782     \fill-line { \null \italic \fromproperty #'toc:text \null }
783     \hspace #1
784   }
785 }
786
787 tocAct =
788 #(define-music-function (parser location text) (markup?)
789    (add-toc-item! 'tocActMarkup text))
790
791 \book {
792   \markuplines \table-of-contents
793   \tocAct \markup { Atto Primo }
794   \tocItem \markup { Coro. Viva il nostro Alcide }
795   \tocItem \markup { Cesare. Presti omai l'Egizzia terra }
796   \tocAct \markup { Atto Secondo }
797   \tocItem \markup { Sinfonia }
798   \tocItem \markup { Cleopatra. V'adoro, pupille, saette d'Amore }
799   \markup \null
800 }
801 @end lilypond
802
803
804 @seealso
805 Init files: @file{../@/ly/@/toc@/-init@/.ly}.
806
807
808 @predefined
809 @funindex \table-of-contents
810 @code{\table-of-contents},
811 @funindex \tocItem
812 @code{\tocItem}.
813 @endpredefined
814
815
816 @node Working with input files
817 @section Working with input files
818
819 @menu
820 * Including LilyPond files::
821 * Different editions from one source::
822 * Text encoding::
823 * Displaying LilyPond notation::
824 @end menu
825
826
827 @node Including LilyPond files
828 @subsection Including LilyPond files
829
830 @funindex \include
831 @cindex including files
832
833 A large project may be split up into separate files.  To refer to
834 another file, use
835
836 @example
837 \include "otherfile.ly"
838 @end example
839
840 The line @code{\include "otherfile.ly"} is equivalent to pasting the
841 contents of @file{otherfile.ly} into the current file at the place
842 where the @code{\include} appears.  For example, in a large
843 project you might write separate files for each instrument part
844 and create a @qq{full score} file which brings together the
845 individual instrument files.  Normally the included file will
846 define a number of variables which then become available
847 for use in the full score file.  Tagged sections can be
848 marked in included files to assist in making them usable in
849 different places in a score, see @ref{Different editions from
850 one source}.
851
852 Files in the current working directory may be referenced by
853 specifying just the file name after the @code{\include} command.
854 Files in other locations may be included by giving either a full
855 path reference or a relative path reference (but use the UNIX
856 forward slash, /, rather than the DOS/Windows back slash, \, as the
857 directory separator.)  For example, if @file{stuff.ly} is located
858 one directory higher than the current working directory, use
859
860 @example
861 \include "../stuff.ly"
862 @end example
863
864 @noindent
865 or if the included orchestral parts files are all located in a
866 subdirectory called @file{parts} within the current directory, use
867
868 @example
869 \include "parts/VI.ly"
870 \include "parts/VII.ly"
871 ... etc
872 @end example
873
874 Files which are to be included can also contain @code{\include}
875 statements of their own.  By default, these second-level
876 @code{\include} statements are not interpreted until they have
877 been brought into the main file, so the file names they specify
878 must all be relative to the directory containing the main file,
879 not the directory containing the included file. However,
880 this behavior can be changed by passing the option
881 @code{-drelative-includes} option at the command line
882 (or by adding @code{#(ly:set-option 'relative-includes #t)}
883 at the top of the main input file). With @code{relative-includes}
884 set, the path for each @code{\include} command will be taken
885 relative to the file containing that command. This behavior is
886 recommended and it will become the default behavior in a future
887 version of lilypond.
888
889 Files can also be included from a directory in a search path
890 specified as an option when invoking LilyPond from the command
891 line.  The included files are then specified using just their
892 file name.  For example, to compile @file{main.ly} which includes
893 files located in a subdirectory called @file{parts} by this method,
894 cd to the directory containing @file{main.ly} and enter
895
896 @example
897 lilypond --include=parts main.ly
898 @end example
899
900 and in main.ly write
901
902 @example
903 \include "VI.ly"
904 \include "VII.ly"
905 ... etc
906 @end example
907
908 Files which are to be included in many scores may be placed in
909 the LilyPond directory @file{../ly}.  (The location of this
910 directory is installation-dependent - see
911 @rlearning{Other sources of information}).  These files can then
912 be included simply by naming them on an @code{\include} statement.
913 This is how the language-dependent files like @file{english.ly} are
914 included.
915
916 LilyPond includes a number of files by default when you start
917 the program.  These includes are not apparent to the user, but the
918 files may be identified by running @code{lilypond --verbose} from
919 the command line.  This will display a list of paths and files that
920 LilyPond uses, along with much other information.  Alternatively,
921 the more important of these files are discussed in
922 @rlearning{Other sources of information}.  These files may be
923 edited, but changes to them will be lost on installing a new
924 version of LilyPond.
925
926 Some simple examples of using @code{\include} are shown in
927 @rlearning{Scores and parts}.
928
929
930 @seealso
931 Learning Manual:
932 @rlearning{Other sources of information},
933 @rlearning{Scores and parts}.
934
935
936 @knownissues
937
938 If an included file is given a name which is the same as one in
939 LilyPond's installation files, LilyPond's file from the
940 installation files takes precedence.
941
942
943
944 @node Different editions from one source
945 @subsection Different editions from one source
946
947 Several mechanisms are available to facilitate the generation
948 of different versions of a score from the same music source.
949 Variables are perhaps most useful for combining lengthy sections
950 of music and/or annotation in various ways, while tags are more
951 useful for selecting one from several alternative shorter sections
952 of music.  Whichever method is used, separating the notation from
953 the structure of the score will make it easier to change the
954 structure while leaving the notation untouched.
955
956 @menu
957 * Using variables::
958 * Using tags::
959 @end menu
960
961 @node Using variables
962 @unnumberedsubsubsec Using variables
963
964 @cindex variables, use of
965
966 If sections of the music are defined in variables they can be
967 reused in different parts of the score, see @rlearning{Organizing
968 pieces with variables}.  For example, an @notation{a cappella}
969 vocal score frequently includes a piano reduction of the parts
970 for rehearsal purposes which is identical to the vocal music, so
971 the music need be entered only once.  Music from two variables
972 may be combined on one staff, see @ref{Automatic part combining}.
973 Here is an example:
974
975 @lilypond[verbatim,quote]
976 sopranoMusic = \relative c'' { a4 b c b8( a) }
977 altoMusic = \relative g' { e4 e e f }
978 tenorMusic = \relative c' { c4 b e d8( c) }
979 bassMusic = \relative c' { a4 gis a d, }
980 allLyrics = \lyricmode {King of glo -- ry }
981 <<
982   \new Staff = "Soprano" \sopranoMusic
983   \new Lyrics \allLyrics
984   \new Staff = "Alto" \altoMusic
985   \new Lyrics \allLyrics
986   \new Staff = "Tenor" {
987     \clef "treble_8"
988     \tenorMusic
989   }
990   \new Lyrics \allLyrics
991   \new Staff = "Bass" {
992     \clef "bass"
993     \bassMusic
994   }
995   \new Lyrics \allLyrics
996   \new PianoStaff <<
997     \new Staff = "RH" {
998       \set Staff.printPartCombineTexts = ##f
999       \partcombine
1000       \sopranoMusic
1001       \altoMusic
1002     }
1003     \new Staff = "LH" {
1004       \set Staff.printPartCombineTexts = ##f
1005       \clef "bass"
1006       \partcombine
1007       \tenorMusic
1008       \bassMusic
1009     }
1010   >>
1011 >>
1012 @end lilypond
1013
1014 Separate scores showing just the vocal parts or just the piano
1015 part can be produced by changing just the structural statements,
1016 leaving the musical notation unchanged.
1017
1018 For lengthy scores, the variable definitions may be placed in
1019 separate files which are then included, see @ref{Including
1020 LilyPond files}.
1021
1022 @node Using tags
1023 @unnumberedsubsubsec Using tags
1024
1025 @funindex \tag
1026 @funindex \keepWithTag
1027 @funindex \removeWithTag
1028 @cindex tag
1029 @cindex keep tagged music
1030 @cindex remove tagged music
1031
1032 The @code{\tag #'@var{partA}} command marks a music expression
1033 with the name @var{partA}.
1034 Expressions tagged in this way can be selected or filtered out by
1035 name later, using either @code{\keepWithTag #'@var{name}} or
1036 @code{\removeWithTag #'@var{name}}.  The result of applying these filters
1037 to tagged music is as follows:
1038 @multitable @columnfractions .5 .5
1039 @headitem Filter
1040   @tab Result
1041 @item
1042 Tagged music preceded by @code{\keepWithTag #'@var{name}}
1043   @tab Untagged music and music tagged with @var{name} is included;
1044        music tagged with any other tag name is excluded.
1045 @item
1046 Tagged music preceded by @code{\removeWithTag #'@var{name}}
1047 @tab Untagged music and music tagged with any tag name other than
1048      @var{name} is included; music tagged with @var{name} is
1049      excluded.
1050 @item
1051 Tagged music not preceded by either @code{\keepWithTag} or
1052 @code{\removeWithTag}
1053 @tab All tagged and untagged music is included.
1054 @end multitable
1055
1056 The arguments of the @code{\tag}, @code{\keepWithTag} and
1057 @code{\removeWithTag} commands should be a symbol
1058 (such as @code{#'score} or @code{#'part}), followed
1059 by a music expression.
1060
1061 In the following example, we see two versions of a piece of music,
1062 one showing trills with the usual notation, and one with trills
1063 explicitly expanded:
1064
1065 @lilypond[verbatim,quote]
1066 music = \relative g' {
1067   g8. c32 d
1068   \tag #'trills { d8.\trill }
1069   \tag #'expand { \repeat unfold 3 { e32 d } }
1070   c32 d
1071  }
1072
1073 \score {
1074   \keepWithTag #'trills \music
1075 }
1076 \score {
1077   \keepWithTag #'expand \music
1078 }
1079 @end lilypond
1080
1081 @noindent
1082 Alternatively, it is sometimes easier to exclude sections of music:
1083
1084 @lilypond[verbatim,quote]
1085 music = \relative g' {
1086   g8. c32 d
1087   \tag #'trills { d8.\trill }
1088   \tag #'expand {\repeat unfold 3 { e32 d } }
1089   c32 d
1090  }
1091
1092 \score {
1093   \removeWithTag #'expand
1094   \music
1095 }
1096 \score {
1097   \removeWithTag #'trills
1098   \music
1099 }
1100 @end lilypond
1101
1102 Tagged filtering can be applied to articulations, texts, etc. by
1103 prepending
1104
1105 @example
1106 -\tag #'@var{your-tag}
1107 @end example
1108
1109 to an articulation.  For example, this would define a note with a
1110 conditional fingering indication and a note with a conditional
1111 annotation:
1112
1113 @example
1114 c1-\tag #'finger ^4
1115 c1-\tag #'warn ^"Watch!"
1116 @end example
1117
1118 Multiple tags may be placed on expressions with multiple
1119 @code{\tag} entries:
1120
1121 @lilypond[quote,verbatim]
1122 music = \relative c'' {
1123   \tag #'a \tag #'both { a4 a a a }
1124   \tag #'b \tag #'both { b4 b b b }
1125 }
1126 <<
1127 \keepWithTag #'a \music
1128 \keepWithTag #'b \music
1129 \keepWithTag #'both \music
1130 >>
1131 @end lilypond
1132
1133 Multiple @code{\removeWithTag} filters may be applied to a single
1134 music expression to remove several differently named tagged sections:
1135
1136 @lilypond[verbatim,quote]
1137 music = \relative c'' {
1138 \tag #'A { a4 a a a }
1139 \tag #'B { b4 b b b }
1140 \tag #'C { c4 c c c }
1141 \tag #'D { d4 d d d }
1142 }
1143 {
1144 \removeWithTag #'B
1145 \removeWithTag #'C
1146 \music
1147 }
1148 @end lilypond
1149
1150 Two or more @code{\keepWithTag} filters applied to a single music
1151 expression will cause @emph{all} tagged sections to be removed, as
1152 the first filter will remove all tagged sections except the one
1153 named, and the second filter will remove even that tagged section.
1154
1155
1156 @seealso
1157 Learning Manual:
1158 @rlearning{Organizing pieces with variables}.
1159
1160 Notation Reference:
1161 @ref{Automatic part combining},
1162 @ref{Including LilyPond files}.
1163
1164
1165 @ignore
1166 @c This warning is more general than this placement implies.
1167 @c Rests are not merged whether or not they come from tagged sections.
1168 @c Should be deleted?  -td
1169
1170 @knownissues
1171
1172 Multiple rests are not merged if you create a score with more
1173 than one tagged section at the same place.
1174
1175 @end ignore
1176
1177 @node Text encoding
1178 @subsection Text encoding
1179
1180 @cindex Unicode
1181 @cindex UTF-8
1182 @cindex non-ASCII characters
1183
1184 LilyPond uses the character repertoire defined by the Unicode
1185 consortium and ISO/IEC 10646.  This defines a unique name and
1186 code point for the character sets used in virtually all modern
1187 languages and many others too.  Unicode can be implemented using
1188 several different encodings.  LilyPond uses the UTF-8 encoding
1189 (UTF stands for Unicode Transformation Format) which represents
1190 all common Latin characters in one byte, and represents other
1191 characters using a variable length format of up to four bytes.
1192
1193 The actual appearance of the characters is determined by the
1194 glyphs defined in the particular fonts available - a font defines
1195 the mapping of a subset of the Unicode code points to glyphs.
1196 LilyPond uses the Pango library to layout and render multi-lingual
1197 texts.
1198
1199 LilyPond does not perform any input-encoding conversions.  This
1200 means that any text, be it title, lyric text, or musical
1201 instruction containing non-ASCII characters, must be encoded in
1202 UTF-8.  The easiest way to enter such text is by using a
1203 Unicode-aware editor and saving the file with UTF-8 encoding.  Most
1204 popular modern editors have UTF-8 support, for example, vim, Emacs,
1205 jEdit, and GEdit do.  All MS Windows systems later than NT use
1206 Unicode as their native character encoding, so even Notepad can
1207 edit and save a file in UTF-8 format.  A more functional
1208 alternative for Windows is BabelPad.
1209
1210 If a LilyPond input file containing a non-ASCII character is not
1211 saved in UTF-8 format the error message
1212
1213 @example
1214 FT_Get_Glyph_Name () error: invalid argument
1215 @end example
1216
1217 will be generated.
1218
1219 Here is an example showing Cyrillic, Hebrew and Portuguese
1220 text:
1221
1222 @lilypond[quote]
1223 %c No verbatim here as the code does not display correctly in PDF
1224 % Cyrillic
1225 bulgarian = \lyricmode {
1226   Жълтата дюля беше щастлива, че пухът, който цъфна, замръзна като гьон.
1227 }
1228
1229 % Hebrew
1230 hebrew = \lyricmode {
1231   זה כיף סתם לשמוע איך תנצח קרפד עץ טוב בגן.
1232 }
1233
1234 % Portuguese
1235 portuguese = \lyricmode {
1236   à vo -- cê uma can -- ção legal
1237 }
1238
1239 \relative  {
1240   c2 d e f g f e
1241 }
1242 \addlyrics { \bulgarian }
1243 \addlyrics { \hebrew }
1244 \addlyrics { \portuguese }
1245 @end lilypond
1246
1247 To enter a single character for which the Unicode code point is
1248 known but which is not available in the editor being used, use
1249 either @code{\char ##xhhhh} or @code{\char #dddd} within a
1250 @code{\markup} block, where @code{hhhh} is the hexadecimal code for
1251 the character required and @code{dddd} is the corresponding decimal
1252 value.  Leading zeroes may be omitted, but it is usual to specify
1253 all four characters in the hexadecimal representation.  (Note that
1254 the UTF-8 encoding of the code point should @emph{not} be used
1255 after @code{\char}, as UTF-8 encodings contain extra bits indicating
1256 the number of octets.)  Unicode code charts and a character name
1257 index giving the code point in hexadecimal for any character can be
1258 found on the Unicode Consortium website,
1259 @uref{http://www.unicode.org/}.
1260
1261 For example, @code{\char ##x03BE} and @code{\char #958} would both
1262 enter the Unicode U+03BE character, which has the Unicode name
1263 @qq{Greek Small Letter Xi}.
1264
1265 Any Unicode code point may be entered in this way and if all special
1266 characters are entered in this format it is not necessary to save
1267 the input file in UTF-8 format.  Of course, a font containing all
1268 such encoded characters must be installed and available to LilyPond.
1269
1270 The following example shows Unicode hexadecimal values being entered
1271 in four places -- in a rehearsal mark, as articulation text, in
1272 lyrics and as stand-alone text below the score:
1273
1274 @lilypond[quote,verbatim]
1275 \score {
1276   \relative c'' {
1277     c1 \mark \markup { \char ##x03EE }
1278     c1_\markup { \tiny { \char ##x03B1 " to " \char ##x03C9 } }
1279   }
1280   \addlyrics { O \markup { \concat { Ph \char ##x0153 be! } } }
1281 }
1282 \markup { "Copyright 2008--2010" \char ##x00A9 }
1283 @end lilypond
1284
1285 @cindex copyright sign
1286
1287 To enter the copyright sign in the copyright notice use:
1288
1289 @example
1290 \header @{
1291   copyright = \markup @{ \char ##x00A9 "2008" @}
1292 @}
1293 @end example
1294
1295 @node Displaying LilyPond notation
1296 @subsection Displaying LilyPond notation
1297
1298 @funindex \displayLilyMusic
1299 Displaying a music expression in LilyPond notation can be
1300 done with the music function @code{\displayLilyMusic} but only when
1301 using the command line.  For example,
1302
1303 @example
1304 @{
1305   \displayLilyMusic \transpose c a, @{ c4 e g a bes @}
1306 @}
1307 @end example
1308
1309 will display
1310
1311 @example
1312 @{ a,4 cis e fis g @}
1313 @end example
1314
1315 By default, LilyPond will print these messages to the console
1316 along with all the other LilyPond compilation messages.  To split
1317 up these messages and save the results of @code{\display@{STUFF@}},
1318 redirect the output to a file.
1319
1320 @example
1321 lilypond file.ly >display.txt
1322 @end example
1323
1324
1325
1326 @node Controlling output
1327 @section Controlling output
1328
1329 @menu
1330 * Extracting fragments of music::
1331 * Skipping corrected music::
1332 * Alternative output formats::
1333 * Replacing the notation font::
1334 @end menu
1335
1336 @node Extracting fragments of music
1337 @subsection Extracting fragments of music
1338
1339 It is possible to quote small fragments of a large score directly from
1340 the output.  This can be compared to clipping a piece of a paper score
1341 with scissors.
1342
1343 This is done by defining the measures that need to be cut out
1344 separately.  For example, including the following definition
1345
1346
1347 @verbatim
1348 \layout {
1349   clip-regions
1350   = #(list
1351       (cons
1352        (make-rhythmic-location 5 1 2)
1353        (make-rhythmic-location 7 3 4)))
1354 }
1355 @end verbatim
1356
1357 @noindent
1358 will extract a fragment starting halfway the fifth measure, ending in
1359 the seventh measure.  The meaning of @code{5 1 2} is: after a 1/2 note
1360 in measure 5, and @code{7 3 4} after 3 quarter notes in measure 7.
1361
1362 More clip regions can be defined by adding more pairs of
1363 rhythmic-locations to the list.
1364
1365 In order to use this feature, LilyPond must be invoked with
1366 @code{-dclip-systems}.  The clips are output as EPS files, and are
1367 converted to PDF and PNG if these formats are switched on as well.
1368
1369 For more information on output formats, see @rprogram{Invoking lilypond}.
1370
1371 @node Skipping corrected music
1372 @subsection Skipping corrected music
1373
1374
1375 @funindex skipTypesetting
1376 @funindex showFirstLength
1377 @funindex showLastLength
1378
1379 When entering or copying music, usually only the music near the end (where
1380 you
1381 are adding notes) is interesting to view and correct.  To speed up
1382 this correction process, it is possible to skip typesetting of all but
1383 the last few measures.  This is achieved by putting
1384
1385 @verbatim
1386 showLastLength = R1*5
1387 \score { ... }
1388 @end verbatim
1389
1390 @noindent
1391 in your source file.  This will render only the last 5 measures
1392 (assuming 4/4 time signature) of every @code{\score} in the input
1393 file.  For longer pieces, rendering only a small part is often an order
1394 of magnitude quicker than rendering it completely.  When working on the
1395 beginning of a score you have already typeset (e.g. to add a new part),
1396 the @code{showFirstLength} property may be useful as well.
1397
1398 Skipping parts of a score can be controlled in a more fine-grained
1399 fashion with the property @code{Score.skipTypesetting}.  When it is
1400 set, no typesetting is performed at all.
1401
1402 This property is also used to control output to the MIDI file.  Note that
1403 it skips all events, including tempo and instrument changes.  You have
1404 been warned.
1405
1406 @lilypond[quote,fragment,ragged-right,verbatim]
1407 \relative c'' {
1408   c8 d
1409   \set Score.skipTypesetting = ##t
1410   e8 e e e e e e e
1411   \set Score.skipTypesetting = ##f
1412   c8 d b bes a g c2
1413 }
1414 @end lilypond
1415
1416 In polyphonic music, @code{Score.skipTypesetting} will affect all
1417 voices and staves, saving even more time.
1418
1419 @node Alternative output formats
1420 @subsection Alternative output formats
1421
1422 @cindex scalable vector graphics output
1423 @cindex SVG output
1424 @cindex encapsulated postscript output
1425 @cindex EPS output
1426
1427 The default output formats for the printed score are Portable
1428 Document Format (PDF) and PostScript (PS).  Scalable Vector
1429 Graphics (SVG), Encapsulated PostScript (EPS) and Portable
1430 Network Graphics (PNG) output formats are also available through
1431 command line options, see @rprogram{Command line options for
1432 lilypond}.
1433
1434
1435 @node Replacing the notation font
1436 @subsection Replacing the notation font
1437
1438 Gonville is an alternative to the Feta font used in LilyPond and can
1439 be downloaded from:
1440 @example
1441 @uref{http://www.chiark.greenend.org.uk/~sgtatham/gonville/ ,http://www.chiark.greenend.org.uk/~sgtatham/gonville/}
1442 @end example
1443
1444 Here are a few sample bars of music set in Gonville:
1445
1446 @sourceimage{Gonville_after,,,}
1447
1448 Here are a few sample bars of music set in LilyPond's Feta font:
1449
1450 @sourceimage{Gonville_before,,,}
1451
1452 @subsubheading Installation Instructions for MacOS
1453
1454 Download and extract the zip file.  Using @code{Terminal.app}, move
1455 the @code{lilyfonts} directory to
1456 @file{@var{INSTALLDIR}/LilyPond.app/Contents/Resources/share/lilypond/current}.
1457 Move the existing @code{fonts} directory to @code{fonts_orig} and
1458 move the @code{lilyfonts} directory to @code{fonts}.  Simply move
1459 @code{fonts_orig} back to @code{fonts} to revert back to Feta.
1460
1461 @subsubheading Installation Instructions for Windows
1462
1463 Download and extract the zip file.  Using Explorer, copy the @code{lilyfonts}
1464 directory to
1465 @file{@var{INSTALLDIR}/LilyPond/usr/share/lilypond/current}. Rename
1466 the existing @code{fonts} directory to @code{fonts_orig} and
1467 rename the @code{lilyfonts} directory to @code{fonts}.  Simply rename
1468 @code{fonts_orig} back to @code{fonts} to revert back to Feta.
1469
1470 @knownissues
1471
1472 Gonville cannot be used to typeset @q{Ancient Music} notation.  Please
1473 refer to the author's website for more information on this and other
1474 specifics including licensing of Gonville.
1475
1476
1477 @node MIDI output
1478 @section MIDI output
1479
1480 @cindex Sound
1481 @cindex MIDI
1482
1483 MIDI (Musical Instrument Digital Interface) is a standard for
1484 connecting and controlling digital instruments.  A MIDI file is a
1485 series of notes in a number of tracks.  It is not an actual
1486 sound file; you need special software to translate between the
1487 series of notes and actual sounds.
1488
1489 Pieces of music can be converted to MIDI files, so you can listen to
1490 what was entered.  This is convenient for checking the music; octaves
1491 that are off or accidentals that were mistyped stand out very much
1492 when listening to the MIDI output.
1493
1494 @c TODO Check this
1495 The midi output allocates a channel for each staff, and one for global
1496 settings.  Therefore the midi file should not have more than 15 staves
1497 (or 14 if you do not use drums).  Other staves will remain silent.
1498
1499 @menu
1500 * Creating MIDI files::
1501 * MIDI block::
1502 * What goes into the MIDI output?::
1503 * Repeats in MIDI::
1504 * Controlling MIDI dynamics::
1505 * Percussion in MIDI::
1506 @end menu
1507
1508 @node Creating MIDI files
1509 @subsection Creating MIDI files
1510
1511 To create a MIDI output file from a LilyPond input file, add a
1512 @code{\midi} block to a score, for example,
1513
1514 @example
1515 \score @{
1516   @var{...music...}
1517   \midi @{ @}
1518 @}
1519 @end example
1520
1521 If there is a @code{\midi} block in a @code{\score} with no
1522 @code{\layout} block, only MIDI output will be produced.  When
1523 notation is needed too, a @code{\layout} block must be also be
1524 present.
1525
1526 @example
1527 \score @{
1528   @var{...music...}
1529   \midi @{ @}
1530   \layout @{ @}
1531 @}
1532 @end example
1533
1534 Pitches, rhythms, ties, dynamics, and tempo changes are interpreted
1535 and translated correctly to the MIDI output.  Dynamic marks,
1536 crescendi and decrescendi translate into MIDI volume levels.
1537 Dynamic marks translate to a fixed fraction of the available MIDI
1538 volume range.  Crescendi and decrescendi make the volume vary
1539 linearly between their two extremes.  The effect of dynamic markings
1540 on the MIDI output can be removed completely, see @ref{MIDI block}.
1541
1542 The initial tempo and later tempo changes can be specified
1543 with the @code{\tempo} command within the music notation.  These
1544 are reflected in tempo changes in the MIDI output.  This command
1545 will normally result in the metronome mark being printed, but this
1546 can be suppressed, see @ref{Metronome marks}.  An alternative way
1547 of specifying the inital or overall MIDI tempo is described below,
1548 see @ref{MIDI block}.
1549
1550 Due to some limitations on Windows, the default extension for
1551 MIDI files on Windows is @code{.mid}. Other operating systems still
1552 use the extension @code{.midi}. If a different extension is preferred,
1553 insert the following line at the top-level of the input file,
1554 before the start of any @code{\book}, @code{\bookpart} or @code{\score} blocks:
1555
1556 @example
1557 #(ly:set-option 'midi-extension "midi")
1558 @end example
1559
1560 The line above will set the default extension for MIDI files to
1561 @code{.midi}.
1562
1563 Alternatively, this option can also be supplied on the command line:
1564
1565 @example
1566 lilypond … -dmidi-extension=midi lilyFile.ly
1567 @end example
1568
1569
1570 @unnumberedsubsubsec Instrument names
1571
1572 @cindex instrument names
1573 @funindex Staff.midiInstrument
1574
1575 The MIDI instrument to be used is specified by setting the
1576 @code{Staff.midiInstrument} property to the instrument name.
1577 The name should be chosen from the list in @ref{MIDI instruments}.
1578
1579 @example
1580 \new Staff @{
1581   \set Staff.midiInstrument = #"glockenspiel"
1582   @var{...notes...}
1583 @}
1584 @end example
1585
1586 @example
1587 \new Staff \with @{midiInstrument = #"cello"@} @{
1588   @var{...notes...}
1589 @}
1590 @end example
1591
1592 If the selected instrument does not exactly match an instrument from
1593 the list of MIDI instruments, the Grand Piano (@code{"acoustic grand"})
1594 instrument is used.
1595
1596
1597 @snippets
1598
1599 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
1600 {changing-midi-output-to-one-channel-per-voice.ly}
1601
1602 @knownissues
1603
1604 @c In 2.11 the following no longer seems to be a problem -td
1605 @ignore
1606 Unterminated (de)crescendos will not render properly in the midi file,
1607 resulting in silent passages of music.  The workaround is to explicitly
1608 terminate the (de)crescendo.  For example,
1609
1610 @example
1611 @{ a4\< b c d\f @}
1612 @end example
1613
1614 @noindent
1615 will not work properly but
1616
1617 @example
1618 @{ a4\< b c d\!\f @}
1619 @end example
1620
1621 @noindent
1622 will.
1623 @end ignore
1624
1625 Changes in the MIDI volume take place only on starting a note, so
1626 crescendi and decrescendi cannot affect the volume of a
1627 single note.
1628
1629 Not all midi players correctly handle tempo changes in the midi
1630 output.  Players that are known to work include MS Windows Media
1631 Player and @uref{http://@/timidity@/.sourceforge@/.net/,timidity}.
1632
1633 @node MIDI block
1634 @subsection MIDI block
1635 @cindex MIDI block
1636
1637 A @code{\midi} block must appear within a score block if MIDI output
1638 is required.  It is analogous to the layout block, but somewhat
1639 simpler.  Often, the @code{\midi} block is left empty, but it
1640 can contain context rearrangements, new context definitions or code
1641 to set the values of properties.  For example, the following will
1642 set the initial tempo exported to a MIDI file without causing a tempo
1643 indication to be printed:
1644
1645 @example
1646 \score @{
1647   @var{...music...}
1648   \midi @{
1649     \context @{
1650       \Score
1651       tempoWholesPerMinute = #(ly:make-moment 72 4)
1652     @}
1653   @}
1654 @}
1655 @end example
1656
1657 In this example the tempo is set to 72 quarter note
1658 beats per minute.  This kind of tempo specification cannot take
1659 a dotted note length as an argument.  If one is required, break
1660 the dotted note into smaller units.  For example, a tempo of 90
1661 dotted quarter notes per minute can be specified as 270 eighth
1662 notes per minute:
1663
1664 @example
1665 tempoWholesPerMinute = #(ly:make-moment 270 8)
1666 @end example
1667
1668 @cindex MIDI context definitions
1669
1670 Context definitions follow precisely the same syntax as those
1671 within a @code{\layout} block.  Translation modules for sound are
1672 called performers.  The contexts for MIDI output are defined in
1673 @file{../@/ly/@/performer@/-init@/.ly},
1674 see @rlearning{Other sources of information}.
1675 For example, to remove the effect of dynamics
1676 from the MIDI output, insert the following lines in the
1677 @code{\midi@{ @}} block.
1678
1679 @example
1680 \midi @{
1681   ...
1682   \context @{
1683     \Voice
1684     \remove "Dynamic_performer"
1685   @}
1686 @}
1687 @end example
1688
1689 MIDI output is created only when a @code{\midi} block is included
1690 within a score block defined with a @code{\score} command.  If it
1691 is placed within an explicitly instantiated score context (i.e.
1692 within a @code{\new Score} block) the file will fail.  To solve
1693 this, enclose the @code{\new Score} and the @code{\midi} commands
1694 in a @code{\score} block.
1695
1696 @example
1697 \score @{
1698   \new Score @{ @dots{}notes@dots{} @}
1699   \midi @{ @}
1700 @}
1701 @end example
1702
1703 @node What goes into the MIDI output?
1704 @subsection What goes into the MIDI output?
1705
1706 @c TODO Check grace notes - timing is suspect?
1707
1708 @unnumberedsubsubsec Supported in MIDI
1709
1710 @cindex Pitches in MIDI
1711 @cindex MIDI, Pitches
1712 @cindex Quarter tones in MIDI
1713 @cindex MIDI, quarter tones
1714 @cindex Microtones in MIDI
1715 @cindex MIDI, microtones
1716 @cindex Chord names in MIDI
1717 @cindex MIDI, chord names
1718 @cindex Rhythms in MIDI
1719 @cindex MIDI, Rhythms
1720 @c TODO etc
1721
1722 The following items of notation are reflected in the MIDI output:
1723
1724 @itemize
1725 @item Pitches
1726 @item Microtones (See @ref{Accidentals}. Rendering needs a
1727 player that supports pitch bend.)
1728 @item Chords entered as chord names
1729 @item Rhythms entered as note durations, including tuplets
1730 @item Tremolos entered without @q{@code{:}[@var{number}]}
1731 @item Ties
1732 @item Dynamic marks
1733 @item Crescendi, decrescendi over multiple notes
1734 @item Tempo changes entered with a tempo marking
1735 @item Lyrics
1736 @end itemize
1737
1738 @unnumberedsubsubsec Unsupported in MIDI
1739
1740 @c TODO index as above
1741
1742 The following items of notation have no effect on the MIDI output:
1743
1744 @itemize
1745 @item Rhythms entered as annotations, e.g. swing
1746 @item Tempo changes entered as annotations with no tempo marking
1747 @item Staccato and other articulations and ornamentations
1748 @item Slurs and Phrasing slurs
1749 @item Crescendi, decrescendi over a single note
1750 @item Tremolos entered with @q{@code{:}[@var{number}]}
1751 @item Figured bass
1752 @item Microtonal chords
1753 @end itemize
1754
1755
1756 @node Repeats in MIDI
1757 @subsection Repeats in MIDI
1758
1759 @cindex repeats in MIDI
1760 @funindex \unfoldRepeats
1761
1762 With a few minor additions, all types of repeats can be represented
1763 in the MIDI output.  This is achieved by applying the
1764 @code{\unfoldRepeats} music function.  This function changes all
1765 repeats to unfold repeats.
1766
1767 @lilypond[quote,verbatim]
1768 \unfoldRepeats {
1769   \repeat tremolo 8 { c'32 e' }
1770   \repeat percent 2 { c''8 d'' }
1771   \repeat volta 2 { c'4 d' e' f' }
1772   \alternative {
1773     { g' a' a' g' }
1774     { f' e' d' c' }
1775   }
1776 }
1777 \bar "|."
1778 @end lilypond
1779
1780 When creating a score file using @code{\unfoldRepeats} for MIDI,
1781 it is necessary to make two @code{\score} blocks: one for MIDI
1782 (with unfolded repeats) and one for notation (with volta, tremolo,
1783 and percent repeats).  For example,
1784
1785 @example
1786 \score @{
1787   @var{..music..}
1788   \layout @{ .. @}
1789 @}
1790 \score @{
1791   \unfoldRepeats @var{..music..}
1792   \midi @{ .. @}
1793 @}
1794 @end example
1795
1796 @node Controlling MIDI dynamics
1797 @subsection Controlling MIDI dynamics
1798
1799 MIDI dynamics are implemented by the Dynamic_performer which lives
1800 by default in the Voice context.  It is possible to control the
1801 overall MIDI volume, the relative volume of dynamic markings and
1802 the relative volume of different instruments.
1803
1804 @unnumberedsubsubsec Dynamic marks
1805
1806 Dynamic marks are translated to a fixed fraction of the available
1807 MIDI volume range.  The default fractions range from 0.25 for
1808 @notation{ppppp} to 0.95 for @notation{fffff}.  The set of dynamic
1809 marks and the associated fractions can be seen in
1810 @file{../@/scm/@/midi.scm}, see @rlearning{Other sources of information}.
1811 This set of fractions may be changed or extended by providing a
1812 function which takes a dynamic mark as its argument and returns the
1813 required fraction, and setting
1814 @code{Score.dynamicAbsoluteVolumeFunction} to this function.
1815
1816 For example, if a @notation{rinforzando} dynamic marking,
1817 @code{\rfz}, is required, this will not by default
1818 have any effect on the MIDI volume, as this dynamic marking is not
1819 included in the default set.  Similarly, if a new dynamic marking
1820 has been defined with @code{make-dynamic-script} that too will not
1821 be included in the default set.  The following example shows how the
1822 MIDI volume for such dynamic markings might be added.  The Scheme
1823 function sets the fraction to 0.9 if a dynamic mark of rfz is
1824 found, or calls the default function otherwise.
1825
1826 @lilypond[verbatim,quote]
1827 #(define (myDynamics dynamic)
1828     (if (equal? dynamic "rfz")
1829       0.9
1830       (default-dynamic-absolute-volume dynamic)))
1831
1832 \score {
1833   \new Staff {
1834     \set Staff.midiInstrument = #"cello"
1835     \set Score.dynamicAbsoluteVolumeFunction = #myDynamics
1836     \new Voice {
1837       \relative c'' {
1838         a4\pp b c-\rfz
1839       }
1840     }
1841   }
1842   \layout {}
1843   \midi {}
1844 }
1845 @end lilypond
1846
1847 Alternatively, if the whole table of fractions needs to be
1848 redefined, it would be better to use the
1849 @notation{default-dynamic-absolute-volume} procedure in
1850 @file{../@/scm/@/midi.scm} and the associated table as a model.
1851 The final example in this section shows how this might be done.
1852
1853 @unnumberedsubsubsec Overall MIDI volume
1854
1855 The minimum and maximum overall volume of MIDI dynamic markings is
1856 controlled by setting the properties @code{midiMinimumVolume} and
1857 @code{midiMaximumVolume} at the @code{Score} level.  These
1858 properties have an effect only on dynamic marks, so if they
1859 are to apply from the start of the score a dynamic mark must be
1860 placed there.  The fraction corresponding to each dynamic mark is
1861 modified with this formula
1862
1863 @example
1864 midiMinimumVolume + (midiMaximumVolume - midiMinimumVolume) * fraction
1865 @end example
1866
1867 In the following example the dynamic range of the overall MIDI
1868 volume is limited to the range 0.2 - 0.5.
1869
1870 @lilypond[verbatim,quote]
1871 \score {
1872   <<
1873     \new Staff {
1874       \key g \major
1875       \time 2/2
1876       \set Staff.midiInstrument = #"flute"
1877       \new Voice \relative c''' {
1878         r2 g\mp g fis~
1879         fis4 g8 fis e2~
1880         e4 d8 cis d2
1881       }
1882     }
1883     \new Staff {
1884       \key g \major
1885       \set Staff.midiInstrument = #"clarinet"
1886       \new Voice \relative c'' {
1887         b1\p a2. b8 a
1888         g2. fis8 e
1889         fis2 r
1890       }
1891     }
1892   >>
1893   \layout {}
1894   \midi {
1895     \context {
1896       \Score
1897       tempoWholesPerMinute = #(ly:make-moment 72 2)
1898       midiMinimumVolume = #0.2
1899       midiMaximumVolume = #0.5
1900     }
1901   }
1902 }
1903 @end lilypond
1904
1905 @unnumberedsubsubsec Equalizing different instruments (i)
1906
1907 If the minimum and maximum MIDI volume properties are set in
1908 the @code{Staff} context the relative volumes of the MIDI
1909 instruments can be controlled.  This gives a basic instrument
1910 equalizer, which can enhance the quality of the MIDI output
1911 remarkably.
1912
1913 In this example the volume of the clarinet is reduced relative
1914 to the volume of the flute.  There must be a dynamic
1915 mark on the first note of each instrument for this to work
1916 correctly.
1917
1918 @lilypond[verbatim,quote]
1919 \score {
1920   <<
1921     \new Staff {
1922       \key g \major
1923       \time 2/2
1924       \set Staff.midiInstrument = #"flute"
1925       \set Staff.midiMinimumVolume = #0.7
1926       \set Staff.midiMaximumVolume = #0.9
1927       \new Voice \relative c''' {
1928         r2 g\mp g fis~
1929         fis4 g8 fis e2~
1930         e4 d8 cis d2
1931       }
1932     }
1933     \new Staff {
1934       \key g \major
1935       \set Staff.midiInstrument = #"clarinet"
1936       \set Staff.midiMinimumVolume = #0.3
1937       \set Staff.midiMaximumVolume = #0.6
1938       \new Voice \relative c'' {
1939         b1\p a2. b8 a
1940         g2. fis8 e
1941         fis2 r
1942       }
1943     }
1944   >>
1945   \layout {}
1946   \midi {
1947     \context {
1948       \Score
1949       tempoWholesPerMinute = #(ly:make-moment 72 2)
1950     }
1951   }
1952 }
1953 @end lilypond
1954
1955 @unnumberedsubsubsec Equalizing different instruments (ii)
1956
1957 If the MIDI minimum and maximum volume properties are not set
1958 LilyPond will, by default, apply a small degree of equalization
1959 to a few instruments.  The instruments and the equalization
1960 applied are shown in the table @notation{instrument-equalizer-alist}
1961 in @file{../@/scm/@/midi.scm}.
1962
1963 This basic default equalizer can be replaced by setting
1964 @code{instrumentEqualizer} in the @code{Score} context to a new
1965 Scheme procedure which accepts a MIDI instrument name as its only
1966 argument and returns a pair of fractions giving the minimum and
1967 maximum volumes to be applied to that instrument.  This replacement
1968 is done in the same way as shown for resetting the
1969 @code{dynamicAbsoluteVolumeFunction} at the start of this section.
1970 The default equalizer, @notation{default-instrument-equalizer}, in
1971 @file{../@/scm/@/midi.scm} shows how such a procedure might be written.
1972
1973 The following example sets the relative flute and clarinet volumes
1974 to the same values as the previous example.
1975
1976 @lilypond[verbatim,quote]
1977 #(define my-instrument-equalizer-alist '())
1978
1979 #(set! my-instrument-equalizer-alist
1980   (append
1981     '(
1982       ("flute" . (0.7 . 0.9))
1983       ("clarinet" . (0.3 . 0.6)))
1984     my-instrument-equalizer-alist))
1985
1986 #(define (my-instrument-equalizer s)
1987   (let ((entry (assoc s my-instrument-equalizer-alist)))
1988     (if entry
1989       (cdr entry))))
1990
1991 \score {
1992   <<
1993     \new Staff {
1994       \key g \major
1995       \time 2/2
1996       \set Score.instrumentEqualizer = #my-instrument-equalizer
1997       \set Staff.midiInstrument = #"flute"
1998       \new Voice \relative c''' {
1999         r2 g\mp g fis~
2000         fis4 g8 fis e2~
2001         e4 d8 cis d2
2002       }
2003     }
2004     \new Staff {
2005       \key g \major
2006       \set Staff.midiInstrument = #"clarinet"
2007       \new Voice \relative c'' {
2008         b1\p a2. b8 a
2009         g2. fis8 e
2010         fis2 r
2011       }
2012     }
2013   >>
2014   \layout { }
2015   \midi {
2016     \context {
2017       \Score
2018       tempoWholesPerMinute = #(ly:make-moment 72 2)
2019     }
2020   }
2021 }
2022 @end lilypond
2023
2024 @ignore
2025 @c Delete when satisfied this is adequately covered elsewhere -td
2026
2027 @n ode Microtones in MIDI
2028 @s ubsection Microtones in MIDI
2029
2030 @cindex microtones in MIDI
2031
2032 Microtones consisting of half sharps and half flats are exported
2033 to the MIDI file and render correctly in MIDI players which support
2034 pitch bending.  See @ref{Note names in other languages}.  Here is
2035 an example showing all the half sharps and half flats.  It can be
2036 copied out and compiled to test microtones in your MIDI player.
2037
2038 @lilypond[verbatim,quote]
2039 \score {
2040   \relative c' {
2041     c4 cih cis cisih
2042     d4 dih ees eeh
2043     e4 eih f fih
2044     fis4 fisih g gih
2045     gis4 gisih a aih
2046     bes4 beh b bih
2047   }
2048   \layout {}
2049   \midi {}
2050 }
2051 @end lilypond
2052 @end ignore
2053
2054
2055 @node Percussion in MIDI
2056 @subsection Percussion in MIDI
2057
2058 Percussion instruments are generally notated in a @code{DrumStaff}
2059 context and when notated in this way they are outputted correctly
2060 to MIDI channel@tie{}10, but some pitched percussion instruments,
2061 like the xylophone, marimba, vibraphone, timpani, etc., are
2062 treated like @qq{normal} instruments and music for these instruments
2063 should be entered in a normal @code{Staff} context, not a
2064 @code{DrumStaff} context, to obtain the correct MIDI output.
2065
2066 Some non-pitched percussion sounds included in the general MIDI
2067 standard, like melodic tom, taiko drum, synth drum, etc., cannot
2068 be reached via MIDI channel@tie{}10, so the notation for such
2069 instruments should also be entered in a normal @code{Staff}
2070 context, using suitable normal pitches.
2071
2072 Many percussion instruments are not included in the general MIDI
2073 standard, e.g. castanets.  The easiest, although unsatisfactory,
2074 method of producing some MIDI output when writing for such
2075 instruments is to substitute the nearest sound from the standard
2076 set.
2077
2078 @c TODO Expand with examples, and any other issues
2079
2080 @knownissues
2081
2082 Because the general MIDI standard does not contain rim shots, the
2083 sidestick is used for this purpose instead.
2084
2085