]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/tutorial.itely
5bc98fe20fa9b1dc39a1df7aae277f6e65f124cd
[lilypond.git] / Documentation / user / tutorial.itely
1 @c -*-texinfo-*-
2
3 @c TODO: LilyPond LilyPond LilyPond
4
5 @node Tutorial
6 @chapter Tutorial
7
8 @html
9 <!--- @@WEB-TITLE@@=Tutorial --->
10 @end html
11
12 @menu
13 * First steps::                 Music language of LilyPond
14 * Simple legend::               Small table of music language symbols
15 * Running LilyPond::            Printing music
16 * The first real tune::         The first real tune
17 * Lyrics and chords::           Lyrics and chords
18 * More movements ::             Joining separate pieces of music
19 * A piano excerpt::             Piano music
20 * An orchestral score::         Conductor's score and individual parts
21 * Other ways to run LilyPond::  Other ways to run LilyPond
22 * Integrating text and music::  Integrating text and music
23 * End of tutorial::             The end
24 @end menu
25
26
27 The music is described in a text file, using a simple music language.
28 LilyPond reads that text file and generates music that you can print or
29 view.
30
31 Therefore, creating music notation with LilyPond is done in two steps.
32 Using a text editor, you write down the notes to print.  Then, you run
33 LilyPond to get your printed output.
34
35 This tutorial starts with a small introduction to the LilyPond music
36 language.  After this first contact, we will show you how to run
37 LilyPond to produce printed output; you should then be able to create
38 your first sheets of music.
39
40 The tutorial continues with a slightly more elaborate example of real music.
41 This piece introduces and explains some finer details of LilyPond.
42 Then, a number of more complex examples follow, that will help you to
43 produce most complex music with LilyPond.
44
45
46 @c title?
47
48 @node First steps
49 @section First steps
50
51 @c @node Music language of LilyPond
52 @c @section Music language of LilyPond
53
54 This section shows how easy writing music with LilyPond actually is.  If
55 you have not seen LilyPond input source before, this section is for you.
56
57 The next section has a table (see @ref{Simple legend}) of all symbols
58 that are introduced here, you may want to keep an eye on that.
59
60 Writing music with LilyPond is explained below by a number of small
61 examples.  Each example has a small piece of text; the LilyPond input
62 that you should type, with the resulting music printed below it.
63
64 You get a simple note by typing its note name, from @code{a} through
65 @code{g}:
66
67 @quotation
68 @example
69 c d e f g a b
70 @end example
71
72 @lilypond[fragment]
73 \property Score.timing = ##f
74 \property Staff.TimeSignature = \turnOff
75 \transpose c'' { c d e f g a b }
76 @end lilypond
77 @end quotation
78 @separate
79
80 The length of a note is specified by adding a number, ``@code{1}'' for a
81 whole note, ``@code{2}'' for a half note, and so on:
82
83 @quotation
84 @example
85 a1 a2 a4 a16 a32
86 @end example
87
88 @c missing clef seems to raise more questions than actual pitch of notes,
89 @c as these are snippets anyway
90 @lilypond[fragment]
91 \property Score.timing = ##f
92 \property Staff.TimeSignature = \turnOff
93 \property Staff.noAutoBeaming = ##t
94 %\property Staff.Clef = \turnOff
95 \transpose c'' { a1 a2 a4 a16 a32 }
96 s16_" "
97 @end lilypond
98 @end quotation
99 @separate
100
101 If you don't specify a duration, the previous duration is used: 
102
103 @quotation
104 @example
105 a a a2 a
106 @end example
107
108 @c missing clef seems to raise more questions than actual pitch of notes,
109 @c as these are snippets anyway
110 @lilypond[fragment]
111 \property Score.timing = ##f
112 \property Staff.TimeSignature = \turnOff
113 %\property Staff.Clef = \turnOff
114 \transpose c'' { a a a2 a }
115 s16_" "
116 @end lilypond
117 @end quotation
118 @separate
119
120 A sharp (@texisharp{}) is made by adding ``@code{is}'', a flat
121 (@texiflat{}) by adding ``@code{es}'':
122
123 @quotation
124 @example
125 cis1 ees fisis aeses
126 @end example
127
128 @lilypond[fragment]
129 \property Score.timing = ##f
130 \property Staff.TimeSignature = \turnOff
131 \transpose c'' { cis1 ees fisis aeses }
132 s16_" "
133 @end lilypond
134 @end quotation
135 @separate
136
137 Add a dot ``@code{.}'' after the duration to get a dotted note:
138 @quotation
139 @example
140 a2. a4 a8. a16
141 @end example
142
143 @c missing clef seems to raise more questions than actual pitch of notes,
144 @c as these are snippets anyway
145 @lilypond[fragment]
146 \property Score.timing = ##f
147 \property Staff.TimeSignature = \turnOff
148 %\property Staff.Clef = \turnOff
149 \transpose c'' { a2. a4 a8. a16 }
150 s16_" "
151 @end lilypond
152 @end quotation
153 @separate
154
155 The meter (or time signature) can be set with the ``@code{\time}'' command:
156
157 @quotation
158 @example
159 \time 3/4
160 \time 6/8
161 \time 4/4
162 @end example
163
164 @c a clef here may lead to confusion
165 @lilypond[fragment]
166 \property Staff.Clef = \turnOff
167 \time 3/4
168 s4_" "
169 \time 6/8
170 s4_" "
171 \time 4/4
172 s16_" "
173 @end lilypond
174 @end quotation
175 @separate
176
177 The clef can be set using the ``@code{\clef}'' command:
178
179 @c what is more common name treble or violin?
180 @c in Dutch, its violin.
181 @quotation
182 @example
183 \clef violin
184 \clef bass
185 \clef alto
186 \clef tenor
187 @end example
188
189 @lilypond[fragment]
190 \property Score.timing = ##f
191 \property Staff.TimeSignature = \turnOff
192 \clef violin
193 s4_" "
194 \clef bass
195 s4_" "
196 \clef alto
197 s4_" "
198 \clef tenor
199 s16_" "
200 @end lilypond
201 @end quotation
202 @separate
203
204 From these commands and notes, a piece of music can be formed.  A piece
205 of music is made by enclosing it in ``@code{\notes @{ ... @}}''.
206 LilyPond then knows that music follows (and not lyrics, for example):
207
208 @quotation
209 @example
210 \notes @{
211    \time 3/4
212    \clef bass
213    c2 e4 g2.
214    f4 e d c2.
215 @}
216 @end example
217 @end quotation
218 @separate
219
220 At this point, the piece of music is ready to be printed.  This is done
221 by combining the music with a printing command.
222
223 The printing command is the so-called ``@code{\paper}'' block.  You will
224 see later that the \paper block is necessary to customize all kinds of
225 printing specifics.  The music and the \paper block are combined by
226 enclosing them in ``@code{\score @{ ... @}}''.  This is what a full
227 LilyPond source file looks like:
228
229 @quotation
230 @example
231 \score @{
232   \notes @{
233      \time 3/4
234      \clef bass
235      c2 e4 g2.
236      f4 e d c2.
237   @}
238   \paper @{ @}
239 @}
240 @end example
241
242 @lilypond
243 \score {
244   \notes {
245      \time 3/4
246      \clef bass
247      c2 e4 g2.
248      f4 e d c2.
249   }
250   \paper { linewidth = 60 * \staffspace }
251 }
252 @end lilypond
253 @end quotation
254 @separate
255
256
257 We continue with the introduction of the remaining musical constructs.
258
259 @c maybe legend here?
260
261 Rests are entered just like notes with the name ``@code{r}'':
262
263 @quotation
264 @example
265 r2 r4 r8 r16
266 @end example
267
268 @lilypond[fragment]
269 \property Score.timing = ##f
270 \property Staff.Clef = \turnOff
271 \property Staff.TimeSignature = \turnOff
272 r2 r4 r8 r16
273 s16_" "
274 @end lilypond
275 @end quotation
276 @separate
277
278 @c Tim wants to move this quotes example just before the: quotes-don't-work
279 @c score, but we'd need to remove quotes from the other two (key and
280 @c tie) examples...
281
282 @c better to have this just before the `octaves are bad' snipped
283 @c but we'd need to remove the ', from \key and tie 
284 To raise a note by an octave, add a high quote @code{'} (apostrophe) to
285 the note name, to lower a note one octave, add a ``low quote'' @code{,}
286 (a comma).  The central C is @code{c'}:
287
288 @quotation
289 @example
290 c'4 c'' c''' \clef bass c c,
291 @end example
292
293 @lilypond[fragment]
294 \property Score.timing = ##f
295 \property Staff.TimeSignature = \turnOff
296 c'4 c'' c''' \clef bass c c,
297 @end lilypond
298 @end quotation
299 @separate
300
301 A tie is created by entering a tilde ``@code{~}'' between the notes to
302 be tied.  A tie between two notes means that the second note must not be
303 played separately, but just makes the first note sound longer:
304
305 @quotation
306 @lilypond[fragment,verbatim]
307 g'4 ~ g' a'2 ~ a'4
308 @end lilypond
309 @end quotation
310 @separate
311
312 The key signature is set with the command ``@code{\key}'':
313 @quotation
314 @example
315 \key d \major
316 g'1
317 \key c \minor
318 g'
319 @end example
320
321 @lilypond[fragment]
322 \property Staff.TimeSignature = \turnOff
323 \key d \major
324 g'1
325 \key c \minor
326 g'
327 @end lilypond
328 @end quotation
329
330
331 @c bit on the long/complex/scary taste
332 @c cheating a bit: two lines makes for a friendlier look
333 This example shows notes, ties, octave marks, and rests in action.
334 Don't worry about all the quotes.
335
336 @quotation
337 @example
338 \score @{
339   \notes @{
340     \time 4/4
341     \clef violin
342     \key d \minor
343     r4 r8 d''8 cis''4 e''
344     d''8 a'4. ~ a' b'8
345     cis''4 cis''8 cis'' bis'4 d''8 cis'' ~
346     cis''2 r2
347   @}
348   \paper @{ @}
349 @}
350 @end example
351
352 @lilypond
353 \score {
354   \notes {
355     \time 4/4
356     \clef violin
357     \key d \minor
358     r4 r8 d''8 cis''4 e''
359     d''8 a'4. ~ a' b'8
360     cis''4 cis''8 cis'' bis'4 d''8 cis'' ~
361     cis''2 r2
362   }
363   \paper { linewidth = 50*\staffspace }
364 }
365 @end lilypond
366 @end quotation
367
368 @c accidentals...
369 There are some interesting points to note in this example.  Firstly,
370 accidentals (sharps and flats) don't have to be marked explicitly: you
371 just enter the note name, and LilyPond determines whether or not to
372 print an accidental.  Secondly, bar lines and beams are drawn
373 automatically.  Thirdly, LilyPond calculates line breaks for you; it
374 doesn't matter where you make new lines in the source file.
375
376 The example also indicates that a piece of music written in a high
377 register needs lots of quotes.  This makes the input a bit unreadable,
378 and is therefore also a potential source of errors.
379
380 @separate
381
382 The solution is to use ``relative octave'' mode.  In practice, most
383 music is entered using this mode.
384
385 To use relative mode, add @code{\relative} before the piece of music.
386 You must also give a note from which relative starts, in this case
387 @code{c''}.
388
389 @c In relative octave mode, quotes are used to mark large jumps in the
390 @c melody.  Without any quotes or commas, the interval between a note and
391 @c its predecessor is assumed to be a fourth or less.  Quotes and commas
392 @c add octaves in up and down direction.
393
394 If you type no octaviation quotes, relative mode chooses the note that
395 is closest to the previous one, which is often just the one you need.
396 @c don't use commas or quotes in this sentence
397 For example: @code{c f} goes up; @code{c g} goes down:
398
399 @quotation
400 @example
401 \relative c'' @{
402   c f c g c
403 @}
404 @end example
405
406 @lilypond[fragment]
407 \property Score.timing = ##f
408 \property Staff.TimeSignature = \turnOff
409 \relative c'' {
410   c f c g c
411 }
412 @end lilypond
413 @end quotation
414 @separate
415
416 @c needed better, maybe even redundant explanation
417 @c grappig: Pa vond het heel logies, en slim toen-i eenmaal begreep.
418 @c in eerste instantie drong het `relative' niet door zonder extra uitleg.
419 You can make a large interval by adding octaviation quotes.  Note that
420 quotes or commas do not determine the absolute height of a note;
421 the height of a note is relative to the previous one.
422 @c don't use commas or quotes in this sentence
423 For example: @code{c f,} goes down; @code{f, f} are both the same;
424 @code{c c'} are the same; and @code{c g'} goes up:
425
426 @quotation
427 @example
428 \relative c'' @{
429   c f, f c' c g' c,
430 @}
431 @end example
432
433 @lilypond[fragment]
434 \property Score.timing = ##f
435 \property Staff.TimeSignature = \turnOff
436 \relative c'' {
437   c f, f c' c g' c,
438 }
439 @end lilypond
440 @end quotation
441 @separate
442
443 A slur is drawn across many notes, and indicates bound articulation
444 (legato).  The starting note and ending note are marked with a
445 ``@code{(}'' and a ``@code{)}'' respectively:
446
447 @quotation
448 @lilypond[fragment,relative 1, verbatim]
449 d4( )c16( cis d e c cis d )e( )d4
450 @end lilypond
451 @end quotation
452 @separate
453
454 If you need two slurs at the same time (one for articulation, one for
455 phrasing), you can also make a phrasing slur with @code{\(} and
456 @code{\)}.
457
458 @c lousy example
459 @quotation
460 @lilypond[fragment,relative 1, verbatim]
461 a8(\( ais b ) c cis2 b'2 a4 cis, \) c
462 @end lilypond
463 @end quotation
464 @separate
465
466 Beams are drawn automatically, but if you don't like the choices, you
467 can enter beams by hand. Surround the notes to be grouped with @code{[}
468 and @code{]}:
469 @quotation
470 @lilypond[fragment,relative 1, verbatim]
471 [a8 ais] [d es r d]
472 @end lilypond
473 @end quotation
474 @separate
475
476 To print more than one staff, each piece of music that makes up a staff
477 is marked by adding @code{\context Staff} before it.  These
478 @code{Staff}'s can be grouped inside @code{<} and @code{>}, as is
479 demonstrated here:
480
481 @quotation
482 @lilypond[fragment,verbatim]
483 <
484   \context Staff = staffA { \clef violin c'' }
485   \context Staff = staffB { \clef bass c }
486 >
487 @end lilypond
488 @end quotation
489
490 In this example, @code{staffA} and @code{staffB} are names that are
491 given to the staves.  For now, it doesn't matter what names you give, as
492 long as each staff has a unique name.
493
494 @separate
495
496 We can typeset a melody with two staves now:
497
498 @quotation
499 @lilypond[verbatim]
500 \score {
501   \notes 
502   < \context Staff = staffA {
503       \time 3/4
504       \clef violin
505       \relative c'' { e2 ( d4 c2 b4 [a8 a] [b b] [g g] )a2. }  
506     }
507     \context Staff = staffB {
508        \clef bass
509        c2 e4  g2.
510        f4 e d c2.
511     }
512   >
513   \paper {} 
514 }
515 @end lilypond
516 @end quotation
517
518 Notice that the time signature is specified in one melody staff only
519 (the top staff), but is printed on both.  LilyPond knows that the time
520 signature should be the same for all staves.
521
522 @separate
523
524 Common accents can be added to a note using @code{-.}, @code{--}, @code{->}:
525 @quotation
526 @lilypond[verbatim,relative 1]
527 c-. c-- c->
528 @end lilypond
529 @end quotation
530 @separate
531
532 Dynamic signs are made by adding the markings to the note:
533 @quotation
534 @lilypond[verbatim,relative 1]
535 c-\ff c-\mf
536 @end lilypond
537 @end quotation
538 @separate
539
540 Crescendi are started with the commands @code{\<}  and @code{\>}. The
541 command @code{\!} finishes a crescendo on the following note.
542 @quotation
543 @lilypond[verbatim,relative 1]
544 c2\<  \!c2-\ff  \>c2  \!c2
545 @end lilypond
546 @end quotation
547 @separate
548
549 Chords can be made by surrounding notes with @code{<} and @code{>}:
550 @quotation
551 @lilypond[relative 0, fragment,verbatim]
552 r4 <c e g> <c f a> 
553 @end lilypond
554 @end quotation
555 @separate
556
557 @ignore
558 @c te diepzinnig?
559 @c hmm, te losjes, iig
560 In general, @code{ < @var{stuff} > } is used when @var{stuff} all
561 happens at the same time, like in chords, or (like in the two-staff
562 example above) in a bunch of stacked staves.
563 @end ignore
564
565 Of course, you can combine beams and ties with chords.  Notice that
566 beam and tie markings are placed outside the chord markers:
567 @quotation
568 @lilypond[relative 0, fragment,verbatim]
569 r4 [<c8 e g> <c8 f a>] ~ <c8 f a>
570 @end lilypond
571 @end quotation
572
573 When you want to combine chords with slurs and dynamics, an annoying
574 technical detail crops up: you have type these commands next to the
575 notes, which means that they have to be inside the @code{< >}:
576
577 @quotation
578 @lilypond[relative 0, fragment,verbatim]
579 r4 <c8 e g \> ( > <c e g> <c e g>  < ) \! c8 f a>
580 @end lilypond
581 @end quotation
582 @separate
583
584 A nasty technical detail also crops up when you start a score with a
585 chord:
586
587 @quotation
588 @lilypond[verbatim,singleline]
589 \score { \notes <c'1 e'1> }
590 @end lilypond
591 @end quotation
592 @separate
593
594 The program can not guess that you want the notes on only one staff. To
595 force the chord on a staff, add @code{\context Staff} like this:
596
597 @quotation
598 @lilypond[verbatim,singleline]
599 \score { \notes \context Staff <c'1 e'1> }
600 @end lilypond
601 @end quotation
602 @separate
603
604
605
606
607 @ignore
608 [TODO add some more here
609
610 * lyrics, chords (?)
611
612 * \header
613
614 * identifiers?
615
616 ]
617 @end ignore
618
619 This is the end of the simple tutorial. You know the basic ingredients
620 of a music file, so this is the right moment to try your at hand at
621 doing it yourself: try to type some simple examples, and experiment a
622 little.
623
624 When you're comfortable with the basics, then you might want to read the
625 rest of this chapter. It also a manual in tutorial-style, but it is much
626 more in-depth. It will also be very intimidating if you're not familiar
627 with the basics.  It deals with some of the more advanced features of
628 LilyPond. Topics include lyrics, chords, orchestral scores and parts,
629 fine tuning output, polyphonic music, and integrating text and music.
630
631
632 @c refer to this section
633 @node Simple legend
634 @section Simple legend
635
636
637 @c need texinfo-4.0a or later for this
638
639
640 @c both Tim and my father came independently with a request for a
641 @c `legend' like this.
642
643 @c what should be in it?
644
645
646
647 @quotation
648 @multitable @columnfractions .10 .20 .40
649
650 @item @code{[ ]}
651 @tab beam
652 @tab
653 @lilypond[fragment, relative 1]
654 \property Score.timing = ##f
655 \property Staff.TimeSignature = \turnOff
656 \property Staff.noAutoBeaming = ##t
657 \property Staff.Clef = \turnOff
658 [a8 b]
659 @end lilypond
660
661 @item @code{~}
662 @tab tie
663 @tab
664 @lilypond[fragment, relative 1]
665 \property Score.timing = ##f
666 \property Staff.TimeSignature = \turnOff
667 \property Staff.noAutoBeaming = ##t
668 \property Staff.Clef = \turnOff
669 d ~ d
670 @end lilypond
671
672 @item @code{( )}
673 @tab slur
674 @tab
675 @lilypond[fragment, relative 1]
676 \property Score.timing = ##f
677 \property Staff.TimeSignature = \turnOff
678 \property Staff.noAutoBeaming = ##t
679 \property Staff.Clef = \turnOff
680 c( d )e
681 @end lilypond
682 @item @code{'}
683 @tab raise octave
684 @tab
685 @lilypond[fragment, relative 1]
686 \property Score.timing = ##f
687 \property Staff.TimeSignature = \turnOff
688 \property Staff.noAutoBeaming = ##t
689 \property Staff.Clef = \turnOff
690 a a'
691 @end lilypond
692
693 @item @code{,}
694 @tab lower octave
695 @tab
696 @lilypond[fragment, relative 1]
697 \property Score.timing = ##f
698 \property Staff.TimeSignature = \turnOff
699 \property Staff.noAutoBeaming = ##t
700 \property Staff.Clef = \turnOff
701 c c,
702 @end lilypond
703
704 @item @code{< >}
705 @tab chord
706 @tab
707 @lilypond[fragment, relative 1]
708 \property Score.timing = ##f
709 \property Staff.TimeSignature = \turnOff
710 \property Staff.noAutoBeaming = ##t
711 \property Staff.Clef = \turnOff
712 \context Voice { <a c> }
713 @end lilypond
714
715 @item @code{\< \!}
716 @tab crescendo
717 @tab
718 @lilypond[fragment, relative 1]
719 \property Score.timing = ##f
720 \property Staff.TimeSignature = \turnOff
721 \property Staff.noAutoBeaming = ##t
722 \property Staff.Clef = \turnOff
723 a\< a \!a
724 @end lilypond
725
726 @item @code{\> \!}
727 @tab decrescendo
728 @tab
729 @lilypond[fragment, relative 1]
730 \property Score.timing = ##f
731 \property Staff.TimeSignature = \turnOff
732 \property Staff.noAutoBeaming = ##t
733 \property Staff.Clef = \turnOff
734 a\> a \!a
735 @end lilypond
736
737 @end multitable
738 @end quotation
739
740
741
742 @node Running LilyPond
743 @section Running LilyPond
744
745 You write music with LilyPond as follows: first you edit a text file
746 containing a description of the notes.  Then you run LilyPond on the
747 file. This leaves you with an output file, which you can view or print.
748
749 In this section we explain how to run LilyPond, and view or print the
750 output.  If you have not used LilyPond before, want to test your setup
751 of LilyPond, or try to run an example file yourself, then read this
752 section.
753
754 The instructions that follow are for running LilyPond on Unix-like
755 systems.  Some additional instructions for running LilyPond on Windows
756 are given at the end of this section.
757
758 You begin with opening a terminal window, and start up a text editor.
759 For example, open an xterm and execute @code{joe}.  In your text editor,
760 enter the following input, and save the file as @file{test.ly}:
761
762 @quotation
763 @example
764 \score @{
765   \notes @{ c'4 e' g' @}
766 @} 
767 @end example
768 @end quotation
769
770 @cindex ly2dvi
771
772 @c now this is weird, running ly2dvi to run LilyPond
773 @c (therefore name change proposal) 
774
775 To run LilyPond, you invoke ly2dvi to compile your LilyPond source file:
776
777 @quotation
778 @example
779 ly2dvi -P test.ly
780 @end example
781 @end quotation
782
783 You will see the following on your screen:
784
785 @quotation
786 @example
787 GNU LilyPond 1.4.0
788 Now processing: `/home/fred/ly/test.ly'
789 Parsing...
790 Interpreting music...[1]
791  @emph{ ... more interesting stuff ... }
792 PS output to `test.ps'...
793 DVI output to `test.dvi'...
794 @end example
795 @end quotation
796 @cindex DVI file
797 @cindex Viewing music
798 @cindex xdvi
799
800 The results of the ly2dvi run are two files, @file{test.dvi} and
801 @file{test.ps}.  The PS file (@file{test.ps}) is the one you can print.
802 You can view the PS file using the program ghostview.  If a version of
803 ghostview is installed on your system, one of these commands will
804 produce a window with some music notation on your screen:
805 @c eeek
806 @quotation
807 @example
808   gv test.ps
809   ghostview test.ps
810   ggv test.ps
811   kghostview test.ps
812 @end example
813 @end quotation
814 If you are satisfied with the looks of the music displayed on your
815 screen, you can print the PS file by clicking File/Print inside
816 ghostview.
817
818 The DVI file (@file{test.dvi}) contains the same sheet music in a
819 different format. DVI files are more easily processed by the computer,
820 so viewing them usually is quicker.  Execute @code{xdvi test.dvi}
821 to view the DVI file.
822
823 If your DVI viewer does not have a "Print" button, you can print the
824 file by executing @code{lpr test.ps}.
825
826 @c volgende alinea schrappen?  
827
828 If you can't get the examples to print, then you should look into
829 installing and configuring ghostscript.  Refer to GhostScript's website
830 at @uref{http://www.ghostscript.com}.
831
832 @cindex GhostScript
833 @cindex @code{lpr}
834 @cindex Printing output
835 @cindex PostScript
836
837 @unnumberedsubsec Windows users
838 Windows users start the terminal by clicking on the LilyPond icon.
839 Notepad is sufficient for editing the LilyPond file. Viewing the PS file
840 can be done with @code{gsview32 test.ps}.  Viewing DVI files can be done
841 with @code{yap test.dvi}.  The "print" button in Yap will print files.
842 You can also print from the command line by executing @code{gsview32 /s
843 test.ps}
844
845
846 @node The first real tune
847 @section The first real tune
848
849
850 The rest of this tutorial will demonstrate how to use Lilypond by
851 presenting examples of input along with resulting output.  We will use
852 English terms for notation.  In case you are not familiar with those,
853 you may consult the glossary that is distributed with LilyPond.
854
855 The examples discussed are included in the distribution, in the
856 subdirectory @file{input/tutorial/}@footnote{When we refer to filenames,
857 they are relative to the top directory of the source package. }
858
859 To demonstrate what LilyPond input looks like, we start off with a
860 full-fledged, yet simple example. It is a convoluted version
861 of the famous minuet in J. S. Bach's @emph{Klavierb@"uchlein}. The file
862 is included in the distribution as  @file{minuet.ly}.
863 @cindex Bach, Johann Sebastian 
864
865 @lilypond[verbatim]
866 % all text after a percent sign is a comment
867 % and is ignored by LilyPond
868 \include "paper16.ly"
869 \score {
870     \notes                        
871     \relative c'' \sequential {
872             \time 3/4                
873             \key g \major
874
875         \repeat "volta" 2 {
876             d4 g,8 a b c d4 g, g |
877             e'4 c8 d e fis g4 g, g |
878             c4 d8( )c b a( )b4 c8 b a g |
879             a4 [b8 a] [g fis] g2.  |
880         }
881
882         b'4 g8 a b g
883         a4 d,8 e fis d |
884         g4 e8 fis g d cis4 b8 cis a4 |
885         a8-. b-. cis-. d-. e-. fis-.
886         g4 fis e |
887         fis a,  r8 cis8
888         d2.-\fermata
889         \bar "|."
890     }
891     \paper {
892        % standard settings are too big and wide for a book
893        indent = 1.0 \cm
894        linewidth = 15.0 \cm
895    }
896 }
897 @end lilypond
898
899 We will analyse the input, line by line.
900 @separate
901 @example
902         % all text after a percent sign is a comment
903         % and is ignored by LilyPond
904 @end example 
905 Percent signs introduce comments: everything after a percent sign is
906 ignored. You can use this to write down mental notes to yourself.  You
907 can also make longer comments by enclosing text in @code{%@{} and
908 @code{%@}}.
909 @cindex comment
910 @cindex block comment
911 @cindex line comment
912 @separate
913 @example 
914
915         \include "paper16.ly"
916  
917 @end example
918 @cindex @code{\include}
919 @cindex point, printer's
920 @cindex staff size setting 
921 By default, LilyPond will typeset the music in a size such that each
922 staff is 20 point (0.7 cm, or 0.27 inch) high.  We want smaller output
923 (16 point staff height), so we must import the settings for that size,
924 which is done here.
925 @separate
926 @example 
927
928         \score @{
929  
930 @end example 
931 Music is printed by combining a piece of music with directions for
932 outputting it.  This combination is formed in the @code{\score} block.
933 @separate
934 @example 
935
936         \notes                
937  
938 @end example 
939 Prepare LilyPond for accepting notes.
940 @cindex octaves, choosing
941 @cindex pitch
942 @separate
943 @example 
944
945         \relative c''
946  
947 @end example
948 @cindex relative
949 @c removed duplicate introduction to octave marks /MB
950 @c Shorten even more?
951
952 @c As we will see, each note is described by its note name, duration,
953 @c octave and possibly a chromatic alteration.  In this setup, the octave
954 @c is indicated by using high quotes (@code{'}) and ``lowered quotes''
955 @c (commas: @code{,}).  The central C is denoted by @code{c'}.  The C one
956 @c octave higher is @code{c''}.  One and two octaves below the central C is
957 @c denoted by @code{c} and @code{c,} respectively.
958
959 Even though a piece of music often spans a range of several octaves, it
960 mostly moves in small intervals.  LilyPond has a special entry mode to
961 save typing in this situation.  In this ``relative'' octave mode,
962 octaves of notes without quotes are chosen such that a note is as close
963 as possible (graphically, on the staff) to the preceding note.  If you
964 add a high-quote an extra octave is added.  A lowered quote (a comma)
965 will subtract an extra octave.
966
967 Because the first note has no predecessor,
968 you have to give the (absolute) pitch of the note to start with.
969 @separate
970 @example 
971
972         \sequential @{
973  
974 @end example 
975 What follows is sequential music, i.e.,
976 @cindex sequential music
977 notes that are to be played and printed after each other.
978 @separate
979 @example 
980
981         \time 3/4
982  
983 @end example
984 @cindex time signature, setting
985 @cindex @code{\time}
986 Set (or change) the time signature of the current piece: a 3/4 sign is
987 printed.  The time signature setting is also used to generate bar lines
988 at the right spots.
989 @separate
990 @example 
991
992         \key g \major
993  
994 @end example
995 @cindex key signature, setting
996 @cindex @code{\key}
997 Set (or change) the current key signature to G-major.  Although in this
998 example, the @code{\key} command happened to be entered after the
999 @code{\time} command, in the output the time signature will be printed
1000 after the key signature; LilyPond knows about music typesetting
1001 conventions.
1002 @separate
1003 @example 
1004
1005         \repeat "volta" 2
1006  
1007 @end example 
1008 The following piece of music is played twice.  The first argument
1009 indicates the type of repeat.  In this case, @code{"volta"} means that
1010 prima volta/secunda volta brackets are used for the alternative
1011 endings---if there were any.
1012 @separate
1013 @example 
1014
1015         @{
1016  
1017 @end example 
1018 The subject of the repeat is again sequential music.  Since
1019 @code{\sequential} is such a common construct, a shorthand is provided:
1020 just leave off @code{\sequential}, and the result is the same.
1021 @separate
1022 @example 
1023
1024         d4 g,8
1025  
1026 @end example 
1027 Two notes.  The first note is a quarter note with relative pitch
1028 @code{d}.  The relative music was started with a @code{c''}, so the real
1029 pitch of this note is @code{d''}.  The duration of a note is designated
1030 by a number; the @code{4} here represents a quarter note.
1031
1032 The second note is an eight note with relative pitch @code{g,}.  The
1033 pitch is taken relative to the previous @code{d''}, making this
1034 note have real pitch @code{g'}.  The @code{8} represents an eight note.
1035 @separate
1036 @example 
1037
1038         a b
1039  
1040 @end example 
1041 Two more notes, with pitch @code{a} and @code{b}.  Because their
1042 duration is the same as the @code{g,8}, there is no need to enter the
1043 duration, but you may enter it anyway, i.e., @code{a4 b4}
1044 @separate
1045 @example 
1046
1047         d4 g, g |
1048  
1049 @end example
1050 @cindex bar check
1051 @cindex @code{|}
1052 @cindex errors, finding 
1053 Three more notes.  The @code{|} character is a ``bar check''.  LilyPond
1054 will verify that bar checks are found at the start of a measure.  This can
1055 help you track down typing errors.
1056
1057 @cindex alteration, chromatic
1058 @cindex chromatic alteration
1059 @separate
1060 @example 
1061
1062         c8 d e fis
1063
1064 @end example 
1065 So far, no notes were chromatically altered.  Here is the first one that
1066 is: @code{fis}.  LilyPond by default uses Dutch@footnote{Note names are
1067 available in several languages, but we find the Dutch names quite
1068 convenient.} note names, and ``Fis'' is the Dutch note name for ``F
1069 sharp''.  However, there is no sharp sign in the output. The program
1070 keeps track of key signatures, and will only print accidentals if they
1071 are needed.
1072
1073 For groups of eighth notes and shorter, LilyPond can determine how the
1074 notes should form a beam.  In this case, the 4 eights are automatically
1075 printed as a beam.
1076 @separate
1077 @example 
1078
1079         c4 d8( )c b a( )b4 c8 b a g |
1080  
1081 @end example 
1082 The beginning and ending notes of a slur are marked with parentheses,
1083 @code{(} and @code{)} for start and end respectively.  The line above
1084 indicates two slurs.  These slur markers (parentheses) are entered
1085 between the slurred notes.
1086 @separate
1087 @example 
1088
1089         a4 [b8 a] [g fis] 
1090  
1091 @end example 
1092 Automatic beaming can be overridden by inserting beam marks, @code{[}
1093 and @code{]}.  These beam markers (brackets) are put around the notes
1094 you want beamed.
1095 @separate
1096 @example 
1097
1098         g2.  |
1099  
1100 @end example
1101 @cindex augmentation dot
1102 @cindex dotted note
1103 A period adds a dot to the note.
1104 @separate
1105 @example 
1106
1107         @}
1108  
1109 @end example 
1110 The end of the sequential music to be repeated.  LilyPond will typeset a
1111 repeat bar.
1112 @separate
1113 @example 
1114
1115         cis'4 b8 cis a4 |
1116  
1117 @end example 
1118 Accidentals are printed whenever necessary: the first C sharp of the bar
1119 will be printed with an accidental, the second one without.
1120 @separate
1121 @example 
1122
1123         a8-. b-. cis-. d-. e-. fis-.
1124  
1125 @end example
1126 @cindex articulation
1127 You can enter articulation signs either in a verbose form or using a
1128 shorthand.  Here we demonstrate the shorthand: it is formed by a dash
1129 and the character for the articulation to use, e.g. @code{-.} for
1130 staccato as shown above.
1131 @separate
1132 @example 
1133
1134         fis a, r8 cis8
1135  
1136 @end example 
1137  
1138 Rests are denoted by the special note name @code{r}.  
1139 @separate
1140 @example 
1141
1142         d2.-\fermata
1143  
1144 @end example 
1145 All articulations have a verbose form, like @code{\fermata}.  The
1146 command @code{\fermata} is not part of the core of the language, but it
1147 is a shorthand for a more complicated description of a fermata symbol.
1148 @code{\fermata} names that description and is therefore called an
1149 identifier.
1150 @cindex identifier
1151 @cindex @code{\fermata}
1152 @separate
1153 @example
1154         \bar "|."
1155         @}
1156 @end example 
1157 Here the music ends.  LilyPond does not automatically typeset an end
1158 bar, we must explicitly request one, using @code{"|."}.
1159
1160 @separate
1161 @example 
1162
1163         \paper @{
1164                 % standard settings are too big and wide for a book
1165                 indent = 1.0\cm
1166                 linewidth = 15.0\cm
1167         @}
1168  
1169 @end example 
1170 The @code{\paper} block specifies how entered music should be converted
1171 to notation output.  Most of the details of the conversion (font sizes,
1172 dimensions, etc.) have been taken care of, but to fit the output in this
1173 document, it has to be narrower.  We do this by setting the line width
1174 to 14 centimeters (approximately 5.5 inches).
1175 @separate
1176 @example 
1177
1178         @}
1179  
1180 @end example 
1181 The last brace ends the @code{\score} block.
1182
1183
1184
1185
1186 @node Lyrics and chords
1187 @section Lyrics and chords
1188
1189 In this section we show how to typeset a song. This file is
1190 included as @file{flowing.ly}.
1191
1192 @example 
1193 \header @{
1194         title = "The river is flowing"
1195         composer = "Traditional"
1196 @}
1197 \include "paper16.ly"
1198 melody = \notes \relative c' @{
1199         \partial 8
1200         \key c \minor
1201         g8 |
1202         c4 c8 d [es () d] c4 | f4 f8 g [es() d] c g |
1203         c4 c8 d [es () d] c4 | d4 es8 d c4.
1204         \bar "|."
1205 @}
1206
1207 text = \lyrics @{
1208         The ri -- ver is flo- __ wing, flo -- wing and gro -- wing, the
1209         ri -- ver is flo -- wing down to the sea.
1210 @}
1211
1212 accompaniment =\chords @{
1213         r8
1214         c2:3- f:3-.7 d:min es4 c8:min r8
1215         c2:min f:min7 g:7^3.5 c:min @}
1216
1217 \score @{
1218         \simultaneous @{
1219           %\accompaniment
1220           \context ChordNames \accompaniment
1221
1222           \addlyrics
1223             \context Staff = mel @{        
1224               \property Staff.noAutoBeaming = ##t
1225               \property Staff.automaticMelismata = ##t
1226               \melody 
1227             @}
1228             \context Lyrics \text
1229         @}
1230         \midi  @{ \tempo 4=72 @}
1231         \paper @{ linewidth = 10.0\cm @}
1232 @} 
1233 @end example 
1234
1235
1236 The result would look this.@footnote{The titling and font size shown
1237 may differ, since the titling in this document is not generated by
1238 @code{ly2dvi}.}
1239
1240 @center @strong{The river is flowing}
1241 @center Traditional 
1242
1243 @lilypond[center]
1244 \header {
1245         title = "The river is flowing"
1246         composer = "Traditional"
1247 }
1248 \include "paper16.ly"
1249 melody = \notes \relative c' {
1250         \partial 8
1251         \key c \minor
1252         g8 |
1253         c4 c8 d [es () d] c4 | f4 f8 g [es() d] c g |
1254         c4 c8 d [es () d] c4 | d4 es8 d c4.
1255         \bar "|."
1256 }
1257
1258 text = \lyrics {
1259         The ri -- ver is flo- __ wing, flo -- wing and gro -- wing, the
1260         ri -- ver is flo -- wing down to the sea.
1261 }
1262
1263 accompaniment =\chords {
1264         r8
1265         c2:3- f:3-.7 d:min es4 c8:min r8
1266         c2:min f:min7 g:7^3.5 c:min }
1267
1268 \score {
1269         \simultaneous {
1270           %\accompaniment
1271           \context ChordNames \accompaniment
1272
1273           \addlyrics
1274             \context Staff = mel {
1275               \property Staff.noAutoBeaming = ##t
1276               \property Staff.automaticMelismata = ##t
1277               \melody 
1278             }
1279             \context Lyrics \text
1280         }
1281         \midi  { \tempo 4=72 }
1282         \paper { linewidth = 10.0\cm }
1283 }
1284 @end lilypond
1285
1286 Again, we will dissect the file line by line.
1287 @separate
1288 @example 
1289
1290         \header @{
1291  
1292 @end example
1293 @cindex @code{\header}
1294 Information about the music you are about to typeset goes into a
1295 @code{\header} block.  The information in this block is not used by
1296 LilyPond, but it is passed into the output.  @file{ly2dvi} uses this
1297 information to print titles above the music.
1298 @separate
1299 @example 
1300
1301         title = "The river is flowing"
1302         composer = "Traditional (?)"
1303 @end example
1304 @cindex assignments
1305 @cindex identifier assignment
1306 the @code{\header} block contains assignments.  In each assignment, a
1307 variable is set to a value. Lexically, both the variable name and the
1308 assigned value are strings. The values have to be quoted here, because
1309 they contain spaces. The variable names could also be put within quotes
1310 but it is not necessary. 
1311 @separate
1312 @example 
1313
1314         \include "paper16.ly"
1315  
1316 @end example
1317 Smaller size for inclusion in a book.
1318 @separate
1319 @example 
1320
1321         melody = \notes \relative c' @{
1322  
1323 @end example 
1324 The structure of the file will be the same as the previous one, a
1325 @code{\score} block with music in it.  To keep things readable, we will
1326 give names to the different parts of music, and use the names to
1327 construct the music within the score block.
1328
1329 @separate
1330 @example 
1331         \partial 8
1332 @end example 
1333
1334 @cindex @code{\partial}
1335 @cindex anacrusis
1336 The piece starts with an anacrusis of one eighth.
1337 @separate
1338 @example
1339         \key c \minor
1340 @end example
1341 The key is C minor: we have three flats.
1342
1343 @separate
1344 @example 
1345
1346         c4 c8 d [es () d] c4 | f4 f8 g [es() d] c g |
1347         c4 c8 d [es () d] c4 | d4 es8 d c4.
1348         \bar "|."
1349  
1350 @end example 
1351
1352 @cindex manual beaming
1353 @cindex automatic beaming, turning off
1354 We use explicit beaming.  Since this is a song,  we turn automatic
1355 beams off, and use explicit beaming where needed.
1356 @separate
1357 @example 
1358
1359         @}
1360  
1361 @end example 
1362 This ends the definition of @code{melody}.  
1363
1364 @separate
1365 @example 
1366
1367         text = \lyrics @{
1368  
1369 @end example
1370 @cindex lyrics
1371 @cindex identifier assignment
1372 @cindex syllables, entering
1373 Another identifier assignment.  This one is for the lyrics. 
1374 Lyrics are formed by syllables that have duration, and not by
1375 notes. To make LilyPond parse words as syllables,  switch it  into
1376 lyrics mode with @code{\lyrics}.  Again, the brace after @code{\lyrics}
1377 is a shorthand for @code{\sequential @{}.
1378 @separate
1379 @example 
1380
1381   The4 ri -- ver is flo- __ wing,  flo -- wing and gro -- wing, the
1382   ri- ver is flo- __ wing down to the sea.
1383 @}
1384  
1385 @end example
1386 @cindex extenders, lyric
1387 @cindex hyphens, lyric 
1388 The syllables  themselves are  separated by spaces.  You can get syllable
1389 extenders by entering @code{__}, and centered hyphens with
1390 @code{-}@code{-}.  We enter the syllables as if they are all quarter notes
1391 in length (hence the @code{4}), and use a feature to align the
1392 syllables to the music, which obviously isn't all quarter notes.
1393 @separate
1394 @example 
1395
1396         accompaniment =\chords @{
1397  
1398 @end example
1399 @cindex chords
1400 @cindex mode, chords
1401 We'll put chords over the music. To enter them, there is a special mode
1402 analogous to @code{\lyrics} and @code{\notes} mode, where you can give
1403 the names of the chords you want, instead of listing the notes
1404 comprising the chord.
1405 @separate
1406 @example 
1407
1408         r8
1409  
1410 @end example 
1411 There is no accompaniment during the anacrusis.
1412 @separate
1413 @example 
1414
1415         c2:3- f:3-.7
1416  
1417 @end example
1418
1419 @cindex tonic
1420 @cindex chord modifier
1421 @cindex modifier, chord 
1422 A chord is started by  the tonic of the chord. The
1423 first one lasts a half note.  An unadorned note creates a major
1424 triad. Since a minor triad is wanted, @code{3-} is added to modify the
1425 third to be small. @code{7} modifies (adds) a seventh, which is small by
1426 default to create the @code{f a c es} chord.  Multiple modifiers must be
1427 separated by dots.
1428 @separate
1429 @example 
1430
1431         d:min es4 c8:min r8
1432  
1433 @end example
1434
1435 Some modifiers have predefined names, e.g. @code{min} is  the same as
1436 @code{3-}, so @code{d-min} is a minor @code{d} chord.
1437 @separate
1438 @example 
1439
1440         c2:min f:min7 g:7^3.5 c:min @}
1441  
1442 @end example
1443 @cindex named modifier
1444
1445 A named modifier @code{min} and a normal modifier @code{7} do not have
1446 to be separated by a dot.  Tones from a chord are removed with chord
1447 subtractions.  Subtractions are started with a caret, and they are
1448 also separated by dots.  In this example, @code{g:7^3.5} produces a
1449 minor seventh.  The brace ends the sequential music.
1450 @separate
1451 @example 
1452
1453         \score @{
1454                 \simultaneous @{
1455  
1456 @end example 
1457 We assemble the music in the @code{\score} block.  Melody, lyrics and
1458 accompaniment have to sound at the same time, so they should be
1459 @code{\simultaneous}.
1460 @cindex @code{\simultaneous}
1461 @separate
1462 @example 
1463
1464         %\accompaniment
1465  
1466 @end example 
1467 Chord mode generates notes grouped in @code{\simultaneous} music.  If
1468 you remove the comment sign, you can see the chords in normal
1469 notation: they will be printed as note heads on a separate
1470 staff. To print them as chords names, they have to be interpreted as
1471 being chords, not notes. This is done with the following command:  
1472 @separate
1473 @example 
1474
1475         \context ChordNames \accompaniment
1476  
1477 @end example
1478 @cindex context
1479 @cindex interpretation context
1480 @cindex notation context
1481
1482
1483 Normally, the notes that you enter are transformed into note heads.
1484 Note heads alone make no sense, they need surrounding information: a key
1485 signature, a clef, staff lines, etc.  They need @emph{context}.  In
1486 LilyPond, these symbols are created by objects called `interpretation
1487 contexts'.  Interpretation contexts exist for generating notation
1488 (`notation context') and for generating sound (`performance
1489 context'). These objects only exist during a run of LilyPond.
1490
1491 By default, LilyPond will create a Staff context for you.  If you would
1492 remove the @code{%} sign in the previous line, you would see that
1493 mechanism in action.
1494
1495 We don't want that default here, because we want chord names.  The
1496 command above explicitly creates an interpretation context of 
1497 @code{ChordNames} type to interpret the music @code{\accompaniment}. 
1498 @separate
1499 @example 
1500
1501         \addlyrics
1502  
1503 @end example
1504 @cindex @code{\addlyrics}
1505 @cindex lyrics and melody, combining
1506 @cindex combining lyrics and melody
1507
1508 The lyrics should be aligned with the melody.  This is done by
1509 combining both with @code{\addlyrics}.  @code{\addlyrics} takes two
1510 pieces of music (usually a melody and lyrics, in that order) and
1511 aligns the syllables of the second piece under the notes of the
1512 first piece.  If you would reverse the order, the notes would be
1513 aligned on the lyrics, which is not very useful, and looks
1514 silly.
1515 @separate
1516 @example 
1517
1518         \context Staff = mel @{
1519  
1520 @end example
1521
1522 The first argument of @code{\addlyrics} is the melody.  We instantiate
1523 a @code{Staff} context explicitly: should you choose to remove the
1524 comment before the ``note heads'' version of the accompaniment, the
1525 accompaniment will be on a nameless staff.  The melody has to be on
1526 staff different from the accompaniment.  This is accomplished by giving
1527 the melody and accompaniment staves different names.
1528 @separate
1529 @example 
1530
1531         \property Staff.noAutoBeaming = ##t
1532  
1533 @end example
1534 @cindex \property
1535 @cindex context variables
1536 @cindex setting context variables
1537 An interpretation context has variables, called properties, that tune
1538 its behavior.  One of the variables is @code{noAutoBeaming}.  Setting
1539 this @code{Staff}'s property to @code{##t}, which is the boolean value
1540 @var{true}, turns the automatic beaming mechanism off for the current
1541 staff.
1542 @cindex GUILE
1543 @cindex Scheme
1544 @cindex accessing Scheme
1545 @cindex evaluating Scheme
1546 @cindex LISP
1547
1548 LilyPond internally uses GUILE, a Scheme-interpreter. Scheme is a
1549 language from the LISP family. You can learn more about Scheme at
1550 @uref{http://www.scheme.org}. It is used to represent data throughout
1551 the whole program. The hash-sign (@code{#}) accesses GUILE directly: the
1552 code following the hash-sign is evaluated as Scheme.  The boolean value
1553 @var{true} is @code{#t} in Scheme, so for LilyPond @var{true} looks like
1554 @code{##t}.
1555
1556 If Scheme scares you, don't worry. You don't need to know Scheme to
1557 create beautiful sheet music.
1558
1559
1560
1561 @separate
1562 @example 
1563
1564         \property Staff.automaticMelismata = ##t
1565  
1566 @end example
1567 @cindex automaticMelismata
1568 @cindex melismata
1569 @cindex @code{\addlyrics} and slurs
1570 Similarly, we  don't want to print a  syllable when there is
1571 a slur. This sets up @code{\addlyrics} to not put lyrics under each
1572 separate note while there is a slur.
1573 @separate
1574 @example 
1575
1576           \melody
1577         @}
1578  
1579 @end example 
1580 Finally, we put the melody on the current staff.  Note that the
1581 @code{\property} directives and @code{\melody} are grouped in sequential
1582 music,  so the property settings are done before the melody is
1583 processed.
1584 @separate
1585 @example 
1586
1587         \context Lyrics \text
1588  
1589 @end example 
1590 The second argument of @code{\addlyrics} is the text. The text also
1591 should not land on a Staff, but on a interpretation context for
1592 syllables, extenders, hyphens etc.  This context is called
1593 Lyrics.
1594 @separate
1595 @example 
1596
1597         \midi  @{ \tempo 4=72@}
1598  
1599 @end example 
1600 MIDI (Musical Instrument Digital Interface) is a standard for
1601 connecting and recording digital instruments. So a MIDI file is like a
1602 tape recording of an instrument. The @code{\midi} block makes the
1603 music go to a MIDI file, so you can listen to the music you entered.  It
1604 is great for checking the music.  Whenever you hear something weird, you
1605 probably hear a typing error.
1606
1607 Syntactically, @code{\midi} is similar to @code{\paper @{ @}}, since it
1608 also specifies an output method. You can specify the tempo using the
1609 @code{\tempo} command, in this case the tempo of quarter notes is set to
1610 72 beats per minute.
1611 @separate
1612 @example 
1613
1614         \paper @{ linewidth = 10.0\cm @}
1615  
1616 @end example 
1617 We also want notation output.  The linewidth is short so the piece
1618 will be set in two lines.
1619
1620 @node More movements 
1621 @section More movements
1622
1623 [FIXME: merge here with, or move this to: Other ways to run LilyPond]
1624
1625 You probably ran @file{ly2dvi} on the last example, and ended up with a
1626 viewable @file{.dvi} file.  However, between there are a few steps of
1627 which LilyPond is only one. To enhance your understanding of what's
1628 happening under the hood when you run @code{ly2dvi}, we explain what
1629 programs are run.
1630
1631 @code{ly2dvi} is a program that calls a number of programs  in sequence.
1632 The first thing it does, is running LilyPond on the input file. After
1633 some calculations, a @file{.tex} is produced. The contents
1634 of this file are very  low-level instructions.
1635
1636 For example, consider the following file (@file{miniatures.ly}) 
1637
1638 @example
1639 \version "1.4.0"
1640 \header @{
1641   title = "Two miniatures"
1642   tagline = "small is beautiful"
1643 @}
1644
1645 #(set! point-and-click line-column-location)
1646
1647 \paper @{ linewidth = -1.0 @}
1648
1649 \score @{
1650     \notes @{ c'4 d'4 @}
1651     \header @{
1652         opus = "Opus 1."
1653         piece = "Up" @}
1654 @}
1655 \score @{
1656     \notes @{ d'4 c'4 @}
1657     \header @{
1658         opus = "Opus 2."
1659         piece = "Down" @}
1660 @}
1661 @end example
1662
1663 The titling in this manual was not generated by ly2dvi, so we can't
1664 exactly show what it would look like, but the result should resemble this:
1665
1666 @center @strong{Two miniatures}
1667 @flushright
1668 Opus 1.
1669 @end flushright
1670 @flushleft
1671 @var{Up}
1672 @end flushleft
1673 @lilypond
1674   \score {
1675     \notes { c'4 d'4 }
1676     \paper { linewidth = -1.0 }
1677   }
1678 @end lilypond
1679 @flushright
1680 Opus 2.
1681 @end flushright
1682 @flushleft
1683 @var{Down}
1684 @end flushleft
1685 @lilypond
1686   \score {
1687     \notes { d'4 c'4 }
1688     \paper { linewidth = -1.0 }
1689   }
1690 @end lilypond
1691
1692 This file is produced by ly2dvi in a few stages, with the help of text
1693 formatting tools. LilyPond produces two output files,
1694 @file{miniatures.tex} and @file{miniatures-1.tex}.  Both files contain
1695 only graphical music notation. @file{ly2dvi} looks at what output
1696 LilyPond produces, and adds page layout and titling to those files.  The
1697 result is a DVI file called @file{miniatures.dvi}.
1698
1699 Next, now we'll look at the example line by line to explain new things.
1700
1701 @separate
1702 @example 
1703 \version "1.4.0"
1704 @end example 
1705 Lilypond and its language are still under development, and occasionally,
1706 details of the syntax are changed. This fragment indicates for which
1707 version the input file was written. When you compile this file, the
1708 version number will be checked, and you will get a warning when the file
1709 is too old.
1710
1711 This version number is also used by the @code{convert-ly} program (See
1712 @ref{convert-ly}), which is used to update the file to the latest lily
1713 version.
1714
1715 @separate
1716 @example
1717   \header @{
1718     title = "Two miniatures"  @}
1719 @end example
1720 This sets the titling information for the entire file.
1721 @separate
1722 @example
1723     tagline = "small is beautiful" 
1724 @end example
1725 A signature line is printed at the bottom of the last page.
1726  This signature is produced from the @code{tagline} field of
1727 @code{\header}.  Many people find the default "Lily was here,
1728 @var{version number}" too droll. If that is the case,  assign
1729 something else to @code{tagline}, as shown above.
1730 @separate
1731 @example
1732         #(set! point-and-click line-column-location)
1733 @end example
1734
1735 This piece of Scheme code sets the Scheme variable
1736 @code{point-and-click} to the value @var{line-column-location} (which
1737 itself is a Scheme procedure).
1738
1739 Editing input files can be quite complicated if you're working with
1740 large files: if you're digitizing existing music, you have to
1741 synchronize the .ly file, the sheet music on your lap and the sheet
1742 music on the screen.  The point-and-click mechanism makes it easy to
1743 find the origin of an error in the LY file: when you view the file with
1744 Xdvi and click on a note, your editor will jump to the spot where that
1745 note was entered.  For more information, see @ref{Point and click}.
1746
1747 @separate
1748 @example
1749   \paper @{ 
1750 @end example
1751
1752 The @code{\score} blocks that follow in the file don't have
1753 @code{\paper} sections, so the settings of this block are substituted: A
1754 paper block at top level, i.e. not in a @code{\score} block sets the
1755 default page layout.
1756
1757 @separate
1758 @example
1759   linewidth = -1.0 @}
1760 @end example
1761
1762
1763
1764 The variable @code{linewidth} normally sets the length of the systems on
1765 the page. However, a negative value has a special meaning. If
1766 @code{linewidth} is less than 0, no line breaks are inserted into the
1767 score, and the spacing is set to natural length: a short phrase takes up
1768 little space, a longer phrase more space.
1769
1770 @separate
1771 @example
1772   \score @{
1773     \notes @{ c'4 d'4 @}
1774 @end example
1775
1776 In previous examples, notes were specified in relative octaves,
1777 i.e. each note was put in the octave that is closest to its
1778 predecessor. Besides relative, there is also absolute octave
1779 specification, which you get when you don't specify @code{\relative}. In
1780 this input mode, the central C is denoted by @code{c'}. Going down, you
1781 get @code{c} @code{c,} @code{c,,} etc.  Going up, you get @code{c''}
1782 @code{c'''} etc.
1783
1784 When you're copying music from existing sheet music, relative octaves
1785 are probably the easiest to use: it's less typing work and errors are
1786 easily spotted. However, if you write LilyPond input directly, either by
1787 hand (i.e. composing) or by computer, absolute octaves may be easier to use.
1788
1789
1790 @separate
1791 @example
1792     \header @{
1793 @end example
1794
1795 The @code{\header} is normally at the top of the file, where it sets
1796 values for the rest of the file. If you want to typeset different pieces
1797 from one file (for example, if there are multiple movements, or if
1798 you're making an exercise book), you can put different @code{\score}
1799 blocks into the input file. ly2dvi will assemble all LilyPond output
1800 files into a big document. The contents of \header blocks specified
1801 within each score, are used for the titling of each movement.
1802 @separate
1803 @example
1804         opus = "Opus 1."
1805         piece = "Up" @}
1806 @end example
1807 For example, the Opus number is put at the right, and the piece string
1808 will be at the left.
1809
1810
1811
1812 @node A piano excerpt
1813 @section A piano excerpt
1814
1815 Our fourth subject is a piece of piano music.  The fragment in the input
1816 file is a piano reduction of the G major Sinfonia by Giovanni Battista
1817 Sammartini.  It was composed around 1740.  It's in the source package
1818 under  the name @file{sammartini.ly}.
1819
1820 @lilypond[verbatim]
1821 \include "paper16.ly"
1822
1823 stemDown = \property Voice.Stem \override #'direction = #-1
1824 stemUp = \property Voice.Stem \override #'direction = #1
1825 stemBoth = \property Voice.Stem \revert #'direction  
1826
1827 viola = \notes \relative c' \context Voice = viola {
1828     <c4-\f-\arpeggio g' c>
1829     \stemDown g'8. b,16
1830     s1 s2. r4
1831     g
1832 }
1833
1834 oboes = \notes \relative c'' \context Voice = oboe {
1835     \stemUp s4  g8. b,16 c8 r <e'8.^\p g> <f16 a>
1836     \grace <e8( g> <d4 )f> <c2 e>
1837     \times 2/3 { <d8 \< f> <e g> <f a> }
1838     <
1839         { \times 2/3 { a8 g c } \! c2 }
1840         \context Voice = oboeTwo {
1841             \stemDown
1842             \grace {
1843                 \property Voice.Stem \override #'direction = #-1
1844                 [f,16 g] 
1845                 \property Voice.Stem \revert #'direction
1846             }
1847             f8 e e2
1848         }
1849     >
1850     \stemBoth
1851     \grace <c,8( e> <)b8. d8.-\trill> <c16 e> | 
1852     [<d ( f> < )f8. a>] <)b,8 d> r [<d16( f> <f8. )a>] <b,8 d> r  |
1853     [<c16( e>  < )e8. g>] <c8 e,>
1854 }
1855
1856 hoomPah = \repeat unfold 8 \notes
1857     \transpose c' { \stemUp c8 \stemBoth \stemDown c'8 \stemBoth }
1858
1859 bassvoices = \notes \relative c' {
1860     c4 g8. b,16
1861     \autochange Staff \hoomPah
1862     \translator Staff = down
1863     \stemDown [c8 c'8] r4
1864     <g d'> r4
1865     < {\stemUp r2 <e4 c'> <c8 g'> }
1866         \context Voice = reallyLow  {\stemDown g2 ~ | g4 c8 } >
1867 }
1868
1869 \score {
1870     \context PianoStaff \notes <
1871         \context Staff = up < \time 2/2
1872             \viola
1873             \oboes
1874         >
1875         \context Staff = down < \time 2/2 \clef bass
1876             \bassvoices
1877         >
1878     >
1879     \midi { }
1880     \paper {
1881         indent = 0.0
1882         linewidth = 15.0 \cm }
1883 }
1884 @end lilypond
1885
1886 If this looks like incomprehensible gibberish to you, you are right.
1887 This example has been doctored to have as many quirks as possible.
1888
1889 As you can see, this example features multiple voices on one staff.  To
1890 make room for those voices, their notes have to be stemmed in opposite
1891 directions.
1892
1893 Printed symbols are internally represented by so-called Graphical
1894 Objects (more colloquially: Grobs).  These statements concern the
1895 grob called `Stem'. Each grob is described by a bunch of settings. These
1896 setting determine the fonts, offsets, sub-routines to be called on the
1897 grob, etc.  The initial values of these settings are set in the Scheme
1898 file @file{scm/grob-description.scm}.
1899
1900 @separate
1901 @example
1902   stemDown = \property Voice.Stem \override #'direction = #-1
1903 @end example
1904
1905 Set a property for all Stem grobs in the current Voice:
1906 @code{direction} is set to @code{-1}, which encodes down.  The setting
1907 remains in effect until it is reverted.
1908
1909 @separate
1910 @example
1911  \property Voice.Stem \revert #'direction  
1912 @end example
1913
1914 Revert the to the previous setting.  The effect of precisely one
1915 @code{\stemDown} or @code{\stemUp} is neutralized.
1916
1917
1918 LilyPond includes the identifiers @code{\stemUp}, @code{\stemDown} along
1919 with some other commonly used formatting instructions, but to explain how
1920 it works, we wrote our own here.  Of course, you should use predefined
1921 identifiers like these if possible: then you will be affected less by
1922 the implementation changes we occasionally make.
1923
1924 @separate
1925 @example 
1926 viola = \notes \relative c'  \context Voice = viola @{ 
1927 @end example 
1928 In this example, you can see multiple parts on a staff.  Each part is
1929 associated with one notation context.  This notation context handles
1930 stems and dynamics (among others).  The type name of this context is
1931 @code{Voice}.  For each part we have to make sure that there is
1932 precisely one @code{Voice} context, so we give it a unique name
1933 (`@code{viola}').
1934
1935 @separate
1936 @example 
1937 <c4-\f-\arpeggio g' c>
1938 @end example 
1939 The delimiters @code{<} and @code{>} are shorthands for
1940 @code{\simultaneous @{} and @code{@}}. The expression enclosed in
1941 @code{<} and @code{>} is a chord.
1942
1943 @cindex dynamics
1944 @cindex loudness
1945 @cindex forte
1946 @cindex arpeggio
1947
1948 @code{\f} places a forte symbol under the chord. The forte applies to
1949 the whole chord, but the syntax requires that commands like forte and
1950 arpeggio are attached to a note, so here we attach them to the first
1951 note.
1952
1953 @code{\arpeggio} typesets an arpeggio sign (a wavy vertical line) before
1954 the chord.
1955
1956 @separate
1957 @example 
1958    \stemDown
1959 @end example 
1960
1961
1962 @separate
1963 @example 
1964         g'8. b,16 
1965 @end example 
1966 Relative octaves work a little differently with chords.  The starting
1967 point for the note following a chord is the first note of the chord.  So
1968 the @code{g} gets an octave up quote: it is a fifth above the starting
1969 note of the previous chord (the central C).
1970
1971 @separate
1972 @example 
1973 s1 s2. r4 
1974 @end example 
1975 @code{s} is a spacer rest.  It does not print anything, but it does have
1976 the duration of a rest. It is useful for filling up voices that
1977 temporarily don't play. In this case, the viola doesn't come until one
1978 and a half measure later.
1979
1980 @separate
1981 @example 
1982 oboes = \notes \relative c'' \context Voice = oboe @{ 
1983 @end example 
1984 Now comes a part for two oboes.  They play homophonically, so we
1985 print the notes as one voice that makes chords. Again, we insure that
1986 these notes are indeed processed by precisely one context with
1987 @code{\context}.
1988 @separate
1989 @example 
1990 \stemUp s4  g8. b,16 c8 r <e'8.-\p g> <f16 a> 
1991 @end example 
1992 @code{\stemUp} is a reference to the @code{\property \override} command
1993 defined above. 
1994 @separate
1995 @example 
1996 \grace <e8 g> < d4 f> <c2 e> 
1997 @end example
1998 @cindex @code{\grace}
1999 @cindex ornaments
2000 @cindex grace notes
2001 @code{\grace} introduces grace notes.  It takes one argument, in this
2002 case a chord.
2003
2004 @ignore
2005 The slur started on the @code{e} of the chord
2006 will be attached to the next note.@footnote{LilyPond will squirm
2007 about unended Slurs.  In this case, you can ignore the warning}.
2008 @end ignore
2009 @separate
2010 @example 
2011 \times 2/3 
2012 @end example
2013 @cindex tuplet
2014 @cindex triplets
2015 Tuplets are made with the @code{\times} keyword.  It takes two
2016 arguments: a fraction and a piece of music.  The duration of the piece
2017 of music is multiplied by the fraction.  Triplets make notes occupy 2/3
2018 of their notated duration, so in this case the fraction is 2/3.
2019 @separate
2020 @example 
2021 @{ <d8 \< f> <e g> <f a> @} 
2022 @end example 
2023 The piece of music to be `tripletted' is sequential music containing
2024 three notes.  On the first chord, a crescendo is started with
2025 @code{\<}. To be precise, the crescendo start is syntactically attached
2026 to the preceding note, the @code{d}.
2027
2028 @cindex dynamics
2029 @cindex crescendo
2030 @cindex @code{\<}
2031
2032 @separate
2033 @example 
2034
2035 @end example 
2036 At this point, the homophonic music splits into two rhythmically
2037 different parts.  We can't use a sequence of chords to enter this, so
2038 we make a `chord' of sequences to do it.  We start with the upper
2039 voice, which continues with upward stems:
2040 @separate
2041 @example 
2042  @{ \times 2/3 @{ a8 g c @} \! c2 @} 
2043 @end example
2044
2045 @cindex @code{\!}
2046
2047 The crescendo is ended at the half note by the escaped exclamation
2048 mark @code{\!}.
2049 @separate
2050 @example 
2051 \context Voice = oboeTwo @{
2052 \stemDown 
2053 @end example 
2054 We can't share stems with the other voice, so we have to create a new
2055 @code{Voice} context.  We give it the name @code{oboeTwo} to distinguish
2056 it from the other context.  Stems go down in this voice.
2057 @separate
2058 @example 
2059 \grace
2060 @end example
2061 @cindex Grace context
2062 When a grace section is processed, a @code{Grace} context is
2063 created. This context acts like a miniature score of its own.  It has
2064 its own time bookkeeping, and you can make notes, beams, slurs
2065 etc. Here we fiddle with a property and make a beam.  The argument of
2066 @code{\grace} is sequential music.
2067
2068 @separate
2069 @example 
2070                 \property Voice.Stem \override #'direction = #-1
2071                 [f,16 g] 
2072                 \property Voice.Stem \revert #'direction
2073 @end example 
2074
2075 Normally, grace notes are always stem up, but in this case, the upper
2076 voice interferes, so we set the stems down here.
2077
2078 As far as relative mode is concerned, the previous note is the
2079 @code{c'''2} of the upper voice, so we have to go an octave down for
2080 the @code{f}.
2081 @separate
2082 @example 
2083
2084   f8 e e2
2085 @} > 
2086 @end example 
2087 This ends the two-part section.
2088 @separate
2089 @example 
2090 \stemBoth
2091 \grace <c,8( e> <)b8. d8.-\trill> <c16 e> |  
2092 @end example
2093 @cindex trill
2094 @cindex stemBoth
2095
2096 @code{\stemBoth} ends the forced stem directions. From here, stems are
2097 positioned as if it were single part music.
2098
2099 The bass has a little hoom-pah melody to demonstrate parts switching
2100 between staves.  Since it is repetitive, we use repeats:
2101 @separate
2102 @example 
2103 hoomPah  =  \repeat unfold 8
2104 @end example
2105 @cindex unfolded @code{\repeat}
2106 The unfolded repeat prints the notes in its argument as if they were
2107 written out in full eight times.
2108 @separate
2109 @example
2110 \notes \transpose c' @{
2111 @end example
2112 @cindex transposing
2113 @cindex relative mode and transposing
2114
2115 Transposing can be done with @code{\transpose}, which takes two arguments.
2116 The first specifies what central C should be transposed to.  The second
2117 is the to-be-transposed music.  As you can see, in this case, the
2118 transposition has no effect, as central C stays at central C.
2119
2120 The purpose of this no-op is circumventing relative mode.  Relative mode
2121 can not be used together with transposition, so @code{\relative} will
2122 leave the contents of @code{\hoomPah} alone.  We can use it without
2123 having to worry about getting the motive in a wrong octave.
2124 @separate
2125 @example 
2126 bassvoices = \notes \relative c' @{
2127 c4 g8. b,16
2128 \autochange Staff \hoomPah 
2129 @end example
2130 @cindex staff switch, automatic
2131 @cindex cross staff voice, automatic
2132 @cindex @code{\autochange}
2133
2134 Voices can switch between staves. The easiest way to get this, is to use
2135 @code{\autochange}. This command looks at the pitch of each note, and if
2136 necessary, will cross to the other staff. For this to work, the two
2137 staves must be called @code{"up"} and @code{"down"}.
2138 @separate
2139 @example
2140         \translator Staff = down
2141 @end example
2142 @cindex staff switch
2143 @cindex cross staff voice
2144 We want the remaining part of this melody on the lower staff, so we do a
2145 manual staff switch here.
2146
2147
2148 @separate
2149 @example 
2150 \context Voice = reallyLow  @{\stemDown g2 ~ | g4 c8 @} > 
2151 @end example
2152 @cindex tie
2153 @cindex @code{~}
2154 After skipping some lines, we see @code{~}.  This mark makes ties.  Note
2155 that ties and slurs are different things.  A tie can only connect two
2156 note heads of the same pitch, whereas a slur can connect many chords
2157 with one curve.
2158
2159 @separate
2160 @example 
2161 \context PianoStaff 
2162 @end example 
2163  A special context is needed to get cross staff beaming right.  This
2164 context is called @code{PianoStaff}.
2165 @separate
2166 @example 
2167 \context Staff = bottom < \time 2/2 \clef bass 
2168 @end example 
2169 The bottom staff must have a different clef.
2170 @separate
2171 @example 
2172 indent = 0.0 
2173 @end example 
2174 To make some more room on the line, the first (in this case the only)
2175 line is not indented.  The line still looks very cramped, but that is due
2176 to the page layout of this document.
2177
2178
2179 @ignore
2180 [TODO:
2181
2182 * font-size, multi-stanza.
2183
2184 * Simple part combining in a Hymn
2185 @end ignore
2186
2187
2188 @node An orchestral score
2189 @section An orchestral score
2190
2191 @menu
2192 * The full score::              
2193 * Extracting an individual part::  
2194 @end menu
2195
2196
2197 Our last two examples show a way to setup the music for an orchestral
2198 score.  When typesetting a piece for several instruments, you'll want to
2199 create a conductor's full score, alongside several individual parts.
2200
2201 LilyPond is well suited for this task.  We will declare the music for
2202 each instrument individually, giving the music of each instrument its
2203 own name.  These pieces of music are then combined in different
2204 @code{\score} blocks to produce different combinations of the score.
2205
2206 This orchestral score example consists of three input files.  In the
2207 first file, @file{os-music.ly}, we define the music for all instruments.
2208 This file will be used both for producing the score and the separate
2209 parts.
2210
2211 If you were to run LilyPond on this file, no printable output would be
2212 produced.
2213
2214 @example
2215 % os-music.ly
2216 \header @{
2217   title = "Zo, goed lieverd?"
2218   subtitle = "How's, this babe?"
2219   composer = "JCN"
2220   opus = "1"
2221   piece = "Laid back"
2222 @}
2223 global = @{
2224   \time 2/4
2225   \skip 2*4 \bar "|."
2226 @}
2227 Key = \notes \key as \major
2228 flautoI = \notes\relative c'' @{
2229   f8 g f g f g f g
2230   bes as bes as bes as bes as
2231 @}
2232 flautoII = \notes\relative c'' @{
2233   as8 bes as bes R1 d4 ~ d
2234 @}
2235 tromboI = \notes\relative c'' @{
2236   c4. c8 c8 c4. es4 r as, r
2237 @}
2238 tromboII = \notes\relative c'' @{
2239   as4. as8 as8 as4. R1*1/2 as4 es'
2240 @}
2241 timpani = \notes\relative c, @{
2242   \times 2/3 @{ f4 f f @}
2243   \times 4/5 @{ as8 as as as as @}
2244   R1
2245 @}
2246 corno = \notes\relative c' @{
2247    bes4 d f, bes d f, bes d
2248 @}
2249 @end example
2250
2251 We will not go through the input line by line, but only indicate and
2252 explain the new elements.
2253
2254
2255 @separate
2256 @example
2257 global = @{
2258   \time 2/4
2259   \skip 2*4 \bar "|.";
2260 @}
2261 @end example
2262
2263 Declare setting to be used globally.  The @code{\skip} command produces
2264 no output, but moves forward in time: in this case, the duration of a
2265 half note (@code{2}), and that four times (@code{*4}).  This brings us
2266 to the end of the piece, and we can set the end bar.
2267
2268 @separate
2269 @example
2270 Key = \notes \key as \major
2271 @end example
2272 Declare the key signature of the piece and assign it to the identifier
2273 @var{Key}.  Later on, we'll use @code{\Key} for all staves except those
2274 for transposing instruments.
2275
2276 @node The full score
2277 @subsection The full score
2278
2279
2280 The second file, @file{os-score.ly} reads the definitions of the first
2281 (@file{os-music.ly}), and defines the @code{\score} block for the full
2282 conductor's score.
2283
2284
2285 @example
2286 % os-score.ly
2287 \include "os-music.ly"
2288 \include "paper13.ly"
2289
2290 #(set! point-and-click line-column-location)
2291 #(define text-flat '((font-relative-size . -2)
2292          (music "accidentals--1")))
2293
2294 \score @{
2295   <
2296     \global
2297     \property Score.BarNumber \override #'padding = #3
2298     \context StaffGroup = woodwind <
2299       \context Staff = flauti <
2300         \property Staff.midiInstrument = #"flute"
2301         \property Staff.instrument = "2 Flauti"
2302         \property Staff.instr = "Fl."
2303         \Key
2304         \context Voice=one @{ \voiceOne \flautoI @}
2305         \context Voice=two @{ \voiceTwo \flautoII @}
2306       >
2307     >
2308     \context StaffGroup = timpani <
2309       \context Staff = timpani <
2310         \property Staff.midiInstrument = #"timpani"
2311         \property Staff.instrument = #'(lines "Timpani" "(C-G)")
2312         \property Staff.instr = #"Timp."
2313         \clef bass
2314         \Key
2315         \timpani
2316       >
2317     >
2318     \context StaffGroup = brass <
2319       \context Staff = trombe <
2320         \property Staff.midiInstrument = #"trumpet"
2321         \property Staff.instrument = #`(lines "2 Trombe" "(C)")
2322         \property Staff.instr = #`(lines "Tbe." "(C)")
2323         \Key
2324         \context Voice=one \partcombine Voice
2325           \context Thread=one \tromboI
2326           \context Thread=two \tromboII
2327       >
2328       \context Staff = corni <
2329         \property Staff.midiInstrument = #"french horn"
2330         \property Staff.instrument = #`(lines "Corno"
2331           (columns "(E" ,text-flat ")"))
2332         \property Staff.instr = #`(lines "Cor."
2333           (columns "(E" ,text-flat ")"))
2334         \property Staff.transposing = #3
2335         \notes \key bes \major
2336         \context Voice=one \corno
2337       >
2338     >
2339   >
2340   \paper @{
2341     indent = 15 * \staffspace
2342     linewidth = 60 * \staffspace
2343     textheight = 90 * \staffspace
2344     \translator@{
2345       \HaraKiriStaffContext
2346     @}
2347   @}
2348   \midi @{
2349     \tempo 4 = 75
2350   @}
2351 @}
2352 @end example
2353
2354 @center @strong{Zo, goed lieverd?}
2355 @sp 1
2356 @center How's, this babe?
2357 @flushright
2358 Opus 1.
2359 @end flushright
2360 @flushleft
2361 @sc{Laid back}
2362 @end flushleft
2363
2364 @lilypondfile{os-score.ly}
2365
2366 @separate
2367 @example
2368 \include "os-music.ly"
2369 @end example
2370 First, we need to include the music definitions we made in
2371 @file{os-music.ly}.
2372
2373 @separate
2374 @example
2375 #(set! point-and-click line-column-location)
2376 @end example
2377 In a large orchestral score like this you're bound to make some small
2378 mistakes, so we enable point and click (See @ref{Point and click})
2379 editing.
2380
2381 @separate
2382 @example
2383 #(define text-flat '((font-relative-size . -2)
2384          (music "accidentals--1")))
2385 @end example
2386
2387 When naming the tuning of the french horn, we'll need a piece of text
2388 with a flat sign.  LilyPond has a mechanism for font selection and
2389 kerning called Scheme markup text (See @ref{Text markup}).  The flat
2390 sign is taken from the music font, and its name is @code{accidentals--1}
2391 (The natural sign is called @code{accidentals-0}).  The default font is
2392 too big for text, so we select a relative size of @code{-2}.
2393
2394 @separate
2395 @example
2396   <
2397     \global
2398 @end example
2399 Of course, all staves are simultaneous and use the same global settings.
2400
2401 @separate
2402 @example
2403     \property Score.BarNumber \override #'padding = #3
2404 @end example
2405 LilyPond prints bar numbers at the start of each line, but
2406 unfortunately, they end up a bit too close to the staff in this example.
2407 A bar number internally is a Grob called @var{BarNumber}.  BarNumber
2408 Grobs can be manipulated through their @var{side-position-interface}.  One
2409 of the properties of a @var{side-position-interface} that can be tweaked
2410 is the @var{padding}: the amount of extra space that is put between this
2411 Grob and other Grobs.  We set the padding to three staff spaces.
2412
2413 You can find information on all these kind of properties in LilyPond's
2414 automatically generated documentation in
2415 @ifnottex
2416 @ref{ (lilypond-internals)lilypond-internals, LilyPond Internals}.
2417 @end ifnottex
2418 @iftex
2419 the online documentation.
2420 @end iftex
2421
2422 @separate
2423 @example
2424     \context StaffGroup = woodwind <
2425       \context Staff = flauti <
2426 @end example
2427 A new notation context: the @code{StaffGroup}.  @code{StaffGroup} can
2428 hold one or more @code{Staff}'s, and will print a big bracket at the
2429 left of the score.  Start a new staff group for the woodwind section
2430 (just the flutes in this case).  Immediately after that, we start the
2431 staff for the two flutes, that also play simultaneously.
2432
2433 @separate
2434 @example
2435         \property Staff.midiInstrument = #"flute"
2436 @end example
2437 Specify the instrument for MIDI output (see @ref{MIDI instrument
2438 names}).
2439
2440 @separate
2441 @example
2442         \property Staff.instrument = "2 Flauti"
2443         \property Staff.instr = "Fl."
2444 @end example
2445 And define the instrument names to be printed in the margin,
2446 @code{instrument} for the first line of the score, @code{instr} for the
2447 rest of the score.
2448
2449 @separate
2450 @example
2451         \Key
2452 @end example
2453 The flutes play in the default key.
2454
2455 @separate
2456 @example
2457         \context Voice=one @{ \voiceOne \flautoI @}
2458         \context Voice=two @{ \voiceTwo \flautoII @}
2459 @end example
2460 Last come the actual flute parts.  Remember that we're still in
2461 simultaneous mode.  We name both voices differently, so that LilyPond
2462 will actually create two Voice contexts.  The flute parts are simple, so
2463 we specify manually which voice is which: @code{\voiceOne} forces the
2464 direction of stems, beams, slurs and ties up, @code{\voiceTwo} sets
2465 directions down.
2466
2467 @separate
2468 @example
2469       >
2470     >
2471 @end example
2472 Close the flutes staff and woodwind staff group.
2473
2474 @separate
2475 @example
2476         \property Staff.instrument = #'(lines "Timpani" "(C-G)")
2477 @end example
2478 The timpani staff only shows a new piece of scheme markup, it sets two
2479 lines of text.
2480
2481 @separate
2482 @example
2483         \context Voice=one \partcombine Voice
2484           \context Thread=one \tromboI
2485           \context Thread=two \tromboII
2486 @end example
2487 You have seen the notation contexts Staff and Voice, but here's a new
2488 one: Thread.  One or more Threads can be part of a Voice.  The Thread
2489 takes care of note heads and rests, the Voice combine note heads onto a
2490 stem.
2491
2492 For the trumpets we use the automatic part combiner (see @ref{Automatic
2493 part combining}) to combine the two simultaneous trumpet parts onto the
2494 trumpet staff.  Each trumpet gets its own Thread context, which must be
2495 named @code{one} and @code{two}).  The part combiner makes these two
2496 threads share a Voice when they're similar, and splits the threads up
2497 when they're different.
2498
2499 @separate
2500 @example
2501         \property Staff.instrument = #`(lines "Corno"
2502           (columns "(E" ,text-flat ")"))
2503 @end example
2504 The french horn has the most complex scheme markup name, made up of two
2505 lines of text.  The second line has three elements (columns), the @code{(E},
2506 the flat sign @code{text-flat} that we defined before and a final @code{")"}.
2507 Note that we use a backquote instead of an ordinary quote at the
2508 beginning of the Scheme expression to be able to access the
2509 @code{text-flat} identifier, `unquoting' it with a @code{,}.
2510
2511 @separate
2512 @example
2513         \property Staff.transposing = #3
2514 @end example
2515 The french horn is to be tuned in E-flat, so we tell the MIDI backend to
2516 transpose this staff by three steps.
2517
2518 Note how we can choose different tuning for entering, printing and
2519 playing, using @code{\transpose} and the MIDI Staff property
2520 @var{transposing}.
2521
2522 @separate
2523 @example
2524         \notes \key bes \major
2525 @end example
2526 Therefore, it has a different key.
2527
2528 @separate
2529 @example
2530     indent = 15 * \staffspace
2531     linewidth = 60 * \staffspace
2532 @end example
2533 We specify a big indent for the first line and a small linewidth for this
2534 tutorial.
2535
2536 @separate
2537
2538 Usually, LilyPond's predefined setup of notation contexts (Thread,
2539 Voice, Staff, Staffgroup, Score) is just fine.  But in this case, we
2540 want a different type of Staff context.
2541
2542 @example
2543     \translator@{
2544       \HaraKiriStaffContext
2545     @}
2546 @end example
2547
2548 In orchestral scores, it often happens that one instrument has only
2549 rests during one line of the score.  The @code{HaraKiriStaffContext} can
2550 be used as a regular @code{StaffContext} drop-in and will take care of
2551 the automatic removing of empty staves.
2552
2553 @node Extracting an individual part
2554 @subsection Extracting an individual part
2555
2556 The third file, @file{os-flute-2.ly} also reads the definitions of the
2557 first (@file{os-music.ly}), and defines the @code{\score} block for the
2558 second flute part.
2559
2560 @example
2561 \include "os-music.ly"
2562 \include "paper16.ly"
2563
2564 \score @{
2565   \context Staff <
2566     \property Score.skipBars = ##t
2567     \property Staff.midiInstrument = #"flute"
2568     \global
2569     \Key
2570     \flautoII
2571   >
2572   \header @{
2573     instrument = "Flauto II"
2574   @}
2575   \paper @{
2576     linewidth = 80 * \staffspace
2577     textheight = 200 * \staffspace
2578   @}
2579   \midi @{
2580     \tempo 4 = 75
2581   @}
2582 @}
2583 @end example
2584
2585 @center @strong{Zo, goed lieverd?}
2586 @sp 1
2587 @center How's, this babe?
2588 @center @emph{Flauto II}
2589 @flushright
2590 Opus 1.
2591 @end flushright
2592 @flushleft
2593 @sc{Laid back}
2594 @end flushleft
2595 @lilypondfile{os-flute-2.ly}
2596
2597
2598 Because we separated the music definitions from the @code{\score}
2599 instantiations, we can easily define a second score with the music of
2600 the second flute.  This then is the part for the second flute player.
2601 Of course, we make separate parts for all individual instruments.
2602
2603 @separate
2604 @example
2605     \flautoII
2606 @end example
2607 In this individual part the second flute has a whole staff for itself,
2608 so we don't want to force stem or tie directions.
2609
2610 @separate
2611 @example
2612   \header @{
2613     instrument = "Flauto II"
2614   @}
2615 @end example
2616 The @code{\header} definitions were also read from @file{os-music.ly},
2617 but we need to set the instrument for this particular score.
2618
2619 @separate
2620 @example
2621     \property Score.skipBars = ##t
2622 @end example
2623 In the conductor's full score, all bars with rests are printed, but for
2624 the individual parts, we want to contract pieces of consecutive empty
2625 bars.  LilyPond will do this if Score's @var{skipBars} property to
2626 true. 
2627
2628
2629 @node Other ways to run LilyPond
2630 @section Other ways to run LilyPond
2631
2632 Until now, you have been using @file{ly2dvi} to invoke LilyPond.
2633 There are three other routes.  Firstly, there is a script called
2634 @code{lilypond-book}, that allows you to freely mix LilyPond input with
2635 Texinfo or \LaTeX input. For example, this manual was written using
2636 @code{lilypond-book}. It is discussed below and in @ref{lilypond-book}.
2637
2638
2639 Secondly, you can generate PostScript directly. This is useful if you
2640 can not or do not want to run @TeX{} on your system.  To obtain direct
2641 PostScript output, invoke LilyPond as follows:
2642 @cindex PostScript output
2643 @example
2644 lilypond -f ps test.ly
2645 @end example
2646 You have to set some environment variables to view or print this output. 
2647 More information can be found in @ref{Invoking LilyPond}. Since the
2648 direct Postscript generation has some problems, it is recommended
2649 to use @file{ly2dvi}.
2650
2651
2652 Thirdly, if you want to do special things with your output, you can run
2653 invoke LilyPond directly:
2654 @example
2655 lilypond test.ly
2656 @end example
2657 to produce plain @TeX{} output.  Note that La@TeX{} will not work on the
2658 resulting @file{test.tex}.  You must run plain @TeX{} on it.
2659
2660 @cindex @TeX{}
2661
2662
2663
2664
2665
2666 @node Integrating text and music
2667 @section Integrating text and music
2668
2669 Sometimes, you might want to use music examples in a text that you are
2670 writing. For example, if you are writing a musicological treatise, a
2671 songbook, or (like us) the LilyPond manual.  You can make such texts by
2672 hand, simply by importing a PostScript figure into your wordprocessor.
2673 However, there is a also an automated procedure:
2674
2675 If you use La@TeX{} or texinfo, you can mix text and LilyPond code. A
2676 script called @code{lilypond-book} will extract the music fragments, run
2677 LilyPond on them, and put back the resulting notation.  lilypond-book is
2678 described fully in @ref{lilypond-book}, but here we show a small
2679 example. Since the example also contains explanatory text, we won't
2680 comment on the contents.
2681
2682 @example
2683 \documentclass[a4paper]@{article@}
2684 \begin@{document@}
2685
2686 In a lilypond-book document, you can freely mix music and text. For
2687 example:
2688 \begin@{lilypond@}
2689   \score @{ \notes \relative c' @{
2690      c2 g'2 \times 2/3 @{ f8 e d @} c'2 g4
2691   @} @}
2692 \end@{lilypond@}
2693 Notice that the music line length matches the margin settings of the
2694 document.
2695
2696 If you have no \verb+\score+ block in the fragment,
2697 \texttt@{lilypond-book@} will supply one:
2698
2699 \begin@{lilypond@}
2700   c'4
2701 \end@{lilypond@}
2702
2703 In the example you see here, a number of things happened: a
2704 \verb+\score+ block was added, and the line width was set to natural
2705 length. You can specify many more options using  \LaTeX style options
2706 in brackets:
2707
2708 \begin[verbatim,11pt,singleline,
2709   fragment,relative,intertext="hi there!"]@{lilypond@}
2710   c'4 f bes es
2711 \end@{lilypond@}
2712
2713 \texttt@{verbatim@} also shows the LilyPond code, \texttt@{11pt@} selects
2714 the default music size, \texttt@{fragment@} adds a score block,
2715 \texttt@{relative@} uses relative mode for the fragment, and
2716 \texttt@{intertext@} specifies what to print between the
2717 \texttt@{verbatim@} code and the music.
2718
2719 If you include large examples into the text, it may be more convenient
2720 to put the example in a separate file:
2721
2722 \lilypondfile[printfilename]@{sammartini.ly@}
2723
2724 The \texttt@{printfilename@} option adds the file name to the output.
2725
2726 \end@{document@}
2727 @end example
2728
2729 Under Unix, you can view the results as follows.
2730 @example
2731 $ cd input/tutorial
2732 $ lilypond-book --outdir=out/ lilbook.tex
2733 lilypond-book (GNU LilyPond) 1.3.146
2734 Reading `/home/hanwen/usr/src/lilypond-1.3.146/input/tutorial/lilbook.tex'
2735 Reading
2736 `/home/hanwen/usr/src/lilypond-1.3.146/input/tutorial/sammartini.ly'
2737 @var{lots of stuff deleted}
2738 Writing `out/lilbook.latex'
2739 $ cd out
2740 $ latex lilbook.latex
2741 @var{lots of stuff deleted}
2742 $ xdvi lilbook 
2743 @end example
2744
2745 Notice the @code{outdir} option to lilypond-book. Running lilypond-book
2746 and running latex creates a lot of temporary files, and you wouldn't want
2747 those to clutter up your working directory. Hence, we have them created
2748 in a separate subdirectory.
2749
2750 The result more or less looks like this: 
2751
2752 @separate
2753
2754 In a lilypond-book document, you can freely mix music and text. For
2755 example:
2756 @lilypond
2757   \score { \notes \relative c' {
2758      c2 g'2 \times 2/3 { f8 e d } c'2 g4
2759   } }
2760 @end lilypond
2761 Notice that the music line length matches the margin settings of the
2762 document.
2763
2764 If you have no @code{\score} block in the fragment,
2765 @code{lilypond-book} will supply one:
2766
2767 @lilypond
2768   c'4
2769 @end lilypond
2770
2771 In the example you see here, a number of things happened: a
2772 @code{\score} block was added, and the line width was set to natural
2773 length. You can specify many more options using  La@TeX{} style options
2774 in brackets:
2775
2776 @lilypond[verbatim,11pt,singleline,
2777   fragment,relative,intertext="hi there!"]
2778   c'4 f bes es
2779 @end lilypond
2780
2781 @code{verbatim} also shows the LilyPond code, @code{11pt} selects
2782 the default music size, @code{fragment} adds a score block,
2783 @code{relative} uses relative mode for the fragment, and
2784 @code{intertext} specifies what to print between the
2785 @code{verbatim} code and the music.
2786
2787 If you include large examples into the text, it may be more convenient
2788 to put the example in a separate file:
2789
2790 @lilypondfile[printfilename]{sammartini.ly}
2791
2792 The @code{printfilename} option adds the file name to the output.
2793 @node  End of tutorial
2794 @section End of tutorial
2795          
2796 That's all folks.  From here, you can either try fiddling with input
2797 files, or you can read the reference manual.  You can find more example
2798 files in @file{input} and @file{input/test}.  You can also look at some
2799 real music.  The website @uref{http://www.mutopiaproject.org} has many
2800 examples of real music typeset by LilyPond.
2801
2802
2803
2804 @ignore
2805
2806 [TODO
2807
2808 this should be on mutopia website.
2809
2810 ]
2811
2812
2813 @c waar deze info?  is uiteindelijk wel handig, schat ik.
2814 [TODO: cut blabla]
2815
2816 If you have a big music project, or just a lot of LilyPond input files,
2817 all generated output from LilyPond, @TeX{} and metafont will clutter
2818 your working directory.  LilyPond comes with a one-size-fits-all
2819 pre-cooked makefile that helps you manage producing output.  It will
2820 produce all output in the directory @file{out} , generate and track
2821 dependencies. Also, it helps in preparing your submission to @ref{Mutopia
2822 project}.
2823
2824 @file{make/ly.make}
2825 @example
2826 mkdir my-project
2827 cd my-project
2828 cp /usr/share/lilypond/make/ly.make GNUmakefile
2829 cp /usr/share/doc/lilypond/examples/input/tutorial/minuet.ly .
2830 make minuet
2831 [..]
2832 Generated out/minuet.ps for target minuet.
2833 @end example
2834
2835 Type @samp{make help} to see possible targets.
2836
2837 [TODO]
2838 @file{/usr/share/lilypond/doc/lilypond/examples/input/mutopia-header.ly}
2839
2840
2841
2842
2843
2844 [TODO: rewrite completely.]
2845
2846 @menu
2847 * Songs with additional verses::  
2848 @end menu
2849
2850 @end ignore
2851