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