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