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