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