]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/tutorial.itely
Updates from Kurt Kroon, thanks!
[lilypond.git] / Documentation / user / tutorial.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @c This file is part of lilypond-learning.tely
3 @ignore
4     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  See TRANSLATION for details.
8 @end ignore
9
10 @ignore
11 Tutorial guidelines:  (different from policy.txt!)
12 - unless you have a really good reason, use either
13     @lilypond[verbatim,quote,ragged-right]
14   or
15     @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
16
17   Don't use any other relative=X commands (make it a non-fragment
18   example), and don't use fragment without relative=2.
19
20 - use "aes" and "ees" instead of "as" and "aes".  I know it's not
21   correct Dutch naming, but let's not confuse people with this
22   until we get to the Basic notation chapter.
23
24 - Add "Music glossary: @rglos{foo}" to the _top_ of the relevant
25   portions of the tutorial.
26
27 @end ignore
28
29
30 @node Tutorial
31 @chapter Tutorial
32
33 This tutorial starts with an introduction to the LilyPond music
34 language and how to produce printed music.  After this first
35 contact we will explain how to create common musical notation.
36
37 @menu
38 * First steps::                 
39 * Single staff notation::       
40 * Multiple notes at once::      
41 * Songs::                       
42 * Final touches::               
43 @end menu
44
45
46 @node First steps
47 @section First steps
48
49 This section gives a basic introduction to working with LilyPond.
50
51 @menu
52 * Compiling a file::            
53 * Simple notation::             
54 * Working on text files::       
55 * How to read the tutorial::    
56 @end menu
57
58
59 @node Compiling a file
60 @subsection Compiling a file
61
62 The first example demonstrates how to start working with LilyPond.
63 To create sheet music, we write a text file that specifies the
64 notation.  For example, if we write
65
66 @example
67 @{
68   c' e' g' e'
69 @}
70 @end example
71
72 @noindent
73 the result looks like this:
74
75 @c  in this case we don't want verbatim
76 @lilypond[quote,ragged-right]
77 {
78   c' e' g' e'
79 }
80 @end lilypond
81
82 @warning{Every piece of LilyPond input needs to have
83 @strong{@{ curly braces @}} placed around the input.  The braces
84 should also be surrounded by a space unless they are at the
85 beginning or end of a line to avoid ambiguities.  The braces may
86 be omitted in some examples in this manual, but don't forget them
87 in your own music!  For more information about the display of
88 examples in the manual, see @ref{How to read the tutorial}.}
89
90 @cindex Case sensitive
91 In addition, LilyPond input is @strong{case sensitive}.  @code{
92 @{ c d e @}} is valid input; @code{@{ C D E @}} will produce an
93 error message.
94
95 @smallspace
96
97 @subheading Entering music and viewing output
98
99 @cindex PDF file
100 @cindex Viewing music
101
102 In this section we will explain what commands to run and how to
103 view or print the output.
104
105 Note that there are several other text editors available with
106 better support for LilyPond.  For more information, see
107 @rprogram{Text editor support}.
108
109 @warning{the first time you ever run LilyPond, it may take a
110 minute or two because all of the system fonts have to be analyzed
111 first.  After this, LilyPond will be much faster!}
112
113 @subsubheading MacOS X
114
115 If you double click @code{LilyPond.app}, it will open with an
116 example file.  Save it, for example, to @file{test.ly} on your
117 Desktop, and then process it with the menu command @samp{Compile >
118 Typeset File}.  The resulting PDF file will be displayed on your
119 screen.
120
121 For future use of LilyPond, you should begin by selecting @q{New}
122 or @q{Open}.  You must save your file before typesetting it.  If
123 any errors occur in processing, please see the log window.
124
125
126 @subsubheading Windows
127
128 On Windows, if you double-click in the LilyPond icon on the
129 Desktop, it will open a simple text editor with an example file.
130 Save it, for example, to @file{test.ly} on your Desktop and then
131 double-click on the file to process it (the file icon looks like a
132 note).  After some seconds, you will get a file @file{test.pdf} on
133 your desktop.  Double-click on this PDF file to view the typeset
134 score.  An alternative method to process the @file{test.ly} file
135 is to drag and drop it onto the LilyPond icon using your mouse
136 pointer.
137
138 To edit an existing @file{.ly} file, right-click on it and
139 select @qq{Edit source}.  To get an empty file to start from, run
140 the editor as described above and use @qq{New} in
141 the @qq{File} menu.
142
143 Double-clicking the file does not only result in a PDF file, but
144 also produces a @file{.log} file that contains some information on
145 what LilyPond has done to the file.  If any errors occur, please
146 examine this file.
147
148 @subsubheading Unix
149
150 Create a file (such as @file{test.ly}) and enter:
151
152 @example
153 @{
154   c' e' g' e'
155 @}
156 @end example
157
158 To process @file{test.ly}, proceed as follows
159
160 @example
161 lilypond test.ly
162 @end example
163
164 @noindent
165 You will see something resembling
166
167 @example
168 lilypond test.ly
169 GNU LilyPond 2.10.0
170 Processing `test.ly'
171 Parsing...
172 Interpreting music... [1]
173 Preprocessing graphical objects...
174 Calculating line breaks... [2]
175 Layout output to `test.ps'...
176 Converting to `test.pdf'...
177 @end example
178
179
180 @node Simple notation
181 @subsection Simple notation
182
183 LilyPond will add some notation elements automatically.  In the
184 next example, we have only specified four pitches, but LilyPond
185 has added a clef, time signature, and rhythms.
186
187 @lilypond[verbatim,quote,ragged-right]
188 {
189   c' e' g' e'
190 }
191 @end lilypond
192
193 @noindent
194 This behavior may be altered, but in most cases these automatic
195 values are useful.
196
197
198 @subheading Pitches
199
200 Music glossary: @rglos{interval}, @rglos{fourth}, @rglos{scale},
201 @rglos{middle C}, @rglos{octave}.
202
203 The easiest way to enter notes is by using @code{\relative} mode.
204 In this mode, the @notation{interval} between the previous note and
205 the current note is assumed to be within a @notation{fourth}.  We
206 begin by entering the most elementary piece of music, a
207 @notation{scale}.
208
209 @lilypond[verbatim,quote,ragged-right]
210 \relative c' {
211   c d e f
212   g a b c
213 }
214 @end lilypond
215
216 The initial note is @notation{middle C}.  Each successive note is
217 within a fourth of the previous note -- in other words, the first
218 @code{c} is the closest C to middle C.  This is followed by the
219 closest D to the previous note.  We can create melodies which
220 have larger intervals:
221
222 @lilypond[verbatim,quote,ragged-right]
223 \relative c' {
224   d f a g
225   c b f d
226 }
227 @end lilypond
228
229 @noindent
230 As you may notice, this example does not start on middle C. The first
231 note -- the @code{d} -- is the closest D to middle C.
232
233 To add intervals that are larger than a fourth, we can raise
234 the @notation{octave} by adding a single quote @code{'} (or apostrophe)
235 to the note name.  We can lower the octave by adding a comma @code{,} to
236 the note name.
237
238 @lilypond[verbatim,quote,ragged-right]
239 \relative c'' {
240   a a, c' f,
241   g g'' a,, f'
242 }
243 @end lilypond
244
245 @noindent
246 To change a note by two (or more!) octaves, we use multiple
247 @code{''} or @code{,,} -- but be careful that you use two single
248 quotes @code{''} and not one double quote @code{"}@tie{}!  The
249 initial value in @code{\relative c'} may also be modified like
250 this.
251
252
253 @subheading Durations (rhythms)
254
255 Music glossary: @rglos{beam}, @rglos{duration}, @rglos{whole note},
256 @rglos{half note}, @rglos{quarter note}, @rglos{dotted note}.
257
258 The @notation{duration} of a note is specified by a number after
259 the note name.  @samp{1} for a @notation{whole note}, @samp{2} for
260 a @notation{half note}, @samp{4} for a @notation{quarter note} and
261 so on.  @notation{Beam}@tie{}s are added automatically.
262
263 @lilypond[verbatim,quote,ragged-right]
264 \relative c'' {
265   a1
266   a2 a4 a8 a
267   a16 a a a a32 a a a a64 a a a a a a a a2
268 }
269 @end lilypond
270
271 @noindent
272 If you do not specify a duration, the previous duration is used
273 for the next note.  The duration of the first note defaults to a
274 quarter.
275
276 To create @notation{dotted notes}, add a dot @samp{.} to the duration
277 number.
278
279 @lilypond[verbatim,quote,ragged-right]
280 \relative c'' {
281   a a a4. a8
282   a8. a16 a a8. a8 a4.
283 }
284 @end lilypond
285
286
287 @subheading Rests
288
289 Music glossary: @rglos{rest}.
290
291 A @notation{rest} is entered just like a note with the name @samp{r}:
292
293 @lilypond[verbatim,quote,ragged-right]
294 \relative c'' {
295   a r r2
296   r8 a r4 r4. r8
297 }
298 @end lilypond
299
300
301 @subheading Time signature
302
303 Music glossary: @rglos{time signature}.
304
305 The @notation{time signature} can be set with the @code{\time}
306 command:
307
308 @lilypond[verbatim,quote,ragged-right]
309 \relative c'' {
310   \time 3/4
311   a4 a a
312   \time 6/8
313   a4. a
314   \time 4/4
315   a4 a a a
316 }
317 @end lilypond
318
319
320 @subheading Clef
321
322 Music glossary: @rglos{clef}.
323
324 The @notation{clef} can be set using the @code{\clef} command:
325
326 @lilypond[verbatim,quote,ragged-right]
327 \relative c' {
328   \clef treble
329   c1
330   \clef alto
331   c1
332   \clef tenor
333   c1
334   \clef bass
335   c1
336 }
337 @end lilypond
338
339
340 @subheading All together
341
342 Here is a small example showing all these elements together:
343
344 @lilypond[verbatim,quote,ragged-right]
345 \relative c, {
346   \time 3/4
347   \clef bass
348   c2 e8 c' g'2.
349   f4 e d c4 c, r4
350 }
351 @end lilypond
352
353
354 @seealso
355
356 User manual: @ruser{Writing pitches}, @ruser{Writing rhythms},
357 @ruser{Writing rests}, @ruser{Time signature}, @ruser{Clef}.
358
359
360 @c HERE's where I started
361
362 @node Working on text files
363 @subsection Working on text files
364
365 LilyPond input files are similar to source files in many common
366 programming languages.  They are case sensitive, and white-space
367 is generally equivalent.  Expressions are formed with curly braces
368 @{ @}, and comments are denoted with @code{%} or @code{%@{ ...
369 %@}}.
370
371 If the previous sentence sounds like nonsense, don't worry!  We'll
372 explain what all these terms mean:
373
374 @itemize
375
376 @cindex Case sensitive
377 @item @strong{Case sensitive}:
378 it matters whether you enter a letter in lower case (e.g. @code{a,
379 b, s, t}) or upper case (e.g.  @code{A, B, S, T}).  Notes are
380 lower case: @code{@{ c d e @}} is valid input; @code{@{ C D E @}}
381 will produce an error message.
382
383 @item @strong{Whitespace insensitive}:
384 it does not matter how many spaces (or new lines) you add.
385 @code{@{ c d e @}} means the same thing as @code{@{ c @tie{}
386 @tie{} @tie{} d e @}} and
387
388 @example
389 @{ c                        d
390                    e   @}
391 @end example
392
393 @noindent
394 Of course, the previous example is hard to read.  A good rule of
395 thumb is to indent code blocks with either a tab or two spaces:
396
397 @example
398 @{
399   c d e
400 @}
401 @end example
402
403 @item @strong{Expressions:}
404 Every piece of LilyPond input needs to have @strong{@{ curly
405 braces @}} placed around the input.  These braces tell LilyPond
406 that the input is a single music expression, just like parentheses
407 @samp{()} in mathematics.  The braces should be surrounded by a
408 space unless they are at the beginning or end of a line to avoid
409 ambiguities.
410
411 A function (such as @code{\relative @{ @}}) also counts as a
412 single music expression.
413
414 @cindex comments
415 @cindex line comment
416 @cindex block comment
417 @item @strong{Comments}:
418 A comment is a remark for the human reader of the music input; it
419 is ignored while parsing, so it has no effect on the printed
420 output.  There are two types of comments.  The percent symbol
421 @samp{%} introduces a line comment; anything after @samp{%} on
422 that line is ignored.  A block comment marks a whole section of
423 music input as a comment.  Anything that is enclosed in @code{%@{}
424 and @code{%@}} is ignored.  (Comments do not nest.)  The following
425 fragment shows possible uses for comments
426
427 @example
428 % notes for twinkle twinkle follow
429   c4 c g' g a a g2
430
431 %@{
432   This line, and the notes below
433   are ignored, since they are in a
434   block comment.
435
436   g g f f e e d d c2
437 %@}
438 @end example
439
440 @end itemize
441
442 There are more tips for constructing input files in
443 @ruser{Suggestions for writing LilyPond files}.
444
445
446 @node How to read the tutorial
447 @subsection How to read the tutorial
448
449 As we saw in @ruser{Working on text files}, LilyPond input must be
450 surrounded by @{ @} marks or a @code{\relative c'' @{ ... @}}.
451 For the rest of this manual, most examples will omit this.  To
452 replicate the examples, you may copy and paste the displayed input
453 but you @strong{must} add the @code{\relative c'' @{ @}} like
454 this:
455
456 @example
457 \relative c'' @{
458   ... example goes here...
459 @}
460 @end example
461
462 Why omit the braces?  Most examples in this manual can be inserted
463 into the middle of a longer piece of music.  For these examples,
464 it does not make sense to add @code{\relative c'' @{ @}} -- you
465 should not place a @code{\relative} inside another
466 @code{\relative}!  If we included @code{\relative c'' @{ @}}
467 around every example, you would not be able to copy a small
468 documentation example and paste it inside a longer piece of your
469 own.  Most people want to add material to an existing piece, so we
470 format the manual this way.
471
472
473 @subheading Clickable examples
474
475 Many people learn programs by trying and fiddling around with the
476 program.  This is also possible with LilyPond.  If you click on a
477 picture in the HTML version of this manual, you will see the exact
478 LilyPond input that was used to generate that image.  Try it on
479 this image:
480
481 @c no verbatim here
482 @lilypond[quote,ragged-right]
483 \relative c'' {
484   c-\markup { \bold \huge { Click here.  } }
485 }
486 @end lilypond
487
488 By cutting and pasting everything in the @qq{ly snippet} section,
489 you have a starting template for experiments.  To see exactly the
490 same output (line-width and all), copy everything from @qq{Start
491 cut-&-pastable section} to the bottom of the file.
492
493
494 @node Single staff notation
495 @section Single staff notation
496
497 This section introduces common notation that is used for one voice
498 on one staff.
499
500 @menu
501 * Relative note names::         
502 * Accidentals and key signatures::  
503 * Ties and slurs::              
504 * Articulation and dynamics::   
505 * Automatic and manual beams::  
506 * Advanced rhythmic commands::  
507 @end menu
508
509
510 @node Relative note names
511 @subsection Relative note names
512
513 Music glossary: @rglos{octave}, @rglos{fourth}, @rglos{fifth}.
514
515 As we saw in @ref{Simple notation}, LilyPond calculates the pitch of
516 each note relative to the previous one@footnote{There is another mode
517 of entering pitches, @ruser{Absolute note names}, but in practice
518 relative mode is much easier and safer to use.}.  If no extra
519 @notation{octave} marks (@code{'} and @code{,}) are added, it assumes
520 that each pitch is within a @notation{fourth} of the previous note.
521
522 LilyPond examines pitches based on the note names -- in other
523 words, an augmented fourth is @emph{not} treated the same as a
524 diminished fifth.  If we begin at a C, then an F-sharp will be placed a
525 higher than the C, while a G-flat will be placed lower than the C.
526
527 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
528 c2 fis
529 c2 ges
530 @end lilypond
531
532 @seealso
533 @quotation
534 @table @asis
535 @item Relative octaves
536 see @ruser{Relative octaves}.
537 @item Octave check
538 see @ruser{Octave check}.
539 @end table
540 @end quotation
541
542
543 @node Accidentals and key signatures
544 @subsection Accidentals and key signatures
545
546 @subheading Accidentals
547
548 Music glossary: @rglos{sharp}, @rglos{flat}, @rglos{double sharp},
549 @rglos{double flat}, @rglos{accidental}.
550
551 A @notation{sharp} pitch is made by adding @samp{is} to the name, and
552 a @notation{flat} pitch by adding @samp{es}.  As you might expect, a
553 @notation{double sharp} or @notation{double flat} is made by adding
554 @samp{isis} or @samp{eses}@footnote{This syntax derived from note
555 naming conventions in Nordic and Germanic languages, like German
556 and Dutch.  To use other names for @notation{accidentals}, see
557 @ruser{Note names in other languages}.}
558
559 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
560 cis1 ees fisis, aeses
561 @end lilypond
562
563 @cindex key signature, setting
564 @subheading Key signatures
565
566 Music glossary: @rglos{key signature}, @rglos{major}, @rglos{minor}.
567
568 The @notation{key signature} is set with the command @code{\key}
569 followed by a pitch and @code{\major} or @code{\minor}.
570
571 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
572 \key d \major
573 a1
574 \key c \minor
575 a
576 @end lilypond
577
578 @smallspace
579
580 @subheading Warning: key signatures and pitches
581
582 Music glossary: @rglos{accidental}, @rglos{key signature},
583 @rglos{pitch}, @rglos{flat}, @rglos{natural}, @rglos{sharp}.
584
585 To determine whether to print an @notation{accidental}, LilyPond
586 examines the pitches and the @notation{key signature}.  The key
587 signature only affects the @emph{printed} accidentals, not the note's
588 @notation{pitch}!  This is a feature that often causes confusion to
589 newcomers, so let us explain it in more detail.
590
591 LilyPond makes a sharp distinction between musical content and
592 layout.  The alteration (@notation{flat}, @notation{natural} or @notation{sharp}) of a note is part of the pitch, and is therefore
593 musical content.  Whether an accidental (a @emph{printed} flat, natural
594 or sharp sign) is printed in front of the corresponding note is a
595 question of layout.  Layout is something that follows rules, so
596 accidentals are printed automatically according to those rules.  The
597 pitches in your music are works of art, so they will not be added
598 automatically, and you must enter what you want to hear.
599
600 In this example:
601
602 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
603 \key d \major
604 d cis fis
605 @end lilypond
606
607 @noindent
608 No note has a printed accidental, but you must still add the
609 @samp{is} to @code{cis} and @code{fis}.
610
611 The code @samp{e} does not mean @qq{print a black dot just below
612 the first line of the staff.}  Rather, it means: @qq{there is a
613 note with pitch E-natural.}  In the key of A-flat major, it
614 @emph{does} get an accidental:
615
616 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
617 \key aes \major
618 e
619 @end lilypond
620
621 Adding all alterations explicitly might require a little more
622 effort when typing, but the advantage is that transposing is
623 easier, and accidentals can be printed according to different
624 conventions.  See @ruser{Automatic accidentals}, for some examples
625 how accidentals can be printed according to different rules.
626
627 @seealso
628 @quotation
629 @table @asis
630 @item Accidentals
631 see @ruser{Accidentals}, and @ruser{Automatic accidentals}.
632 @item Key signature
633 see @ruser{Key signature}
634 @item Pitch names
635 see @rglos{Pitch names}.
636 @end table
637 @end quotation
638
639
640 @node Ties and slurs
641 @subsection Ties and slurs
642
643 @cindex ties
644 @subheading Ties
645
646 Music glossary: @rglos{tie}.
647
648 A @notation{tie} is created by appending a tilde @samp{~} to the
649 first note being tied
650
651 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
652 g4~ g c2~
653 c4 ~ c8 a8 ~ a2
654 @end lilypond
655
656 @cindex slurs
657 @subheading Slurs
658
659 Music glossary: @rglos{slur}.
660
661 A @notation{slur} is a curve drawn across many notes.  The starting
662 note and ending note are marked with @samp{(} and @samp{)}
663 respectively.
664
665 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
666 d4( c16) cis( d e c cis d) e( d4)
667 @end lilypond
668
669 @cindex slurs, phrasing
670 @cindex phrasing slurs
671 @subheading Phrasing slurs
672
673 Music glossary: @rglos{phrasing}, @rglos{legato}.
674
675 Slurs to indicate longer @notation{phrasing} can be entered with
676 @code{\(} and @code{\)}.  You can have both @notation{legato} slurs and
677 phrasing slurs at the same time, but you cannot have simultaneous legato
678 slurs or simultaneous phrasing slurs.
679
680 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
681 a8(\( ais b c) cis2 b'2 a4 cis,\)
682 @end lilypond
683
684 @smallspace
685
686 @cindex slurs versus ties
687 @subheading Warnings: slurs vs. ties
688
689 Music glossary: @rglos{articulation}, @rglos{slur}, @rglos{tie}.
690
691 A @notation{slur} looks like a @notation{tie}, but it has a different
692 meaning.  A tie simply makes the first note longer, and can only be used on pairs of notes with the same pitch.  Slurs indicate the
693 @notation{articulation} of notes, and can be used on larger groups of
694 notes. Slurs and ties can be nested.
695
696 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
697 c2~( c8 fis fis4 ~ fis2 g2)
698 @end lilypond
699
700 @seealso
701 @quotation
702 @table @asis
703 @item Ties
704 see @ruser{Ties}.
705 @item Slurs
706 see @ruser{Slurs}.
707 @item Phrasing slurs
708 see @ruser{Phrasing slurs}.
709 @end table
710 @end quotation
711
712
713 @node Articulation and dynamics
714 @subsection Articulation and dynamics
715
716 @cindex articulation
717 @cindex accents
718 @cindex staccato
719 @subheading Articulations
720
721 Music glossary: @rglos{articulation}.
722
723 Common @notation{articulation}@tie{}s can be added to a note using a
724 dash @samp{-} and a single character:
725
726 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
727 c-. c-- c-> c-^ c-+ c-_
728 @end lilypond
729
730 @cindex fingering
731 @subheading Fingerings
732
733 Music glossary: @rglos{fingering}.
734
735 Similarly, @notation{fingering} indications can be added to a note using
736 a dash (@samp{-}) and the digit to be printed:
737
738 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
739 c-3 e-5 b-2 a-1
740 @end lilypond
741
742 Articulations and fingerings are usually placed automatically, but
743 you can specify a direction using @samp{^} (up) or @samp{_}
744 (down).  You can also use multiple articulations on the same note.
745 However, in most cases it is best to let LilyPond determine the
746 articulation directions.
747
748 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
749 c_-^1 d^. f^4_2-> e^-_+
750 @end lilypond
751
752 @subheading Dynamics
753
754 Music glossary: @rglos{dynamics}, @rglos{crescendo},
755 @rglos{decrescendo}.
756
757 Dynamic signs are made by adding the markings (with a backslash)
758 to the note
759
760 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
761 c\ff c\mf c\p c\pp
762 @end lilypond
763
764 @cindex dynamics
765 @cindex decrescendo
766 @cindex crescendo
767
768 Crescendi and decrescendi are started with the commands @code{\<}
769 and @code{\>}.  An ending dynamic, for example @code{\f}, will
770 finish the (de)crescendo, or the command @code{\!} can be used:
771
772 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
773 c2\< c2\ff\> c2 c2\!
774 @end lilypond
775
776 @seealso
777 @quotation
778 @table @asis
779 @item Articulations
780 see @ruser{Articulations}.
781 @item Fingering
782 see @ruser{Fingering instructions}.
783 @item Dynamics
784 see @ruser{Dynamics} (User manual) and @rglos{dynamics} (Glossary).
785 @end table
786 @end quotation
787
788 @c CONTINUE HERE
789
790 @node Automatic and manual beams
791 @subsection Automatic and manual beams
792
793 @cindex beams, by hand
794 All @rglos{beam}s are drawn automatically:
795
796 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
797 a8 ais d ees r d c16 b a8
798 @end lilypond
799
800 @noindent
801 If you do not like the automatic beams, they may be overridden
802 manually.  Mark the first note to be beamed with @samp{[} and the
803 last one with @samp{]}.
804
805 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
806 a8[ ais] d[ ees r d] a b
807 @end lilypond
808
809 @seealso
810 @quotation
811 @table @asis
812 @item Automatic beams
813 see @ruser{Automatic beams}.
814 @item Manual beams
815 see @ruser{Manual beams}.
816 @end table
817 @end quotation
818
819
820 @node Advanced rhythmic commands
821 @subsection Advanced rhythmic commands
822
823 @cindex pickup
824 @cindex anacruse
825 @cindex partial measure
826 @subheading Partial measure
827
828 A pickup (or @rglos{anacrusis}) is entered with the keyword
829 @code{\partial}.  It is followed by a duration: @code{\partial 4}
830 is a quarter note pickup and @code{\partial 8} an eighth note.
831
832 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
833 \partial 8
834 f8 c2 d
835 @end lilypond
836
837 @cindex tuplets
838 @cindex triplets
839 @subheading Tuplets
840
841 Tuplets are made with the @code{\times} keyword.  It takes two
842 arguments: a fraction and a piece of music.  The duration of the
843 piece of music is multiplied by the fraction.  Triplets make notes
844 occupy 2/3 of their notated duration, so a triplet has 2/3 as its
845 fraction
846
847 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
848 \times 2/3 { f8 g a }
849 \times 2/3 { c r c }
850 \times 2/3 { f,8 g16[ a g a] }
851 \times 2/3 { d4 a8 }
852 @end lilypond
853
854 @cindex grace notes
855 @cindex acciaccatura
856 @cindex appoggiatura
857 @subheading Grace notes
858
859 Grace notes are created with the @code{\grace} command, although
860 they can also be created by prefixing a music expression with the
861 keyword @code{\appoggiatura} or @code{\acciaccatura}
862
863 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
864 c2 \grace { a32[ b] } c2
865 c2 \appoggiatura b16 c2
866 c2 \acciaccatura b16 c2
867 @end lilypond
868
869 @seealso
870 @quotation
871 @table @asis
872 @item Grace notes
873 see @ruser{Grace notes},
874 @item Tuplets
875 see @ruser{Tuplets},
876 @item Pickups
877 see @ruser{Partial measures}.
878 @end table
879 @end quotation
880
881
882 @node Multiple notes at once
883 @section Multiple notes at once
884
885 This section introduces having more than one note at the same
886 time: multiple instruments, multiple staves for a single
887 instrument (i.e. piano), and chords.
888
889 Polyphony in music refers to having more than one voice occurring
890 in a piece of music.  Polyphony in LilyPond refers to having more
891 than one voice on the same staff.
892
893 @menu
894 * Music expressions explained::  
895 * Multiple staves::             
896 * Piano staves::                
897 * Combining notes into chords::  
898 * Single staff polyphony::      
899 @end menu
900
901
902 @node Music expressions explained
903 @subsection Music expressions explained
904
905 In LilyPond input files, music is represented by @emph{music
906 expressions}.  A single note is a music expression:
907
908 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
909 a4
910 @end lilypond
911
912 Enclosing a note in braces creates a @emph{compound music
913 expression}.  Here we have created a compound music expression
914 with two notes:
915
916 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
917 { a4 g4 }
918 @end lilypond
919
920 Putting a group of music expressions (e.g. notes) in braces means
921 that they are in sequence (i.e. each one follows the previous
922 one).  The result is another music expression:
923
924 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
925 { { a4 g } f g }
926 @end lilypond
927
928 @subheading Simultaneous music expressions: multiple staves
929
930 This technique is useful for polyphonic music.  To enter music
931 with more voices or more staves, we combine expressions in
932 parallel.  To indicate that two voices should play at the same
933 time, simply enter a simultaneous combination of music
934 expressions.  A @q{simultaneous} music expression is formed by
935 enclosing expressions inside @code{<<} and @code{>>}.  In the
936 following example, three sequences (all containing two separate
937 notes) are combined simultaneously:
938
939 @lilypond[verbatim,quote,ragged-right]
940 \relative c'' {
941   <<
942     { a4 g }
943     { f e }
944     { d b }
945   >>
946 }
947 @end lilypond
948
949 Note that we have indented each level of the input with a
950 different amount of space.  LilyPond does not care how much (or
951 little) space there is at the beginning of a line, but indenting
952 LilyPond code like this makes it much easier for humans to read.
953
954 @warning{each note is relative to the previous note in
955 the input, not relative to the @code{c''} in the initial
956 @code{\\relative} command.}
957
958
959 @subheading Simultaneous music expressions: single staff
960
961 To determine the number of staves in a piece, LilyPond looks at
962 the first expression.  If it is a single note, there is one staff;
963 if there is a simultaneous expression, there is more than one
964 staff.
965
966 @lilypond[verbatim,quote,ragged-right]
967 \relative c'' {
968   c2 <<c e>>
969   << { e f } { c <<b d>> } >>
970 }
971 @end lilypond
972
973 @cindex expression
974 @cindex music expression
975 @subheading Analogy: mathematical expressions
976
977 This mechanism is similar to mathematical formulas: a big formula
978 is created by composing small formulas.  Such formulas are called
979 expressions, and their definition is recursive so you can make
980 arbitrarily complex and large expressions.  For example,
981
982 @example
983 1
984
985 1 + 2
986
987 (1 + 2) * 3
988
989 ((1 + 2) * 3) / (4 * 5)
990 @end example
991
992 This is a sequence of expressions, where each expression is
993 contained in the next (larger) one.  The simplest expressions are
994 numbers, and larger ones are made by combining expressions with
995 operators (like @samp{+}, @samp{*} and @samp{/}) and parentheses.
996 Like mathematical expressions, music expressions can be nested
997 arbitrarily deep, which is necessary for complex music like
998 polyphonic scores.
999
1000
1001 @node Multiple staves
1002 @subsection Multiple staves
1003
1004 As we saw in @ruser{Music expressions explained}, LilyPond input
1005 files are constructed out of music expressions.  If the score
1006 begins with simultaneous music expressions, LilyPond creates
1007 multiples staves.  However, it is easier to see what happens if we
1008 create each staff explicitly.
1009
1010 To print more than one staff, each piece of music that makes up a
1011 staff is marked by adding @code{\new Staff} before it.  These
1012 @code{Staff} elements are then combined in parallel with @code{<<}
1013 and @code{>>}:
1014
1015 @lilypond[verbatim,quote,ragged-right]
1016 \relative c'' {
1017   <<
1018     \new Staff { \clef treble c }
1019     \new Staff { \clef bass c,, }
1020   >>
1021 }
1022 @end lilypond
1023
1024 The command @code{\new} introduces a @q{notation context.}  A
1025 notation context is an environment in which musical events (like
1026 notes or @code{\clef} commands) are interpreted.  For simple
1027 pieces, such notation contexts are created automatically.  For
1028 more complex pieces, it is best to mark contexts explicitly.
1029
1030 There are several types of contexts.  @code{Score}, @code{Staff},
1031 and @code{Voice} handle melodic notation, while @code{Lyrics} sets
1032 lyric texts and @code{ChordNames} prints chord names.
1033
1034 In terms of syntax, prepending @code{\new} to a music expression
1035 creates a bigger music expression.  In this way it resembles the
1036 minus sign in mathematics.  The formula @math{(4+5)} is an
1037 expression, so @math{-(4+5)} is a bigger expression.
1038
1039 Time signatures entered in one staff affects all other
1040 staves@footnote{This behavior may be changed if desired; see
1041 @ruser{Polymetric notation}, for details.}.  On the other hand, the
1042 key signature of one staff does @emph{not} affect other staves.
1043
1044 @lilypond[verbatim,quote,ragged-right]
1045 \relative c'' {
1046   <<
1047     \new Staff { \clef treble \time 3/4 c }
1048     \new Staff { \clef bass \key d \major c,, }
1049   >>
1050 }
1051 @end lilypond
1052
1053
1054
1055
1056 @node Piano staves
1057 @subsection Piano staves
1058
1059 @cindex staff switch, manual
1060 @cindex cross staff voice, manual
1061 Piano music is typeset in two staves connected by a brace.
1062 Printing such a staff is similar to the polyphonic example in
1063 @ruser{Multiple staves}, but now this entire expression is
1064 inserted inside a @code{PianoStaff}:
1065
1066 @example
1067 \new PianoStaff <<
1068   \new Staff @dots{}
1069   \new Staff @dots{}
1070 >>
1071 @end example
1072
1073 Here is a small example:
1074
1075 @lilypond[verbatim,quote,ragged-right]
1076 \relative c'' {
1077   \new PianoStaff <<
1078     \new Staff { \time 2/4 c4 e g g, }
1079     \new Staff { \clef bass c,, c' e c }
1080   >>
1081 }
1082 @end lilypond
1083
1084 @seealso
1085 @quotation
1086 See @ruser{Piano music}.
1087 @end quotation
1088
1089
1090 @node Combining notes into chords
1091 @subsection Combining notes into chords
1092
1093 @cindex chords
1094 Chords can be made by surrounding pitches with single angle
1095 brackets.  Angle brackets are the symbols @samp{<} and @samp{>}.
1096
1097 @lilypond[quote,fragment,verbatim,relative=2,fragment]
1098 r4 <c e g>4 <c f a>2
1099 @end lilypond
1100
1101 You can combine markings like beams and ties with chords.  They
1102 must be placed outside the angle brackets
1103
1104 @lilypond[quote,fragment,verbatim,relative=2,fragment]
1105 r4 <c e g>8[ <c f a>]~ <c f a>2
1106 @end lilypond
1107
1108 @lilypond[quote,fragment,verbatim,relative=2,fragment]
1109 r4 <c e g>8\>( <c e g> <c e g>4 <c f a>\!)
1110 @end lilypond
1111
1112
1113 @node Single staff polyphony
1114 @subsection Single staff polyphony
1115
1116 @cindex polyphony
1117 @cindex multiple voices
1118 @cindex voices, more -- on a staff
1119 When different melodic lines are combined on a single staff they
1120 are printed as polyphonic voices; each voice has its own stems,
1121 slurs and beams, and the top voice has the stems up, while the
1122 bottom voice has them down.
1123
1124 Entering such parts is done by entering each voice as a sequence
1125 (with @code{@{...@}}) and combining these simultaneously,
1126 separating the voices with @code{\\}
1127
1128 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
1129 <<
1130   { a4 g2 f4~ f4 } \\
1131   { r4 g4 f2 f4 }
1132 >>
1133 @end lilypond
1134
1135 For polyphonic music typesetting, spacer rests can also be
1136 convenient; these are rests that do not print.  They are useful
1137 for filling up voices that temporarily do not play.  Here is the
1138 same example with a spacer rest (@samp{s}) instead of a normal
1139 rest (@samp{r}),
1140
1141 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
1142 <<
1143   { a4 g2 f4~ f4 } \\
1144   { s4 g4 f2 f4 }
1145 >>
1146 @end lilypond
1147
1148 @noindent
1149 Again, these expressions can be nested arbitrarily.
1150
1151 @lilypond[quote,fragment,verbatim,relative=2,fragment]
1152 <<
1153   \new Staff <<
1154     { a4 g2 f4~ f4 } \\
1155     { s4 g4 f2 f4 }
1156   >>
1157   \new Staff <<
1158     \clef bass
1159     { <c g>1 ~ <c g>4 } \\
1160     { e,,4 d e2 ~ e4}
1161   >>
1162 >>
1163 @end lilypond
1164
1165 @seealso
1166 @quotation
1167 See @ruser{Basic polyphony}.
1168 @end quotation
1169
1170
1171 @node Songs
1172 @section Songs
1173
1174 This section introduces vocal music and simple song sheets.
1175
1176 @menu
1177 * Setting simple songs::        
1178 * Aligning lyrics to a melody::  
1179 * Lyrics to multiple staves::   
1180 @end menu
1181
1182
1183 @node Setting simple songs
1184 @subsection Setting simple songs
1185
1186 @cindex Lyrics
1187 @cindex Songs
1188 Here is the start of the melody to a nursery
1189 rhyme, @qq{Girls and boys come out to play}:
1190
1191 @lilypond[verbatim,quote,ragged-right]
1192  \relative c'' {
1193   \key g \major
1194   \time 6/8
1195   d4 b8 c4 a8 d4 b8 g4
1196  }
1197 @end lilypond
1198
1199 The lyrics can be set to these notes, combining both with the
1200 @code{\addlyrics} keyword.  Lyrics are entered by separating each
1201 syllable with a space.
1202
1203 @lilypond[verbatim,quote,ragged-right]
1204 <<
1205  \relative c'' {
1206   \key g \major
1207   \time 6/8
1208   d4 b8 c4 a8 d4 b8 g4
1209  }
1210  \addlyrics {
1211   Girls and boys come out to play,
1212  }
1213 >>
1214 @end lilypond
1215
1216 Note the curly brackets delimiting both the music and the lyrics,
1217 and the angle brackets @code{<< ... >>} around the whole piece to
1218 show that the music and lyrics are to occur at the same time.
1219
1220 @node Aligning lyrics to a melody
1221 @subsection Aligning lyrics to a melody
1222
1223 @cindex melisma
1224 @cindex extender line
1225 @cindex hyphens
1226 @cindex underscore
1227
1228 The next line in the nursery rhyme is @q{The moon doth shine as
1229 bright as day}.  Let's extend it:
1230
1231 @lilypond[verbatim,quote,ragged-right]
1232 <<
1233  \relative c'' {
1234   \key g \major
1235   \time 6/8
1236   d4 b8 c4 a8 d4 b8 g4 
1237   g8 a4 b8 c b a d4 b8 g4.
1238  }
1239  \addlyrics {
1240   Girls and boys come out to play,
1241   The moon doth shine as bright as day;
1242  }
1243 >>
1244 @end lilypond
1245
1246 We see the extra lyrics do not align properly with the notes.  The
1247 word @q{shine} should be sung on two notes, not one.  This is
1248 called a @rglos{melisma}, a single syllable sung to more than one
1249 note.  There are several ways to spread a syllable over multiple
1250 notes, the simplest being to add a slur across them (see @ref{Ties
1251 and slurs}):
1252
1253 @lilypond[verbatim,quote,ragged-right]
1254 <<
1255  \relative c'' {
1256   \key g \major
1257   \time 6/8
1258   d4 b8 c4 a8 d4 b8 g4 
1259   g8 a4 b8 c([ b)] a d4 b8 g4.
1260  }
1261  \addlyrics {
1262   Girls and boys come out to play,
1263   The moon doth shine as bright as day;
1264  }
1265 >> 
1266 @end lilypond
1267
1268 Here we have also used manual beaming (the square brackets @code{[
1269 ]} ) to generate the beaming which is customarily used with lyrics
1270 (see @ref{Automatic and manual beams}).
1271
1272 If a syllable extends over several notes or a single very long
1273 note an @emph{extender line} is usually drawn from the syllable
1274 extending under all the notes for that syllable.  It is entered as
1275 two underscores @code{__}.  Here is an example from the first
1276 three bars of Dido's Lament, from Purcell's Dido and Ă†neas:
1277  
1278 @lilypond[verbatim,quote,ragged-right]
1279 <<
1280   \relative c'' {
1281     \key g \minor
1282     \time 3/2
1283     g2 a bes bes( a) 
1284     b c4.( bes8 a4. g8 fis4.) g8 fis1
1285   }
1286   \addlyrics {
1287     When I am laid, 
1288     am laid __ in earth,
1289   }
1290 >>
1291 @end lilypond
1292
1293 None of the examples so far have involved words containing more
1294 than one syllable.  Such words are usually split one syllable to a
1295 note, with hyphens between syllables.  Such hyphens are entered as
1296 two dashes, resulting in a centered hyphen between the syllables.
1297 Here is an example showing this and everything we have learned so
1298 far about aligning lyrics to notes.
1299
1300 @c no ragged-right here because otherwise the hyphens get lost,
1301 @c but the example is long enough to avoid looking strange.
1302 @lilypond[quote,verbatim]
1303 <<
1304   \relative c' {
1305     \key g \major
1306     \time 3/4
1307     \partial 4
1308     d4 g4 g a8( b) g4 g4 
1309     b8( c) d4 d e4 c2
1310   }
1311   \addlyrics {
1312     A -- way in a __ man -- ger, 
1313     no __ crib for a bed, __
1314   }
1315 >>
1316 @end lilypond
1317
1318 Some lyrics, especially those in Italian, require the opposite:
1319 setting more than one syllable to a single note.  This is
1320 achieved by linking the syllables together with a single
1321 underscore @code{_} (with no spaces), or enclosing them in
1322 quotes.  Here's an example from Rossini's Figaro, where
1323 @q{al} has to be sung on the same note as the @q{go} of 
1324 @q{Largo} in Figaro's aria @q{Largo al factotum}:
1325
1326 @c no ragged-right here because otherwise the hyphens get lost,
1327 @c but the example is long enough to avoid looking strange.
1328 @lilypond[quote,verbatim]
1329 <<
1330   \relative c' {
1331     \clef bass
1332     \key c \major
1333     \time 6/8
1334     c4.~ c8 d b c([ d)] b c d b c
1335   }
1336   \addlyrics {
1337     Lar -- go_al fac -- to -- tum del -- la cit -- tĂ 
1338   }
1339 >>
1340 @end lilypond
1341
1342
1343 @seealso
1344 @quotation
1345 More options, such as inserting explicit rhythms into lyrics,
1346 inserting lyric ties (e.g., between @q{go al}) above, 
1347 alternative ways of handling melismata,
1348 and adding extra verses,
1349 are discussed in @ruser{Vocal music}.
1350 @end quotation
1351
1352 @node Lyrics to multiple staves
1353 @subsection Lyrics to multiple staves
1354
1355 The simple approach using @code{\addlyrics} can be used for
1356 placing lyrics under more than one staff.  Here is an
1357 example from Handel's Judas Maccabæus:
1358
1359 @lilypond[verbatim,quote,ragged-right]
1360 <<
1361   {
1362     \time 6/8
1363     \partial 8
1364   }
1365   \relative c'' { \key f \major
1366     c8 c([ bes)] a a([ g)] f f'4. b, c4.~ c4
1367   }
1368   \addlyrics {
1369     Let flee -- cy flocks the hills a -- dorn, __
1370   }
1371   \relative c' { \key f \major
1372     r8 r4. r4 c8 a'([ g)] f f([ e)] d e([ d)] c bes'4
1373   }
1374   \addlyrics {
1375     Let flee -- cy flocks the hills a -- dorn,
1376   }
1377 >>
1378 @end lilypond
1379
1380 but scores any more complex than this simple example are
1381 better produced by separating out the staff structure
1382 from the notes and lyrics with variables.  These are
1383 discussed later (see @ref{Organizing pieces with variables}).
1384
1385 @seealso
1386 @quotation
1387 More options, such as putting multiple stanzas below the score,
1388 setting choral music, and lyrics to divided voices, 
1389 are discussed in @ruser{Vocal music}.
1390 @end quotation
1391
1392
1393 @node Final touches
1394 @section Final touches
1395
1396 This is the final section of the tutorial; it demonstrates how to
1397 add the final touches to simple pieces, and provides an
1398 introduction to the rest of the manual.
1399
1400 @menu
1401 * Version number::              
1402 * Adding titles::               
1403 * Absolute note names::         
1404 * Organizing pieces with variables::  
1405 * After the tutorial::          
1406 * How to read the manual::      
1407 @end menu
1408
1409
1410 @node Version number
1411 @subsection Version number
1412
1413 @cindex versioning
1414 The @code{\version} statement records the version of LilyPond that
1415 was used to write the file:
1416
1417 @example
1418 \version "2.11.23"
1419 @end example
1420
1421 @noindent
1422 by convention, this is placed at the top of your LilyPond file.
1423
1424 These annotations make future upgrades of LilyPond go more
1425 smoothly.  Changes in the syntax are handled with a special
1426 program, @file{convert-ly} (see @rprogram{Updating files with
1427 convert-ly}), and it uses @code{\version} to determine what rules
1428 to apply.
1429
1430
1431 @node Adding titles
1432 @subsection Adding titles
1433
1434 The title, composer, opus number, and similar information are
1435 entered in the @code{\header} block.  This exists outside of the
1436 main music expression; the @code{\header} block is usually placed
1437 underneath the @ruser{Version number}.
1438
1439 @example
1440 \version "2.11.23"
1441 \header @{
1442   title = "Symphony"
1443   composer = "Me"
1444   opus = "Op. 9"
1445 @}
1446
1447 @{
1448   @dots{} music @dots{}
1449 @}
1450 @end example
1451
1452 When the file is processed, the title and composer are printed
1453 above the music.  More information on titling can be found in
1454 @ruser{Creating titles}.
1455
1456
1457 @node Absolute note names
1458 @subsection Absolute note names
1459
1460 So far we have always used @code{\relative} to define pitches.
1461 This is the easiest way to enter most music, but another way of
1462 defining pitches exists: absolute mode.
1463
1464 If you omit the @code{\relative}, LilyPond treats all pitches as
1465 absolute values.  A @code{c'} will always mean middle C, a
1466 @code{b} will always mean the note one step below middle C, and a
1467 @code{g,} will always mean the note on the bottom staff of the
1468 bass clef.
1469
1470 @lilypond[quote,verbatim,ragged-right]
1471 {
1472   \clef bass
1473   c' b g, g,
1474   g, f, f c'
1475 }
1476 @end lilypond
1477
1478 Here is a four-octave scale:
1479
1480 @lilypond[quote,verbatim,ragged-right]
1481 {
1482   \clef bass
1483   c, d, e, f,
1484   g, a, b, c
1485   d e f g
1486   a b c' d'
1487   \clef treble
1488   e' f' g' a'
1489   b' c'' d'' e''
1490   f'' g'' a'' b''
1491   c'''1
1492 }
1493 @end lilypond
1494
1495 As you can see, writing a melody in the treble clef involves a lot
1496 of quote @code{'} marks.  Consider this fragment from Mozart:
1497
1498 @lilypond[quote,verbatim,ragged-right]
1499 {
1500   \key a \major
1501   \time 6/8
1502   cis''8. d''16 cis''8 e''4 e''8
1503   b'8. cis''16 b'8 d''4 d''8
1504 }
1505 @end lilypond
1506
1507 All these quotes makes the input less readable and it is a source
1508 of errors.  With @code{\relative}, the previous example is much
1509 easier to read:
1510
1511 @lilypond[quote,verbatim,ragged-right]
1512 \relative c'' {
1513   \key a \major
1514   \time 6/8
1515   cis8. d16 cis8 e4 e8
1516   b8. cis16 b8 d4 d8
1517 }
1518 @end lilypond
1519
1520 If you make a mistake with an octave mark (@code{'} or @code{,})
1521 while working in @code{\relative} mode, it is very obvious -- many
1522 notes will be in the wrong octave.  When working in absolute mode,
1523 a single mistake will not be as visible, and will not be as easy
1524 to find.
1525
1526 However, absolute mode is useful for music which has large
1527 intervals, and is extremely useful for computer-generated LilyPond
1528 files.
1529
1530
1531 @node Organizing pieces with variables
1532 @subsection Organizing pieces with variables
1533
1534 When all of the elements discussed earlier are combined to produce
1535 larger files, the music expressions get a lot bigger.  In
1536 polyphonic music with many staves, the input files can become very
1537 confusing.  We can reduce this confusion by using
1538 @emph{variables}.
1539
1540 With variables (also known as variables or macros), we can break
1541 up complex music expressions.  An variable is assigned as
1542 follows:
1543
1544 @example
1545 namedMusic = @{ @dots{} @}
1546 @end example
1547
1548 The contents of the music expression @code{namedMusic} can be used
1549 later by placing a backslash in front of the name
1550 (@code{\namedMusic}, just like a normal LilyPond command).
1551 Variables must be defined @emph{before} the main music
1552 expression.
1553
1554 @lilypond[quote,verbatim,ragged-right]
1555 violin = \new Staff { \relative c'' {
1556   a4 b c b
1557 }}
1558 cello = \new Staff { \relative c {
1559   \clef bass
1560   e2 d
1561 }}
1562 {
1563   <<
1564     \violin
1565     \cello
1566   >>
1567 }
1568 @end lilypond
1569
1570 @noindent
1571 The name of an variable must have alphabetic characters only: no
1572 numbers, underscores, or dashes.
1573
1574 It is possible to use variables for many other types of objects in
1575 the input.  For example,
1576
1577 @example
1578 width = 4.5\cm
1579 name = "Wendy"
1580 aFivePaper = \paper @{ paperheight = 21.0 \cm @}
1581 @end example
1582
1583 Depending on its contents, the variable can be used in different
1584 places.  The following example uses the above variables:
1585
1586 @example
1587 \paper @{
1588   \aFivePaper
1589   line-width = \width
1590 @}
1591 @{ c4^\name @}
1592 @end example
1593
1594
1595 @node After the tutorial
1596 @subsection After the tutorial
1597
1598 After finishing the tutorial, you should probably try writing a
1599 piece or two.  Start with one of the @ruser{Templates}, and add
1600 notes.  If you need any notation that was not covered in the
1601 tutorial, look at the Notation Reference, starting with
1602 @ruser{Basic notation}.  If you want to write for an instrument
1603 ensemble that is not covered in the templates, take a look at
1604 @ruser{Extending the templates}.
1605
1606 Once you have written a few short pieces, read the rest of the
1607 Learning Manual (chapters 3-5).  There's nothing wrong with
1608 reading it now, of course!  However, the rest of the Learning
1609 Manual assumes that you are familiar with LilyPond input.  You may
1610 wish to skim these chapters right now, and come back to them after
1611 you have more experience.
1612
1613
1614 @node How to read the manual
1615 @subsection How to read the manual
1616
1617 As we saw in @ruser{How to read the tutorial}, many examples in
1618 the tutorial omitted a @code{\relative c'' @{ ... @}} around the
1619 printed example.
1620
1621 In the rest of the manual, we are much more lax about the printed
1622 examples: sometimes they may have omitted a @code{\relative c'' @{
1623 ... @}}, but other times a different initial pitch may be used
1624 (such as @code{c'} or @code{c,,}), and in some cases the whole
1625 example is in absolute note mode!  However, ambiguities like this
1626 only exist where the pitches are not important.  In any example
1627 where the pitch matters, we have explicitly stated
1628 @code{\relative} or absolute-mode @code{@{ @}}.
1629
1630 If you are still confused about the exact LilyPond input that was
1631 used in an example, read the HTML version (if you are not already
1632 doing so) and click on the picture of the music.  This will
1633 display the exact input that LilyPond used to generate this
1634 manual.
1635
1636 For information about the structure of the rest of the manual, see
1637 @ruser{About this manual}.
1638