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