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