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