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