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