]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/tutorial.itely
*** empty log message ***
[lilypond.git] / Documentation / user / tutorial.itely
1 @c -*-texinfo-*-
2
3 @c TODO:
4 @c   * LilyPond Lilypond lilypond (sometimes: the program)
5 @c   * more details about running lilypond; error messages,
6 @c     compiling/viewing (emacs?)
7 @c   * where to go from  First steps+More basics?
8
9 @node Tutorial
10 @chapter Tutorial
11
12 @html
13 <!--- @@WEB-TITLE@@=Tutorial --->
14 @end html
15
16 @menu
17 * First steps::                 Music language of LilyPond
18 * Running LilyPond::            Printing music
19 * More basics::                 
20 * Printing lyrics::             
21 * A lead sheet::                
22 * Listening to output::         
23 * Titling ::                    
24 * Single staff polyphony  ::    
25 * Piano staffs::                
26 * Organising larger pieces::    
27 * Fine tuning a piece::         
28 * An orchestral score::         Conductor's score and individual parts
29 * Integrating text and music::  Integrating text and music
30 @end menu
31
32 Operating is done through text files: To print a piece of music, you
33 enter the music in a file.  When LilyPond is run (normally using the
34 program @code{ly2dvi}) on that file, another file containing formatted
35 sheet music, is produced. That file may be printed or viewed.
36
37 This tutorial starts with a small introduction to the LilyPond music
38 language.  After this first contact, we will show which commands to
39 run to produce printed output, so you should then be able to create
40 your first sheets of music.  The tutorial continues with more and more
41 complex examples.
42
43
44 @node First steps
45 @section First steps
46
47 We start off by showing how very simple music is entered in LilyPond:
48 you get a note simply by typing its @htmlref{note name}, from @samp{a}
49 through @samp{g}.  So if you enter
50
51 @example
52 c d e f g a b
53 @end example
54
55 @noindent
56 then the result looks like this:
57
58 @c ?
59 @c \transpose c c' { c d e f g a b }
60 @c @lily pond[notime]
61 @c \property Score.timing = ##f
62 @lilypond[notime, relative=2]
63 c d e f g a b
64 @end lilypond
65
66 We will continue with this format: First we show a snippet of input,
67 then the resulting output.
68
69 The length of a note is specified by adding a number, @samp{1} for a
70 @rglos{whole note}, @samp{2} for a @rglos{half note}, and so on:
71
72 @example
73 a1 a2 a4 a16 a32
74 @end example
75
76 @lilypond[notime]
77 \property Score.timing = ##f
78 \property Staff.autoBeaming = ##f
79 \transpose c c' { a1 a2 a4 a16 a32 s16_" " }
80 @end lilypond
81
82 If you do not specify a @rglos{duration}, the previous one is used: 
83
84 @example
85 a4 a a2 a
86 @end example
87
88 @lilypond[notime]
89 \property Score.timing = ##f
90 \transpose c c' { a a a2 a s16_" " }
91 @end lilypond
92
93 A @rglos{sharp} (@texisharp{}) is made by adding @samp{is}, a
94 @rglos{flat} (@texiflat{}) by adding @samp{es}.  As you might expect,
95 a @rglos{double sharp} or @rglos{double flat} is made by adding
96 @samp{isis} or @samp{eses}:@footnote{This syntax derived from note
97 naming conventions in Nordic and Germanic languages, like German and
98 Dutch}
99
100 @example
101 cis1 ees fisis aeses
102 @end example
103
104 @lilypond[notime]
105 \property Score.timing = ##f
106 \transpose c c' { cis1 ees fisis aeses s16_" " }
107 @end lilypond
108
109 Add a dot @samp{.} after the duration to get a @rglos{dotted note}:
110
111 @example
112 a2. a4 a8. a16
113 @end example
114
115 @lilypond[notime]
116 \property Score.timing = ##f
117 \transpose c c' { a2. a4 a8. a16 s16_" " }
118 @end lilypond
119
120 Entering pitches and durations is fully explained in @ref{Pitches} and
121 @ref{Durations}.
122
123
124 The @rglos{meter} (or @rglos{time signature}) can be set with the
125 @code{\time} command:
126
127 @example
128 \time 3/4
129 \time 6/8
130 \time 4/4
131 @end example
132
133 @c a clef here may lead to confusion
134 @lilypond
135 \property Staff.Clef \set #'transparent = ##t 
136 \time 3/4
137 s4_" "
138 \time 6/8
139 s4_" "
140 \time 4/4
141 s16_" "
142 @end lilypond
143
144 Time signatures and other timing commands are described in @ref{Time
145 signature}.
146
147
148 The @rglos{clef} can be set using the @code{\clef} command:
149
150 @c what is more common name treble or violin?
151 @c in Dutch, its violin.
152 @c in English its definitely treble.
153 @example
154 \clef treble
155 \clef bass
156 \clef alto
157 \clef tenor
158 @end example
159
160 @lilypond[notime]
161 \property Score.timing = ##f
162 \clef violin
163 s4_" "
164 \clef bass
165 s4_" "
166 \clef alto
167 s4_" "
168 \clef tenor
169 s16_" "
170 @end lilypond
171
172 Clefs are fully explained in @ref{Clef}.
173
174
175 When you enter these commands in a file, you must to enclose them in
176 @code{\notes @{@dots{}@}}.  This lets LilyPond know that music (as
177 opposed to @rglos{lyrics}) follows:
178
179 @example
180 \notes @{
181   \time 3/4
182   \clef bass
183   c2 e4 g2.
184   f4 e d c2.
185 @}
186 @end example
187 Now the piece of music is almost ready to be printed.  The final step is to
188 combine the music with a printing command.
189
190 The printing command is the so-called @code{\paper} block.  Later on
191 you will see that the @code{\paper} block is used to customize
192 printing specifics.  The music and the @code{\paper} block are combined by
193 enclosing them in @code{\score @{ ... @}}.  This is what a full source file looks like:
194
195 @example
196 \score @{
197   \notes @{
198     \time 3/4
199     \clef bass
200     c2 e4 g2.
201     f4 e d c2.
202   @}
203   \paper @{ @}
204 @}
205 @end example
206
207 @lilypond[noindent]
208 \score {
209   \notes {
210      \time 3/4
211      \clef bass
212      c2 e4 g2.
213      f4 e d c2.
214   }
215   \paper {
216     linewidth = 55 * \staffspace
217   }
218 }
219 @end lilypond
220
221
222 @node Running LilyPond
223 @section Running LilyPond
224
225 In the last section we explained what kind of things you could enter
226 in a LilyPond file.  In this section we explain what commands to run
227 and how to view or print the output.  If you have not used LilyPond
228 before, want to test your setup, or want to run an example file
229 yourself, read this section.  The instructions that follow are for
230 Unix-like systems.  Some additional instructions for MS Windows are given
231 at the end of this section.
232
233 Begin by opening a terminal window and starting a text editor.
234 For example, you could open an xterm and execute @code{joe}.  In your
235 text editor, enter the following input and save the file as
236 @file{test.ly}:
237
238 @quotation
239 @example
240 \score @{
241   \notes @{ c'4 e' g' @}
242 @} 
243 @end example
244 @end quotation
245
246 @cindex ly2dvi
247
248 @c now this is weird, running ly2dvi to run LilyPond
249 @c (therefore name change proposal) 
250
251 LilyPond is the program that computes the sheet music. All other
252 things, such as adding titles, page breaking and other page layout,
253 are done by a small wrapper program called
254 @code{ly2dvi}. @code{ly2dvi} calls LilyPond to render the music, and
255 then adds the titling and page layout instructions.  To process
256 @file{test.ly} with @code{ly2dvi}, proceed as follows:
257
258 @quotation
259 @example
260 ly2dvi -p test.ly
261 @end example
262 @end quotation
263
264 You will see the following on your screen:
265
266 @quotation
267 @example
268 GNU LilyPond 1.7.16
269 Now processing: `/home/fred/ly/test.ly'
270 Parsing...
271 Interpreting music...[1]
272  @emph{ ... more interesting stuff ... }
273 PDF output to `test.pdf'...
274 DVI output to `test.dvi'...
275 @end example
276 @end quotation
277 @cindex DVI file
278 @cindex Viewing music
279 @cindex xdvi
280
281 The results of the ly2dvi run are two files, @file{test.dvi} and
282 @file{test.pdf}.  The PDF file (@file{test.pdf}) is the one you can
283 print or view.  For example, viewing PDF can be done with ghostview.
284 If a version of ghostview is installed on your system, one of these
285 commands will produce a window with some music notation on your
286 screen:
287 @c eeek
288 @quotation
289 @example
290   gv test.pdf
291   ghostview test.pdf
292   ggv test.pdf
293   kghostview test.pdf
294   xpdf test.pdf
295   gpdf test.pdf
296 @end example
297 @end quotation
298 If the music on your screen looks good, you can print it by clicking
299 File/Print inside ghostview.
300
301 The DVI file (@file{test.dvi}) contains the same sheet music in a
302 different format. DVI files are more easily processed by the computer,
303 so viewing them usually is quicker.  You can run @code{xdvi test.dvi}
304 @c KDVI doesn't grok the PS specials.
305 @c or
306 @c @code{kdvi test.dvi}
307 @c
308 to view the DVI file. In Xdvi, the mouse buttons
309 activate magnifying glasses.  Unfortunately, variable symbols (such as
310 beams and slurs) are not displayed in the magnifying glasses.
311
312
313 @cindex Ghostscript
314 @cindex @code{lpr}
315 @cindex Printing output
316 @cindex PostScript
317 @cindex PDF
318
319 If you are familiar with @TeX{}, be warned: do not use other DVI
320 drivers like @code{dvilj}.  LilyPond DVI use embedded PostScript code
321 and will not render correctly with other DVI drivers besides
322 @code{dvips}.
323
324 @cindex dvips
325 @cindex dvilj
326 @cindex DVI driver
327
328
329 Various commands for formatting and printing music are detailed in
330 @ref{Invoking LilyPond}.
331
332
333 @unnumberedsubsec Windows users
334
335 Windows users can start the terminal by clicking on the LilyPond or
336 Cygwin icon.  Any text editor (such as NotePad, Emacs or Vim) may be
337 used to edit the LilyPond file.  When Cygwin's @code{XFree86} X11
338 window system is installed along with @code{tetex-x11} and
339 @code{ghostscript-x11} packages, then the @code{dvi} output may be
340 viewed with @code{xdvi test.dvi} as described above.  If you have
341 installed a PostScript/PDF viewer, such as @code{GSView} from
342 @uref{http://www.cs.wisc.edu/~ghost}, viewing the PDF file can be done
343 with:
344 @quotation
345 @example
346 @code{gsview32 test.pdf}
347 @end example
348 @end quotation
349 Printing may be done by executing
350 @quotation
351 @example
352 @code{gsview32 /s test.pdf}
353 @end example
354 @end quotation
355
356
357 @node More basics
358 @section More basics 
359
360 We continue with the introduction of more musical constructs.  Normal
361 rests are entered just like notes with the name ``@code{r}'':
362
363 @quotation
364 @example
365 r2 r4 r8 r16
366 @end example
367
368 @lilypond[fragment]
369 \property Score.timing = ##f
370 \property Staff.Clef = \turnOff
371 \property Staff.TimeSignature = \turnOff
372 r2 r4 r8 r16
373 s16_" "
374 @end lilypond
375 @end quotation
376 @separate
377
378 Rests are described in full detail in @ref{Rests}. 
379
380
381 @c Tim wants to move this quotes example just before the: quotes-do not-work
382 @c score, but we'd need to remove quotes from the other two (key and
383 @c tie) examples...
384
385 @c better to have this just before the `octaves are bad' snipped
386 @c but we'd need to remove the ', from \key and tie 
387 To raise a note by an octave, add a high quote @code{'} (apostrophe) to
388 the note name, to lower a note one octave, add a ``low quote'' @code{,}
389 (a comma).  Middle C is @code{c'}:
390
391 @quotation
392 @example
393 c'4 c'' c''' \clef bass c c,
394 @end example
395
396 @lilypond[fragment]
397 \property Score.timing = ##f
398 \property Staff.TimeSignature = \turnOff
399 c'4 c'' c''' \clef bass c c,
400 @end lilypond
401 @end quotation
402 @separate
403
404 A tie is created by adding a tilde ``@code{~}'' to the first note
405 being tied.
406 @quotation
407 @lilypond[fragment,verbatim]
408 g'4-~ g' a'2-~ a'4
409 @end lilypond
410 @end quotation
411 @separate
412 A tie is different from a slur. A tie simply makes the first note
413 sound longer, and can only be used on pairs of notes with the same
414 pitch. Slurs indicate the articulations of notes, and can be used on
415 larger groups of notes. Slurs and ties are also nested in practice:
416 @lilypond[fragment, relative=1]
417 c2-~-( c8 fis fis4 ~ fis2 g2-)
418 @end lilypond
419
420 The notation manual discusses ties in @ref{Ties}.
421
422 The key signature is set with the command ``@code{\key}'', followed by
423 a pitch and  @code{\major} or @code{\minor}:
424 @quotation
425 @example
426 \key d \major
427 g'1
428 \key c \minor
429 g'
430 @end example
431
432 @lilypond[fragment]
433 \property Staff.TimeSignature = \turnOff
434 \key d \major
435 g'1
436 \key c \minor
437 g'
438 @end lilypond
439 @end quotation
440
441
442
443 @c bit on the long/complex/scary taste
444 @c cheating a bit: two lines makes for a friendlier look
445 This example shows notes, ties, octave marks, and rests in action.
446
447 @quotation
448 @example
449 \score @{
450   \notes @{
451     \time 4/4
452     \key d \minor
453     \clef violin
454     r4 r8 d''8 cis''4 e''
455     d''8 a'4.-~ a' b'8
456     cis''4 cis''8 cis'' bis'4 d''8 cis''-~
457     cis''2 r2
458   @}
459   \paper @{ @}
460 @}
461 @end example
462
463 @lilypond
464 \score {
465   \notes {
466     \time 4/4
467     \clef violin
468     \key d \minor
469     r4 r8 d''8 cis''4 e''
470     d''8 a'4.-~ a' b'8
471     cis''4 cis''8 cis'' bis'4 d''8 cis''-~
472     cis''2 r2
473   }
474   \paper { linewidth = 50*\staffspace }
475 }
476 @end lilypond
477 @end quotation
478
479 @c accidentals...
480 There are some interesting points to note in this example.
481 Accidentals (sharps and flats) do not have to be marked explicitly:
482 you just enter the note name, and an accidental is printed
483 automatically, only when necessary.  Bar lines and beams are drawn
484 automatically.  Line breaks are calculated automatically; it does not
485 matter where the lines breaks are in the source file. Finally, the
486 order of time, key and clef changes is not relevant: in the printout,
487 these are ordered using standard notation conventions.
488
489 The example also indicates that a piece of music written in a high
490 register needs lots of quotes.  This makes the input less readable,
491 and is also a potential source of errors.
492
493 The solution is to use ``relative octave'' mode.  In practice, this is
494 the most convenient way to copy existing music.  To use relative mode,
495 add @code{\relative} before the piece of music.  You must also give a
496 note from which relative starts, in this case @code{c''}.  If you do
497 not use octavation quotes (i.e. do not add ' or , after a note),
498 relative mode chooses the note that is closest to the previous one.
499 @c do not use commas or quotes in this sentence
500 For example: @code{c f} goes up; @code{c g} goes down:
501
502 @quotation
503 @example
504 \relative c'' @{
505   c f c g c
506 @}
507 @end example
508
509 @lilypond[fragment]
510 \property Score.timing = ##f
511 \property Staff.TimeSignature = \turnOff
512 \relative c'' {
513   c f c g c
514 }
515 @end lilypond
516 @end quotation
517 @separate
518
519
520 Since most music has small intervals, in relative mode pieces can be
521 written almost without using octavation quotes.
522
523 @c needed better, maybe even redundant explanation
524 @c   added another example below.
525 @c grappig: Pa vond het heel logies, en slim toen-i eenmaal begreep.
526 @c in eerste instantie drong het `relative' niet door zonder extra uitleg.
527 Larger intervals are made by adding octavation quotes.  Quotes or
528 commas do not determine the absolute height of a note; the height of a
529 note is relative to the previous one.
530 @c do not use commas or quotes in this sentence
531 For example: @code{c f,} goes down; @code{f, f} are both the same;
532 @code{c' c} are the same; and @code{c g'} goes up:
533
534 @quotation
535 @example
536 \relative c'' @{
537   c f, f c' c g' c,
538 @}
539 @end example
540
541 @lilypond[fragment]
542 \property Score.timing = ##f
543 \property Staff.TimeSignature = \turnOff
544 \relative c'' {
545   c f, f c' c g' c,
546 }
547 @end lilypond
548 @end quotation
549 @separate
550
551
552 Here is an example of the difference between relative mode and
553 ``normal'' (non-relative) mode:
554
555 @quotation
556 @example
557 \relative a @{
558 \clef bass
559   a d a e d c' d'
560 @}
561 @end example
562
563 @lilypond[fragment]
564 \property Score.timing = ##f
565 \property Staff.TimeSignature = \turnOff
566 \relative a {
567 \clef bass
568   a d a e d c' d'
569 }
570 @end lilypond
571 @end quotation
572 @separate
573
574 @quotation
575 @example
576 \clef bass
577   a d a e d c' d'
578 @end example
579
580 @lilypond[fragment]
581 \property Score.timing = ##f
582 \property Staff.TimeSignature = \turnOff
583 \clef bass
584   a d a e d c' d'
585 @end lilypond
586 @end quotation
587 @separate
588
589 A slur is drawn across many notes, and indicates bound articulation
590 (legato).  The starting note and ending note are marked with a
591 ``@code{(}'' and a ``@code{)}'' respectively:
592
593 @quotation
594 @lilypond[fragment,relative 1, verbatim]
595 d4-( c16-)-( cis d e c cis d e-)-( d4-)
596 @end lilypond
597 @end quotation
598 @separate
599
600 If you need two slurs at the same time (one for articulation, one for
601 phrasing), you can also make a phrasing slur with @code{\(} and
602 @code{\)}.
603
604 @c lousy example
605 @c ? --hwn
606 @c fragment of 1st hrn in Adams' The Chairman Dances, with creative
607 @c chromatic thing pasted in front.  (admittedly the original does not
608 @c have a phrasing slur. The problem is that we do not want the slur
609 @c and the Phrasing slur to collide. We are trying to make a good
610 @c impression here.
611
612 @quotation
613 @lilypond[fragment,relative 1, verbatim]
614 a8-(-\( ais b  c-) cis2 b'2 a4 cis,  c-\)
615 @end lilypond
616 @end quotation
617 @separate
618
619 Beams are drawn automatically, but if you do not like the choices, you
620 can enter beams by hand. Mark the first note to be beamed with
621 @code{[} and the last one with @code{]}:
622 @quotation
623 @lilypond[fragment,relative 1, verbatim]
624 a8-[ ais-] d-[ es r d-]
625 @end lilypond
626 @end quotation
627 @separate
628
629 To print more than one staff, each piece of music that makes up a staff
630 is marked by adding @code{\context Staff} before it.  These
631 @code{Staff}'s are then grouped inside @code{<} and @code{>}, as is
632 demonstrated here:
633
634 @quotation
635 @lilypond[fragment,verbatim]
636 <
637   \context Staff = staffA { \clef violin c'' }
638   \context Staff = staffB { \clef bass c }
639 >
640 @end lilypond
641 @end quotation
642
643 In this example, @code{staffA} and @code{staffB} are names that are
644 given to the staves.  It does not matter what names you give, as long
645 as each staff has a different name. If you give them the same name,
646 they are assumed to belong on the same staff, and will be printed like
647 that.
648
649 @separate
650
651 We can now typeset a melody with two staves:
652
653 @quotation
654 @lilypond[verbatim,singleline]
655 \score {
656   \notes 
657   < \context Staff = staffA {
658       \time 3/4
659       \clef violin
660       \relative c'' {
661         e2-( d4 c2 b4 a8-[ a-]
662         b-[ b-] g-[ g-] a2.-) }  
663     }
664     \context Staff = staffB {
665        \clef bass
666        c2 e4  g2.
667        f4 e d c2.
668     }
669   >
670   \paper {} 
671 }
672 @end lilypond
673 @end quotation
674
675 Notice that the time signature is specified in one melody staff only
676 (the top staff), but is printed on both.  LilyPond knows that the time
677 signature should be the same for all staves.
678
679 @separate
680
681 Common accents can be added to a note using @code{-.}, @code{--}, @code{->}:
682 @quotation
683 @lilypond[verbatim,relative 1]
684 c-. c-- c->
685 @end lilypond
686 @end quotation
687 @separate
688
689 Similarly, fingering indications can be added to a note using @code{-}
690 and the digit to be printed.
691 @lilypond[verbatim,relative 1]
692   c-3 e-5 b-2 a-1
693 @end lilypond
694
695
696   
697
698
699 Dynamic signs are made by adding the markings to the note:
700 @quotation
701 @lilypond[verbatim,relative 1]
702 c-\ff c-\mf
703 @end lilypond
704 @end quotation
705 @separate
706
707 Crescendi and decrescendi are started with the commands @code{\<} and
708 @code{\>}. The command @code{\!} finishes a crescendo on the note it
709 is attached to.
710 @quotation
711 @lilypond[verbatim,relative 1]
712 c2-\<  c2-\!-\ff  c2-\>  c2-\!
713 @end lilypond
714 @end quotation
715 @separate
716
717 Chords can be made by
718 surrounding pitches with @code{<<} and @code{>}>:
719 @quotation
720 @lilypond[relative 0, fragment,verbatim]
721 r4 <<c e g>>4 <<c f a>>8
722 @end lilypond
723 @end quotation
724 @separate
725
726
727 You can combine beams and ties with chords.  Beam and tie markings
728 must be placed outside the chord markers:
729 @quotation
730 @lilypond[relative 0, fragment,verbatim]
731 r4 <<c e g>>8-[ <<c f a>>-]-~ <<c f a>>
732 @end lilypond
733 @end quotation
734
735 @quotation
736 @example
737 r4 <<c e g>>8-\>-( <<c e g>> <<c e g>>  <<c f a>>8-\!-)
738 @end example
739 @lilypond[relative 0, fragment]
740 \slurUp
741 r4 <<c e g>>8-\>-( <<c e g>> <<c e g>>  <<c f a>>8-\!-)
742 @end lilypond
743 @end quotation
744 @separate
745
746
747 A pickup (or upstep) is entered with the keyword @code{\partial}. It
748 is followed by a duration: @code{\partial 4} is a quarter note upstep.
749 @lilypond[relative 1,verbatim,fragment]
750   \partial 8
751   f8 c2 d e
752 @end lilypond
753
754 Tuplets are made with the @code{\times} keyword.  It takes two
755 arguments: a fraction and a piece of music.  The duration of the piece
756 of music is multiplied by the fraction.  Triplets make notes occupy
757 2/3 of their notated duration, so for a triplet, the fraction is 2/3.
758 @c
759 @lilypond[relative 0,verbatim,fragment]
760   \times 2/3 { f8 g a }
761   \times 2/3 { c r c }
762 @end lilypond 
763
764
765
766
767 Comments are pieces of the input that are ignored.  There are two
768 types of comments. A line comments are introduced by @code{%}: after
769 that, the rest of that line is ignored.  Block comments span larger
770 sections of input.  Anything that is enclosed in @code{%@{} and
771 @code{%@}} is ignored too. The following fragment shows possible uses
772 for comments.
773
774 @example
775   % notes for twinkle twinkle follow:
776   c4 c   g' g  a a
777   
778   %@{
779   
780     This line, and the notes below
781     are ignored, since they are in a
782     block comment.
783
784     g g f f e e d d c2 
785   %@}
786 @end example
787
788
789
790
791
792 @node Printing lyrics
793 @section Printing lyrics
794 @cindex lyrics
795
796 Lyrics are entered by separating each syllable with a space, and
797 surrounding them with @code{\lyrics @{ @dots{} @}}, for example
798 @example
799   \lyrics @{ I want to break free @}
800 @end example
801
802 Like notes, lyrics are also a form of music, but they must not be
803 printed on a staff, which is the default way to print music. To print
804 them as lyrics, they must be marked with @code{ \context Lyrics}:
805 @example
806   \context Lyrics  \lyrics @{ I want to break free @}
807 @end example
808 The melody for this song is as follows
809 @lilypond[fragment,relative=1]
810    \partial 8
811      c8
812    \times 2/3 {  f4 g g } \times 2/3 { g4-( a2-) }
813 @end lilypond
814
815 The lyrics can be set to these notes, combining both with the
816 @code{\addlyrics} keyword:
817 @example
818  \addlyrics
819     \notes @{ @dots{} @}
820     \context Lyrics @dots{}
821 @end example
822
823 The final result is 
824 @lilypond[singleline,verbatim]
825 \score  {
826  \notes {
827   \addlyrics
828    \relative c' {
829      \partial 8
830      c8
831      \times 2/3 { f g g } \times 2/3 { g4-( a2-) }
832    }
833    \context Lyrics  \lyrics { I want to break free }
834  }
835  \paper{ }
836 }
837 @end lilypond
838
839 This melody ends on a @rglos{melisma}, a single syllable (``free'')
840 sung to more than one note. This is indicated with a @emph{extender
841 line}. It is entered as two  underscores, i.e.,
842 @example
843   \lyrics @{ I want to break free __ @}
844 @end example 
845 @lilypond[singleline]
846 \score  {
847  \notes {
848   \addlyrics
849    \relative c' {
850    \partial 8
851      c8
852      \times 2/3 { f g g } \times 2/3 { g4-( a2-) }
853    }
854    \context Lyrics  \lyrics { I want to break free __ }
855  }
856  \paper{ }
857 }
858 @end lilypond
859
860 Similarly, hyphens between words can be entered as two dashes,
861 resulting in a centered hyphen between two syllables.
862 @example
863   Twin -- kle twin -- kle
864 @end example
865 @lilypond[singleline]
866 \score {
867   \addlyrics \notes \relative f' { \time 2/4
868     f4 f c' c' }
869     \context Lyrics \lyrics { Twin -- kle twin -- kle
870  }}
871 @end lilypond
872
873 More options, like putting multiple lines of lyrics below a melody are
874 discussed in @ref{Vocal music}.
875
876
877 @node A lead sheet
878 @section A lead sheet
879
880 In popular music, it is common to denote accompaniment as chord-names.
881 Using them in LilyPond has two parts, just like lyrics: entering the
882 chords (with @code{\chords}), and printing them (with @code{\context
883 ChordNames}).
884
885 Chord names are entered by starting chords mode (with @code{\chords}).
886 In chords mode, you can enter chords with a letter (indicating the
887 root of the chord), and a durations following that.
888 @c
889 @lilypond[verbatim]
890   \chords { c2 f4. g8 } 
891 @end lilypond
892 The result of @code{\chords} is a list of chords, and is  equivalent
893 to entering chords with @code{<<@dots{}>>}.
894
895 Other chords can be created by adding modifiers, after a colon.  The
896 following example shows a few common modifiers
897 @c
898 @lilypond[verbatim]
899   \chords { c2 f4:m g4:maj7 gis1:dim7 }
900 @end lilypond
901
902 Printing chords is done by adding @code{\context ChordNames}
903 before the chords thus entered:
904 @c
905 @lilypond[verbatim]
906  \context ChordNames \chords \chords { c2 f4.:m g4.:maj7 gis8:dim7 }
907 @end lilypond
908
909 A complete list of modifiers, and other options for layout are in the
910 reference manual section @ref{Chords}.
911
912 @cindex lead sheet 
913 When put together,  chord names, lyrics and a melody form
914 a lead sheet, for example,
915
916 @example
917 \score @{
918   <
919     \context ChordNames \chords @{ @emph{chords} @}
920     \addlyrics
921       \notes @emph{the melody}
922       \context Lyrics \lyrics @{ @emph{the text} @}
923   >
924   \paper @{ @}
925 @}
926 @end example
927 @lilypond[singleline]
928 \score  {
929   < 
930    \context ChordNames \chords { r8 c2:sus4 f } 
931    \addlyrics
932     \notes \relative c' {
933      \partial 8
934      c8
935      \times 2/3 { f g g } \times 2/3 { g4-( a2-) } }
936    \context Lyrics  \lyrics { I want to break free __ }
937   >
938  \paper{ }
939 }
940 @end lilypond
941
942
943 @node Listening to output
944 @section Listening to output
945
946 MIDI (Musical Instrument Digital Interface) is a standard for
947 connecting and recording digital instruments.  A MIDI file is like a
948 tape recording of a MIDI instrument. The @code{\midi} block makes the
949 music go to a MIDI file, so you can listen to the music you entered.
950 It is great for checking the music: octaves that are off, or
951 accidentals that were mistyped, stand out very much when listening to
952 the musical transcription.
953
954 @code{\midi} can be used in similarly to @code{\paper @{ @}}, for
955 example
956 @example 
957 \score @{
958     @var{..music..}
959     \midi  @{ \tempo 4=72@}
960     \paper  @{ @}
961 @}
962 @end example 
963
964 Here, the tempo is specified using the @code{\tempo} command.  In this
965 case the tempo of quarter notes is set to 72 beats per minute. More
966 information on auditory output is in the @ref{Sound} section in the
967 notation manual.
968
969
970 @node Titling 
971 @section Titling
972
973 Bibliographic information is entered in a separate block, the
974 @code{\header} block. The name of the piece, its composer, etc. are
975 entered as assignment within @code{\header @{ @dots{} @}}. For
976 example,
977 @example 
978   \header @{
979     title = "Eight miniatures" 
980     composer = "Igor Stravinsky"
981     tagline = "small is beautiful"
982   @}
983   
984   \score { @dots{} 
985 @end example
986
987 @cindex bibliographic information
988 @cindex titles
989 @cindex composer
990 @cindex ly2dvi
991
992
993 When the file is processed by @code{ly2dvi}, the title and composer
994 specified are printed above the music. The `tagline' is a short line
995 printed at bottom of the last page, which normally says ``Lily was
996 here, version @dots{}''. In the example above, it is replaced by the
997 line ``small is beautiful.'' 
998
999 Normally, the @code{\header} is put at the top of the file. However,
1000 for a document that contains multiple pieces (e.g. a etude book, or
1001 part with multiple movements), then the header can be put into the
1002 @code{\score} block as follows In this case, the name of each piece
1003 will be printed before each movement.
1004
1005
1006 @cindex Lily was here
1007 @cindex signature line
1008 @cindex tag line
1009
1010 @example 
1011   \header @{
1012     title = "Eight miniatures" 
1013     composer = "Igor Stravinsky"
1014     tagline = "small is beautiful"
1015   @}
1016   
1017   \score { @dots{}
1018     \header @{ piece = "Adagio" @}
1019   }
1020   \score { @dots{}
1021     \header @{ piece = "Menuetto" @}
1022   }
1023 @end example
1024
1025 More information on titling can be found in @ref{Invoking ly2dvi}.
1026
1027
1028 @node Single staff polyphony  
1029 @section Single staff polyphony
1030
1031 When different melodic lines are combined on a single staff, these are
1032 printed as polyphonic voices: each voice has its own stems, slurs
1033 and beams, and the top voice has the stems up, while the bottom voice
1034 has stems down.
1035
1036 Entering such parts is done by entering each voice as a sequence (with
1037 @code{@{ .. @}}), and combing those simultaneously, separating the
1038 voices with @code{\\}:
1039
1040 @lilypond[verbatim,relative]
1041   < { a4 g2 f4-~ f4 } \\
1042     { r4 g4 f2 f4 } >
1043 @end lilypond
1044  
1045 More features of polyphonic typesetting are in the notation manual,
1046 @ref{Polyphony}.
1047
1048 @node Piano staffs
1049 @section Piano staffs
1050
1051 @cindex staff switch, manual
1052 @cindex cross staff voice, manual
1053 @cindex @code{\translator}
1054
1055
1056
1057
1058 @node Organising larger pieces
1059 @section Organising larger pieces
1060
1061 TODO: discuss identifiers, p&c, .
1062
1063 @separate
1064 @example 
1065 \version "1.5.72"
1066 @end example 
1067 Lilypond and its language are still under development, and
1068 occasionally details of the syntax are changed.  The @code{version}
1069 fragment indicates which LilyPond version the input file was written
1070 for.  When you compile this file, the version number will be
1071 checked. When the file is too old, a warning is issued.  The version
1072 number is also used by the @code{convert-ly} program (See
1073 @ref{Invoking convert-ly}), which updates the file to the latest
1074 version automatically.
1075
1076
1077 @separate
1078 @example 
1079 s1 s2. r4 
1080 @end example 
1081 @code{s} is a spacer rest.  It does not print anything, but it does have
1082 the duration of a rest. It is useful for filling up voices that
1083 temporarily do not play. In this case, the viola does not come until one
1084 and a half measure later. 
1085
1086 @separate
1087 @example 
1088 \grace <<e g>>-( <<d f>>4-) <<c e>>2 
1089 @end example
1090 @cindex @code{\grace}
1091 @cindex ornaments
1092 @cindex grace notes
1093 @code{\grace} introduces grace notes.  It takes one argument, in this
1094 case a chord. A slur is introduced starting from the @code{\grace}
1095 ending on the following chord.
1096
1097 @separate
1098 @example 
1099 \times 2/3 
1100 @end example
1101 @cindex tuplet
1102 @cindex triplets
1103
1104 @separate
1105 @example 
1106 @{ <<d f>>8 <<e g>> <<f a>> @} 
1107 @end example 
1108 The piece of music to be `tripletted' is sequential music containing
1109 three chords.
1110
1111
1112 The bass has a little hoom-pah melody to demonstrate parts switching
1113 between staves.  Since it is repetitive, we use repeats:
1114 @separate
1115 @example 
1116 hoomPah  =  \repeat unfold 8
1117 @end example
1118 @cindex unfolded @code{\repeat}
1119 The unfolded repeat prints the notes in its argument as if they were
1120 written out in full eight times.
1121 @separate
1122
1123 @node Fine tuning a piece
1124 @section  Fine tuning a piece
1125
1126 In this section we show some ways to fine tune the final output of a
1127 piece.  We do so using a single measure of a moderately complex piano
1128 piece: a Brahms intermezzo (opus 119, no. 1).  Both fragments (the
1129 tuned and the untuned versions) are in @file{input/tutorial/}.
1130
1131 The code for the untuned example shows us some new things.
1132
1133 @lilypondfile[verbatim]{brahms-original.ly}
1134
1135
1136 @cindex dynamics
1137 @cindex loudness
1138 @cindex forte
1139 @cindex crescendo
1140
1141
1142
1143
1144 Now that we have the basic piece of music entered, we want to fine
1145 tune it so that we get something that resembles the original printed
1146 edition by Schott/Universal Edition:
1147
1148 @lilypondfile{brahms-tweaked.ly}
1149
1150 @cindex tuning graphical objects
1151
1152 Fine tuning involves overriding the defaults of the printing system.
1153 We do this by setting variables which control how Lilypond prints
1154 symbols.  Printed symbols are called graphical objects (often
1155 abbreviated to @emph{grob}). Each object is described by a bunch of
1156 settings.  Every setting is a variable: it has a name and a value
1157 which you can change.  These values determine the fonts, offsets,
1158 sub-routines to be called on the object, etc.  The initial values of
1159 these settings are set in the Scheme file
1160 @file{scm/grob-description.scm}.
1161
1162 @cindex slur attachments
1163
1164 We start with the slur in the upper part, running from F sharp to A.  In
1165 the printed edition, this slur runs from stem to stem; in our version,
1166 the slur begins at the note head of the F sharp.  The following property
1167 setting forces all slurs to run from stem to stem (not from or to note
1168 heads!).
1169
1170 @example
1171   \property Voice.Slur \set #'attachment = #'(stem . stem)
1172 @end example
1173
1174 More precisely, this command modifies the definition of the @code{Slur}
1175 object in the current @code{Voice}.  The variable @code{attachment} is
1176 set to the pair of symbols @code{'(stem . stem)}. 
1177
1178 @cindex internal documentation
1179 @cindex finding graphical objects
1180 @cindex graphical object descriptions 
1181
1182 This command fixes one particular problem with a slur. The rest of
1183 this section explains how to figure out which properties to tune for
1184 your own scores. To discover this, you must have a copy of the
1185 internals document. This is a set of HTML pages which should be
1186 included if you installed a binary distribution.  [TODO: revise for
1187 new site.]  These HTML pages are also available on the web: go to the
1188 LilyPond website, click ``Documentation: Index'' on the side bar, look
1189 in the ``Information for uses'' section, and click on ``Documentation
1190 of internals''.
1191
1192 You might want to bookmark either the HTML files on your disk, or the
1193 one on the web (the HTML on your hard drive will load much faster than
1194 the ones on the web!).  One word of caution: the internals
1195 documentation is generated from the definitions that the program uses.
1196 Hence, the internals documentation is strongly tied to the version you
1197 use.  Before you proceed, make sure that the program and documentation
1198 have matching version numbers.
1199
1200 @c  TODO: the quote is incorrect, although that shouldn't be a big
1201 @c    problem for the reader.
1202 Suppose that you wanted to tune the behavior of the slur.  The first
1203 step is to get some general information on slurs in LilyPond.  Turn to
1204 the index, and look up ``slur''. The section on slurs says
1205 @quotation
1206 The grob for this object is @internalsref{Slur}, generally in
1207 @internalsref{Voice} context.
1208 @end quotation
1209
1210 So the graphical object for this object is called @code{Slur}, and
1211 slurs are created in the @code{Voice} context.  If you are reading
1212 this tutorial in the HTML version, then you can simply click Slur,
1213 otherwise, you should look it up the internal documentation: click
1214 ``grob overview'' and select ``slur'' (the list is alphabetical).
1215
1216 Now you get a list of all the properties that the slur object
1217 supports, along with their default values.  Among the properties we
1218 find the @code{attachment} property with its default setting.  
1219 The property documentation explains that the following setting will
1220 produce the desired effect:
1221 @example 
1222  \property Voice.Slur \set #'attachment = #'(stem . stem)
1223 @end example
1224
1225 @c this is a long section, and adding an extra space here helps to
1226 @c break it into smaller subsections and thus is easier to understand.
1227 @separate
1228
1229 Next we want to move the fingering `3'.  In the printed edition it is
1230 not above the stem, but a little lower and slightly left of the stem.
1231 From the user manual we find that the associated graphical object is
1232 called @code{Fingering}, but how do we know if we should use
1233 @code{Voice} or @code{Staff}?  In many cases, @code{Voice} is a safe
1234 bet, but you can also deduce this information from the internals
1235 documentation: if you visit the documentation of @code{Fingering}, you
1236 will notice
1237 @example
1238 Fingering grobs are created by: Fingering_engraver
1239 @end example
1240
1241 Clicking @code{Fingering_engraver} will show you the documentation of
1242 the module responsible for interpreting the fingering instructions and
1243 translating them to a @code{Fingering} object.  Such a module is called
1244 an @emph{engraver}.  The documentation of the @code{Fingering_engraver}
1245 says
1246 @example
1247 Fingering_engraver is part of contexts: Voice and TabVoice
1248 @end example
1249 so tuning the settings for Fingering should be done using either
1250 @example
1251   \property Voice.Fingering \set @dots{}
1252 @end example
1253 or
1254 @example
1255   \property TabVoice.Fingering \set @dots{}
1256 @end example
1257
1258 Since the @code{TabVoice} is only used for tab notation, we see that
1259 the first guess @code{Voice} was indeed correct.
1260
1261 @cindex setting object properties
1262 @cindex @code{extra-offset}
1263
1264 For shifting the fingering, we use the property @code{extra-offset}.
1265 The following command manually adds an offset to the object.  We move
1266 it a little to the left, and 1.8 staff space downwards.
1267 @example
1268  \once \property Voice.Fingering \set #'extra-offset = #'(-0.3 . -1.8) 
1269 @end example   
1270 The @code{extra-offset} is a low-level feature: it moves around
1271 objects in the printout; the formatting engine is completely oblivious
1272 to these offsets.  The unit of these offsets are staff-spaces.  The
1273 first number controls left-right movement; a positive number will move
1274 the object to the right.  The second number controls up-down movement;
1275 a positive number will move it higher.
1276 We only want to offset a single object, so this statement is adorned
1277 with @code{\once}.
1278
1279 @cindex property types
1280 @cindex translator properties
1281 @cindex grob properties
1282 @cindex music properties
1283 @separate
1284
1285 There are three different types of variables in LilyPond, something
1286 which can be confusing at first (and for some people it stays
1287 confusing).  Variables such as @code{extra-offset} and
1288 @code{attachment} are called grob properties.  They are not the same
1289 as translator properties, like @code{autoBeaming}.  Finally, music
1290 expressions are internally stored using properties (so-called music
1291 properties).  You will encounter music properties if you run Scheme
1292 functions on music using @code{\apply}.
1293
1294 The second fingering instruction should be moved up a little to avoid
1295 a collision with the slur.  This could be achieved with
1296 @code{extra-offset}, but in this case, a simpler mechanism also
1297 works.  We insert an empty text between the 5 and the note. The empty
1298 text pushes the fingering instruction away:
1299 @example
1300   a-)^" "^\markup @{ \finger "5" @} 
1301 @end example
1302
1303 A fingering instruction, which would be entered as @code{^5}, is put
1304 as close to the notes as possible, closer than the space entered to
1305 push away the 5. Hence, the 5 is entered as a normal text, with the
1306 formatting of fingering instructions.
1307  
1308 @separate
1309
1310 Normally one would specify all dynamics in the same voice, so that
1311 dynamics (such as @b{f} and @b{p}) will be aligned with hairpins.  But
1312 in this case, we do not want the decrescendo to be aligned with the
1313 piano sign.  We achieve this by putting the dynamic markings in different
1314 voices.  The crescendo should be above the upper staff.  This can be
1315 forced by using the precooked command 
1316 @example
1317   \dynamicsUp
1318 @end example
1319
1320 However, if you do that the decrescendo will be too close to the upper
1321 voice and collide with the stems.  Looking at the manual for dynamics,
1322 we notice that ``Vertical positioning of these symbols is handled by
1323 the @internalsref{DynamicLineSpanner} grob.''.  If we turn to the
1324 documentation of @code{DynamicLineSpanner}, we find that
1325 @code{DynamicLineSpanner} supports several so-called `interfaces'.
1326 This object not only puts objects next to the staff
1327 (@code{side-position-interface}), but it also groups dynamic objects
1328 (@code{axis-group-interface}), is considered a dynamic sign itself
1329 (@code{dynamic-interface}), and is an spanning object
1330 (@code{spanner-interface}).  It also has the standard
1331 @code{grob-interface} with all the variables that come with it.
1332
1333 For the moment we are interested in side positioning:
1334 @quotation
1335  side-position-interface
1336
1337   Position a victim object (this one) next to other objects (the
1338   support).  In this case, the direction signifies where to put the
1339   victim object relative to the support (left or right, up or down?)
1340 @end quotation
1341 Between the object and its support (in this case, the descending
1342 notes), there should be more space.  This space is controlled by
1343 @code{padding}, so we increase it.
1344 @example
1345  \property Voice.DynamicLineSpanner \override #'padding = #5.0
1346 @end example
1347
1348
1349 (TODO: huh? what's this: )
1350
1351 This command resembles the one for setting slur attachments, but
1352 subtly differs in its details.  Grob properties can be manipulated
1353 with two commands: @code{\override} extends the definition of a grob
1354 with one setting, and @code{\revert} releases this setting.  This has
1355 a theoretical appeal: the operations are simple and symmetric.  For
1356 practical use, it can be cumbersome.  The commands act like
1357 parentheses: you should carefully balance the use of @code{\override}
1358 and @code{\revert}.  The @code{\set} command is more friendly: it
1359 first does a @code{\revert} followed by @code{\override}.
1360
1361 @separate
1362
1363 Brahms uses music notation is a slightly unorthodox way.  Ties
1364 usually happen only within one voice.  In this piece, the composer
1365 gladly produces ties that jump voices.  We deal with this by faking
1366 these ties: whenever we need such a tie, we insert a notehead in a
1367 different voice, and blank the stem.  This is done in the following
1368 snippet of code.
1369
1370 @cindex transparent objects
1371 @cindex removing objects
1372 @cindex invisible objects
1373 @example
1374 \property Voice.Stem \set #'transparent = ##t
1375 d'
1376 @end example
1377 Blanking the stem should be done for only one object. One of the ways
1378 to achieve that, is by setting the property before a note. Reverting
1379 it afterwards is tedious, so for setting a property only once, we have
1380 the syntax @code{\once}: it reverts the property directly before
1381 proceeding to the next step in time.
1382
1383 The @code{\once} keyword is added to @code{\property}.
1384
1385
1386 Finally, the last tie is forced up using @code{\tieUp}.
1387
1388 @separate
1389
1390 Here is the complete ``fine tuned'' version, which includes all the
1391 modifications we discussed in this section:
1392
1393 @lilypondfile[verbatim]{brahms-tweaked.ly}
1394
1395
1396 @node An orchestral score
1397 @section An orchestral score
1398
1399 @menu
1400 * The full score::              
1401 * Extracting an individual part::  
1402 @end menu
1403
1404
1405 Our next two examples demonstrate one way to create an orchestral
1406 score in LilyPond.  When typesetting a piece for several instruments,
1407 you will want to create a full score (for the conductor) along with
1408 several individual parts (for the players).
1409
1410   We will declare the music for each instrument individually, giving
1411 the music of each instrument its own name.  These pieces of music are
1412 then combined in different @code{\score} blocks to produce different
1413 combinations of instruments (for example, one @code{\score} block may
1414 only include the cello part; another @code{\score} block may be for
1415 all the strings, and yet another @code{\score} block may be for all
1416 parts together).
1417
1418 This orchestral score example consists of three input files.  In the
1419 first file, @file{os-music.ly}, we define the music for all
1420 instruments.  This file will be used for producing the score and the
1421 separate parts, but the file does not produce any sheet music itself.
1422 Other files reference it by stating @code{\include "os-music.ly"}.
1423
1424 @example
1425 % os-music.ly
1426 \header @{
1427   title = "Zo, goed lieverd?"
1428   subtitle = "How's, this babe?"
1429   composer = "JCN"
1430   opus = "1"
1431   piece = "Laid back"
1432 @}
1433 global = @{
1434   \time 2/4
1435   \skip 2*4 \bar "|."
1436 @}
1437 Key = \notes \key as \major
1438 flautoI = \notes\relative c'' @{
1439   f8 g f g f g f g
1440   bes as bes as bes as bes as
1441 @}
1442 flautoII = \notes\relative c'' @{
1443   as8 bes as bes R1 d4 ~ d
1444 @}
1445 tromboI = \notes\relative c'' @{
1446   c4. c8 c8 c4. es4 r as, r
1447 @}
1448 tromboII = \notes\relative c'' @{
1449   as4. as8 as8 as4. R1*1/2 as4 es'
1450 @}
1451 timpani = \notes\relative c, @{
1452   \times 2/3 @{ f4 f f @}
1453   \times 4/5 @{ as8 as as as as @}
1454   R1
1455 @}
1456 corno = \notes\relative c' @{
1457    bes4 d f, bes d f, bes d
1458 @}
1459 @end example
1460
1461 We will not examine this example line by line, since you already know
1462 most of it.  We'll examine a few lines which contain new elements.
1463
1464
1465 @separate
1466 @example
1467 global = @{
1468   \time 2/4
1469   \skip 2*4 \bar "|."
1470 @}
1471 @end example
1472
1473 This declares settings to be used globally.  The @code{\skip} command
1474 produces no output, but moves forward in time: in this case, the
1475 duration of a half note (@code{2}), and that four times (@code{*4}).
1476 This brings us to the end of the piece, and we can set the end bar.
1477 You can use @code{s} as a shortcut for @code{\skip} (the last line of
1478 this section would be @code{s2*4 \bar"|."}).
1479
1480 @separate
1481 @example
1482 Key = \notes \key as \major
1483 @end example
1484 This declares the key signature of the piece and assign it to the
1485 identifier @var{Key}.  Later on we will use @code{\Key} for all staves
1486 except those for transposing instruments.
1487
1488 @node The full score
1489 @subsection The full score
1490
1491
1492 The second file, @inputfileref{input/tutorial,os-score.ly}, reads the
1493 definitions of the first (@inputfileref{input/tutorial,os-music.ly}), and
1494 defines the @code{\score} block for the full conductor's score.
1495
1496 @example
1497 \version "1.7.6"
1498
1499 \include "os-music.ly"
1500 \include "paper13.ly"
1501
1502 textFlat = \markup @{\smaller \musicglyph #"accidentals--1"@}
1503 \score @{
1504   <
1505     \global
1506     \property Score.BarNumber \override #'padding = #3
1507     \context StaffGroup = woodwind <
1508       \context Staff = flauti <
1509         \property Staff.midiInstrument = #"flute"
1510         \property Staff.instrument = "2 Flauti"
1511         \property Staff.instr = "Fl."
1512         \Key
1513         \context Voice=one @{ \voiceOne \flautoI @}
1514         \context Voice=two @{ \voiceTwo \flautoII @}
1515       >
1516     >
1517     \context StaffGroup = timpani <
1518       \context Staff = timpani <
1519         \property Staff.midiInstrument = #"timpani"
1520         \property Staff.instrument = \markup @{ \column <<  "Timpani" "(C-G)" >> @}
1521         \property Staff.instr = #"Timp."
1522         \clef bass
1523         \Key
1524         \timpani
1525       >
1526     >
1527     \context StaffGroup = brass <
1528       \context Staff = trombe <
1529         \property Staff.midiInstrument = #"trumpet"
1530         \property Staff.instrument = \markup @{ \column << "2 Trombe" "(C)" >> @}
1531         \property Staff.instr = \markup@{ \column << "Tbe." "(C)">> @}
1532         \Key
1533         \context Voice=one \partcombine Voice
1534           \context Thread=one \tromboI
1535           \context Thread=two \tromboII
1536       >
1537       \context Staff = corni <
1538         \property Staff.midiInstrument = #"french horn"
1539         \property Staff.instrument
1540         = \markup @{ \column << "Corno" @{ "(E"  \textFlat ")" @} >> @}
1541         \property Staff.instr =
1542         \markup @{ \column << "Cor." @{ "(E"  \textFlat ")" @} >> @}
1543         \property Staff.transposing = #3
1544         \notes \key bes \major
1545         \context Voice=one \corno
1546       >
1547     >
1548   >
1549   \paper @{
1550     indent = 15 * \staffspace
1551     linewidth = 60 * \staffspace
1552     textheight = 90 * \staffspace
1553     \translator@{
1554       \VoiceContext
1555       \consists "Multi_measure_rest_engraver"
1556     @}
1557     \translator@{
1558       \HaraKiriStaffContext
1559       \remove "Multi_measure_rest_engraver"
1560     @}
1561   @}
1562   \midi @{
1563     \tempo 4 = 75
1564   @}
1565 @}
1566 @end example
1567
1568 @center @strong{Zo, goed lieverd?}
1569 @sp 1
1570 @center How's, this babe?
1571 @flushright
1572 Opus 1.
1573 @end flushright
1574 @flushleft
1575 @sc{Laid back}
1576 @end flushleft
1577
1578 @lilypondfile{os-score.ly}
1579
1580 @separate
1581 @example
1582 \include "os-music.ly"
1583 @end example
1584 First we need to include the music definitions we made in
1585 @file{os-music.ly}.
1586
1587 @ignore
1588
1589 [TODO: mention in a more relevant place]
1590   
1591 @separate
1592 @example
1593 #(ly:set-point-and-click 'line-column)
1594 @end example
1595
1596 This piece of Scheme code executes the function
1597 @code{ly:set-point-and-click} with the argument
1598 @code{line-column}.  Editing input files can be complicated if you are
1599 working with large files: if you are digitizing existing music, you have
1600 to synchronize the .ly file, the sheet music on your lap and the sheet
1601 music on the screen.  The point-and-click mechanism makes it easy to
1602 find the origin of an error in the LY file: when you view the file with
1603 Xdvi and click on a note, your editor will jump to the spot where that
1604 note was entered.  For more information, see @ref{Point and click}.
1605 @end ignore
1606
1607
1608 @separate
1609 @example
1610 #(define text-flat '((font-relative-size . -2)
1611          (music "accidentals--1")))
1612 @end example
1613
1614 To name the transposition of the french horn, we will need a piece of
1615 text with a flat sign.  LilyPond has a mechanism for font selection and
1616 kerning called Scheme markup text (See @ref{Text markup}).  The flat
1617 sign is taken from the music font, and its name is @code{accidentals--1}
1618 (The natural sign is called @code{accidentals-0}).  The default font is
1619 too big for text, so we select a relative size of @code{-2}.
1620
1621 @separate
1622 @example
1623   <
1624     \global
1625 @end example
1626 All staves are simultaneous and use the same global settings.
1627
1628 @separate
1629 @example
1630     \property Score.BarNumber \override #'padding = #3
1631 @end example
1632 LilyPond prints bar numbers at the start of each line, but
1633 unfortunately they end up a bit too close to the staff in this
1634 example.  In LilyPond, a bar number is called @var{BarNumber}.
1635 BarNumber objects can be manipulated through their
1636 @var{side-position-interface}.  One of the properties of a
1637 @var{side-position-interface} that can be tweaked is @var{padding}:
1638 the amount of extra space that is put between this and other objects.
1639 We set the padding to three staff spaces.
1640
1641 You can find information on all these kind of properties in LilyPond's
1642 automatically generated documentation in
1643 @ifnottex
1644 @ref{ (lilypond-internals)lilypond-internals, LilyPond Internals}
1645 or in @ref{Fine tuning a piece}.
1646 @end ifnottex
1647 @iftex
1648 the online documentation or in the previous section of the tutorial.
1649 @end iftex
1650
1651 @c  REFERENCE MAO
1652
1653 @separate
1654 @example
1655     \context StaffGroup = woodwind <
1656       \context Staff = flauti <
1657 @end example
1658 A new notation context: the @code{StaffGroup}.  @code{StaffGroup} can
1659 hold one or more @code{Staff}s, and will print a big bracket at the
1660 left of the score.  This starts a new staff group for the woodwind
1661 section (just the flutes in this case).  Immediately after that, we
1662 start the staff for the two flutes, who also play simultaneously.
1663
1664 @separate
1665 @example
1666         \property Staff.midiInstrument = #"flute"
1667 @end example
1668 Specify the instrument for MIDI output (see @ref{MIDI instrument
1669 names}).
1670
1671 @separate
1672 @example
1673         \property Staff.instrument = "2 Flauti"
1674         \property Staff.instr = "Fl."
1675 @end example
1676 This defines the instrument names to be printed in the
1677 margin.  @code{instrument} specifies the name for the first line
1678 of the score, @code{instr} is used for the rest of the score.
1679
1680 @separate
1681 @example
1682         \Key
1683 @end example
1684 The flutes play in the default key.
1685
1686 @separate
1687 @example
1688         \context Voice=one @{ \voiceOne \flautoI @}
1689         \context Voice=two @{ \voiceTwo \flautoII @}
1690 @end example
1691 Last come the actual flute parts.  Remember that we are still in
1692 simultaneous mode.  We name both voices differently, so that LilyPond
1693 will create two Voice contexts.  The flute parts are simple, so
1694 we specify manually which voice is which: @code{\voiceOne} forces the
1695 direction of stems, beams, slurs and ties up, @code{\voiceTwo} sets
1696 directions down.
1697
1698 @separate
1699 @example
1700       >
1701     >
1702 @end example
1703 Close the flutes staff and woodwind staff group.
1704
1705 @separate
1706 @example
1707         \property Staff.instrument = #'(lines "Timpani" "(C-G)")
1708 @end example
1709 The timpani staff demonstrates a new piece of scheme markup, it sets two
1710 lines of text.
1711
1712 @separate
1713 @example
1714         \context Voice=one \partcombine Voice
1715           \context Thread=one \tromboI
1716           \context Thread=two \tromboII
1717 @end example
1718 You have seen the notation contexts Staff and Voice, but here is a new
1719 one: Thread.  One or more Threads can be part of a Voice.  Thread
1720 takes care of note heads and rests; Voice combine note heads onto a
1721 stem.
1722
1723 For the trumpets we use the automatic part combiner (see @ref{Automatic
1724 part combining}) to combine the two simultaneous trumpet parts onto the
1725 trumpet staff.  Each trumpet gets its own Thread context, which must be
1726 named @code{one} and @code{two}).  The part combiner makes these two
1727 threads share a Voice when they are similar, and splits the threads up
1728 when they are different.
1729
1730 @separate
1731 @example
1732 \property Staff.instrument = #`(lines "Corno"
1733   (columns "(E" ,text-flat ")"))
1734 @end example
1735 The french horn (``Corno'') has the most complex scheme markup name, made
1736 up of two lines of text.  The second line has three elements (columns) --
1737 the @code{(E}, the flat sign @code{text-flat} that we defined previously,
1738 and a final @code{")"}.  We use a backquote instead of an
1739 ordinary quote at the beginning of the Scheme expression to be able to
1740 access the @code{text-flat} identifier, `unquoting' it with a ``@code{,}''.
1741
1742 @separate
1743 @example
1744         \property Staff.transposing = #3
1745 @end example
1746 The french horn is to be tuned in E-flat, so we tell the MIDI back-end to
1747 transpose this staff by three steps.
1748
1749 Note how we can choose different tunings for the text input, sheet music
1750 output and, and MIDI output, using @code{\transpose} and the MIDI Staff
1751 property @var{transposing}.
1752
1753 @separate
1754 @example
1755         \notes \key bes \major
1756 @end example
1757 Since the horn is transposing, it is in a different key.
1758
1759 @separate
1760 @example
1761     indent = 15 * \staffspace
1762     linewidth = 55 * \staffspace
1763 @end example
1764 We specify a big indent for the first line and a small linewidth for this
1765 tutorial.
1766
1767 @separate
1768
1769 Usually the default setup of notation contexts (Thread, Voice, Staff,
1770 Staffgroup, Score) is just fine.  But in this case we want a different
1771 type of Staff context.
1772
1773 @example
1774     \translator@{
1775       \HaraKiriStaffContext
1776     @}
1777 @end example
1778
1779 In orchestral scores it often happens that one instrument only has
1780 rests during one line of the score.  @code{HaraKiriStaffContext} can
1781 be used as a regular @code{StaffContext} drop-in and will take care of
1782 the automatic removing of empty staves -- so if the strings are the
1783 only instruments playing for a line, LilyPond will only print the string
1784 parts for that line of the score.  This reduces the number of page turns
1785 (and the number of dead trees!) required in a score.
1786
1787 @node Extracting an individual part
1788 @subsection Extracting an individual part
1789
1790 The third file, @file{os-flute-2.ly} also reads the definitions of the
1791 first (@file{os-music.ly}), and defines the @code{\score} block for the
1792 second flute part.
1793
1794 @example
1795 \include "os-music.ly"
1796 \include "paper16.ly"
1797
1798 \score @{
1799   \context Staff <
1800     \property Score.skipBars = ##t
1801     \property Staff.midiInstrument = #"flute"
1802     \global
1803     \Key
1804     \flautoII
1805   >
1806   \header @{
1807     instrument = "Flauto II"
1808   @}
1809   \paper @{
1810     linewidth = 80 * \staffspace
1811     textheight = 200 * \staffspace
1812   @}
1813   \midi @{
1814     \tempo 4 = 75
1815   @}
1816 @}
1817 @end example
1818
1819 @center @strong{Zo, goed lieverd?}
1820 @sp 1
1821 @center How's, this babe?
1822 @center @emph{Flauto II}
1823 @flushright
1824 Opus 1.
1825 @end flushright
1826 @flushleft
1827 @sc{Laid back}
1828 @end flushleft
1829 @lilypondfile{os-flute-2.ly}
1830
1831
1832 Because we separated the music definitions from the @code{\score}
1833 instantiations, we can easily define a second score with the music of
1834 the second flute.  This is the part for the second flute player.  Of
1835 course, we would make separate parts for all individual instruments if
1836 we were preparing the score for an orchestra.
1837
1838 @separate
1839 @example
1840     \flautoII
1841 @end example
1842 In this individual part the second flute has a whole staff for itself,
1843 so we do not want to force stem or tie directions.
1844
1845 @separate
1846 @example
1847   \header @{
1848     instrument = "Flauto II"
1849   @}
1850 @end example
1851 The @code{\header} definitions were also read from @file{os-music.ly},
1852 but we need to set the instrument for this particular score.
1853
1854 @separate
1855 @example
1856     \property Score.skipBars = ##t
1857 @end example
1858 In the conductor's full score, all bars with rests are printed, but for
1859 the individual parts, we want to print one multimeasure rest instead of
1860 many consecutive empty bars.  LilyPond will do this if
1861 @code{Score.skipBars} is set to true (@code{##t}).
1862
1863
1864 @node Integrating text and music
1865 @section Integrating text and music
1866
1867
1868 @cindex La@TeX{}, music in
1869 @cindex HTML, music in
1870 @cindex Texinfo, music in
1871
1872 Sometimes you might want to use music examples in a text that you are
1873 writing (for example a musicological treatise, a songbook, or (like us)
1874 the LilyPond manual).  You can make such texts by hand, simply by
1875 importing a PostScript figure into your word processor.  However,
1876 there is an automated procedure to reduce the amount of work.
1877
1878 If you use HTML, La@TeX{}, or Texinfo, you can mix text and LilyPond
1879 code.  A script called @code{lilypond-book} will extract the music
1880 fragments, run LilyPond on them, and put back the resulting notation.
1881 This program is fully described in @ref{lilypond-book manual}.  Here
1882 we show a small example.  Since the example also contains explanatory
1883 text, we will not comment it further.
1884
1885 @example
1886 \documentclass[a4paper]@{article@}
1887 \begin@{document@}
1888
1889 In a lilypond-book document, you can freely mix music and text. For
1890 example:
1891 \begin@{lilypond@}
1892   \score @{ \notes \relative c' @{
1893      c2 g'2 \times 2/3 @{ f8 e d @} c'2 g4
1894   @} @}
1895 \end@{lilypond@}
1896
1897 Notice that the music line length matches the margin settings of the
1898 document.
1899
1900 If you have no \verb+\score+ block in the fragment,
1901 \texttt@{lilypond-book@} will supply one:
1902
1903 \begin@{lilypond@}
1904   c'4
1905 \end@{lilypond@}
1906
1907 In the example you see here, two things happened: a
1908 \verb+\score+ block was added, and the line width was set to natural
1909 length. You can specify many more options using  \LaTeX style options
1910 in brackets:
1911
1912 \begin[verbatim,11pt,singleline,
1913   fragment,relative,intertext="hi there!"]@{lilypond@}
1914   c'4 f bes es
1915 \end@{lilypond@}
1916
1917 The option \texttt@{verbatim@} prints the LilyPond code in addition to
1918 the graphical score, \texttt@{11pt@} selects the default music size,
1919 \texttt@{fragment@} adds a score block, \texttt@{relative@} uses
1920 relative mode for the fragment, and \texttt@{intertext@} specifies
1921 what to print between the \texttt@{verbatim@} code and the music.
1922
1923 If you want to include large examples into the text, it may be more
1924 convenient to put the example in a separate file:
1925
1926 \lilypondfile[printfilename]@{sammartini.ly@}
1927
1928 The \texttt@{printfilename@} option adds the file name to the output.
1929
1930 \end@{document@}
1931 @end example
1932
1933 Under Unix, you can view the results as follows.
1934 @example
1935 $ cd input/tutorial
1936 $ mkdir -p out/
1937 $ lilypond-book --outdir=out/ lilbook.tex
1938 lilypond-book (GNU LilyPond) 1.7.16
1939 Reading `input/tutorial/lilbook.tex'
1940 Reading `input/tutorial/sammartini.ly'
1941 @var{lots of stuff deleted}
1942 Writing `out/lilbook.latex'
1943 $ cd out
1944 $ latex lilbook.latex
1945 @var{lots of stuff deleted}
1946 $ xdvi lilbook 
1947 @end example
1948
1949 Notice the @code{outdir} option to lilypond-book. Running lilypond-book
1950 and running latex creates a lot of temporary files, and you would not want
1951 those to clutter up your working directory. Hence, we have them created
1952 in a separate subdirectory.
1953
1954 The result looks more or less like this: 
1955
1956 @separate
1957
1958 In a lilypond-book document, you can freely mix music and text. For
1959 example:
1960 @lilypond
1961 \score {
1962   \notes \relative c' {
1963     c2 g'2 \times 2/3 { f8 e d } c'2 g4
1964   }
1965   \paper {
1966     raggedright = ##t
1967   }
1968 }
1969 @end lilypond
1970
1971 Notice that the music line length matches the margin settings of the
1972 document.
1973
1974 If you have no @code{\score} block in the fragment,
1975 @code{lilypond-book} will supply one:
1976
1977 @lilypond
1978   c'4
1979 @end lilypond
1980
1981 In the example you see here, a number of things happened: a
1982 @code{\score} block was added, and the line width was set to natural
1983 length. You can specify many more options using  La@TeX{} style options
1984 in brackets:
1985
1986 @lilypond[verbatim,11pt,singleline,
1987   fragment,relative,intertext="hi there!"]
1988   c'4 f bes es
1989 @end lilypond
1990
1991 The option @code{verbatim} also shows the LilyPond code, @code{11pt} selects
1992 the default music size, @code{fragment} adds a score block,
1993 @code{relative} uses relative mode for the fragment, and
1994 @code{intertext} specifies what to print between the
1995 @code{verbatim} code and the music.
1996
1997 If you include large examples into the text, it may be more convenient
1998 to put the example in a separate file:
1999
2000 @lilypondfile[printfilename]{sammartini.ly}
2001
2002 The @code{printfilename} option adds the file name to the output.
2003