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