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