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