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