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