]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/tutorial.itely
Almost-final draft of Pitches, and final draft of tutorial.
[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 manual::      
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 manual}.}
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 manual
491 @subsection How to read the manual
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 * Staff groups::                
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 @cindex expression
956 @cindex music expression
957 @subheading Analogy: mathematical expressions
958
959 This mechanism is similar to mathematical formulas: a big formula
960 is created by composing small formulas.  Such formulas are called
961 expressions, and they can contain other music expressions, so you
962 can make arbitrarily complex and large expressions.  For example,
963
964 @example
965 1
966
967 1 + 2
968
969 (1 + 2) * 3
970
971 ((1 + 2) * 3) / (4 * 5)
972 @end example
973
974 This is a sequence of expressions, where each expression is
975 contained in the next (larger) one.  The simplest expressions are
976 numbers, and larger ones are made by combining expressions with
977 operators (like @code{+}, @code{*} and @code{/}) and parentheses.
978 Like mathematical expressions, music expressions can be nested
979 arbitrarily deep, which is necessary for complex music like
980 polyphonic scores.
981
982
983 @subheading Simultaneous music expressions: multiple staves
984
985 Music Glossary: @rglos{polyphony}.
986
987 This technique is useful for @notation{polyphonic} music.  To
988 enter music with more voices or more staves, we combine
989 expressions in parallel.  To indicate that two voices should play
990 at the same time, simply enter a simultaneous combination of music
991 expressions.  A @q{simultaneous} music expression is formed by
992 enclosing expressions inside @code{<<} and @code{>>}.  In the
993 following example, three sequences (all containing two separate
994 notes) are combined simultaneously:
995
996 @lilypond[verbatim,quote,ragged-right]
997 \relative c'' {
998   <<
999     { a4 g }
1000     { f e }
1001     { d b }
1002   >>
1003 }
1004 @end lilypond
1005
1006 Note that we have indented each level of the input with a
1007 different amount of space.  LilyPond does not care how much (or
1008 little) space there is at the beginning of a line, but indenting
1009 LilyPond code like this makes it much easier for humans to read.
1010
1011 @warning{each note is relative to the previous note in
1012 the input, not relative to the @code{c''} in the initial
1013 @code{\\relative} command.}
1014
1015
1016 @subheading Simultaneous music expressions: single staff
1017
1018 To determine the number of staves in a piece, LilyPond looks at
1019 the first expression.  If it is a single note, there is one staff;
1020 if there is a simultaneous expression, there is more than one
1021 staff.
1022
1023 @lilypond[verbatim,quote,ragged-right]
1024 \relative c'' {
1025   c2 <<c e>>
1026   << { e f } { c <<b d>> } >>
1027 }
1028 @end lilypond
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 affects all other staves by
1069 default.  On the other hand, the key signature of one staff does
1070 @emph{not} affect other staves.  This different default behaviour
1071 is because scores with transposing instruments are more common
1072 than polyrhythmic scores.
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 Staff groups
1087 @subsection Staff groups
1088
1089 @cindex piano staff
1090 @cindex choir staff
1091 @cindex grand staff
1092
1093 Music Glossary: @rglos{brace}.
1094
1095 Piano music is typeset in two staves connected by a
1096 @notation{brace}.
1097 Printing such a staff is similar to the polyphonic example in
1098 @ref{Multiple staves}.  However, now this entire expression is
1099 inserted inside a @code{PianoStaff}:
1100
1101 @example
1102 \new PianoStaff <<
1103   \new Staff @dots{}
1104   \new Staff @dots{}
1105 >>
1106 @end example
1107
1108 Here is a small example:
1109
1110 @lilypond[verbatim,quote,ragged-right]
1111 \relative c'' {
1112   \new PianoStaff <<
1113     \new Staff { \time 2/4 c4 e g g, }
1114     \new Staff { \clef bass c,, c' e c }
1115   >>
1116 }
1117 @end lilypond
1118
1119 Other staff groupings are introduced with
1120 @code{\new GrandStaff,} suitable for orchestral
1121 scores, and @code{\new ChoirStaff,} suitable for
1122 vocal scores.  These staff groups each form another
1123 type of context, one that generates the brace at the
1124 left end of every system and also controls the extent
1125 of barlines.
1126
1127 @seealso
1128
1129 Notation Reference: @ruser{Piano music}, 
1130 @ruser{Displaying staves}.
1131
1132
1133 @node Combining notes into chords
1134 @subsection Combining notes into chords
1135
1136 @cindex chords
1137
1138 Music Glossary: @rglos{chord}.
1139
1140 @notation{Chords} can be made by surrounding pitches with single
1141 angle brackets.  Note that all the notes in a chord must have the
1142 same duration, and that duration is placed after the closing 
1143 bracket. 
1144
1145 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
1146 r4 <c e g>4 <c f a>2
1147 @end lilypond
1148
1149 Think of chords as almost equivalent to single notes:
1150 almost everything you can attach to a single note can be attached
1151 to a chord, and everything must go @emph{outside} the angle 
1152 brackets.  For example, you can combine markings like beams and 
1153 ties with chords.  They must be placed outside the angle brackets.
1154
1155 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
1156 r4 <c e g>8[ <c f a>]~ <c f a>2
1157 @end lilypond
1158
1159 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
1160 r4 <c e g>8\>( <c e g> <c e g>4 <c f a>\!)
1161 @end lilypond
1162
1163
1164 @node Single staff polyphony
1165 @subsection Single staff polyphony
1166
1167 @cindex polyphony
1168 @cindex multiple voices
1169 @cindex voices, more -- on a staff
1170 When different melodic lines are combined on a single staff they
1171 are printed as polyphonic voices; each voice has its own stems,
1172 slurs and beams, and the top voice has the stems up, while the
1173 bottom voice has them down.
1174
1175 Entering such parts is done by entering each voice as a sequence
1176 (with @code{@{...@}}) and combining these simultaneously,
1177 separating the voices with @code{\\}
1178
1179 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
1180 <<
1181   { a4 g2 f4~ f4 } \\
1182   { r4 g4 f2 f4 }
1183 >>
1184 @end lilypond
1185
1186 For polyphonic music typesetting, spacer rests can also be
1187 convenient; these are rests that do not print.  They are useful
1188 for filling up voices that temporarily do not play.  Here is the
1189 same example with a spacer rest (@code{s}) instead of a normal
1190 rest (@code{r}),
1191
1192 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
1193 <<
1194   { a4 g2 f4~ f4 } \\
1195   { s4 g4 f2 f4 }
1196 >>
1197 @end lilypond
1198
1199 @noindent
1200 Again, these expressions can be nested arbitrarily.
1201
1202 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
1203 <<
1204   \new Staff <<
1205     { a4 g2 f4~ f4 } \\
1206     { s4 g4 f2 f4 }
1207   >>
1208   \new Staff <<
1209     \clef bass
1210     { <c g>1 ~ <c g>4 } \\
1211     { e,,4 d e2 ~ e4}
1212   >>
1213 >>
1214 @end lilypond
1215
1216 @seealso
1217
1218 Notation Reference: @ruser{Simultaneous notes}.
1219
1220
1221 @node Songs
1222 @section Songs
1223
1224 This section introduces vocal music and simple song sheets.
1225
1226 @menu
1227 * Setting simple songs::        
1228 * Aligning lyrics to a melody::  
1229 * Lyrics to multiple staves::   
1230 @end menu
1231
1232
1233 @node Setting simple songs
1234 @subsection Setting simple songs
1235
1236 @cindex lyrics
1237 @cindex songs
1238
1239 Music Glossary: @rglos{lyrics}.
1240
1241 Here is the start of the melody to a nursery
1242 rhyme, @qq{Girls and boys come out to play}:
1243
1244 @lilypond[verbatim,quote,ragged-right]
1245 \relative c'' {
1246   \key g \major
1247   \time 6/8
1248   d4 b8 c4 a8 d4 b8 g4
1249 }
1250 @end lilypond
1251
1252 The @notation{lyrics} can be set to these notes, combining both
1253 with the @code{\addlyrics} keyword.  Lyrics are entered by
1254 separating each syllable with a space.
1255
1256 @lilypond[verbatim,quote,ragged-right]
1257 <<
1258   \relative c'' {
1259     \key g \major
1260     \time 6/8
1261     d4 b8 c4 a8 d4 b8 g4
1262   }
1263   \addlyrics {
1264     Girls and boys come out to play,
1265   }
1266 >>
1267 @end lilypond
1268
1269 Note the curly brackets delimiting both the music and the lyrics,
1270 and the double angle brackets @code{<< ... >>} around the whole 
1271 piece to show that the music and lyrics are to occur at the same 
1272 time.
1273
1274 @node Aligning lyrics to a melody
1275 @subsection Aligning lyrics to a melody
1276
1277 Music Glossary: @rglos{melisma}, @rglos{extender line}.
1278
1279 @cindex melisma
1280 @cindex extender line
1281 @cindex hyphens
1282 @cindex underscore
1283
1284 The next line in the nursery rhyme is @q{The moon doth shine as
1285 bright as day}.  Let's extend it:
1286
1287 @lilypond[verbatim,quote,ragged-right]
1288 <<
1289   \relative c'' {
1290     \key g \major
1291     \time 6/8
1292     d4 b8 c4 a8 d4 b8 g4 
1293     g8 a4 b8 c b a d4 b8 g4.
1294   }
1295   \addlyrics {
1296     Girls and boys come out to play,
1297     The moon doth shine as bright as day;
1298   }
1299 >>
1300 @end lilypond
1301
1302 We see the extra lyrics do not align properly with the notes.  The
1303 word @q{shine} should be sung on two notes, not one.  This is
1304 called a @notation{melisma}, a single syllable sung to more than
1305 one note.  There are several ways to spread a syllable over
1306 multiple notes, the simplest being to add a slur across them (see
1307 @ref{Ties and slurs}):
1308
1309 @lilypond[verbatim,quote,ragged-right]
1310 <<
1311   \relative c'' {
1312     \key g \major
1313     \time 6/8
1314     d4 b8 c4 a8 d4 b8 g4 
1315     g8 a4 b8 c([ b)] a d4 b8 g4.
1316   }
1317   \addlyrics {
1318     Girls and boys come out to play,
1319     The moon doth shine as bright as day;
1320   }
1321 >> 
1322 @end lilypond
1323
1324 Here we have also used manual beaming (the square brackets @code{[
1325 ]} ) to generate the beaming which is customarily used with lyrics
1326 (see @ref{Automatic and manual beams}).
1327
1328 As an alternative to using slurs, the melismata may be indicated
1329 just in the lyrics by using an underscore, @code{_}, for each
1330 note that should be included in the melisma:
1331
1332 @lilypond[verbatim,quote,ragged-right]
1333 <<
1334   \relative c'' {
1335     \key g \major
1336     \time 6/8
1337     d4 b8 c4 a8 d4 b8 g4 
1338     g8 a4 b8 c[ b] a d4 b8 g4.
1339   }
1340   \addlyrics {
1341     Girls and boys come out to play,
1342     The moon doth shine _ as bright as day;
1343   }
1344 >> 
1345 @end lilypond
1346
1347 If a syllable extends over several notes or a single very long
1348 note an @notation{extender line} is usually drawn from the
1349 syllable extending under all the notes for that syllable.  It is
1350 entered as two underscores @code{__}.  Here is an example from the
1351 first three bars of Dido's Lament, from Purcell's Dido and Æneas:
1352
1353 @lilypond[verbatim,quote,ragged-right]
1354 <<
1355   \relative c'' {
1356     \key g \minor
1357     \time 3/2
1358     g2 a bes bes( a) 
1359     b c4.( bes8 a4. g8 fis4.) g8 fis1
1360   }
1361   \addlyrics {
1362     When I am laid, 
1363     am laid __ in earth,
1364   }
1365 >>
1366 @end lilypond
1367
1368 None of the examples so far have involved words containing more
1369 than one syllable.  Such words are usually split one syllable to a
1370 note, with hyphens between syllables.  Such hyphens are entered as
1371 two dashes, resulting in a centered hyphen between the syllables.
1372 Here is an example showing this and everything we have learned so
1373 far about aligning lyrics to notes.
1374
1375 @c no ragged-right here because otherwise the hyphens get lost,
1376 @c but the example is long enough to avoid looking strange.
1377 @lilypond[verbatim,quote]
1378 <<
1379   \relative c' {
1380     \key g \major
1381     \time 3/4
1382     \partial 4
1383     d4 g4 g a8( b) g4 g4 
1384     b8( c) d4 d e4 c2
1385   }
1386   \addlyrics {
1387     A -- way in a __ man -- ger, 
1388     no __ crib for a bed, __
1389   }
1390 >>
1391 @end lilypond
1392
1393 Some lyrics, especially those in Italian, require the opposite:
1394 setting more than one syllable to a single note.  This is
1395 achieved by linking the syllables together with a single
1396 underscore @code{_} (with no spaces), or enclosing them in
1397 quotes.  Here's an example from Rossini's Figaro, where
1398 @q{al} has to be sung on the same note as the @q{go} of 
1399 @q{Largo} in Figaro's aria @q{Largo al factotum}:
1400
1401 @c no ragged-right here because otherwise the hyphens get lost,
1402 @c but the example is long enough to avoid looking strange.
1403 @lilypond[verbatim,quote]
1404 <<
1405   \relative c' {
1406     \clef bass
1407     \key c \major
1408     \time 6/8
1409     c4.~ c8 d b c([ d)] b c d b c
1410   }
1411   \addlyrics {
1412     Lar -- go_al fac -- to -- tum del -- la cit -- tà
1413   }
1414 >>
1415 @end lilypond
1416
1417
1418 @seealso
1419
1420 Notation Reference: @ruser{Vocal music}.
1421
1422
1423 @node Lyrics to multiple staves
1424 @subsection Lyrics to multiple staves
1425
1426 The simple approach using @code{\addlyrics} can be used for
1427 placing lyrics under more than one staff.  Here is an
1428 example from Handel's Judas Maccabæus:
1429
1430 @lilypond[verbatim,quote,ragged-right]
1431 <<
1432   {
1433     \time 6/8
1434     \partial 8
1435   }
1436   \relative c'' {
1437     \key f \major
1438     c8 c([ bes)] a a([ g)] f f'4. b, c4.~ c4
1439   }
1440   \addlyrics {
1441     Let flee -- cy flocks the hills a -- dorn, __
1442   }
1443   \relative c' {
1444     \key f \major
1445     r8 r4. r4 c8 a'([ g)] f f([ e)] d e([ d)] c bes'4
1446   }
1447   \addlyrics {
1448     Let flee -- cy flocks the hills a -- dorn,
1449   }
1450 >>
1451 @end lilypond
1452
1453 @noindent
1454 but scores any more complex than this simple example are
1455 better produced by separating out the staff structure
1456 from the notes and lyrics with variables.  These
1457 discussed in @ref{Organizing pieces with variables}.
1458
1459 @seealso
1460
1461 Notation Reference: @ruser{Vocal music}.
1462
1463
1464
1465 @node Final touches
1466 @section Final touches
1467
1468 This is the final section of the tutorial; it demonstrates how to
1469 add the final touches to simple pieces, and provides an
1470 introduction to the rest of the manual.
1471
1472 @menu
1473 * Organizing pieces with variables::  
1474 * Version number::              
1475 * Adding titles::               
1476 * Absolute note names::         
1477 * After the tutorial::          
1478 @end menu
1479
1480
1481 @node Organizing pieces with variables
1482 @subsection Organizing pieces with variables
1483
1484 When all of the elements discussed earlier are combined to produce
1485 larger files, the music expressions get a lot bigger.  In
1486 polyphonic music with many staves, the input files can become very
1487 confusing.  We can reduce this confusion by using
1488 @emph{variables}.
1489
1490 With variables (also known as identifiers or macros), we can break
1491 up complex music expressions.  A variable is assigned as
1492 follows:
1493
1494 @example
1495 namedMusic = @{ @dots{} @}
1496 @end example
1497
1498 The contents of the music expression @code{namedMusic} can be used
1499 later by placing a backslash in front of the name
1500 (@code{\namedMusic}, just like a normal LilyPond command).
1501
1502 @lilypond[verbatim,quote,ragged-right]
1503 violin = \new Staff { \relative c'' {
1504   a4 b c b
1505 }}
1506 cello = \new Staff { \relative c {
1507   \clef bass
1508   e2 d
1509 }}
1510 {
1511   <<
1512     \violin
1513     \cello
1514   >>
1515 }
1516 @end lilypond
1517
1518 @noindent
1519 The name of a variable must have alphabetic characters only, no
1520 numbers, underscores, or dashes.
1521
1522 Variables must be defined @emph{before} the main music
1523 expression, but may be used as many times as required anywhere after
1524 they have been defined.  They may even be used in a later definition
1525 of another variable, giving a way of shortening the input if a
1526 section of music is repeated many times.
1527
1528 @lilypond[verbatim,quote,ragged-right]
1529 tripletA = \times 2/3 { c,8 e g }
1530 barA = { \tripletA \tripletA \tripletA \tripletA }
1531
1532 \relative c'' {
1533  \barA \barA
1534 }
1535 @end lilypond
1536
1537 Variables may be used for many other types of objects in
1538 the input.  For example,
1539
1540 @example
1541 width = 4.5\cm
1542 name = "Wendy"
1543 aFivePaper = \paper @{ paperheight = 21.0 \cm @}
1544 @end example
1545
1546 Depending on its contents, the variable can be used in different
1547 places.  The following example uses the above variables:
1548
1549 @example
1550 \paper @{
1551   \aFivePaper
1552   line-width = \width
1553 @}
1554 @{ c4^\name @}
1555 @end example
1556
1557
1558 @node Version number
1559 @subsection Version number
1560
1561 @cindex versioning
1562 The @code{\version} statement records the version of LilyPond that
1563 was used to write the file:
1564
1565 @example
1566 \version "2.11.23"
1567 @end example
1568
1569 @noindent
1570 By convention, this is placed at the top of your LilyPond file.
1571
1572 These annotations make future upgrades of LilyPond go more
1573 smoothly.  Changes in the syntax are handled with a special
1574 program, @file{convert-ly}, and it uses @code{\version} to
1575 determine what rules to apply.  For details, see
1576 @rprogram{Updating files with convert-ly}.
1577
1578
1579 @node Adding titles
1580 @subsection Adding titles
1581
1582 The title, composer, opus number, and similar information are
1583 entered in the @code{\header} block.  This exists outside of the
1584 main music expression; the @code{\header} block is usually placed
1585 underneath the @ref{Version number}.
1586
1587 @example
1588 \version "2.11.23"
1589 \header @{
1590   title = "Symphony"
1591   composer = "Me"
1592   opus = "Op. 9"
1593 @}
1594
1595 @{
1596   @dots{} music @dots{}
1597 @}
1598 @end example
1599
1600 When the file is processed, the title and composer are printed
1601 above the music.  More information on titling can be found in
1602 @ruser{Creating titles}.
1603
1604
1605 @node Absolute note names
1606 @subsection Absolute note names
1607
1608 So far we have always used @code{\relative} to define pitches.
1609 This is the easiest way to enter most music, but another way of
1610 defining pitches exists: absolute mode.
1611
1612 If you omit the @code{\relative}, LilyPond treats all pitches as
1613 absolute values.  A @code{c'} will always mean middle C, a
1614 @code{b} will always mean the note one step below middle C, and a
1615 @code{g,} will always mean the note on the bottom staff of the
1616 bass clef.
1617
1618 @lilypond[verbatim,quote,ragged-right]
1619 {
1620   \clef bass
1621   c' b g, g,
1622   g, f, f c'
1623 }
1624 @end lilypond
1625
1626 Here is a four-octave scale:
1627
1628 @lilypond[verbatim,quote,ragged-right]
1629 {
1630   \clef bass
1631   c, d, e, f,
1632   g, a, b, c
1633   d e f g
1634   a b c' d'
1635   \clef treble
1636   e' f' g' a'
1637   b' c'' d'' e''
1638   f'' g'' a'' b''
1639   c'''1
1640 }
1641 @end lilypond
1642
1643 As you can see, writing a melody in the treble clef involves a lot
1644 of quote @code{'} marks.  Consider this fragment from Mozart:
1645
1646 @lilypond[verbatim,quote,ragged-right]
1647 {
1648   \key a \major
1649   \time 6/8
1650   cis''8. d''16 cis''8 e''4 e''8
1651   b'8. cis''16 b'8 d''4 d''8
1652 }
1653 @end lilypond
1654
1655 All these quotes makes the input less readable and they are a source
1656 of errors.  With @code{\relative}, the previous example is much
1657 easier to read and type:
1658
1659 @lilypond[verbatim,quote,ragged-right]
1660 \relative c'' {
1661   \key a \major
1662   \time 6/8
1663   cis8. d16 cis8 e4 e8
1664   b8. cis16 b8 d4 d8
1665 }
1666 @end lilypond
1667
1668 If you make a mistake with an octave mark (@code{'} or @code{,})
1669 while working in @code{\relative} mode, it is very obvious -- many
1670 notes will be in the wrong octave.  When working in absolute mode,
1671 a single mistake will not be as visible, and will not be as easy
1672 to find.
1673
1674 However, absolute mode is useful for music which has large
1675 intervals, and is extremely useful for computer-generated LilyPond
1676 files.
1677
1678
1679
1680 @node After the tutorial
1681 @subsection After the tutorial
1682
1683 FIXME: rewrite slightly after the rest of the LM has been
1684 stabilized.  Translators, ignore this section for now.
1685
1686 After finishing the tutorial, you should probably try writing a
1687 piece or two.  Start by adding notes to one of the
1688 @ref{Templates}.  If you need any notation that was not covered in
1689 the tutorial, look at the Notation Reference, starting with
1690 @ruser{Musical notation}.  If you want to write for an instrument
1691 ensemble that is not covered in the templates, take a look at
1692 @ref{Extending the templates}.
1693
1694 Once you have written a few short pieces, read the rest of the
1695 Learning Manual (chapters 3-5).  There's nothing wrong with
1696 reading it now, of course!  However, the rest of the Learning
1697 Manual assumes that you are familiar with LilyPond input.  You may
1698 wish to skim these chapters right now, and come back to them after
1699 you have more experience.
1700
1701
1702