]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/tutorial.itely
Merge branch 'master' of carldsorensen@git.sv.gnu.org:/srv/git/lilypond into ralph
[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 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 @item
526 @strong{Expressions}:
527 every piece of LilyPond input needs to have @strong{@{ curly
528 braces @}} placed around the input.  These braces tell LilyPond
529 that the input is a single music expression, just like parentheses
530 @code{()} in mathematics.  The braces should be surrounded by a
531 space unless they are at the beginning or end of a line to avoid
532 ambiguities.
533
534 A LilyPond command followed by a simple expression in braces (such
535 as @w{@code{\relative @{ @}}}) also counts as a single music
536 expression.
537
538 @cindex comments
539 @cindex line comment
540 @cindex block comment
541 @item
542 @strong{Comments}:
543 a comment is a remark for the human reader of the music input; it
544 is ignored while parsing, so it has no effect on the printed
545 output.  There are two types of comments.  The percent symbol
546 @code{%} introduces a line comment; anything after @code{%} on
547 that line is ignored.  By convention, a line comment is placed
548 @emph{above} the code it refers to.
549
550 @example
551 a4 a a a
552 % this comment refers to the Bs
553 b2 b
554 @end example
555
556 A block comment marks a whole section of music input as a comment.
557 Anything that is enclosed in @code{%@{} and @code{%@}} is ignored.
558 However, block comments do not @q{nest}.  This means that you
559 cannot place a block comment inside another block comment.  If you
560 try, the first @code{%@}} will terminate @emph{both} block
561 comments.  The following fragment shows possible uses for
562 comments:
563
564 @example
565 % notes for twinkle twinkle follow
566   c4 c g' g a a g2
567
568 %@{
569   This line, and the notes below are ignored,
570   since they are in a block comment.
571
572   f f e e d d c2
573 %@}
574 @end example
575
576 @end itemize
577
578
579 @node How to read the manual
580 @subsection How to read the manual
581
582 @cindex how to read the manual
583 @cindex manual, reading
584 @cindex reading the manual
585 @cindex examples, clickable
586 @cindex clickable examples
587 @cindex tips for constructing files
588 @cindex templates
589 @cindex constructing files, tips
590 @cindex files, tips for constructing
591
592 LilyPond input must be surrounded by @{ @} marks or a
593 @code{@w{\relative c'' @{ ... @}}}, as we saw in @ref{Working on
594 input files}.  For the rest of this manual, most examples will
595 omit this.  To replicate the examples, you may copy and paste the
596 displayed input, but you @strong{must} add the
597 @code{@w{\relative c'' @{ @}}} like this:
598
599 @example
600 \relative c'' @{
601   ... example goes here...
602 @}
603 @end example
604
605 Why omit the braces?  Most examples in this manual can be inserted
606 into the middle of a longer piece of music.  For these examples,
607 it does not make sense to add @code{@w{\relative c'' @{ @}}} --
608 you should not place a @code{\relative} inside another
609 @code{\relative}!  If we included @code{@w{\relative c'' @{ @}}}
610 around every example, you would not be able to copy a small
611 documentation example and paste it inside a longer piece of your
612 own.  Most people want to add material to an existing piece, so we
613 format the manual this way.
614
615
616 @subheading Clickable examples
617
618 Many people learn programs by trying and fiddling around with the
619 program.  This is also possible with LilyPond.  If you click on a
620 picture in the HTML version of this manual, you will see the exact
621 LilyPond input that was used to generate that image.  Try it on
622 this image:
623
624 @c no verbatim here
625 @lilypond[quote]
626 \relative c'' {
627   c-\markup { \bold \huge { Click here.  } }
628 }
629 @end lilypond
630
631 By cutting and pasting everything in the @qq{ly snippet} section,
632 you have a starting template for experiments.  To see exactly the
633 same output (line-width and all), copy everything from @qq{Start
634 cut-&-pastable section} to the bottom of the file.
635
636
637 @seealso
638 There are more tips for constructing input files in
639 @ref{Suggestions for writing LilyPond input files}.  But it might be
640 best to read through the rest of the tutorial first.
641
642
643 @node Single staff notation
644 @section Single staff notation
645
646 This section introduces common notation that is used for one voice
647 on one staff.
648
649 @menu
650 * Accidentals and key signatures::
651 * Ties and slurs::
652 * Articulation and dynamics::
653 * Adding text::
654 * Automatic and manual beams::
655 * Advanced rhythmic commands::
656 @end menu
657
658
659 @node Accidentals and key signatures
660 @subsection Accidentals and key signatures
661
662 @subheading Accidentals
663
664 @cindex accidentals
665 @cindex accidentals and key signatures
666 @cindex sharp
667 @cindex double sharp
668 @cindex sharp, double
669 @cindex flat
670 @cindex double flat
671 @cindex flat, double
672
673 @funindex es
674 @funindex is
675 @funindex eses
676 @funindex isis
677
678 Music Glossary: @rglos{sharp}, @rglos{flat}, @rglos{double sharp},
679 @rglos{double flat}, @rglos{accidental}.
680
681 A @notation{sharp} pitch is made by adding @code{is} to the name,
682 and a @notation{flat} pitch by adding @code{es}.  As you might
683 expect, a @notation{double sharp} or @notation{double flat} is
684 made by adding @code{isis} or @code{eses}.  This syntax is derived
685 from note naming conventions in Nordic and Germanic languages,
686 like German and Dutch.  To use other names for
687 @notation{accidentals}, see @ruser{Note names in other languages}.
688
689 @lilypond[verbatim,quote,relative=2]
690 cis1 ees fisis, aeses
691 @end lilypond
692
693 @cindex key signature, setting
694 @subheading Key signatures
695
696 @cindex key signature
697 @cindex major
698 @cindex minor
699 @cindex accidentals and key signature
700 @cindex content vs. layout
701 @cindex layout vs. content
702
703 @funindex \key
704 @funindex key
705 @funindex \major
706 @funindex major
707 @funindex \minor
708 @funindex minor
709
710 Music Glossary: @rglos{key signature}, @rglos{major},
711 @rglos{minor}.
712
713 The @notation{key signature} is set with the command @code{\key}
714 followed by a pitch and @code{\major} or @code{\minor}.
715
716 @lilypond[verbatim,quote,relative=2]
717 \key d \major
718 a1
719 \key c \minor
720 a
721 @end lilypond
722
723 @smallspace
724
725 @subheading Warning: key signatures and pitches
726
727 Music Glossary: @rglos{accidental}, @rglos{key signature},
728 @rglos{pitch}, @rglos{flat}, @rglos{natural}, @rglos{sharp},
729 @rglos{transposition}.
730
731 To determine whether to print an @notation{accidental}, LilyPond
732 examines the pitches and the @notation{key signature}.  The key
733 signature only affects the @emph{printed} accidentals, not the
734 note's @notation{pitch}!  This is a feature that often causes
735 confusion to newcomers, so let us explain it in more detail.
736
737 LilyPond makes a sharp distinction between musical content and
738 layout.  The alteration (@notation{flat}, @notation{natural sign} or
739 @notation{sharp}) of a note is part of the pitch, and is therefore
740 musical content.  Whether an accidental (a @emph{printed} flat,
741 natural or sharp sign) is printed in front of the corresponding
742 note is a question of layout.  Layout is something that follows
743 rules, so accidentals are printed automatically according to those
744 rules.  The pitches in your music are works of art, so they will
745 not be added automatically, and you must enter what you want to
746 hear.
747
748 In this example:
749
750 @lilypond[verbatim,quote,relative=2]
751 \key d \major
752 d cis fis
753 @end lilypond
754
755 @noindent
756 No note has a printed accidental, but you must still add
757 @code{is} and type @code{cis} and @code{fis} in the input file.
758
759 The code @code{b} does not mean @qq{print a black dot just on
760 the middle line of the staff.}  Rather, it means @qq{there is a
761 note with pitch B-natural.}  In the key of A-flat major, it
762 @emph{does} get an accidental:
763
764 @lilypond[verbatim,quote,relative=2]
765 \key aes \major
766 b
767 @end lilypond
768
769 Adding all alterations explicitly might require a little more
770 effort when typing, but the advantage is that
771 @notation{transposing} is easier, and accidentals can be printed
772 according to different conventions.  For some examples how
773 accidentals can be printed according to different rules, see
774 @ruser{Automatic accidentals}.
775
776
777 @seealso
778 Notation Reference: @ruser{Note names in other languages},
779 @ruser{Accidentals}, @ruser{Automatic accidentals},
780 @ruser{Key signature}.
781
782 Music Glossary: @rglos{Pitch names}.
783
784
785 @node Ties and slurs
786 @subsection Ties and slurs
787
788 @cindex tie
789 @cindex slur
790 @cindex slur, phrasing
791 @cindex phrasing slur
792
793 @funindex ~
794 @funindex ( ... )
795 @funindex \( ... \)
796
797 @subheading Ties
798
799
800 Music Glossary: @rglos{tie}.
801
802 A @notation{tie} is created by appending a tilde @code{~} to the
803 first note being tied.
804
805 @lilypond[verbatim,quote,relative=2]
806 g4~ g c2~
807 c4 ~ c8 a8 ~ a2
808 @end lilypond
809
810 @subheading Slurs
811
812
813 Music Glossary: @rglos{slur}.
814
815 A @notation{slur} is a curve drawn across many notes.  The
816 starting note and ending note are marked with @code{(} and
817 @code{)} respectively.
818
819 @lilypond[verbatim,quote,relative=2]
820 d4( c16) cis( d e c cis d) e( d4)
821 @end lilypond
822
823 @subheading Phrasing slurs
824
825 Music Glossary: @rglos{slur}, @rglos{phrasing}.
826
827 Slurs to indicate longer @notation{phrasing} can be entered with
828 @code{\(} and @code{\)}.  You can have both @notation{slurs}
829 and phrasing slurs at the same time, but you cannot have
830 simultaneous slurs or simultaneous phrasing slurs.
831
832 @lilypond[verbatim,quote,relative=2]
833 a8(\( ais b c) cis2 b'2 a4 cis,\)
834 @end lilypond
835
836 @smallspace
837
838 @cindex slurs versus ties
839 @subheading Warnings: slurs vs. ties
840
841 Music Glossary: @rglos{articulation}, @rglos{slur}, @rglos{tie}.
842
843 A @notation{slur} looks like a @notation{tie}, but it has a
844 different meaning.  A tie simply makes the first note longer, and
845 can only be used on pairs of notes with the same pitch.  Slurs
846 indicate the @notation{articulation} of notes, and can be used on
847 larger groups of notes.  Slurs and ties can be nested.
848
849 @lilypond[verbatim,quote,relative=2]
850 c2~( c8 fis fis4 ~ fis2 g2)
851 @end lilypond
852
853
854 @seealso
855 Notation Reference: @ruser{Ties}, @ruser{Slurs},
856 @ruser{Phrasing slurs}.
857
858
859 @node Articulation and dynamics
860 @subsection Articulation and dynamics
861
862
863 @subheading Articulations
864
865 @cindex articulation
866 @cindex accent
867 @cindex staccato
868
869 Music Glossary: @rglos{articulation}.
870
871 Common @notation{articulations} can be added to a note using a
872 dash @code{-} and a single character:
873
874 @lilypond[verbatim,quote,relative=2]
875 c-. c-- c-> c-^ c-+ c-_
876 @end lilypond
877
878 @subheading Fingerings
879
880 @cindex fingering
881
882 @funindex ^
883 @funindex _
884
885 Music Glossary: @rglos{fingering}.
886
887 Similarly, @notation{fingering} indications can be added to a note
888 using a dash (@code{-}) and the digit to be printed:
889
890 @lilypond[verbatim,quote,relative=2]
891 c-3 e-5 b-2 a-1
892 @end lilypond
893
894 Articulations and fingerings are usually placed automatically, but
895 you can specify a direction by replacing the dash (@code{-}) with
896 @code{^} (up) or @code{_} (down).  You can also use multiple
897 articulations on the same note.  However, in most cases it is best
898 to let LilyPond determine the articulation directions.
899
900 @lilypond[verbatim,quote,relative=2]
901 c_-^1 d^. f^4_2-> e^-_+
902 @end lilypond
903
904 @subheading Dynamics
905
906 @cindex dynamics
907 @cindex decrescendo
908 @cindex crescendo
909
910 @funindex \f
911 @funindex \ff
912 @funindex \mp
913 @funindex \p
914 @funindex \mf
915 @funindex \pp
916 @funindex \<
917 @funindex <
918 @funindex \>
919 @funindex >
920 @funindex \!
921 @funindex !
922
923 Music Glossary: @rglos{dynamics}, @rglos{crescendo},
924 @rglos{decrescendo}.
925
926 @notation{Dynamic} signs are made by adding the markings (with a
927 backslash) to the note:
928
929 @lilypond[verbatim,quote,relative=2]
930 c\ff c\mf c\p c\pp
931 @end lilypond
932
933
934 @notation{Crescendi} and @notation{decrescendi} are started with
935 the commands @code{\<} and @code{\>}.  The next dynamics sign, for
936 example @code{\f}, will end the (de)crescendo, or the command
937 @code{\!} can be used:
938
939 @lilypond[verbatim,quote,relative=2]
940 c2\< c2\ff\> c2 c2\!
941 @end lilypond
942
943
944 @seealso
945 Notation Reference: @ruser{Articulations and ornamentations},
946 @ruser{Fingering instructions}, @ruser{Dynamics}.
947
948
949 @node Adding text
950 @subsection Adding text
951
952 @cindex text, adding
953 @cindex adding text
954 @cindex markup
955
956 @funindex \markup
957 @funindex markup
958
959 Text may be added to your scores:
960
961 @lilypond[verbatim,quote,relative=2]
962 c1^"espr" a_"legato"
963 @end lilypond
964
965 Extra formatting may be added with the @code{\markup} command:
966
967 @lilypond[verbatim,quote,relative=2]
968 c1^\markup{ \bold espr}
969 a1_\markup{
970   \dynamic f \italic \small { 2nd } \hspace #0.1 \dynamic p
971 }
972 @end lilypond
973
974
975 @seealso
976 Notation Reference: @ruser{Writing text}.
977
978
979 @node Automatic and manual beams
980 @subsection Automatic and manual beams
981
982 @cindex beaming
983 @cindex automatic beams
984 @cindex manual beams
985 @cindex beams, automatic
986 @cindex beams, manual
987 @cindex beams, by hand
988
989 @funindex [ ... ]
990 @funindex [
991 @funindex ]
992 @funindex \autoBeamOff
993 @funindex autoBeamOff
994 @funindex \autoBeamOn
995 @funindex autoBeamOn
996
997 Music Glossary: @rglos{beam}.
998
999 All @notation{beams} are drawn automatically:
1000
1001 @lilypond[verbatim,quote,relative=2]
1002 a8 ais d ees r d c16 b a8
1003 @end lilypond
1004
1005 If you do not like the automatic beams, they may be overridden
1006 manually.  To correct just an occasional beam mark the first note
1007 to be beamed with @code{[} and the last one with @code{]}.
1008
1009 @lilypond[verbatim,quote,relative=2]
1010 a8[ ais] d[ ees r d] a b
1011 @end lilypond
1012
1013 If you want to turn off automatic beaming entirely or for an
1014 extended section of music, use the command @code{\autoBeamOff}
1015 to turn off automatic beaming and @code{\autoBeamOn} to turn it
1016 on again.
1017
1018 @lilypond[verbatim,quote,relative=2]
1019 \autoBeamOff
1020 a8 c b4 d8. c16 b4
1021 \autoBeamOn
1022 a8 c b4 d8. c16 b4
1023 @end lilypond
1024
1025
1026 @seealso
1027 Notation Reference: @ruser{Automatic beams}, @ruser{Manual beams}.
1028
1029
1030 @node Advanced rhythmic commands
1031 @subsection Advanced rhythmic commands
1032
1033 @subheading Partial measure
1034
1035 @cindex pickup
1036 @cindex anacrusis
1037 @cindex partial measure
1038
1039 @funindex \partial
1040 @funindex partial
1041
1042 Music Glossary: @rglos{anacrusis}.
1043
1044 A pickup (or @notation{anacrusis}) is entered with the keyword
1045 @code{\partial}.  It is followed by a duration: @code{\partial 4}
1046 is a quarter note pickup and @code{\partial 8} an eighth note.
1047
1048 @lilypond[verbatim,quote,relative=2]
1049 \partial 8
1050 f8 c2 d
1051 @end lilypond
1052
1053 @subheading Tuplets
1054
1055 @cindex tuplets
1056 @cindex triplets
1057
1058 @funindex \times
1059 @funindex times
1060
1061 Music Glossary: @rglos{note value}, @rglos{triplet}.
1062
1063 @notation{Tuplets} are made with the @code{\times} keyword.  It
1064 takes two arguments: a fraction and a piece of music.  The
1065 duration of the piece of music is multiplied by the fraction.
1066 Triplets make notes occupy 2/3 of their notated duration, so a
1067 @notation{triplet} has 2/3 as its fraction
1068
1069 @lilypond[verbatim,quote,relative=2]
1070 \times 2/3 { f8 g a }
1071 \times 2/3 { c r c }
1072 \times 2/3 { f,8 g16[ a g a] }
1073 \times 2/3 { d4 a8 }
1074 @end lilypond
1075
1076 @subheading Grace notes
1077
1078 @cindex grace notes
1079 @cindex acciaccatura
1080 @cindex appoggiatura
1081
1082 @funindex \grace
1083 @funindex grace
1084 @funindex \acciaccatura
1085 @funindex acciaccatura
1086 @funindex \appoggiatura
1087 @funindex acciaccatura
1088
1089 Music Glossary: @rglos{grace notes}, @rglos{acciaccatura},
1090 @rglos{appoggiatura}.
1091
1092 @notation{Grace notes} are created with the @code{\grace} command,
1093 although they can also be created by prefixing a music expression
1094 with the keyword @code{\appoggiatura} or @code{\acciaccatura}:
1095
1096 @lilypond[verbatim,quote,relative=2]
1097 c2 \grace { a32[ b] } c2
1098 c2 \appoggiatura b16 c2
1099 c2 \acciaccatura b16 c2
1100 @end lilypond
1101
1102
1103 @seealso
1104 Notation Reference: @ruser{Grace notes}, @ruser{Tuplets},
1105 @ruser{Upbeats}.
1106
1107
1108 @node Multiple notes at once
1109 @section Multiple notes at once
1110
1111 This section introduces having more than one note at the same
1112 time: multiple instruments, multiple staves for a single
1113 instrument (i.e. piano), and chords.
1114
1115 Polyphony in music refers to having more than one voice occurring
1116 in a piece of music.  Polyphony in LilyPond refers to having more
1117 than one voice on the same staff.
1118
1119 @menu
1120 * Music expressions explained::
1121 * Multiple staves::
1122 * Staff groups::
1123 * Combining notes into chords::
1124 * Single staff polyphony::
1125 @end menu
1126
1127
1128 @node Music expressions explained
1129 @subsection Music expressions explained
1130
1131 @cindex music expression
1132 @cindex expression, music
1133 @cindex compound music expression
1134 @cindex music expression, compound
1135
1136 In LilyPond input files, music is represented by @emph{music
1137 expressions}.  A single note is a music expression:
1138
1139 @lilypond[verbatim,quote,relative=2]
1140 a4
1141 @end lilypond
1142
1143 Enclosing a note in braces creates a @emph{compound music
1144 expression}.  Here we have created a compound music expression
1145 with two notes:
1146
1147 @lilypond[verbatim,quote,relative=2]
1148 { a4 g4 }
1149 @end lilypond
1150
1151 Putting a group of music expressions (e.g. notes) in braces means
1152 that they are in sequence (i.e. each one follows the previous
1153 one).  The result is another music expression:
1154
1155 @lilypond[verbatim,quote,relative=2]
1156 { { a4 g } f g }
1157 @end lilypond
1158
1159 @subheading Analogy: mathematical expressions
1160
1161 This mechanism is similar to mathematical formulas: a big formula
1162 is created by composing small formulas.  Such formulas are called
1163 expressions, and they can contain other expressions, so you can
1164 make arbitrarily complex and large expressions.  For example,
1165
1166 @example
1167 1
1168
1169 1 + 2
1170
1171 (1 + 2) * 3
1172
1173 ((1 + 2) * 3) / (4 * 5)
1174 @end example
1175
1176 This is a sequence of expressions, where each expression is
1177 contained in the next (larger) one.  The simplest expressions are
1178 numbers, and larger ones are made by combining expressions with
1179 operators (like @code{+}, @code{*} and @code{/}) and parentheses.
1180 Like mathematical expressions, music expressions can be nested
1181 arbitrarily deep, which is necessary for complex music like
1182 polyphonic scores.
1183
1184
1185 @subheading Simultaneous music expressions: multiple staves
1186
1187 @cindex multiple staves
1188 @cindex staves, multiple
1189 @cindex polyphony
1190 @cindex combining expressions in parallel
1191 @cindex parallel expressions
1192 @cindex expressions, parallel
1193 @cindex relative notes and simultaneous music
1194 @cindex relative notes and parallel expressions
1195 @cindex simultaneous music and relative notes
1196 @cindex parallel expressions and relative notes
1197
1198 @funindex <<
1199 @funindex >>
1200 @funindex << ... >>
1201
1202 Music Glossary: @rglos{polyphony}.
1203
1204 This technique is useful for @notation{polyphonic} music.  To
1205 enter music with more voices or more staves, we combine
1206 expressions in parallel.  To indicate that two voices should play
1207 at the same time, simply enter a simultaneous combination of music
1208 expressions.  A @q{simultaneous} music expression is formed by
1209 enclosing expressions inside @code{<<} and @code{>>}.  In the
1210 following example, three sequences (all containing two separate
1211 notes) are combined simultaneously:
1212
1213 @lilypond[verbatim,quote]
1214 \relative c'' {
1215   <<
1216     { a4 g }
1217     { f e }
1218     { d b }
1219   >>
1220 }
1221 @end lilypond
1222
1223 Note that we have indented each level of the input with a
1224 different amount of space.  LilyPond does not care how much (or
1225 little) space there is at the beginning of a line, but indenting
1226 LilyPond code like this makes it much easier for humans to read.
1227
1228 @warning{each note is relative to the previous note in
1229 the input, not relative to the @code{c''} in the initial
1230 @code{@bs{}relative} command.}
1231
1232
1233 @subheading Simultaneous music expressions: single staff
1234
1235 To determine the number of staves in a piece, LilyPond looks at
1236 the beginning of the first expression.  If is a single note, there
1237 is one staff; if there is a simultaneous expression, there is more
1238 than one staff.
1239
1240 @lilypond[verbatim,quote]
1241 \relative c'' {
1242   c2 <<c e>>
1243   << { e f } { c <<b d>> } >>
1244 }
1245 @end lilypond
1246
1247 @node Multiple staves
1248 @subsection Multiple staves
1249
1250 @cindex multiple staves
1251 @cindex staves, multiple
1252 @cindex context
1253 @cindex context, notation
1254 @cindex notation context
1255
1256 @funindex \new Staff
1257 @funindex new Staff
1258 @funindex Staff
1259 @funindex \new
1260 @funindex new
1261 @funindex Score
1262 @funindex Voice
1263 @funindex Lyrics
1264 @funindex ChordNames
1265
1266 LilyPond input files are constructed out of music expressions, as
1267 we saw in @ref{Music expressions explained}.  If the score begins
1268 with simultaneous music expressions, LilyPond creates multiples
1269 staves.  However, it is easier to see what happens if we create
1270 each staff explicitly.
1271
1272 To print more than one staff, each piece of music that makes up a
1273 staff is marked by adding @code{\new Staff} before it.  These
1274 @code{Staff} elements are then combined in parallel with @code{<<}
1275 and @code{>>}:
1276
1277 @lilypond[verbatim,quote]
1278 \relative c'' {
1279   <<
1280     \new Staff { \clef treble c }
1281     \new Staff { \clef bass c,, }
1282   >>
1283 }
1284 @end lilypond
1285
1286 The command @code{\new} introduces a @q{notation context.}  A
1287 notation context is an environment in which musical events (like
1288 notes or @code{\clef} commands) are interpreted.  For simple
1289 pieces, such notation contexts are created automatically.  For
1290 more complex pieces, it is best to mark contexts explicitly.
1291
1292 There are several types of contexts.  @code{Score}, @code{Staff},
1293 and @code{Voice} handle melodic notation, while @code{Lyrics} sets
1294 lyric texts and @code{ChordNames} prints chord names.
1295
1296 In terms of syntax, prepending @code{\new} to a music expression
1297 creates a bigger music expression.  In this way it resembles the
1298 minus sign in mathematics.  The formula @math{(4+5)} is an
1299 expression, so @math{-(4+5)} is a bigger expression.
1300
1301 Time signatures entered in one staff affects all other staves by
1302 default.  On the other hand, the key signature of one staff does
1303 @emph{not} affect other staves.  This different default behavior
1304 is because scores with transposing instruments are more common
1305 than polyrhythmic scores.
1306
1307 @lilypond[verbatim,quote]
1308 \relative c'' {
1309   <<
1310     \new Staff { \clef treble \key d \major \time 3/4 c }
1311     \new Staff { \clef bass c,, }
1312   >>
1313 }
1314 @end lilypond
1315
1316
1317
1318
1319 @node Staff groups
1320 @subsection Staff groups
1321
1322 @cindex piano staff
1323 @cindex staff, piano
1324 @cindex choir staff
1325 @cindex staff, choir
1326 @cindex grand staff
1327 @cindex staff, grand
1328 @cindex staff group
1329
1330 @funindex PianoStaff
1331 @funindex GrandStaff
1332 @funindex ChoirStaff
1333
1334 Music Glossary: @rglos{brace}.
1335
1336 Piano music is typeset in two staves connected by a
1337 @notation{brace}.
1338 Printing such a staff is similar to the polyphonic example in
1339 @ref{Multiple staves}.  However, now this entire expression is
1340 inserted inside a @code{PianoStaff}:
1341
1342 @example
1343 \new PianoStaff <<
1344   \new Staff @dots{}
1345   \new Staff @dots{}
1346 >>
1347 @end example
1348
1349 Here is a small example:
1350
1351 @lilypond[verbatim,quote]
1352 \relative c'' {
1353   \new PianoStaff <<
1354     \new Staff { \time 2/4 c4 e g g, }
1355     \new Staff { \clef bass c,, c' e c }
1356   >>
1357 }
1358 @end lilypond
1359
1360 Other staff groupings are introduced with @code{\new GrandStaff},
1361 suitable for orchestral scores, and @w{@code{\new ChoirStaff}},
1362 suitable for vocal scores.  These staff groups each form another
1363 type of context, one that generates the brace at the left end of
1364 every system and also controls the extent of bar lines.
1365
1366
1367 @seealso
1368 Notation Reference: @ruser{Keyboard and other multi-staff
1369 instruments},
1370 @ruser{Displaying staves}.
1371
1372
1373 @node Combining notes into chords
1374 @subsection Combining notes into chords
1375
1376 @cindex chords
1377 @cindex note durations in chords
1378
1379 @funindex <
1380 @funindex >
1381 @funindex < ... >
1382
1383 Music Glossary: @rglos{chord}.
1384
1385 We saw earlier how notes can be combined into @notation{chords} by
1386 indicating they are simultaneous by enclosing them in double angle
1387 brackets.  However, the normal way of indicating a chord is to
1388 surround the pitches with @emph{single} angle brackets.  Note that
1389 all the notes in a chord must have the same duration, and that the
1390 duration is placed after the closing bracket.
1391
1392 @lilypond[verbatim,quote,relative=2]
1393 r4 <c e g>4 <c f a>2
1394 @end lilypond
1395
1396 Think of chords as almost equivalent to single notes:
1397 almost everything you can attach to a single note can be attached
1398 to a chord, and everything must go @emph{outside} the angle
1399 brackets.  For example, you can combine markings like beams and
1400 ties with chords.  They must be placed outside the angle brackets.
1401
1402 @lilypond[verbatim,quote,relative=2]
1403 r4 <c e g>8[ <c f a>]~ <c f a>2
1404 r4 <c e g>8( <c e g>\> <c e g>4 <c f a>\!)
1405 @end lilypond
1406
1407
1408 @node Single staff polyphony
1409 @subsection Single staff polyphony
1410
1411 @cindex polyphony
1412 @cindex multiple voices
1413 @cindex voices, more on one staff
1414 @cindex single staff polyphony
1415 @cindex spacer rest
1416 @cindex rest, spacer
1417
1418 @funindex << ... \\ ... >>
1419 @funindex <<
1420 @funindex \\
1421 @funindex >>
1422
1423 When different melodic lines are combined on a single staff they
1424 are printed as polyphonic voices; each voice has its own stems,
1425 slurs and beams, and the top voice has the stems up, while the
1426 bottom voice has them down.
1427
1428 Entering such parts is done by entering each voice as a sequence
1429 (with @w{@code{@{...@}}}) and combining these simultaneously,
1430 separating the voices with @code{\\}:
1431
1432 @lilypond[verbatim,quote,relative=2]
1433 <<
1434   { a4 g2 f4~ f4 } \\
1435   { r4 g4 f2 f4 }
1436 >>
1437 @end lilypond
1438
1439 For polyphonic music typesetting, spacer rests can also be
1440 convenient; these are rests that do not print.  They are useful
1441 for filling up voices that temporarily do not play.  Here is the
1442 same example with a spacer rest (@code{s}) instead of a normal
1443 rest (@code{r}),
1444
1445 @lilypond[verbatim,quote,relative=2]
1446 <<
1447   { a4 g2 f4~ f4 } \\
1448   { s4 g4 f2 f4 }
1449 >>
1450 @end lilypond
1451
1452 @noindent
1453 Again, these expressions can be nested arbitrarily.
1454
1455 @lilypond[verbatim,quote,relative=2]
1456 <<
1457   \new Staff <<
1458     { a4 g2 f4~ f4 } \\
1459     { s4 g4 f2 f4 }
1460   >>
1461   \new Staff <<
1462     \clef bass
1463     { <c g>1 ~ <c g>4 } \\
1464     { e,,4 d e2 ~ e4}
1465   >>
1466 >>
1467 @end lilypond
1468
1469
1470 @seealso
1471 Notation Reference: @ruser{Simultaneous notes}.
1472
1473
1474 @node Songs
1475 @section Songs
1476
1477 This section introduces vocal music and simple song sheets.
1478
1479 @menu
1480 * Setting simple songs::
1481 * Aligning lyrics to a melody::
1482 * Lyrics to multiple staves::
1483 @end menu
1484
1485
1486 @node Setting simple songs
1487 @subsection Setting simple songs
1488
1489 @cindex lyrics
1490 @cindex songs
1491
1492 @funindex \addlyrics
1493 @funindex addlyrics
1494
1495 Music Glossary: @rglos{lyrics}.
1496
1497 Here is the start of the melody to a nursery
1498 rhyme, @notation{Girls and boys come out to play}:
1499
1500 @lilypond[verbatim,quote]
1501 \relative c'' {
1502   \key g \major
1503   \time 6/8
1504   d4 b8 c4 a8 d4 b8 g4
1505 }
1506 @end lilypond
1507
1508 The @notation{lyrics} can be set to these notes, combining both
1509 with the @code{\addlyrics} keyword.  Lyrics are entered by
1510 separating each syllable with a space.
1511
1512 @lilypond[verbatim,quote]
1513 <<
1514   \relative c'' {
1515     \key g \major
1516     \time 6/8
1517     d4 b8 c4 a8 d4 b8 g4
1518   }
1519   \addlyrics {
1520     Girls and boys come out to play,
1521   }
1522 >>
1523 @end lilypond
1524
1525 Note the curly brackets delimiting both the music and the lyrics,
1526 and the double angle brackets @w{@code{<< ... >>}} around the
1527 whole piece to show that the music and lyrics are to occur at the
1528 same time.
1529
1530 @node Aligning lyrics to a melody
1531 @subsection Aligning lyrics to a melody
1532
1533 @cindex melisma
1534 @cindex extender line
1535 @cindex hyphens
1536 @cindex underscore
1537 @cindex lyrics, aligning
1538 @cindex aligning lyrics
1539 @cindex lyrics, multi-syllable words
1540 @cindex words with multiple syllables in lyrics
1541
1542 Music Glossary: @rglos{melisma}, @rglos{extender line}.
1543
1544 The next line in the nursery rhyme is @notation{The moon doth
1545 shine as bright as day}.  Let's extend it:
1546
1547 @lilypond[verbatim,quote]
1548 <<
1549   \relative c'' {
1550     \key g \major
1551     \time 6/8
1552     d4 b8 c4 a8 d4 b8 g4
1553     g8 a4 b8 c b a d4 b8 g4.
1554   }
1555   \addlyrics {
1556     Girls and boys come out to play,
1557     The moon doth shine as bright as day;
1558   }
1559 >>
1560 @end lilypond
1561
1562 We see the extra lyrics do not align properly with the notes.  The
1563 word @notation{shine} should be sung on two notes, not one.  This
1564 is called a @notation{melisma}, a single syllable sung to more
1565 than one note.  There are several ways to spread a syllable over
1566 multiple notes, the simplest being to add a slur across them, for
1567 details, see @ref{Ties and slurs}:
1568
1569 @lilypond[verbatim,quote]
1570 <<
1571   \relative c'' {
1572     \key g \major
1573     \time 6/8
1574     d4 b8 c4 a8 d4 b8 g4
1575     g8 a4 b8 c( b) a d4 b8 g4.
1576   }
1577   \addlyrics {
1578     Girls and boys come out to play,
1579     The moon doth shine as bright as day;
1580   }
1581 >>
1582 @end lilypond
1583
1584 The words now line up correctly with the notes, but the automatic
1585 beaming for the notes above @notation{shine as} does not look right.
1586 We can correct this by inserting manual beaming commands to override
1587 the automatic beaming here, for details, see @ref{Automatic and
1588 manual beams}.
1589
1590 @lilypond[verbatim,quote]
1591 <<
1592   \relative c'' {
1593     \key g \major
1594     \time 6/8
1595     d4 b8 c4 a8 d4 b8 g4
1596     g8 a4 b8 c([ b]) a d4 b8 g4.
1597   }
1598   \addlyrics {
1599     Girls and boys come out to play,
1600     The moon doth shine as bright as day;
1601   }
1602 >>
1603 @end lilypond
1604
1605 As an alternative to using slurs, the melismata may be indicated
1606 in just the lyrics by using an underscore @code{_} for each note
1607 that should be included in the melisma:
1608
1609 @lilypond[verbatim,quote]
1610 <<
1611   \relative c'' {
1612     \key g \major
1613     \time 6/8
1614     d4 b8 c4 a8 d4 b8 g4
1615     g8 a4 b8 c[ b] a d4 b8 g4.
1616   }
1617   \addlyrics {
1618     Girls and boys come out to play,
1619     The moon doth shine _ as bright as day;
1620   }
1621 >>
1622 @end lilypond
1623
1624 If a syllable extends over several notes or a single very long
1625 note an @notation{extender line} is usually drawn from the
1626 syllable extending under all the notes for that syllable.  It is
1627 entered as two underscores @code{__}.  Here is an example from the
1628 first three bars of @notation{Dido's Lament}, from Purcell's
1629 @notation{Dido and Ã†neas}:
1630
1631 @lilypond[verbatim,quote]
1632 <<
1633   \relative c'' {
1634     \key g \minor
1635     \time 3/2
1636     g2 a bes bes( a)
1637     b c4.( bes8 a4. g8 fis4.) g8 fis1
1638   }
1639   \addlyrics {
1640     When I am laid,
1641     am laid __ in earth,
1642   }
1643 >>
1644 @end lilypond
1645
1646 None of the examples so far have involved words containing more
1647 than one syllable.  Such words are usually split one syllable to a
1648 note, with hyphens between syllables.  Such hyphens are entered as
1649 two dashes, resulting in a centered hyphen between the syllables.
1650 Here is an example showing this and everything we have learned so
1651 far about aligning lyrics to notes.
1652
1653 @c no ragged-right here because otherwise the hyphens get lost,
1654 @c but the example is long enough to avoid looking strange.
1655 @lilypond[verbatim,quote,noragged-right]
1656 <<
1657   \relative c' {
1658     \key g \major
1659     \time 3/4
1660     \partial 4
1661     d4 g4 g a8( b) g4 g4
1662     b8( c) d4 d e4 c2
1663   }
1664   \addlyrics {
1665     A -- way in a __ man -- ger,
1666     no __ crib for a bed, __
1667   }
1668 >>
1669 @end lilypond
1670
1671 Some lyrics, especially those in Italian, require the opposite:
1672 setting more than one syllable to a single note.  This is
1673 achieved by linking the syllables together with a single
1674 underscore @code{_} (with no spaces), or enclosing them in quotes.
1675 Here's an example from Rossini's @notation{Figaro}, where
1676 @notation{al} has to be sung on the same note as the @notation{go} of
1677 @notation{Largo} in Figaro's aria @notation{Largo al factotum}:
1678
1679 @c no ragged-right here because otherwise the hyphens get lost,
1680 @c but the example is long enough to avoid looking strange.
1681 @lilypond[verbatim,quote,noragged-right]
1682 <<
1683   \relative c' {
1684     \clef bass
1685     \key c \major
1686     \time 6/8
1687     c4.~ c8 d b c([ d]) b c d b c
1688   }
1689   \addlyrics {
1690     Lar -- go_al fac -- to -- tum del -- la cit -- tà
1691   }
1692 >>
1693 @end lilypond
1694
1695
1696 @seealso
1697 Notation Reference: @ruser{Vocal music}.
1698
1699
1700 @node Lyrics to multiple staves
1701 @subsection Lyrics to multiple staves
1702
1703 @cindex lyrics and multiple staves
1704 @cindex multiple staves and lyrics
1705
1706 The simple approach using @code{\addlyrics} can be used for
1707 placing lyrics under more than one staff.  Here is an
1708 example from Handel's @notation{Judas Maccabæus}:
1709
1710 @lilypond[verbatim,quote]
1711 <<
1712   \relative c'' {
1713     \key f \major
1714     \time 6/8
1715     \partial 8
1716     c8 c([ bes]) a a([ g]) f f'4. b, c4.~ c4
1717   }
1718   \addlyrics {
1719     Let flee -- cy flocks the hills a -- dorn, __
1720   }
1721   \relative c' {
1722     \key f \major
1723     \time 6/8
1724     \partial 8
1725     r8 r4. r4 c8 a'([ g]) f f([ e]) d e([ d]) c bes'4
1726   }
1727   \addlyrics {
1728     Let flee -- cy flocks the hills a -- dorn,
1729   }
1730 >>
1731 @end lilypond
1732
1733 Scores any more complex than this simple example are better
1734 produced by separating out the score structure from the notes and
1735 lyrics with variables.  These are discussed in @ref{Organizing
1736 pieces with variables}.
1737
1738
1739 @seealso
1740 Notation Reference: @ruser{Vocal music}.
1741
1742
1743 @node Final touches
1744 @section Final touches
1745
1746 This is the final section of the tutorial; it demonstrates how to
1747 add the final touches to simple pieces, and provides an
1748 introduction to the rest of the manual.
1749
1750 @menu
1751 * Organizing pieces with variables::
1752 * Version number::
1753 * Adding titles::
1754 * Absolute note names::
1755 * After the tutorial::
1756 @end menu
1757
1758
1759 @node Organizing pieces with variables
1760 @subsection Organizing pieces with variables
1761
1762 @cindex variables
1763 @cindex variables, defining
1764 @cindex identifiers
1765 @cindex macros
1766 @cindex assigning variables
1767 @cindex using variables
1768 @cindex variables, using
1769 @cindex variables, characters allowed in
1770 @cindex characters allowed in variables
1771
1772 When all of the elements discussed earlier are combined to produce
1773 larger files, the music expressions get a lot bigger.  In
1774 polyphonic music with many staves, the input files can become very
1775 confusing.  We can reduce this confusion by using
1776 @emph{variables}.
1777
1778 With variables (also known as identifiers or macros), we can break
1779 up complex music expressions.  A variable is assigned as
1780 follows:
1781
1782 @example
1783 namedMusic = @{ @dots{} @}
1784 @end example
1785
1786 The contents of the music expression @code{namedMusic} can be used
1787 later by placing a backslash in front of the name
1788 (@code{\namedMusic}, just like a normal LilyPond command).
1789
1790 @lilypond[verbatim,quote]
1791 violin = \new Staff {
1792   \relative c'' {
1793     a4 b c b
1794   }
1795 }
1796 cello = \new Staff {
1797   \relative c {
1798     \clef bass
1799     e2 d
1800   }
1801 }
1802 {
1803   <<
1804     \violin
1805     \cello
1806   >>
1807 }
1808 @end lilypond
1809
1810 @noindent
1811 The name of a variable must have alphabetic characters only, no
1812 numbers, underscores, or dashes.
1813
1814 Variables must be defined @emph{before} the main music
1815 expression, but may be used as many times as required anywhere after
1816 they have been defined.  They may even be used in a later definition
1817 of another variable, giving a way of shortening the input if a
1818 section of music is repeated many times.
1819
1820 @lilypond[verbatim,quote]
1821 tripletA = \times 2/3 { c,8 e g }
1822 barA = { \tripletA \tripletA \tripletA \tripletA }
1823
1824 \relative c'' {
1825  \barA \barA
1826 }
1827 @end lilypond
1828
1829 Variables may be used for many other types of objects in
1830 the input.  For example,
1831
1832 @example
1833 width = 4.5\cm
1834 name = "Wendy"
1835 aFivePaper = \paper @{ paperheight = 21.0 \cm @}
1836 @end example
1837
1838 Depending on its contents, the variable can be used in different
1839 places.  The following example uses the above variables:
1840
1841 @example
1842 \paper @{
1843   \aFivePaper
1844   line-width = \width
1845 @}
1846 @{
1847   c4^\name
1848 @}
1849 @end example
1850
1851
1852 @node Version number
1853 @subsection Version number
1854
1855 @cindex versioning
1856 @cindex version
1857 @cindex version number
1858 @cindex upgrades
1859 @cindex future upgrades
1860 @cindex updating files
1861 @cindex files, updating
1862
1863 @funindex \version
1864 @funindex version
1865 @funindex convert-ly
1866
1867 The @code{\version} statement records the version of LilyPond that
1868 was used to write the file:
1869
1870 @example
1871 \version @w{"@version{}"}
1872 @end example
1873
1874 @noindent
1875 By convention, this is placed at the top of your LilyPond file.
1876
1877 These annotations make future upgrades of LilyPond go more
1878 smoothly.  Changes in the syntax are handled with a special
1879 program, @command{convert-ly}, and it uses @code{\version} to
1880 determine what rules to apply.  For details, see
1881 @rprogram{Updating files with convert-ly}.
1882
1883
1884 @node Adding titles
1885 @subsection Adding titles
1886
1887 @cindex title
1888 @cindex headers
1889 @cindex header block
1890
1891 @funindex \header
1892 @funindex header
1893
1894 The title, composer, opus number, and similar information are
1895 entered in the @code{\header} block.  This exists outside of the
1896 main music expression; the @code{\header} block is usually placed
1897 underneath the version number.
1898
1899 @example
1900 \version @w{"@version{}"}
1901 \header @{
1902   title = "Symphony"
1903   composer = "Me"
1904   opus = "Op. 9"
1905 @}
1906
1907 @{
1908   @dots{} music @dots{}
1909 @}
1910 @end example
1911
1912 When the file is processed, the title and composer are printed
1913 above the music.  More information on titling can be found in
1914 @ruser{Creating titles}.
1915
1916
1917 @node Absolute note names
1918 @subsection Absolute note names
1919
1920 @cindex note names
1921 @cindex note names, absolute
1922 @cindex absolute mode
1923 @cindex absolute values for pitches
1924 @cindex pitches, absolute values
1925 @cindex absolute note names
1926
1927 So far we have always used @code{\relative} to define pitches.
1928 This is the easiest way to enter most music, but another way of
1929 defining pitches exists: absolute mode.
1930
1931 If you omit the @code{\relative}, LilyPond treats all pitches as
1932 absolute values.  A @code{c'} will always mean middle C, a
1933 @code{b} will always mean the note one step below middle C, and a
1934 @code{g,} will always mean the note on the bottom staff of the
1935 bass clef.
1936
1937 @lilypond[verbatim,quote]
1938 {
1939   \clef bass
1940   c' b g, g,
1941   g, f, f c'
1942 }
1943 @end lilypond
1944
1945 Here is a four-octave scale:
1946
1947 @lilypond[verbatim,quote]
1948 {
1949   \clef bass
1950   c, d, e, f,
1951   g, a, b, c
1952   d e f g
1953   a b c' d'
1954   \clef treble
1955   e' f' g' a'
1956   b' c'' d'' e''
1957   f'' g'' a'' b''
1958   c'''1
1959 }
1960 @end lilypond
1961
1962 As you can see, writing a melody in the treble clef involves a lot
1963 of quote @code{'} marks.  Consider this fragment from Mozart:
1964
1965 @lilypond[verbatim,quote]
1966 {
1967   \key a \major
1968   \time 6/8
1969   cis''8. d''16 cis''8 e''4 e''8
1970   b'8. cis''16 b'8 d''4 d''8
1971 }
1972 @end lilypond
1973
1974 All these quotes makes the input less readable and they are a source
1975 of errors.  With @code{\relative}, the previous example is much
1976 easier to read and type:
1977
1978 @lilypond[verbatim,quote]
1979 \relative c'' {
1980   \key a \major
1981   \time 6/8
1982   cis8. d16 cis8 e4 e8
1983   b8. cis16 b8 d4 d8
1984 }
1985 @end lilypond
1986
1987 If you make a mistake with an octave mark (@code{'} or @code{,})
1988 while working in @code{\relative} mode, it is very obvious -- many
1989 notes will be in the wrong octave.  When working in absolute mode,
1990 a single mistake will not be as visible, and will not be as easy
1991 to find.
1992
1993 However, absolute mode is useful for music which has large
1994 intervals, and is extremely useful for computer-generated LilyPond
1995 files.
1996
1997
1998
1999 @node After the tutorial
2000 @subsection After the tutorial
2001
2002 After finishing the tutorial, you should probably try writing a
2003 piece or two.  Start by adding notes to one of the
2004 @ref{Templates}.  If you need any notation that was not covered in
2005 the tutorial, look at the Notation Reference, starting with
2006 @ruser{Musical notation}.  If you want to write for an instrument
2007 ensemble that is not covered in the templates, take a look at
2008 @ref{Extending the templates}.
2009
2010 Once you have written a few short pieces, read the rest of the
2011 Learning Manual (chapters 3-5).  There's nothing wrong with
2012 reading it now, of course!  However, the rest of the Learning
2013 Manual assumes that you are familiar with LilyPond input.  You may
2014 wish to skim these chapters right now, and come back to them after
2015 you have more experience.
2016
2017 In this tutorial and in the rest of the Learning Manual, there is a
2018 paragraph @strong{See also} at the end of each section, which contains
2019 cross-references to other sections: you should not follow these
2020 cross-references at first reading; when you have read all of the
2021 Learning Manual, you may want to read some sections again and follow
2022 cross-references for further reading.
2023
2024 If you have not done so already, @emph{please} read @ref{About the
2025 documentation}.  There is a lot of information about LilyPond, so
2026 newcomers often do not know where they should look for help.  If
2027 you spend five minutes reading that section carefully, you might
2028 save yourself hours of frustration looking in the wrong places!
2029