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