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