]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/non-music.itely
Change almost all references to input/regression/ files to input/lsr/.
[lilypond.git] / Documentation / user / non-music.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
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.  See TRANSLATION for details.
8 @end ignore
9
10 @c A menu is needed before every deeper *section nesting of @node's; run
11 @c     M-x texinfo-all-menus-update
12 @c to automatically fill in these menus before saving changes
13
14 @node Non-musical notation
15 @chapter Non-musical notation
16
17 This section deals with general lilypond issues, rather than
18 specific notation.
19
20 @menu
21 * Input files::                 
22 * Titles and headers::          
23 * MIDI output::                 
24 * Displaying LilyPond notation::  
25 * Skipping corrected music::    
26 @end menu
27
28
29 @node Input files
30 @section Input files
31
32 The main format of input for LilyPond are text files.  By convention,
33 these files end with @samp{.ly}.
34
35 @menu
36 * File structure (introduction)::  
37 * File structure::              
38 * A single music expression::   
39 * Multiple scores in a book::   
40 * Extracting fragments of notation::  
41 * Including LilyPond files::    
42 * Text encoding::               
43 @end menu
44
45
46 @node File structure (introduction)
47 @subsection File structure (introduction)
48
49 A basic example of a lilypond input file is
50
51 @example
52 \version "2.11.15"
53 \score @{
54   @{ @}     % this is a single music expression;
55             % all the music goes in here.
56   \header @{ @}
57   \layout @{ @}
58   \midi @{ @}
59 @}
60 @end example
61
62 @noindent
63 There are many variations of this basic pattern, but this
64 example serves as a useful starting place.
65
66 The major part of this manual is concerned with entering various
67 forms of music in LilyPond.  However, many music expressions are not
68 valid input on their own, for example, a @code{.ly} file containing
69 only a note
70 @example
71 c'4
72 @end example
73
74 @noindent
75 will result in a parsing error.  Instead, music should be inside other
76 expressions, which may be put in a file by themselves.  Such
77 expressions are called toplevel expressions; see @ref{File structure}, for
78 a list of all such expressions.
79
80
81 @node File structure
82 @subsection File structure
83
84 A @code{.ly} file contains any number of toplevel expressions, where a
85 toplevel expression is one of the following
86
87 @itemize @bullet
88 @item
89 An output definition, such as @code{\paper}, @code{\midi}, and
90 @code{\layout}.  Such a definition at the toplevel changes the default
91 settings for the block entered.
92
93 @item
94 A direct scheme expression, such as
95 @code{#(set-default-paper-size "a7" 'landscape)} or
96 @code{#(ly:set-option 'point-and-click #f)}.
97
98 @item
99 A @code{\header} block.  This sets the global header block.  This
100 is the block containing the definitions for book-wide settings, like
101 composer, title, etc.
102
103 @item
104 A @code{\score} block.  This score will be collected with other
105 toplevel scores, and combined as a single @code{\book}.
106
107 This behavior can be changed by setting the variable
108 @code{toplevel-score-handler} at toplevel.  The default handler is
109 defined in the init file @file{scm/@/lily@/.scm}.
110
111 The @code{\score} must begin with a music expression, and may
112 contain only one music expression.
113
114 @item
115 A @code{\book} block logically combines multiple movements
116 (i.e., multiple @code{\score} blocks) in one document.  If there are
117 a number of @code{\scores}, one output file will be created for
118 each @code{\book} block, in which all corresponding movements are
119 concatenated. The only reason to explicitly specify @code{\book} blocks
120 in a @code{.ly} file is if you wish multiple output files from a single
121 input file. One exception is within lilypond-book documents, where you
122 explicitly have to add a @code{\book} block if you want more than a
123 single @code{\score} or @code{\markup} in the same example.
124
125 This behavior can be changed by setting the variable
126 @code{toplevel-book-handler} at toplevel.  The default handler is
127 defined in the init file @file{scm/@/lily@/.scm}.
128
129 @item
130 A compound music expression, such as
131 @example
132 @{ c'4 d' e'2 @}
133 @end example
134
135 This will add the piece in a @code{\score} and format it in a
136 single book together with all other toplevel @code{\score}s and music
137 expressions.  In other words, a file containing only the above
138 music expression will be translated into
139
140 @example
141 \book @{
142   \score @{
143     \new Staff @{
144       \new Voice @{
145         @{ c'4 d' e'2 @}
146       @}
147     @}
148   @}
149         \layout @{ @}
150         \header @{ @}
151 @}
152 @end example
153
154 This behavior can be changed by setting the variable
155 @code{toplevel-music-handler} at toplevel.  The default handler is
156 defined in the init file @file{scm/@/lily@/.scm}.
157
158 @item
159 A markup text, a verse for example
160 @example
161 \markup @{
162    2.  The first line verse two.
163 @}
164 @end example
165
166 Markup texts are rendered above, between or below the scores or music
167 expressions, wherever they appear.
168
169 @cindex variables
170 @cindex identifiers
171
172 @item
173 An identifier, such as
174 @example
175 foo = @{ c4 d e d @}
176 @end example
177
178 This can be used later on in the file by entering @code{\foo}.  The
179 name of an identifier should have alphabetic characters only; no
180 numbers, underscores or dashes.
181
182 @end itemize
183
184 The following example shows three things that may be entered at
185 toplevel
186
187 @example
188 \layout @{
189   % movements are non-justified by default
190   ragged-right = ##t
191 @}
192
193 \header @{
194    title = "Do-re-mi"
195 @}
196
197 @{ c'4 d' e2 @}
198 @end example
199
200
201 At any point in a file, any of the following lexical instructions can
202 be entered:
203
204 @itemize @bullet
205 @item @code{\version}
206 @item @code{\include}
207 @item @code{\sourcefilename}
208 @item @code{\sourcefileline}
209
210 @end itemize
211
212
213 @node A single music expression
214 @subsection A single music expression
215
216 A @code{\score} must contain a single music expression.  However,
217 this music expression may be of any size.  Recall that music
218 expressions may be included inside other expressions to form
219 larger expressions.  All of these examples are single music
220 expressions; note the curly braces @{ @} or angle brackets <<
221 >> at the beginning and ending of the music.
222
223 @example
224 @{ c'4 c' c' c' @}
225 @end example
226
227 @lilypond[ragged-right,verbatim,quote]
228 {
229   { c'4 c' c' c'}
230   { d'4 d' d' d'}
231 }
232 @end lilypond
233
234 @lilypond[ragged-right,verbatim,quote]
235 <<
236   \new Staff { c'4 c' c' c' }
237   \new Staff { d'4 d' d' d' }
238 >>
239 @end lilypond
240
241 @example
242 @{
243   \new GrandStaff <<
244     \new StaffGroup <<
245       \new Staff @{ \flute @}
246       \new Staff @{ \oboe @}
247     >>
248     \new StaffGroup <<
249       \new Staff @{ \violinI @}
250       \new Staff @{ \violinII @}
251     >>
252   >>
253 @}
254 @end example
255
256
257 @node Multiple scores in a book
258 @subsection Multiple scores in a book
259
260 @funindex \book
261 @cindex movements, multiple
262
263 A document may contain multiple pieces of music and texts.  Examples
264 of these are an etude book, or an orchestral part with multiple
265 movements.  Each movement is entered with a @code{\score} block,
266
267 @example
268 \score @{
269   @var{..music..}
270 @}
271 @end example
272
273 and texts are entered with a @code{\markup} block,
274
275 @example
276 \markup @{
277   @var{..text..}
278 @}
279 @end example
280
281 @funindex \book
282
283 All the movements and texts which appear in the same @code{.ly} file 
284 will normally be typeset in the form of a single output file. 
285
286 @example
287 \score @{
288   @var{..}
289 @}
290 \markup @{
291   @var{..}
292 @}
293 \score @{
294   @var{..}
295 @}
296 @end example
297
298 However, if you want multiple output files from the same @code{.ly}
299 file, then you can add multiple @code{\book} blocks, where each such
300 @code{\book} block will result in a separate output. If you do not
301 specify any @code{\book} block in the file, LilyPond will implicitly
302 treat the full file as a single @code{\book} block, see @ref{File
303 structure}. One important exception is within lilypond-book documents,
304 where you explicitly have to add a @code{\book} block, otherwise only
305 the first @code{\score} or @code{\markup} will appear in the output.
306
307 The header for each piece of music can be put inside the @code{\score}
308 block.  The @code{piece} name from the header will be printed before
309 each movement.  The title for the entire book can be put inside the
310 @code{\book}, but if it is not present, the @code{\header} which is at
311 the top of the file is inserted.
312
313 @example
314 \header @{
315   title = "Eight miniatures"
316   composer = "Igor Stravinsky"
317 @}
318 \score @{
319   @dots{}
320   \header @{ piece = "Romanze" @}
321 @}
322 \markup @{
323    ..text of second verse..
324 @}
325 \markup @{
326    ..text of third verse..
327 @}
328 \score @{
329   @dots{}
330   \header @{ piece = "Menuetto" @}
331 @}
332 @end example
333
334 @node Extracting fragments of notation
335 @subsection Extracting fragments of notation
336
337 It is possible to quote small fragments of a large score directly from
338 the output. This can be compared to clipping a piece of a paper score
339 with scissors.
340
341 This is done by definining the measures that need to be cut out
342 separately. For example, including the following definition
343
344
345 @verbatim
346 \layout {
347   clip-regions
348   = #(list
349       (cons
350        (make-rhythmic-location 5 1 2)
351        (make-rhythmic-location 7 3 4)))
352 }       
353 @end verbatim
354
355 @noindent
356 will extract a fragment starting halfway the fifth measure, ending in
357 the seventh measure. The meaning of @code{5 1 2} is: after a 1/2 note
358 in measure 5, and @code{7 3 4} after 3 quarter notes in measure 7.
359
360 More clip regions can be defined by adding more pairs of
361 rhythmic-locations to the list. 
362
363 In order to use this feature, LilyPond must be invoked with
364 @code{-dclip-systems}. The clips are output as EPS files, and are
365 converted to PDF and PNG if these formats are switched on as well.
366
367 For more information on output formats, see @ref{Invoking lilypond}.
368
369 @seealso
370
371 Examples: @inputfileref{input/regression/,clip-systems.ly}
372
373
374 @node Including LilyPond files
375 @subsection Including LilyPond files
376
377 @funindex \include
378 @cindex including files
379
380 A large project may be split up into separate files.  To refer to another
381 file, use
382
383 @example
384 \include "otherfile.ly"
385 @end example
386
387 The line @code{\include "file.ly"} is equivalent to pasting the contents
388 of file.ly into the current file at the place where you have the
389 \include.  For example, for a large project you might write separate files
390 for each instrument part and create a @q{full score} file which brings
391 together the individual instrument files.
392
393 The initialization of LilyPond is done in a number of files that are
394 included by default when you start the program, normally transparent to the
395 user.  Run lilypond --verbose to see a list of paths and files that Lily
396 finds.
397
398 Files placed in directory @file{PATH/TO/share/lilypond/VERSION/ly/} (where
399 VERSION is in the form @q{2.6.1}) are on the path and available to
400 @code{\include}.  Files in the
401 current working directory are available to \include, but a file of the same
402 name in LilyPond's installation takes precedence.  Files are
403 available to \include from directories in the search path specified as an
404 option when invoking @code{lilypond --include=DIR} which adds DIR to the
405 search path.
406
407 The @code{\include} statement can use full path information, but with the Unix
408 convention @samp{/} rather than the DOS/Windows @samp{\}.  For example,
409 if @file{stuff.ly} is located one directory higher than the current working
410 directory, use
411
412 @example
413 \include "../stuff.ly"
414 @end example
415
416
417 @node Text encoding
418 @subsection Text encoding
419
420 LilyPond uses the Pango library to format multi-lingual texts, and
421 does not perform any input-encoding conversions.  This means that any
422 text, be it title, lyric text, or musical instruction containing
423 non-ASCII characters, must be utf-8.  The easiest way to enter such text is
424 by using a Unicode-aware editor and saving the file with utf-8 encoding.  Most
425 popular modern editors have utf-8 support, for example, vim, Emacs,
426 jEdit, and GEdit do.
427
428 @c  Currently not working
429 @ignore
430 Depending on the fonts installed, the following fragment shows Hebrew
431 and Cyrillic lyrics,
432
433 @cindex Cyrillic
434 @cindex Hebrew
435 @cindex ASCII, non
436
437 @li lypondfile[fontload]{utf-8.ly}
438
439 The @TeX{} backend does not handle encoding specially at all.  Strings
440 in the input are put in the output as-is.  Extents of text items in the
441 @TeX{} backend, are determined by reading a file created via the
442 @file{texstr} backend,
443
444 @example
445 lilypond -b texstr input/les-nereides.ly
446 latex les-nereides.texstr
447 @end example
448
449 The last command produces @file{les-nereides.textmetrics}, which is
450 read when you execute
451
452 @example
453 lilypond -b tex input/les-nereides.ly
454 @end example
455
456 Both @file{les-nereides.texstr} and @file{les-nereides.tex} need
457 suitable LaTeX wrappers to load appropriate La@TeX{} packages for
458 interpreting non-ASCII strings.
459
460 @end ignore
461
462 To use a Unicode escape sequence, use
463
464 @example
465 #(ly:export (ly:wide-char->utf-8 #x2014))
466 @end example
467
468
469 @seealso
470
471 @lsr{text,utf-8.ly}
472
473
474
475 @node Titles and headers
476 @section Titles and headers
477
478 Almost all printed music includes a title and the composer's name;
479 some pieces include a lot more information.
480
481 @menu
482 * Creating titles::             
483 * Custom titles::               
484 @end menu
485
486
487 @node Creating titles
488 @subsection Creating titles
489
490 Titles are created for each @code{\score} block, as well as for the full
491 input file (or @code{\book} block).
492
493 The contents of the titles are taken from the @code{\header} blocks.
494 The header block for a book supports the following
495
496
497 @table @code
498 @funindex dedication
499 @item dedication
500 The dedicatee of the music, centered at the top of the first page.
501
502 @funindex title
503 @item title
504 The title of the music, centered just below the dedication.
505
506 @funindex subtitle
507 @item subtitle
508 Subtitle, centered below the title.
509
510 @funindex subsubtitle
511 @item subsubtitle
512 Subsubtitle, centered below the subtitle.
513
514 @funindex poet
515 @item poet
516 Name of the poet, flush-left below the subtitle.
517
518 @funindex composer
519 @item composer
520 Name of the composer, flush-right below the subtitle.
521
522 @funindex meter
523 @item meter
524 Meter string, flush-left below the poet.
525
526 @funindex opus
527 @item opus
528 Name of the opus, flush-right below the composer.
529
530 @funindex arranger
531 @item arranger
532 Name of the arranger, flush-right below the opus.
533
534 @funindex instrument
535 @item instrument
536 Name of the instrument, centered below the arranger.  Also
537 centered at the top of pages (other than the first page).
538
539 @funindex piece
540 @item piece
541 Name of the piece, flush-left below the instrument.
542
543 @cindex page breaks, forcing
544 @funindex breakbefore
545 @item breakbefore
546 This forces the title to start on a new page (set to ##t or ##f).
547
548 @funindex copyright
549 @item copyright
550 Copyright notice, centered at the bottom of the first page.  To
551 insert the copyright symbol, see @ref{Text encoding}.
552
553 @funindex tagline
554 @item tagline
555 Centered at the bottom of the last page.
556
557 @end table
558
559 Here is a demonstration of the fields available.  Note that you
560 may use any @ref{Text markup}, commands in the header.
561
562 @lilypond[quote,verbatim,line-width=11.0\cm]
563 \paper {
564   line-width = 9.0\cm
565   paper-height = 10.0\cm
566 }
567
568 \book {
569   \header {
570     dedication = "dedicated to me"
571     title = \markup \center-align { "Title first line" "Title second line,
572 longer" }
573     subtitle = "the subtitle,"
574     subsubtitle = #(string-append "subsubtitle LilyPond version "
575 (lilypond-version))
576     poet = "Poet"
577     composer =  \markup \center-align { "composer" \small "(1847-1973)" }
578     texttranslator = "Text Translator"
579     meter = \markup { \teeny "m" \tiny "e" \normalsize "t" \large "e" \huge
580 "r" }
581     arranger = \markup { \fontsize #8.5 "a" \fontsize #2.5 "r" \fontsize
582 #-2.5 "r" \fontsize #-5.3 "a" \fontsize #7.5 "nger" }
583     instrument = \markup \bold \italic "instrument"
584     piece = "Piece"
585   }
586
587   \score {
588     { c'1 }
589     \header {
590       piece = "piece1"
591       opus = "opus1"
592     }
593   }
594   \markup {
595       and now...
596   }
597   \score {
598     { c'1 }
599     \header {
600       piece = "piece2"
601       opus = "opus2"
602     }
603   }
604 }
605 @end lilypond
606
607 As demonstrated before, you can use multiple @code{\header} blocks.
608 When same fields appear in different blocks, the latter is used.
609 Here is a short example.
610
611 @example
612 \header @{
613   composer = "Composer"
614 @}
615 \header @{
616   piece = "Piece"
617 @}
618 \score @{
619   \new Staff @{ c'4 @}
620   \header @{
621     piece = "New piece"  % overwrite previous one
622   @}
623 @}
624 @end example
625
626 If you define the @code{\header} inside the @code{\score} block, then
627 normally only the @code{piece} and @code{opus} headers will be printed.
628 Note that the music expression must come before the @code{\header}.
629
630 @lilypond[quote,verbatim,line-width=11.0\cm]
631 \score {
632   { c'4 }
633   \header {
634     title = "title"  % not printed
635     piece = "piece"
636     opus = "opus"
637   }
638 }
639 @end lilypond
640
641 @funindex printallheaders
642 @noindent
643 You may change this behavior (and print all the headers when defining
644 @code{\header} inside @code{\score}) by using
645
646 @example
647 \paper@{
648   printallheaders=##t
649 @}
650 @end example
651
652 @cindex copyright
653 @cindex tagline
654
655 The default footer is empty, except for the first page, where the
656 @code{copyright} field from @code{\header} is inserted, and the last
657 page, where @code{tagline} from @code{\header} is added.  The default
658 tagline is @qq{Music engraving by LilyPond (@var{version})}.@footnote{Nicely
659 printed parts are good PR for us, so please leave the tagline if you
660 can.}
661
662 Headers may be completely removed by setting them to false.
663
664 @example
665 \header @{
666   tagline = ##f
667   composer = ##f
668 @}
669 @end example
670
671
672 @node Custom titles
673 @subsection Custom titles
674
675 A more advanced option is to change the definitions of the following
676 variables in the @code{\paper} block.  The init file
677 @file{ly/titling-init.ly} lists the default layout.
678
679 @table @code
680 @funindex bookTitleMarkup
681 @item bookTitleMarkup
682   This is the title added at the top of the entire output document.
683 Typically, it has the composer and the title of the piece
684
685 @funindex scoreTitleMarkup
686 @item scoreTitleMarkup
687   This is the title put over a @code{\score} block.  Typically, it has
688 the name of the movement (@code{piece} field).
689
690 @funindex oddHeaderMarkup
691 @item oddHeaderMarkup
692   This is the page header for odd-numbered pages.
693
694 @funindex evenHeaderMarkup
695 @item evenHeaderMarkup
696   This is the page header for even-numbered pages.  If unspecified,
697   the odd header is used instead.
698
699   By default, headers are defined such that the page number is on the
700   outside edge, and the instrument is centered.
701
702 @funindex oddFooterMarkup
703 @item oddFooterMarkup
704   This is the page footer for odd-numbered pages.
705
706 @funindex evenFooterMarkup
707 @item evenFooterMarkup
708   This is the page footer for even-numbered pages.  If unspecified,
709   the odd header is used instead.
710
711   By default, the footer has the copyright notice on the first, and
712   the tagline on the last page.
713 @end table
714
715
716 @cindex \paper
717 @cindex header
718 @cindex footer
719 @cindex page layout
720 @cindex titles
721
722 The following definition will put the title flush left, and the
723 composer flush right on a single line.
724
725 @verbatim
726 \paper {
727   bookTitleMarkup = \markup {
728    \fill-line {
729      \fromproperty #'header:title
730      \fromproperty #'header:composer
731    }
732   }
733 }
734 @end verbatim
735
736
737
738 @node MIDI output
739 @section MIDI output
740
741 @cindex Sound
742 @cindex MIDI
743
744 MIDI (Musical Instrument Digital Interface) is a standard for
745 connecting and controlling digital instruments.  A MIDI file is a
746 series of notes in a number of tracks.  It is not an actual
747 sound file; you need special software to translate between the
748 series of notes and actual sounds.
749
750 Pieces of music can be converted to MIDI files, so you can listen to
751 what was entered.  This is convenient for checking the music; octaves
752 that are off or accidentals that were mistyped stand out very much
753 when listening to the MIDI output.
754
755 @refbugs
756
757 Many musically interesting effects, such as swing, articulation,
758 slurring, etc., are not translated to midi.
759
760 The midi output allocates a channel for each staff, and one for global
761 settings.  Therefore the midi file should not have more than 15 staves
762 (or 14 if you do not use drums).  Other staves will remain silent.
763
764 Not all midi players correctly handle tempo changes in the midi
765 output.  Players that are known to work include
766 @uref{http://@/timidity@/.sourceforge@/.net/,timidity}.
767
768 @menu
769 * Creating MIDI files::         
770 * MIDI block::                  
771 * MIDI instrument names::       
772 @end menu
773
774 @node Creating MIDI files
775 @subsection Creating MIDI files
776
777 To create a MIDI from a music piece of music, add a @code{\midi} block
778 to a score, for example,
779
780 @example
781 \score @{
782   @var{...music...}
783    \midi @{
784      \context @{
785        \Score
786        tempoWholesPerMinute = #(ly:make-moment 72 4)
787        @}
788      @}
789 @}
790 @end example
791
792 The tempo can be specified using the @code{\tempo} command within the 
793 actual music, see @ref{Metronome marks}.  An alternative, which does not
794 result in a metronome mark in the printed score, is shown in the example
795 above. In this example the tempo of quarter notes is set to 72 beats per
796 minute. 
797 This kind of tempo
798 specification can not take dotted note lengths as an argument. In this
799 case, break the dotted notes into smaller units. For example, a tempo
800 of 90 dotted quarter notes per minute can be specified as 270 eighth
801 notes per minute
802
803 @example
804 tempoWholesPerMinute = #(ly:make-moment 270 8)
805 @end example
806
807 If there is a @code{\midi} command in a @code{\score}, only MIDI will
808 be produced.  When notation is needed too, a @code{\layout} block must
809 be added
810
811 @example
812 \score @{
813   @var{...music...}
814   \midi @{ @}
815   \layout @{ @}
816 @}
817 @end example
818 @cindex layout block
819
820
821
822 Ties, dynamics, and tempo changes are interpreted.  Dynamic marks,
823 crescendi and decrescendi translate into MIDI volume levels.  Dynamic
824 marks translate to a fixed fraction of the available MIDI volume
825 range, crescendi and decrescendi make the volume vary linearly between
826 their two extremes.  The fractions can be adjusted by
827 @code{dynamicAbsoluteVolumeFunction} in @internalsref{Voice} context.
828 For each type of MIDI instrument, a volume range can be defined.  This
829 gives a basic equalizer control, which can enhance the quality of
830 the MIDI output remarkably.  The equalizer can be controlled by
831 setting @code{instrumentEqualizer}, or by setting
832
833 @example
834 \set Staff.midiMinimumVolume = #0.2
835 \set Staff.midiMaximumVolume = #0.8
836 @end example
837
838 To remove dynamics from the MIDI output, insert the following lines
839 in the @code{\midi@{@}} section.
840
841 @example
842 \midi @{
843   ...
844   \context @{
845     \Voice
846     \remove "Dynamic_performer"
847   @}
848 @}
849 @end example
850
851
852 @refbugs
853
854 Unterminated (de)crescendos will not render properly in the midi file,
855 resulting in silent passages of music.  The workaround is to explicitly
856 terminate the (de)crescendo.  For example,
857
858 @example
859 @{ a\< b c d\f @}
860 @end example
861
862 @noindent
863 will not work properly but
864
865 @example
866 @{ a\< b c d\!\f @}
867 @end example
868
869 @noindent
870 will.
871
872
873 MIDI output is only created when the @code{\midi} command is within
874 a @code{\score} block.  If you put it within an explicitly instantiated
875 context ( i.e. @code{\new Score} ) the file will fail.  To solve this,
876 enclose the @code{\new Score} and the @code{\midi} in a @code{\score} block.
877
878 @example
879 \score @{
880   \new Score @{ @dots{}notes@dots{} @}
881   \midi
882 @}
883 @end example
884
885
886 @node MIDI block
887 @subsection MIDI block
888 @cindex MIDI block
889
890
891 The MIDI block is analogous to the layout block, but it is somewhat
892 simpler.  The @code{\midi} block is similar to @code{\layout}. It can contain
893 context definitions.
894
895
896 @cindex context definition
897
898 Context definitions follow precisely the same syntax as within the
899 \layout block.  Translation modules for sound are called performers.
900 The contexts for MIDI output are defined in @file{ly/@/performer@/-init@/.ly}.
901
902
903 @node MIDI instrument names
904 @subsection MIDI instrument names
905
906 @cindex instrument names
907 @funindex Staff.midiInstrument
908
909 The MIDI instrument name is set by the @code{Staff.midiInstrument}
910 property.  The instrument name should be chosen from the list in
911 @ref{MIDI instruments}.
912
913 @example
914 \set Staff.midiInstrument = "glockenspiel"
915 @var{...notes...}
916 @end example
917
918 If the selected instrument does not exactly match an instrument from
919 the list of MIDI instruments, the Grand Piano (@code{"acoustic grand"})
920 instrument is used.
921
922
923 @c  Yes, this is a cop-out; this info doesn't belong in the Scheme
924 @c  chapter, but I'm not certain where to stick it.
925 @c  I think I'll eventually split this chapter into a "paper/layout"
926 @c  chapter and a "misc issues" chapter.  -gp
927 @node Displaying LilyPond notation
928 @section Displaying LilyPond notation
929
930 @funindex \displayLilyMusc
931 Displaying a music expression in LilyPond notation can be
932 done using the music function @code{\displayLilyMusic}.  For example,
933
934 @example
935 @{
936   \displayLilyMusic \transpose c a, @{ c e g a bes @}
937 @}
938 @end example
939
940 will display
941
942 @example
943 @{ a, cis e fis g @}
944 @end example
945
946 By default, LilyPond will print these messages to the console along
947 with all the other messages.  To split up these messages and save
948 the results of @code{\display@{STUFF@}}, redirect the output to
949 a file.
950
951 @example
952 lilypond file.ly >display.txt
953 @end example
954
955
956 @node Skipping corrected music
957 @section Skipping corrected music
958
959
960 @funindex skipTypesetting
961 @funindex showLastLength
962
963 When entering or copying music, usually only the music near the end (where
964 you
965 are adding notes) is interesting to view and correct.  To speed up
966 this correction process, it is possible to skip typesetting of all but
967 the last few measures. This is achieved by putting
968
969 @verbatim
970 showLastLength = R1*5
971 \score { ... }
972 @end verbatim
973
974 @noindent
975 in your source file. This will render only the last 5 measures
976 (assuming 4/4 time signature) of every @code{\score} in the input
977 file. For longer pieces, rendering only a small part is often an order
978 of magnitude quicker than rendering it completely
979
980 Skipping parts of a score can be controlled in a more fine-grained
981 fashion with the property @code{Score.skipTypesetting}.  When it is
982 set, no typesetting is performed at all.
983
984 This property is also used to control output to the MIDI file. Note that
985 it skips all events, including tempo and instrument changes. You have
986 been warned.
987
988 @lilypond[quote,fragment,ragged-right,verbatim]
989 \relative c'' {
990   c8 d
991   \set Score.skipTypesetting = ##t
992   e e e e e e e e
993   \set Score.skipTypesetting = ##f
994   c d b bes a g c2 }
995 @end lilypond
996
997 In polyphonic music, @code{Score.skipTypesetting} will affect all
998 voices and staves, saving even more time.
999
1000
1001