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