]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/tutorial.itely
($(outdir)/%.pdf): add DVIPS_FLAGS. This will
[lilypond.git] / Documentation / user / tutorial.itely
1 \version "2.1.22"
2 @c -*-texinfo-*-
3 @c This file is part of lilypond.tely
4
5 @c TODO:
6 @c   * more details about running lilypond; error messages,
7 @c     compiling/viewing (emacs?)
8 @c   * where to go from  First steps+More basics?
9
10 @node Tutorial
11 @chapter Tutorial
12
13
14
15 Using LilyPond comes down to encoding music in an input file. After
16 entering the music, the program is run on the file producing output
17 which can be viewed or printed.  In this tutorial, we will show step
18 by step how to enter such files, and illustrate the process with
19 fragments of input and the corresponding output.  At the end of every
20 section, a paragraph will list where to find further information on
21 the topics discussed.
22
23 Many people learn programs by trying and fiddling around with the
24 program.  This is also possible with LilyPond. If you click on a
25 picture in the HTML version of this manual, you will see the exact
26 LilyPond input that was used to generate that image.
27 @ifhtml
28 For example, consider the following input:
29 @example
30   c'^\markup @{ \bold \huge @{ Click on this image! @} @}
31 @end example
32 @c @lily pond[relative=1,raggedright,with the following output:]
33 with the following output:
34 @lilypond[relative=1,raggedright]
35   c'^\markup { \bold \huge { Click on this image! } }
36 @end lilypond
37
38 @end ifhtml
39 By cutting and pasting the full input into a test file, you have a
40 starting template for experiments. If you like learning in this way,
41 you will probably want to print out or bookmark
42 @ifhtml
43 the
44 @end ifhtml
45 @ref{Cheat sheet}, which is a table listing all commands for quick
46 reference.
47
48
49 This tutorial starts with a short introduction to the LilyPond music
50 language.  After this first contact, we will show you how to to
51 produce printed output.  You should then be able to create and print
52 your first sheets of music.
53
54 @menu
55 * First steps::                 
56 * Running LilyPond::            
57 * More about pitches::          
58 * Octave entry::                
59 * Combining music into compound expressions::  
60 * Adding articulation marks to notes::  
61 * Combining notes into chords::  
62 * Basic rhythmical commands::   
63 * Commenting input files::      
64 * Printing lyrics::             
65 * A lead sheet::                
66 * Listening to output::         
67 * Titling::                     
68 * Single staff polyphony::      
69 * Piano staves::                
70 * Setting variables::           
71 * Fine tuning layout::          
72 * Organizing larger pieces::    
73 * An orchestral part::          
74 * Integrating text and music::  
75 @end menu
76
77
78 @node First steps
79 @section First steps
80
81 We start off by showing how very simple music is entered in LilyPond:
82 you get a note simply by typing its note name, from @samp{a}
83 through @samp{g}.  So if you enter
84
85 @example
86 c d e f g a b
87 @end example
88
89 @noindent
90 then the result looks like this:
91
92 @lilypond[notime,relative]
93 c d e f g a b
94 @end lilypond
95
96 The length of a note is specified by adding a number, @samp{1} for a
97 @rglos{whole note}, @samp{2} for a @rglos{half note}, and so on:
98
99 @example
100 a1 a2 a4 a16 a32
101 @end example
102
103 @lilypond[notime]
104 \set Score.timing =  ##f
105 \set Staff.autoBeaming =  ##f
106 \transpose c c' { a1 a2 a4 a16 a32 s16_" " }
107 @end lilypond
108
109 If you do not specify a @rglos{duration}, the previous one is used: 
110
111 @example
112 a4 a a2 a
113 @end example
114
115 @lilypond[notime]
116 \set Score.timing =  ##f
117 \transpose c c' { a a a2 a s16_" " }
118 @end lilypond
119
120
121 Rests are entered just like notes, but with the name ``@code{r}'':
122
123 @cindex rests
124 @quotation
125 @example
126 r2 r4 r8 r16
127 @end example
128
129 @lilypond[fragment]
130 \set Score.timing =  ##f
131 \set Staff.Clef =  \turnOff
132 \set Staff.TimeSignature =  \turnOff
133 r2 r4 r8 r16
134 s16_" "
135 @end lilypond
136 @end quotation
137 @separate
138
139
140 Add a dot @samp{.} after the duration to get a @rglos{dotted note}:
141
142 @example
143 a2. a4 a8. a16
144 @end example
145
146 @lilypond[notime]
147 \set Score.timing =  ##f
148 \transpose c c' { a2. a4 a8. a16 s16_" " }
149 @end lilypond
150
151
152 The @rglos{meter} (or @rglos{time signature}) can be set with the
153 @code{\time} command:
154
155 @example
156 \time 3/4
157 \time 6/8
158 \time 4/4
159 @end example
160
161 @c a clef here may lead to confusion
162 @lilypond
163 \override Staff.Clef   #'transparent = ##t 
164 \time 3/4
165 s4_" "
166 \time 6/8
167 s4_" "
168 \time 4/4
169 s16_" "
170 @end lilypond
171
172
173 The @rglos{clef} can be set using the @code{\clef} command:
174
175 @c what is more common name treble or violin?
176 @c in Dutch, its violin.
177 @c in English its definitely treble.
178 @example
179 \clef treble
180 \clef bass
181 \clef alto
182 \clef tenor
183 @end example
184
185 @lilypond[notime]
186 \set Score.timing =  ##f
187 \clef violin
188 s4_" "
189 \clef bass
190 s4_" "
191 \clef alto
192 s4_" "
193 \clef tenor
194 s16_" "
195 @end lilypond
196
197 Notes and commands like @code{\clef} and @code{\time}, are enclosed
198 in @code{\notes @{@dots{}@}}.  This indicates that music (as opposed
199 to @rglos{lyrics}) follows:
200
201 @example
202 \notes @{
203   \time 3/4
204   \clef bass
205   c2 e4 g2.
206   f4 e d c2 r4
207 @}
208 @end example
209 Now the piece of music is almost ready to be printed.  The final step is to
210 combine the music with a printing command.
211
212 The printing command is the so-called @code{\paper} block:
213
214 @example
215 \paper @{ @} 
216 @end example
217
218 The @code{\paper} block is used to customize printing specifics. The
219 customization commands go between @code{@{} and @code{@}}, but for
220 now, we accept the defaults.  The music and the @code{\paper} block
221 are combined by enclosing them in @code{\score @{ ... @}}, so the
222 following is a complete and valid input file:
223
224 @example
225 \score @{
226   \notes @{
227     \time 3/4
228     \clef bass
229     c2 e4 g2.
230     f4 e d c2 r4
231   @}
232   \paper @{ @}
233 @}
234 @end example
235
236 @lilypond[noindent]
237 \score {
238   \notes {
239      \time 3/4
240      \clef bass
241      c2 e4 g2.
242      f4 e d c2 r4
243   }
244   \paper {
245     linewidth = 55 * \staffspace
246   }
247 }
248 @end lilypond
249
250 In the rest of the tutorial we will often leave out @code{\score}
251 and @code{\paper} for clarity. However, both must be present when
252 feeding the file to LilyPond.
253
254 For more elaborate information on
255
256 @table @asis
257 @item  entering pitches and durations
258 see 
259 @ref{Pitches} and @ref{Durations}.
260 @item Clefs
261 see @ref{Clef}
262 @item Time signatures and other timing commands
263 see  @ref{Time signature}.
264 @end table 
265
266 @node Running LilyPond
267 @section Running LilyPond
268
269 In the last section we explained what kind of things you could enter
270 in a LilyPond file.  In this section we explain what commands to run
271 and how to view or print the output.  If you have not used LilyPond
272 before, want to test your setup, or want to run an example file
273 yourself, read this section.  The instructions that follow are for
274 Unix-like systems.  Some additional instructions for Microsoft Windows
275 are given at the end of this section.
276
277 Begin by opening a terminal window and starting a text editor.  For
278 example, you could open an xterm and execute
279 @code{joe}.@footnote{There are macro files for VIM addicts, and there
280 is a @code{LilyPond-mode} for Emacs addicts. If it has not been
281 installed already, then refer to the file @file{INSTALL.txt}}.  In
282 your text editor, enter the following input and save the file as
283 @file{test.ly}:
284
285 @quotation
286 @example
287 \score @{
288   \notes @{ c'4 e' g' @}
289 @} 
290 @end example
291 @end quotation
292
293 To process @file{test.ly}, proceed as follows:
294
295 @quotation
296 @example
297 lilypond test.ly
298 @end example
299 @end quotation
300
301 You will see something resembling:
302
303 @quotation
304 @example
305 GNU LilyPond 1.8.0
306 Now processing: `/home/fred/ly/test.ly'
307 Parsing...
308 Interpreting music...[1]
309  @emph{ ... more interesting stuff ... }
310 PDF output to `test.pdf'...
311 DVI output to `test.dvi'...
312 @end example
313 @end quotation
314 @cindex DVI file
315 @cindex Viewing music
316 @cindex xdvi
317
318 The result is the file @file{test.pdf}.@footnote{For @TeX{}
319 afficionados: there is also a @file{test.dvi} file. It can be viewed
320 with @code{xdvi}. The DVI uses a lot of PostScript specials, which do
321 not show up in the magnifying glass. The specials also mean that the
322 DVI file cannot be processed with @code{dvilj}. Use @code{dvips} for
323 printing.
324 @cindex dvips
325 @cindex dvilj
326 @cindex DVI driver
327 }  One of the following commands should put the PDF on your
328 screen:
329 @quotation
330 @example
331   gv test.pdf
332   ghostview test.pdf
333   ggv test.pdf
334   kghostview test.pdf
335   xpdf test.pdf
336   gpdf test.pdf
337   acroread test.pdf
338   gsview32 test.pdf
339 @end example
340 @end quotation
341
342 @noindent
343 If the music on your screen looks good, you can print it by clicking
344 File/Print inside your viewing program.
345
346 @cindex Ghostscript
347 @cindex @code{lpr}
348 @cindex Printing output
349 @cindex PostScript
350 @cindex PDF
351
352
353 On Windows, the same procedure should work, the terminal is started by
354 clicking on the LilyPond or Cygwin icon.  Any text editor (such as
355 NotePad, Emacs or Vim) may be used to edit the LilyPond file.
356
357 To view the PDF file, try the following:
358 @itemize
359 @item
360 If your system has a PDF viewer installed, open
361 @file{C:\Cygwin\home\@var{your-name}} in the explorer and double-click
362 @file{test.pdf}.
363 @item
364 If you prefer the keyboard, you can try to enter one of the commands
365 from the list shown before in the terminal. If none work, go to
366 @uref{http://www.cs.wisc.edu/~ghost/} to install the proper software.
367 @end itemize
368
369 The commands for formatting and printing music on all platforms are
370 detailed in @ref{Invoking LilyPond}.
371
372 @node More about pitches
373 @section More about pitches 
374
375 A @rglos{sharp} (@texisharp{}) pitch is made by adding @samp{is} to
376 the name, a @rglos{flat} (@texiflat{}) pitch by adding @samp{es}.  As
377 you might expect, a @rglos{double sharp} or @rglos{double flat} is
378 made by adding @samp{isis} or @samp{eses}:@footnote{This syntax
379 derived from note naming conventions in Nordic and Germanic languages,
380 like German and Dutch.}
381
382 @example
383 cis1 ees fisis aeses
384 @end example
385
386 @lilypond[notime]
387 \set Score.timing =  ##f
388 \transpose c c' { cis1 ees fisis aeses s16_" " }
389 @end lilypond
390
391  
392 @cindex key signature, setting
393
394 The key signature is set with the command ``@code{\key}'', followed by
395 a pitch and @code{\major} or @code{\minor}:
396 @quotation
397 @example
398 \key d \major
399 g1
400 \key c \minor
401 g
402 @end example
403
404 @lilypond[fragment]
405 \set Staff.TimeSignature =  \turnOff
406 \key d \major
407 g'1
408 \key c \minor
409 g'
410 @end lilypond
411 @end quotation
412
413
414 Key signatures together with the pitch (including alterations) are
415 used together to determine when to print accidentals.  This is a
416 feature that often causes confusion to newcomers, so let us explain it
417 in more detail:
418
419
420 LilyPond has a sharp distinction between musical content and
421 layout. The alteration (flat, natural or sharp) of a note is part of
422 the pitch, and is therefore musical content. Whether an accidental (a
423 flat, natural or sharp @emph{sign}) is a printed in front of the
424 corresponding note is a question of layout. Layout is something that
425 follows rules, so accidentals are printed automatically according to
426 those rules.  The pitches in your music are works of art, so they will
427 not be added automatically, and you must enter what you want to hear.
428
429 For example, in this example:
430 @lilypond[fragment]
431 \set Staff.TimeSignature =  \turnOff
432 \key d \major
433 d' cis' fis'
434 @end lilypond
435
436 @noindent
437 no note gets an explicit accidental, but still you enter
438
439 @example
440 \key d \major
441 d cis fis
442 @end example
443
444 The code @code{d} does not mean ``print a black dot just below the
445 staff.'' Rather, it means: ``a note with pitch D-natural.'' In the key
446 of A-flat, it gets an accidental:
447
448 @lilypond[fragment]
449 \set Staff.TimeSignature = \turnOff
450 \key as \major
451 d'
452 @end lilypond
453
454 @noindent
455 @example
456 \key as \major
457 d
458 @end example
459
460 Adding all alterations explicitly might require some more effort when
461 typing, but the advantage is that transposing is easier, and music can
462 be printed according to different conventions.  See @ref{Accidentals}
463 for some examples how accidentals can be printed according to
464 different rules.
465
466
467 @cindex tie
468 A tie is created by adding a tilde ``@code{~}'' to the first note
469 being tied:
470 @quotation
471 @lilypond[fragment,verbatim,relative=2]
472 g4~ g a2~ a4
473 @end lilypond
474 @end quotation
475 @separate
476
477 This example shows the key signature, accidentals and ties in action:
478
479 @quotation
480 @example
481 \score @{
482   \notes @{
483     \time 4/4
484     \key g \minor
485     \clef violin
486     r4 r8 a8 gis4 b
487     g8 d4.~ d e8
488     fis4 fis8 fis8 eis4  a8 gis~
489     gis2 r2
490   @}
491   \paper @{ @}
492 @}
493 @end example
494
495 @lilypond
496 \score {
497   \notes { \transpose c c' { 
498     \time 4/4
499     \key g \minor
500     \clef violin
501     r4 r8 a8 gis4 b
502     g8 d4.~ d e8
503     fis4 fis8 fis8 eis4  a8 gis~
504     gis2 r2
505   }}
506   \paper { linewidth = #(* 50 staffspace) }
507 }
508 @end lilypond
509 @end quotation
510 @cindex accidentals
511
512 There are some interesting points to note in this example.  Bar lines
513 and beams are drawn automatically.  Line breaks are calculated
514 automatically; it does not matter where the lines breaks are in the
515 source file. Finally, the order of time, key and clef changes is not
516 relevant: in the printout, these are ordered according to standard
517 notation conventions.
518
519
520 @cindex beams, by hand 
521 Beams are drawn automatically, but if you do not like where they are
522 put, they can be entered by hand. Mark the first note to be beamed
523 with @code{[} and the last one with @code{]}:
524 @quotation
525 @lilypond[fragment,relative=1,verbatim]
526 a8[ ais] d[ es r d]
527 @end lilypond
528 @end quotation
529 @separate
530
531 For more information on
532 @table @asis
533 @item Rests
534 see @ref{Rests}. 
535
536 @item Ties
537 see  @ref{Ties}.
538
539 @item Accidentals
540 see @ref{Accidentals}
541
542 @item Key signature
543 see @ref{Key signature}
544
545 @item Beams
546 see @ref{Beaming}
547 @end table
548
549
550 @node Octave entry
551 @section Octave entry
552
553
554 @c Tim wants to move this quotes example just before the: quotes-do not-work
555 @c score, but we'd need to remove quotes from the other two (key and
556 @c tie) examples...
557
558 @c better to have this just before the `octaves are bad' snipped
559 @c but we'd need to remove the ', from \key and tie 
560 To raise a note by an octave, add a high quote @code{'} (apostrophe) to
561 the note name, to lower a note one octave, add a ``low quote'' @code{,}
562 (a comma).  Middle C is @code{c'}:
563
564 @quotation
565 @example
566 c'4 c'' c''' \clef bass c c,
567 @end example
568
569 @lilypond[fragment]
570 \set Score.timing =  ##f
571 \set Staff.TimeSignature =  \turnOff
572 c'4 c'' c''' \clef bass c c,
573 @end lilypond
574 @end quotation
575 @separate
576
577 An example of the use of quotes is in the following Mozart fragment:
578 @lilypond[raggedright,fragment,verbatim]
579   \key a \major
580   \time 6/8
581   cis''8. d''16 cis''8 e''4 e''8
582   b'8. cis''16 b'8 d''4 d''8 
583 @end lilypond 
584
585 This example shows that music in a high register needs lots of quotes.
586 This makes the input less readable, and it is a source of errors.  The
587 solution is to use ``relative octave'' mode.  In practice, this is the
588 most convenient way to copy existing music.  To use relative mode, add
589 @code{\relative} before the piece of music.  You must also give a note
590 from which relative starts, in this case @code{c''}.  If you do not
591 use octavation quotes (i.e. do not add @code{'} or @code{,} after a
592 note), relative mode chooses the note that is closest to the previous
593 one.  For example, @code{c f} goes up while @code{c g} goes down:
594
595 @quotation
596 @example
597 \relative c'' @{
598   c f c g c
599 @}
600 @end example
601
602 @lilypond[fragment]
603 \set Score.timing =  ##f
604 \set Staff.TimeSignature =  \turnOff
605 \relative c'' {
606   c f c g c
607 }
608 @end lilypond
609 @end quotation
610 @separate
611
612
613 Since most music has small intervals, pieces can be written almost
614 without octavation quotes in relative mode.  The previous example is
615 entered as
616 @c
617 @lilypond[raggedright,fragment,verbatim]
618 \relative c'' {
619   \key a \major
620   \time 6/8
621   cis8. d16 cis8 e4 e8
622   b8. cis16 b8 d4 d8
623 }
624 @end lilypond 
625
626
627 @c needed better, maybe even redundant explanation
628 @c   added another example below.
629 @c grappig: Pa vond het heel logies, en slim toen-i eenmaal begreep.
630 @c in eerste instantie drong het `relative' niet door zonder extra uitleg.
631 Larger intervals are made by adding octavation quotes.
632 @quotation
633 @example
634 \relative c'' @{
635   c f, f c' c g' c,
636 @}
637 @end example
638
639 @lilypond[fragment]
640 \set Score.timing =  ##f
641 \set Staff.TimeSignature =  \turnOff
642 \relative c'' {
643   c f, f c' c g' c,
644 }
645 @end lilypond
646 @end quotation
647 @separate
648
649 Quotes or commas do not determine the absolute height of a note; the
650 height of a note is relative to the previous one.
651 @c do not use commas or quotes in this sentence
652 For example: @code{c f,} goes down; @code{f, f} are both the same;
653 @code{c' c} are the same; and @code{c g'} goes up:
654
655
656
657 Here is an example of the difference between relative mode and
658 ``normal'' (non-relative) mode:
659
660 @quotation
661 @example
662 \relative a @{
663 \clef bass
664   a d a e d c' d'
665 @}
666 @end example
667
668 @lilypond[fragment]
669 \set Score.timing =  ##f
670 \set Staff.TimeSignature =  \turnOff
671 \relative a {
672 \clef bass
673   a d a e d c' d'
674 }
675 @end lilypond
676 @end quotation
677 @separate
678
679 @quotation
680 @example
681 \clef bass
682   a d a e d c' d'
683 @end example
684
685 @lilypond[fragment]
686 \set Score.timing =  ##f
687 \set Staff.TimeSignature =  \turnOff
688 \clef bass
689   a d a e d c' d'
690 @end lilypond
691 @end quotation
692 @separate
693
694
695 For more information on Relative octaves see @ref{Relative octaves}
696 and @ref{Octave check}.
697
698
699
700
701
702
703 @node Combining music into compound expressions
704 @section Combining music into compound expressions
705
706 To print more than one staff, each piece of music that makes up a
707 staff is marked by adding @code{\context Staff} before it.  These
708 @code{Staff}'s are then grouped inside @code{\simultaneous @{} and
709 @code{@}}, as is demonstrated here:
710
711 @quotation
712 @lilypond[fragment,verbatim]
713 \simultaneous {
714   \new Staff { \clef violin c'' }
715   \new Staff { \clef bass c }
716 }
717 @end lilypond
718 @end quotation
719
720
721 In this example, @code{\simultaneous } indicates that both music
722 fragments happen at the same time, and must be printed stacked
723 vertically.  The notation @code{<< .. >>} can also be used as a
724 shorthand for @code{\simultaneous @{ .. @}}.
725
726 The command @code{\new} introduces a ``notation context''.  To
727 understand this concept, imagine that you are performing a piece of
728 music. When you are playing, you combine the symbols printed at a
729 certain point with contextual information. For example, without
730 knowing the current clef, and the accidentals in the last measure, it
731 would be impossible to determine the pitch of a note. In other words,
732 this information forms context that helps you decipher a
733 score. LilyPond produces notation from music, so in effect, it does
734 the inverse of reading scores. Therefore, it also needs to keep track
735 of contextual information. This information is maintained in
736 ``notation contexts.''  There are several types of contexts,
737 e.g. @code{Staff}, @code{Voice} and @code{Score}, but also
738 @code{Lyrics} and @code{ChordNames}. Prepending @code{\new} to a chunk
739 of music indicates what kind of context to use for interpreting it,
740 and ensures that the argument is interpreted with a fresh instance of
741 the context indicated.
742
743
744 @separate
745
746 We can now typeset a melody with two staves:
747
748 @quotation
749 @lilypond[verbatim,raggedright]
750 \score {
751   \notes 
752   << \new Staff {
753       \time 3/4
754       \clef violin
755       \relative c'' {
756         e2( d4 c2 b4 a8[ a]
757         b[ b] g[ g] a2.) }  
758     }
759     \new Staff {
760        \clef bass
761        c2 e4  g2.
762        f4 e d c2.
763     }
764   >>
765   \paper {} 
766 }
767 @end lilypond
768 @end quotation
769
770 The example shows how small chunks of music, for example, the notes
771 @code{c2}, @code{e4}, etc. of the second staff, are combined to form a
772 larger chunk by enclosing it in braces. Again, a larger chunk is
773 formed by prefix @code{\new Staff} to it, and that chunk is combined
774 with @code{<< >>}. This mechanism is similar with mathematical
775 formulas: a big formula is created by composing small formulas.  Such
776 formulas are called expressions, and their definition is recursive, so
777 you can make arbitrarily complex and large expressions.  For example,
778
779 @quotation
780   1
781
782   1 + 2
783   
784   (1 + 2) * 3
785   
786   ((1 + 2) * 3) / (4 * 5)
787 @end quotation
788 @cindex expression
789 @cindex music expression
790 This example shows a sequence of expressions, where each expression is
791 contained in the next one.  The simplest expressions are numbers and
792 operators (like +, * and /). Parentheses are used to group
793 expressions.  In LilyPond input, a similar mechanism is used. Here,
794 the simplest expressions are notes and rests.  By enclosing
795 expressions in @code{<< >>} and @code{@{ @}}, more complex music is
796 formed. The @code{\new} command also forms new expressions; prepending
797 it to a music expression yields a new expression.
798
799 Like mathematical expressions, music expressions can be nested
800 arbitrarily deep, e.g.
801 @lilypond[verbatim,relative=1] 
802   { c <<c e>>
803       << { e f } { c <<b d>> }
804       >>
805   }
806 @end lilypond 
807
808
809 @cindex indent
810 When spreading expressions over multiple lines, it is customary to use
811 an indent that indicates the nesting level. Formatting music like this
812 eases reading, and helps you  insert the right amount of closing
813 braces at the end of an expression. For example,
814 @example
815 \score @{
816   \notes <<
817     @{
818       @dots{}
819     @}
820     @{
821       @dots{}
822     @}
823   >>
824 @}
825 @end example
826
827
828 For more information on context see the Technical manual description
829 in @ref{Interpretation context}.
830
831
832
833 @node Adding articulation marks to notes
834 @section Adding articulation marks to notes
835
836 @cindex articulation
837 @cindex accents
838 @cindex staccato
839
840 Common accents can be added to a note using a dash (`@code{-}') and a
841 single character:
842 @quotation
843 @lilypond[verbatim,relative=1]
844 c-. c-- c-> c-^ c-+ c-_
845 @end lilypond
846 @end quotation
847 @separate
848
849 @cindex fingering
850 Similarly, fingering indications can be added to a note using a dash
851 (`@code{-}') and the digit to be printed:
852 @c
853 @lilypond[verbatim,relative=1]
854   c-3 e-5 b-2 a-1
855 @end lilypond
856
857
858 Dynamic signs are made by adding the markings to the note:
859 @quotation
860 @lilypond[verbatim,relative=1]
861 c\ff c\mf
862 @end lilypond
863 @end quotation
864 @separate
865
866 @cindex dynamics
867 @cindex decrescendo
868 @cindex crescendo
869
870 Crescendi and decrescendi are started with the commands @code{\<} and
871 @code{\>}. The command @code{\!} finishes a crescendo on the note it
872 is attached to:
873 @quotation
874 @lilypond[verbatim,relative=1]
875 c2\<  c2\!\ff\>  c2  c2\!
876 @end lilypond
877 @end quotation
878 @separate
879
880
881
882 @cindex slur
883
884 A slur is drawn across many notes, and indicates bound articulation
885 (legato).  The starting note and ending note are marked with a
886 ``@code{(}'' and a ``@code{)}'' respectively:
887
888 @quotation
889 @lilypond[fragment,relative=1,verbatim]
890 d4( c16)( cis d e c cis d e)( d4)
891 @end lilypond
892 @end quotation
893 @separate
894 @cindex slurs versus ties
895 A slur looks like a tie, but it has a different meaning. A tie simply
896 makes the first note sound longer, and can only be used on pairs of
897 notes with the same pitch. Slurs indicate the articulations of notes,
898 and can be used on larger groups of notes. Slurs and ties are also
899 nested in practice:
900 @c
901 @lilypond[fragment,relative=1]
902 c2~( c8 fis fis4 ~ fis2 g2)
903 @end lilypond
904
905 @cindex phrasing slurs
906 If you need two slurs at the same time (one for articulation, one for
907 phrasing), you can also make a phrasing slur with @code{\(} and
908 @code{\)}.
909
910 @quotation
911 @lilypond[fragment,relative=1,verbatim]
912 a8(\( ais b  c) cis2 b'2 a4 cis,  c\)
913 @end lilypond
914 @end quotation
915
916
917 For more information on
918 @table @asis
919 @item fingering
920   see @ref{Fingering instructions}
921 @item articulations
922   see @ref{Articulations}
923 @item slurs
924   see @ref{Slurs}
925 @item phrasing slurs
926   see  @ref{Phrasing slurs}
927 @item dynamics
928   see  @ref{Dynamics}
929 @item fingering
930 @end table
931
932 @node Combining notes into chords
933 @section Combining notes into chords
934
935 @cindex chords
936 Chords can be made by
937 surrounding pitches with @code{<} and @code{>}:
938 @quotation
939 @lilypond[relative,fragment,verbatim]
940 r4 <c e g>4 <c f a>8
941 @end lilypond
942 @end quotation
943 @separate
944
945
946 You can combine beams and ties with chords.  Beam and tie markings
947 must be placed outside the chord markers:
948 @quotation
949 @lilypond[relative,fragment,verbatim]
950 r4 <c e g>8[ <c f a>]~ <c f a>
951 @end lilypond
952 @end quotation
953
954 @quotation
955 @example
956 r4 <c e g>8\>( <c e g> <c e g>  <c f a>8\!)
957 @end example
958 @lilypond[relative,fragment]
959 \slurUp
960 r4 <c e g>8\>( <c e g> <c e g>  <c f a>8\!)
961 @end lilypond
962 @end quotation
963 @separate
964
965
966
967
968 @node Basic rhythmical commands
969 @section  Basic rhythmical commands
970
971 @cindex pickup
972 @cindex anacruse
973 @cindex upstep
974 @cindex partial measure
975 A pickup (or upstep) is entered with the keyword @code{\partial}. It
976 is followed by a duration: @code{\partial 4} is a quarter note upstep
977 and @code{\partial 8} an eighth note:
978 @lilypond[relative=1,verbatim,fragment]
979   \partial 8
980   f8 c2 d e
981 @end lilypond
982
983 @cindex tuplets
984 @cindex triplets
985 Tuplets are made with the @code{\times} keyword.  It takes two
986 arguments: a fraction and a piece of music.  The duration of the piece
987 of music is multiplied by the fraction.  Triplets make notes occupy
988 2/3 of their notated duration, so  a triplet has  2/3 as its fraction:
989 @c
990 @lilypond[relative,verbatim,fragment]
991   \times 2/3 { f8 g a }
992   \times 2/3 { c r c }
993 @end lilypond 
994
995 @cindex grace notes
996 @cindex accacciatura
997 Grace notes are also made by prefixing a note, or a set of notes with
998 a keyword. In this case, the keywords are @code{\appoggiatura}
999 and @code{\acciaccatura}
1000 @cindex appoggiatura
1001 @cindex acciaccatura
1002       
1003 @lilypond[relative=1,verbatim,fragment]
1004   c4 \appoggiatura b16 c4
1005   c4 \acciaccatura b16 c4
1006 @end lilypond
1007
1008 @noindent
1009
1010 For more information on
1011 @table @asis
1012 @item  grace notes
1013 see @ref{Grace notes},
1014 @item tuplets
1015 see @ref{Tuplets},
1016 @item upsteps 
1017 see @ref{Partial measures}.
1018 @end table
1019
1020
1021
1022 @node Commenting input files
1023 @section Commenting input files
1024
1025 @cindex comments
1026 @cindex line comment
1027 @cindex block comment
1028 Comments are pieces of the input that are ignored.  There are two
1029 types of comments. A line comments is introduced by @code{%}: after
1030 that, the rest of that line is ignored.  Block comments span larger
1031 sections of input.  Anything that is enclosed in @code{%@{} and
1032 @code{%@}} is ignored too. The following fragment shows possible uses
1033 for comments:
1034
1035 @example
1036   % notes for twinkle twinkle follow:
1037   c4 c   g' g  a a
1038   
1039   %@{
1040   
1041     This line, and the notes below
1042     are ignored, since they are in a
1043     block comment.
1044
1045     g g f f e e d d c2 
1046   %@}
1047 @end example
1048
1049
1050
1051
1052 @node Printing lyrics
1053 @section Printing lyrics
1054 @cindex lyrics
1055
1056 @cindex Lyrics
1057 @cindex Songs
1058 Lyrics are entered by separating each syllable with a space, and
1059 surrounding them with @code{\lyrics @{ @dots{} @}}, for example,
1060 @example
1061   \lyrics @{ I want to break free @}
1062 @end example
1063
1064 Like notes, lyrics are also a form of music, but they must not be
1065 printed on a staff, which is the default way to print music. To print
1066 them as lyrics, they must be marked with @code{ \new Lyrics}:
1067 @example
1068   \new Lyrics  \lyrics @{ I want to break free @}
1069 @end example
1070 The melody for this song is as follows:
1071
1072 @lilypond[fragment,relative=1]
1073    \partial 8
1074      c8
1075    \times 2/3 {  f4 g g } \times 2/3 { g4( a2) }
1076 @end lilypond
1077
1078 The lyrics can be set to these notes, combining both with the
1079 @code{\lyricsto} keyword:
1080 @example
1081   \lyricsto "@var{name}" \new Lyrics @dots{}
1082 @end example
1083 where @var{name} identifies to which melody the lyrics should be
1084 aligned. In this case, there is only one melody, so we can leave it
1085 empty.
1086
1087 The final result is 
1088 @lilypond[verbatim,fragment]
1089 \score  {
1090  \notes <<
1091    \relative c' \new Voice {
1092      \partial 8
1093      c8
1094      \times 2/3 { f g g } \times 2/3 { g4( a2) }
1095    }
1096    \lyricsto "" \new Lyrics \lyrics { I want to break free }
1097  >>
1098  \paper{ }
1099 }
1100 @end lilypond
1101
1102 @cindex melisma
1103 @cindex extender line
1104 @c synonyms?
1105 This melody ends on a @rglos{melisma}, a single syllable (``free'')
1106 sung to more than one note. This is indicated with an @emph{extender
1107 line}. It is entered as two underscores, i.e.
1108 @example
1109   \lyrics @{ I want to break free __ @}
1110 @end example 
1111 @lilypond[raggedright]
1112 \score  {
1113  \notes <<
1114    \relative c' \new Voice {
1115      \partial 8
1116      c8
1117      \times 2/3 { f g g } \times 2/3 { g4( a2) } }
1118    \lyricsto "" \new Lyrics \lyrics { I want to break free __ }
1119    >>
1120  \paper{ }
1121 }
1122 @end lilypond
1123
1124 Similarly, hyphens between words can be entered as two dashes,
1125 resulting in a centered hyphen between two syllables:
1126 @example
1127   Twin -- kle twin -- kle
1128 @end example
1129 @lilypond[raggedright]
1130 \score {
1131   << \notes \relative f' { \time 2/4
1132     f4 f c' c' }
1133     \new Lyrics \lyrics { Twin -- kle twin -- kle }
1134   >>
1135   \paper { raggedright = ##t }
1136  }
1137 @end lilypond
1138
1139 More options, like putting multiple lines of lyrics below a melody are
1140 discussed in @ref{Vocal music}.
1141
1142
1143
1144 @node A lead sheet
1145 @section A lead sheet
1146
1147 @cindex Lead sheets
1148 @cindex chords
1149 @cindex chord names
1150  
1151 In popular music, it is common to denote accompaniment as chord-names.
1152 Using them in LilyPond has two parts, just like lyrics: entering the
1153 chords (with @code{\chords}), and printing them (with @code{\new
1154 ChordNames}).
1155
1156 Chord names are entered by starting chords mode (with @code{\chords}).
1157 In chords mode, you can enter chords with a letter (indicating the
1158 root of the chord), and a durations following that:
1159 @c
1160 @lilypond[verbatim]
1161   \chords { c2 f4. g8 } 
1162 @end lilypond
1163
1164 @noindent
1165 The result of @code{\chords} is a list of chords, and is  equivalent
1166 to entering chords with @code{<@dots{}>}.
1167
1168 Other chords can be created by adding modifiers, after a colon.  The
1169 following example shows a few common modifiers:
1170 @c
1171 @lilypond[verbatim]
1172   \chords { c2 f4:m g4:maj7 gis1:dim7 }
1173 @end lilypond
1174
1175 Printing chords is done by adding @code{\context ChordNames}
1176 before the chords thus entered:
1177 @c
1178 @lilypond[verbatim]
1179  \context ChordNames \chords { c2 f4.:m g4.:maj7 gis8:dim7 }
1180 @end lilypond
1181
1182 @cindex lead sheet
1183 @separate
1184 When put together,  chord names, lyrics and a melody form
1185 a lead sheet, for example,
1186
1187 @example
1188 \score @{
1189   <<
1190     \context ChordNames \chords @{ @emph{chords} @}
1191     \notes @emph{the melody}
1192     \lyricsto "" \new Lyrics \lyrics @{ @emph{the text} @}
1193   >>
1194   \paper @{ @}
1195 @}
1196 @end example
1197 @lilypond[]
1198 \score  {
1199   << 
1200    \context ChordNames \chords { r8 c2:sus4 f } 
1201     \notes \relative c' {
1202      \partial 8
1203      c8
1204      \times 2/3 { f g g } \times 2/3 { g4( a2) } }
1205    \new Lyrics \lyricsto "" \lyrics { I want to break free __ }
1206   >>
1207  \paper{ raggedright = ##t }
1208 }
1209 @end lilypond
1210
1211
1212 A complete list of modifiers, and other options for layout are in the
1213 reference manual section @ref{Chords}.
1214
1215 @node Listening to output
1216 @section Listening to output
1217
1218 @cindex sound
1219 @cindex MIDI
1220
1221 MIDI (Musical Instrument Digital Interface) is a standard for
1222 connecting and recording digital instruments.  A MIDI file is like a
1223 tape recording of a MIDI instrument. The @code{\midi} block makes the
1224 music go to a MIDI file, so you can listen to the music you entered.
1225 It is great for checking the music: octaves that are off, or
1226 accidentals that were mistyped, stand out very much when listening to
1227 the musical transcription.
1228
1229 @code{\midi} can be used in similarly to @code{\paper @{ @}}, for
1230 example,
1231 @example 
1232 \score @{
1233     @var{..music..}
1234     \midi  @{ \tempo 4=72 @}
1235     \paper  @{ @}
1236 @}
1237 @end example 
1238
1239 Here, the tempo is specified using the @code{\tempo} command.  In this
1240 case the tempo of quarter notes is set to 72 beats per minute. More
1241 information on auditory output is in the @ref{Sound} section in the
1242 notation manual.
1243
1244
1245
1246 @node Titling
1247 @section Titling
1248
1249 Bibliographic information is entered in a separate block, the
1250 @code{\header} block. The name of the piece, its composer, etc. are
1251 entered as an assignment, within @code{\header @{ @dots{} @}}. For
1252 example,
1253 @example 
1254   \header @{
1255     title = "Eight miniatures" 
1256     composer = "Igor Stravinsky"
1257     tagline = "small is beautiful"
1258   @}
1259   
1260   \score @{ @dots{} @}
1261 @end example
1262
1263 @cindex bibliographic information
1264 @cindex titles
1265 @cindex composer
1266 @cindex Engraved by LilyPond
1267
1268 When the file is processed by the @code{lilypond} wrapper script, then
1269 the title and composer specified are printed above the music. The
1270 `tagline' is a short line printed at bottom of the last page, which
1271 normally says ``Engraved by LilyPond, version @dots{}''. In the
1272 example above, it is replaced by the line ``small is
1273 beautiful.''@footnote{Nicely printed parts are good PR for us, so do
1274 us a favor, and leave the tagline if you can.}
1275
1276 Normally, the @code{\header} is put at the top of the file. However,
1277 for a document that contains multiple pieces (e.g. an etude book, or
1278 an orchestral part with multiple movements), then the header can be
1279 put into the @code{\score} block as follows; in this case, the name of
1280 each piece will be printed before each movement:
1281
1282
1283 @cindex Engraved by LilyPond
1284 @cindex signature line
1285 @cindex tag line
1286
1287 @example 
1288   \header @{
1289     title = "Eight miniatures" 
1290     composer = "Igor Stravinsky"
1291     tagline = "small is beautiful"
1292   @}
1293   
1294   \score @{ @dots{}
1295     \header @{ piece = "Adagio" @}
1296   @}
1297   \score @{ @dots{}
1298     \header @{ piece = "Menuetto" @}
1299   @}
1300 @end example
1301
1302 More information on titling can be found in @ref{Invoking lilypond}.
1303
1304
1305 @node Single staff polyphony
1306 @section Single staff polyphony
1307
1308 @cindex polyphony
1309 @cindex multiple voices
1310 @cindex voices, more -- on a staff
1311
1312 When different melodic lines are combined on a single staff, these are
1313 printed as polyphonic voices: each voice has its own stems, slurs and
1314 beams, and the top voice has the stems up, while the bottom voice has
1315 them down.
1316
1317 Entering such parts is done by entering each voice as a sequence (with
1318 @code{@{ .. @}}), and combining those simultaneously, separating the
1319 voices with @code{\\}:
1320
1321 @example
1322   << @{ a4 g2 f4~ f4 @} \\
1323     @{ r4 g4 f2 f4 @} >>
1324 @end example
1325 @lilypond[relative=1]
1326 \context Staff   << { a4 g2 f4~ f4 } \\
1327     { r4 g4 f2 f4 } >>
1328 @end lilypond
1329
1330 For polyphonic music typesetting, spacer rests can also be convenient: these
1331 are rests that do not print.  It is useful for filling up voices that
1332 temporarily do not play:
1333 @example
1334   << @{ a4 g2 f4~ f4 @} \\
1335     @{ s4 g4 f2 f4 @} >>
1336 @end example
1337 @lilypond[relative=1]
1338 \context Staff  << { a4 g2 f4~ f4 } \\
1339     { s4 g4 f2 f4 } >>
1340 @end lilypond
1341
1342 Again, these expressions can be nested arbitrarily:
1343
1344 @lilypond[fragment]
1345 <<
1346  \new Staff 
1347   \relative c''
1348     << { a4 g2 f4~ f4 } \\
1349       { s4 g4 f2 f4 } >>
1350  \new Staff 
1351   <<  { \clef bass <c g>1 ~ <c g>4   } \\
1352      { f4 d e2  ~ e4}
1353   >>
1354 >>
1355 @end lilypond
1356
1357
1358 More features of polyphonic typesetting are in the notation manual
1359 in @ref{Polyphony}.
1360
1361 @node Piano staves
1362 @section Piano staves
1363
1364 @cindex staff switch, manual
1365 @cindex cross staff voice, manual
1366 @cindex @code{\translator}
1367
1368 Piano music is always typeset in two staves connected by a brace.
1369 Printing such a staff is done similar to the polyphonic example in
1370 @ref{Combining music into compound expressions}:
1371 @example
1372  << \new Staff @{ @dots{} @}
1373    \new Staff @{ @dots{} @}
1374  >>
1375 @end example
1376 but now this entire expression must be interpreted as a
1377 @code{PianoStaff}:
1378 @example
1379  \new PianoStaff << \new Staff @dots{} >>
1380 @end example
1381
1382 Here is a full-fledged example:
1383
1384 @lilypond[relative,fragment]
1385 \new PianoStaff
1386  << \new Staff { \time 2/4
1387      c4 c g' g  }
1388    \new Staff {
1389      \clef bass c,, c' e c }
1390  >>
1391 @end lilypond
1392
1393 More information on formatting piano music is in @ref{Piano music}. 
1394
1395 @node Setting variables
1396 @section Setting variables
1397
1398 When the music is converted from notes to print, it is interpreted
1399 from left-to-right order, similar to what happens when we read
1400 music. During this step, context-sensitive information, such as the
1401 accidentals to print, and where barlines must be placed, are stored in
1402 variables. These variables are called @emph{context properties}.
1403 The properties can also be manipulated from input files. Consider this input:
1404 @example
1405 \set Staff.autoBeaming =  ##f
1406 @end example 
1407
1408 @noindent
1409 It sets the property named @code{autoBeaming} in the current staff at
1410 this point in the music to @code{##f}, which means `false'. This
1411 property controls whether beams are printed automatically:
1412 @c
1413 @lilypond[relative=1,fragment,verbatim]
1414   c8 c c c
1415   \set Staff.autoBeaming =  ##f
1416   c8 c c c  
1417 @end lilypond
1418
1419 @noindent
1420 LilyPond includes a built-in programming language, namely, a dialect
1421 of Scheme.  The argument to @code{\property}, @code{##f}, is an
1422 expression in that language.  The first hash-mark signals that a piece
1423 of Scheme code follows. The second hash character is part of the
1424 boolean value true (@code{#t}).  Values of other types may be
1425 entered as follows:
1426 @itemize @bullet
1427 @item a string, enclosed in double quotes, for example,
1428 @example
1429   \set Staff.instrument =  #"French Horn"
1430 @end example
1431 @item a boolean: either @code{#t} or @code{#f}, for true and false
1432 respectively, e.g.
1433 @example
1434   \set autoBeaming =  ##f
1435   \set Score.skipBars =  ##t
1436 @end example
1437
1438 @item a number, such as
1439 @example
1440   \set Score.currentBarNumber =  #20
1441 @end example
1442
1443 @item a symbol, which is introduced by a quote character, as in 
1444 @example
1445   \set Staff.crescendoSpanner =  #'dashed-line
1446 @end example
1447
1448 @item a pair, which is also introduced by a quote character, like in
1449 the following statements, which set properties to the pairs (-7.5, 6) 
1450 and (3, 4) respectively:
1451
1452 @example
1453   \set Staff.minimumVerticalExtent =  #'(-7.5 . 6)
1454   \set Staff.timeSignatureFraction =  #'(3 . 4)
1455 @end example
1456
1457 @item a list, which is also introduced by a quote character. In the
1458 following example, the @code{breakAlignOrder} property is set to a
1459 list of symbols:
1460 @example
1461   \set Score.breakAlignOrder = 
1462     #'(left-edge time-signature key-signatures)
1463 @end example
1464
1465
1466 @end itemize
1467
1468 There are many different properties, and not all of them are listed in
1469 this manual. However, the program reference lists them all in the
1470 section @internalsref{Context-properties}, and most properties are
1471 demonstrated in one of the
1472 @ifhtml
1473 @uref{../../../input/test/out-www/collated-files.html,tips-and-tricks}
1474 @end ifhtml
1475 @ifnothtml
1476 tips-and-tricks
1477 @end ifnothtml
1478 examples.
1479
1480
1481 @node Fine tuning layout
1482 @section Fine tuning layout
1483
1484 Sometimes it is necessary to change music layout by hand.  When music
1485 is formatted, layout objects are created for each symbol.  For
1486 example, every clef and every note head is represented by a layout
1487 object.  These layout objects also carry variables, which we call
1488 @emph{layout properties}. By changing these variables from their
1489 values, we can alter the look of a formatted score:
1490
1491 @lilypond[verbatim,relative]
1492   c4
1493   \override Stem   #'thickness = #3.0
1494   c4 c4 c4 
1495 @end lilypond
1496
1497 @noindent
1498 In the example shown here, the layout property @code{thickness} (a
1499 symbol) is set to 3 in the @code{Stem} layout objects of the current
1500   As a result, the notes following @code{\property} have thicker
1501 stems.
1502
1503 In most cases of manual overrides, only a single object must be
1504 changed. This can be achieved by prefixing @code{\once} to the
1505 @code{\property} statement, i.e.
1506
1507 @example
1508  \once \override Stem   #'thickness = #3.0
1509 @end example
1510
1511 @lilypond[relative]
1512   c4
1513   \once \override Stem   #'thickness = #3.0
1514   c4 c4 c4 
1515 @end lilypond
1516
1517 @noindent
1518 Some overrides are so common that predefined commands are provided as
1519 a short cut.  For example, @code{\slurUp} and @code{\stemDown}. These
1520 commands are described in
1521 @ifhtml
1522 the
1523 @end ifhtml
1524 @ref{Notation manual}, under the sections for slurs and stems
1525 respectively.
1526
1527 The exact tuning possibilities for each type of layout object are
1528 documented in the program reference of the respective
1529 object. However, many layout objects share properties, which can be
1530 used to apply generic tweaks.  We mention a couple of these:
1531
1532 @itemize @bullet
1533 @item The @code{extra-offset} property, which
1534 @cindex @code{extra-offset}
1535 has a pair of numbers as value, moves around objects in the printout.
1536 The first number controls left-right movement; a positive number will
1537 move the object to the right.  The second number controls up-down
1538 movement; a positive number will move it higher.  The unit of these
1539 offsets are staff-spaces.  The @code{extra-offset} property is a
1540 low-level feature: the formatting engine is completely oblivious to
1541 these offsets.
1542
1543 In the following example, the second fingering is moved a little to
1544 the left, and 1.8 staff space downwards:
1545
1546 @cindex setting object properties
1547
1548 @lilypond[relative=1,verbatim]
1549 \stemUp
1550 f-5
1551 \once \override Fingering
1552     #'extra-offset = #'(-0.3 . -1.8) 
1553 f-5
1554 @end lilypond
1555
1556 @item
1557 Setting the @code{transparent} property will make an object be printed
1558 in `invisible ink': the object is not printed, but all its other
1559 behavior is retained. The object still takes space, it takes part in
1560 collisions, and slurs, ties and beams can be attached to it.
1561
1562 @cindex transparent objects
1563 @cindex removing objects
1564 @cindex invisible objects
1565 The following example demonstrates how to connect different voices
1566 using ties. Normally ties only happen between notes of the same
1567 voice. By introducing a tie in a different voice, and blanking a stem
1568 in that voice, the tie appears to cross voices:
1569
1570 @lilypond[fragment,relative=1,verbatim]
1571   c4 << {
1572       \once \override Stem   #'transparent = ##t
1573       b8~ b8
1574   } \\ {
1575        b[ g8]
1576   } >>
1577 @end lilypond
1578
1579 @item
1580 The @code{padding} property for objects with
1581 @cindex @code{padding}
1582 @code{side-position-interface} can be set to increase distance between
1583 symbols that are printed above or below notes. We only give an
1584 example; a more elaborate explanation is in @ref{Constructing a
1585 tweak}:
1586
1587 @lilypond[relative=1,verbatim]
1588   c2\fermata
1589   \override Script   #'padding = #3
1590   b2\fermata
1591 @end lilypond
1592
1593 @end itemize
1594
1595 More specific overrides are also possible.  The notation manual
1596 discusses in depth how to figure out these statements for yourself, in
1597 @ref{Tuning output}.
1598
1599 @node Organizing larger pieces
1600 @section Organizing larger pieces
1601
1602 When all of the elements discussed earlier are combined to produce
1603 larger files, the @code{\score} blocks get a lot bigger, because the
1604 music expressions are longer, and, in the case of polyphonic and/or
1605 orchestral pieces, more deeply nested. Such large expressions can
1606 become unwieldy.
1607
1608 By using variables, also known as identifiers, it is possible to break
1609 up complex music expressions.  An identifier is assigned as follows:
1610 @c
1611 @example
1612   namedMusic = \notes @{ @dots{}
1613 @end example
1614
1615 The contents of the music expression @code{namedMusic}, can be used
1616 later by preceding the name with a backslash, i.e. @code{\namedMusic}.
1617 In the next example, a two note motive is repeated two times by using
1618 variable substitution:
1619
1620 @lilypond[raggedright,verbatim]
1621 seufzer  = \notes {
1622   dis'8 e'8
1623 }
1624 \score { \notes {
1625   \seufzer \seufzer 
1626 } }
1627 @end lilypond
1628
1629 The name of an identifier should have alphabetic characters only, and
1630 no numbers, underscores or dashes. The assignment should be outside of
1631 the @code{\score} block.
1632
1633 It is possible to use variables for many other types of objects in the
1634 input.  For example,
1635 @example
1636   width = 4.5\cm
1637   name = "Wendy"
1638   aFivePaper = \paper @{ paperheight = 21.0 \cm @}
1639 @end example
1640 Depending on its contents, the identifier can be used in different
1641 places. The following example uses the above variables:
1642 @example
1643   \score @{
1644     \notes @{ c4^\name @}
1645     \paper @{
1646       \aFivePaper
1647       linewidth = \width
1648     @}
1649   @}
1650 @end example
1651
1652 More information on the possible uses of identifiers is in the
1653 technical manual, in @ref{Scheme datatypes}.
1654
1655
1656 @node An orchestral part
1657 @section An orchestral part
1658
1659 In orchestral music, all notes are printed twice: both in a part for
1660 the musicians, and in a full score for the conductor. Identifiers can
1661 be used to avoid double work: the music is entered once, and stored in
1662 variable. The contents of that variable is then used to generate
1663 both the part and the score.
1664
1665 It is convenient  to define the notes in a  special file, for example,
1666 suppose that the @file{horn-music.ly} contains the following part of a
1667 horn/bassoon duo.
1668 @example
1669 hornNotes = \notes \relative c @{
1670   \time 2/4
1671   r4 f8 a cis4 f e d
1672 @}
1673 @end example
1674
1675 Then, an individual part is made by putting the following in a file:
1676 @example
1677 \include "horn-music.lyinc"
1678 \header @{
1679   instrument = "Horn in F"
1680 @}
1681 \score @{
1682   \notes \transpose f c' \hornNotes
1683 @}
1684 @end example
1685 The @code{\include} command substitutes the contents of the file at
1686 this position in the file, so that @code{hornNotes} is defined
1687 afterwards.  The code @code{\transpose f c'} indicates that the
1688 argument, being @code{\hornNotes}, should be transposed by a fifth
1689 downwards: sounding @code{f} is denoted by notated @code{c'}, which
1690 corresponds with tuning of a normal French Horn in F. The
1691 transposition can be seen in the following output:
1692
1693 @lilypond[raggedright]
1694 \score {
1695   \notes \transpose f c' \notes \relative c {
1696   \time 2/4
1697   r4 f8 a cis4 f e d
1698 }
1699 }
1700 @end lilypond
1701
1702 In ensemble pieces, one of the voices often does not play for many
1703 measures. This is denoted by a special rest, the multi-measure
1704 rest. It is entered with a capital R, and followed by a duration (1
1705 for a whole note, 2 for a half note, etc.) By multiplying the
1706 duration, longer rests can be constructed. For example, the next rest
1707 takes 3 measures in 2/4 time:
1708 @example
1709   R2*3
1710 @end example
1711
1712 When printing the part, the following @code{skipBars} property must be
1713 set to false, to prevent the rest from being expanded in three one bar
1714 rests:
1715 @example
1716   \set Score.skipBars =  ##t
1717 @end example
1718 Prepending the rest and the property setting above, leads to the
1719 following result:
1720
1721 @lilypond[raggedright]
1722 \score {\notes { \transpose f c' \relative c { \time 2/4
1723 \set Score.skipBars =  ##t 
1724         R2*3
1725     r4 f8 a cis4 f e d } }}
1726 @end lilypond
1727
1728 The score is made by combining all of the music in a @code{\score}
1729 block, assuming that the other voice is in @code{bassoonNotes}, in the
1730 file @file{bassoon-music.ly}:
1731 @example
1732 \include "bassoon-music.lyinc"
1733 \include "horn-music.lyinc"
1734
1735 \score @{
1736   \simultaneous @{
1737     \new Staff \hornNotes
1738     \new Staff \bassoonNotes
1739   @} @}
1740 @end example
1741
1742 This would lead to the simple score depicted below:
1743
1744 @lilypond[raggedright]
1745 \score {
1746   \notes \relative c \simultaneous {
1747     \new Staff { \time 2/4
1748         R2*3
1749     r4 f8 a cis4 f e d }
1750     \new Staff { \clef bass
1751       r4 d,8 f | gis4 c |  b bes |
1752       a8 e f4 |  g d | gis f }
1753   } }
1754 @end lilypond 
1755
1756 More in-depth information on preparing parts and scores is in the
1757 notation manual, in @ref{Orchestral music}.
1758
1759
1760 @node Integrating text and music
1761 @section Integrating text and music
1762
1763 @cindex La@TeX{}, music in
1764 @cindex HTML, music in
1765 @cindex Texinfo, music in
1766
1767 Sometimes you might want to use music examples in a text that you are
1768 writing (for example, a musicological treatise, a songbook, or (like us)
1769 the LilyPond manual).  You can make such texts by hand, simply by
1770 importing a PostScript figure into your word processor.  However,
1771 there is an automated procedure to reduce the amount of work.
1772
1773 If you use HTML, La@TeX{}, or Texinfo, you can mix text and LilyPond
1774 code.  A script called @code{lilypond-book} will extract the music
1775 fragments, run LilyPond on them, and put back the resulting notation.
1776 This program is fully described in @ref{lilypond-book manual}.  Here
1777 we show a small example. The example contains also explanatory text,
1778 so we will not comment it further:
1779
1780 @example
1781 \documentclass[a4paper]@{article@}
1782 \begin@{document@}
1783
1784 In a lilypond-book document, you can freely mix music and text. For
1785 example:
1786 \begin@{lilypond@}
1787   \score @{ \notes \relative c' @{
1788      c2 g'2 \times 2/3 @{ f8 e d @} c'2 g4
1789   @} @}
1790 \end@{lilypond@}
1791
1792 If you have no \verb+\score+ block in the fragment,
1793 \texttt@{lilypond-book@} will supply one:
1794
1795 \begin@{lilypond@}
1796   c'4
1797 \end@{lilypond@}
1798
1799 In the example you see here, two things happened: a
1800 \verb+\score+ block was added, and the line width was set to natural
1801 length. You can specify  options by putting them in brackets:
1802
1803 \begin[staffsize=26,verbatim]@{lilypond@}
1804   c'4 f16
1805 \end@{lilypond@}
1806
1807 If you want to include large examples into the text, it is more
1808 convenient to put it in a separate file:
1809
1810 \lilypondfile@{screech-boink.ly@}
1811
1812 \end@{document@}
1813 @end example
1814
1815 Under Unix, you can view the results as follows:
1816 @example
1817 $ cd input/tutorial
1818 $ mkdir -p out/
1819 $ lilypond-book --output=out/ lilybook.tex
1820 lilypond-book (GNU LilyPond) 2.1.19
1821 Reading `input/tutorial/lilybook.tex'
1822 Reading `input/screech-boink.ly'
1823 @var{lots of stuff deleted}
1824 Writing `out/lilybook.latex'
1825 $ cd out
1826 $ latex lilybook.latex
1827 @var{lots of stuff deleted}
1828 $ xdvi lilybook 
1829 @end example
1830
1831 To convert the file into a nice PDF document, run the following
1832 commands:
1833 @example
1834 $ dvips -Ppdf -u +lilypond lilybook
1835 $ ps2pdf lilybook.ps
1836 @end example
1837
1838
1839 Running lilypond-book and running latex creates a lot of temporary
1840 files, and you would not want those to clutter up your working
1841 directory.  The @code{outdir} option to lilypond-book creates the
1842 temporary files in a separate subdirectory @file{out}.
1843
1844 The result looks more or less like this: 
1845
1846 @separate
1847
1848 In a lilypond-book document, you can freely mix music and text. For
1849 example:
1850 @lilypond
1851 \score {
1852   \notes \relative c' {
1853     c2 g'2 \times 2/3 { f8 e d } c'2 g4
1854   }
1855   \paper {
1856     raggedright = ##t
1857   }
1858 }
1859 @end lilypond
1860
1861 If you have no @code{\score} block in the fragment,
1862 @code{lilypond-book} will supply one:
1863
1864 @lilypond
1865   c'4
1866 @end lilypond
1867
1868 In the example you see here, two things happened: a
1869 @code{score} block was added, and the line width was set to natural
1870 length.  You can specify options by putting them in brackets:
1871
1872 @lilypond[staffsize=26,verbatim]
1873   c'4 f16
1874 @end lilypond
1875
1876 If you want to include large examples into the text, it is more
1877 convenient to put it in a separate file:
1878
1879 @lilypondfile{screech-boink.ly}