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