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