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