]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/tutorial.itely
modified: Documentation/user/tutorial.itely
[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 Polyphonic music in lilypond, while not difficult, uses concepts
1424 that we haven't discussed yet, so we're not going to introduce
1425 them here. Instead, the following sections introduce these concepts
1426 and explain them thoroughly.
1427
1428 @seealso
1429 Learning Manual: @ref{Voices contain music}.
1430
1431 Notation Reference: @ruser{Simultaneous notes}.
1432
1433 @node Songs
1434 @section Songs
1435
1436 This section introduces vocal music and simple song sheets.
1437
1438 @menu
1439 * Setting simple songs::
1440 * Aligning lyrics to a melody::
1441 * Lyrics to multiple staves::
1442 @end menu
1443
1444
1445 @node Setting simple songs
1446 @subsection Setting simple songs
1447
1448 @cindex lyrics
1449 @cindex songs
1450
1451 @funindex \addlyrics
1452 @funindex addlyrics
1453
1454 Music Glossary: @rglos{lyrics}.
1455
1456 Here is the start of the melody to a nursery
1457 rhyme, @notation{Girls and boys come out to play}:
1458
1459 @lilypond[verbatim,quote]
1460 \relative c'' {
1461   \key g \major
1462   \time 6/8
1463   d4 b8 c4 a8 d4 b8 g4
1464 }
1465 @end lilypond
1466
1467 The @notation{lyrics} can be set to these notes, combining both
1468 with the @code{\addlyrics} keyword.  Lyrics are entered by
1469 separating each syllable with a space.
1470
1471 @lilypond[verbatim,quote]
1472 <<
1473   \relative c'' {
1474     \key g \major
1475     \time 6/8
1476     d4 b8 c4 a8 d4 b8 g4
1477   }
1478   \addlyrics {
1479     Girls and boys come out to play,
1480   }
1481 >>
1482 @end lilypond
1483
1484 Note the curly brackets delimiting both the music and the lyrics,
1485 and the double angle brackets @w{@code{<< ... >>}} around the
1486 whole piece to show that the music and lyrics are to occur at the
1487 same time.
1488
1489 @node Aligning lyrics to a melody
1490 @subsection Aligning lyrics to a melody
1491
1492 @cindex melisma
1493 @cindex extender line
1494 @cindex hyphens
1495 @cindex underscore
1496 @cindex lyrics, aligning
1497 @cindex aligning lyrics
1498 @cindex lyrics, multi-syllable words
1499 @cindex words with multiple syllables in lyrics
1500
1501 Music Glossary: @rglos{melisma}, @rglos{extender line}.
1502
1503 The next line in the nursery rhyme is @notation{The moon doth
1504 shine as bright as day}.  Let's extend it:
1505
1506 @lilypond[verbatim,quote]
1507 <<
1508   \relative c'' {
1509     \key g \major
1510     \time 6/8
1511     d4 b8 c4 a8 d4 b8 g4
1512     g8 a4 b8 c b a d4 b8 g4.
1513   }
1514   \addlyrics {
1515     Girls and boys come out to play,
1516     The moon doth shine as bright as day;
1517   }
1518 >>
1519 @end lilypond
1520
1521 We see the extra lyrics do not align properly with the notes.  The
1522 word @notation{shine} should be sung on two notes, not one.  This
1523 is called a @notation{melisma}, a single syllable sung to more
1524 than one note.  There are several ways to spread a syllable over
1525 multiple notes, the simplest being to add a slur across them, for
1526 details, see @ref{Ties and slurs}:
1527
1528 @lilypond[verbatim,quote]
1529 <<
1530   \relative c'' {
1531     \key g \major
1532     \time 6/8
1533     d4 b8 c4 a8 d4 b8 g4
1534     g8 a4 b8 c( b) a d4 b8 g4.
1535   }
1536   \addlyrics {
1537     Girls and boys come out to play,
1538     The moon doth shine as bright as day;
1539   }
1540 >>
1541 @end lilypond
1542
1543 The words now line up correctly with the notes, but the automatic
1544 beaming for the notes above @notation{shine as} does not look right.
1545 We can correct this by inserting manual beaming commands to override
1546 the automatic beaming here, for details, see @ref{Automatic and
1547 manual beams}.
1548
1549 @lilypond[verbatim,quote]
1550 <<
1551   \relative c'' {
1552     \key g \major
1553     \time 6/8
1554     d4 b8 c4 a8 d4 b8 g4
1555     g8 a4 b8 c([ b]) a d4 b8 g4.
1556   }
1557   \addlyrics {
1558     Girls and boys come out to play,
1559     The moon doth shine as bright as day;
1560   }
1561 >>
1562 @end lilypond
1563
1564 As an alternative to using slurs, the melismata may be indicated
1565 in just the lyrics by using an underscore @code{_} for each note
1566 that should be included in the melisma:
1567
1568 @lilypond[verbatim,quote]
1569 <<
1570   \relative c'' {
1571     \key g \major
1572     \time 6/8
1573     d4 b8 c4 a8 d4 b8 g4
1574     g8 a4 b8 c[ b] a d4 b8 g4.
1575   }
1576   \addlyrics {
1577     Girls and boys come out to play,
1578     The moon doth shine _ as bright as day;
1579   }
1580 >>
1581 @end lilypond
1582
1583 If a syllable extends over several notes or a single very long
1584 note an @notation{extender line} is usually drawn from the
1585 syllable extending under all the notes for that syllable.  It is
1586 entered as two underscores @code{__}.  Here is an example from the
1587 first three bars of @notation{Dido's Lament}, from Purcell's
1588 @notation{Dido and Ã†neas}:
1589
1590 @lilypond[verbatim,quote]
1591 <<
1592   \relative c'' {
1593     \key g \minor
1594     \time 3/2
1595     g2 a bes bes( a)
1596     b c4.( bes8 a4. g8 fis4.) g8 fis1
1597   }
1598   \addlyrics {
1599     When I am laid,
1600     am laid __ in earth,
1601   }
1602 >>
1603 @end lilypond
1604
1605 None of the examples so far have involved words containing more
1606 than one syllable.  Such words are usually split one syllable to a
1607 note, with hyphens between syllables.  Such hyphens are entered as
1608 two dashes, resulting in a centered hyphen between the syllables.
1609 Here is an example showing this and everything we have learned so
1610 far about aligning lyrics to notes.
1611
1612 @c no ragged-right here because otherwise the hyphens get lost,
1613 @c but the example is long enough to avoid looking strange.
1614 @lilypond[verbatim,quote,noragged-right]
1615 <<
1616   \relative c' {
1617     \key g \major
1618     \time 3/4
1619     \partial 4
1620     d4 g4 g a8( b) g4 g4
1621     b8( c) d4 d e4 c2
1622   }
1623   \addlyrics {
1624     A -- way in a __ man -- ger,
1625     no __ crib for a bed, __
1626   }
1627 >>
1628 @end lilypond
1629
1630 Some lyrics, especially those in Italian, require the opposite:
1631 setting more than one syllable to a single note.  This is
1632 achieved by linking the syllables together with a single
1633 underscore @code{_} (with no spaces), or enclosing them in quotes.
1634 Here's an example from Rossini's @notation{Figaro}, where
1635 @notation{al} has to be sung on the same note as the @notation{go} of
1636 @notation{Largo} in Figaro's aria @notation{Largo al factotum}:
1637
1638 @c no ragged-right here because otherwise the hyphens get lost,
1639 @c but the example is long enough to avoid looking strange.
1640 @lilypond[verbatim,quote,noragged-right]
1641 <<
1642   \relative c' {
1643     \clef bass
1644     \key c \major
1645     \time 6/8
1646     c4.~ c8 d b c([ d]) b c d b c
1647   }
1648   \addlyrics {
1649     Lar -- go_al fac -- to -- tum del -- la cit -- tà
1650   }
1651 >>
1652 @end lilypond
1653
1654
1655 @seealso
1656 Notation Reference: @ruser{Vocal music}.
1657
1658
1659 @node Lyrics to multiple staves
1660 @subsection Lyrics to multiple staves
1661
1662 @cindex lyrics and multiple staves
1663 @cindex multiple staves and lyrics
1664
1665 The simple approach using @code{\addlyrics} can be used for
1666 placing lyrics under more than one staff.  Here is an
1667 example from Handel's @notation{Judas Maccabæus}:
1668
1669 @lilypond[verbatim,quote]
1670 <<
1671   \relative c'' {
1672     \key f \major
1673     \time 6/8
1674     \partial 8
1675     c8 c([ bes]) a a([ g]) f f'4. b, c4.~ c4
1676   }
1677   \addlyrics {
1678     Let flee -- cy flocks the hills a -- dorn, __
1679   }
1680   \relative c' {
1681     \key f \major
1682     \time 6/8
1683     \partial 8
1684     r8 r4. r4 c8 a'([ g]) f f([ e]) d e([ d]) c bes'4
1685   }
1686   \addlyrics {
1687     Let flee -- cy flocks the hills a -- dorn,
1688   }
1689 >>
1690 @end lilypond
1691
1692 Scores any more complex than this simple example are better
1693 produced by separating out the score structure from the notes and
1694 lyrics with variables.  These are discussed in @ref{Organizing
1695 pieces with variables}.
1696
1697
1698 @seealso
1699 Notation Reference: @ruser{Vocal music}.
1700
1701
1702 @node Final touches
1703 @section Final touches
1704
1705 This is the final section of the tutorial; it demonstrates how to
1706 add the final touches to simple pieces, and provides an
1707 introduction to the rest of the manual.
1708
1709 @menu
1710 * Organizing pieces with variables::
1711 * Version number::
1712 * Adding titles::
1713 * Absolute note names::
1714 * After the tutorial::
1715 @end menu
1716
1717
1718 @node Organizing pieces with variables
1719 @subsection Organizing pieces with variables
1720
1721 @cindex variables
1722 @cindex variables, defining
1723 @cindex identifiers
1724 @cindex macros
1725 @cindex assigning variables
1726 @cindex using variables
1727 @cindex variables, using
1728 @cindex variables, characters allowed in
1729 @cindex characters allowed in variables
1730
1731 When all of the elements discussed earlier are combined to produce
1732 larger files, the music expressions get a lot bigger.  In
1733 polyphonic music with many staves, the input files can become very
1734 confusing.  We can reduce this confusion by using
1735 @emph{variables}.
1736
1737 With variables (also known as identifiers or macros), we can break
1738 up complex music expressions.  A variable is assigned as
1739 follows:
1740
1741 @example
1742 namedMusic = @{ @dots{} @}
1743 @end example
1744
1745 The contents of the music expression @code{namedMusic} can be used
1746 later by placing a backslash in front of the name
1747 (@code{\namedMusic}, just like a normal LilyPond command).
1748
1749 @lilypond[verbatim,quote]
1750 violin = \new Staff {
1751   \relative c'' {
1752     a4 b c b
1753   }
1754 }
1755 cello = \new Staff {
1756   \relative c {
1757     \clef bass
1758     e2 d
1759   }
1760 }
1761 {
1762   <<
1763     \violin
1764     \cello
1765   >>
1766 }
1767 @end lilypond
1768
1769 @noindent
1770 The name of a variable must have alphabetic characters only, no
1771 numbers, underscores, or dashes.
1772
1773 Variables must be defined @emph{before} the main music
1774 expression, but may be used as many times as required anywhere after
1775 they have been defined.  They may even be used in a later definition
1776 of another variable, giving a way of shortening the input if a
1777 section of music is repeated many times.
1778
1779 @lilypond[verbatim,quote]
1780 tripletA = \times 2/3 { c,8 e g }
1781 barA = { \tripletA \tripletA \tripletA \tripletA }
1782
1783 \relative c'' {
1784  \barA \barA
1785 }
1786 @end lilypond
1787
1788 Variables may be used for many other types of objects in
1789 the input.  For example,
1790
1791 @example
1792 width = 4.5\cm
1793 name = "Wendy"
1794 aFivePaper = \paper @{ paperheight = 21.0 \cm @}
1795 @end example
1796
1797 Depending on its contents, the variable can be used in different
1798 places.  The following example uses the above variables:
1799
1800 @example
1801 \paper @{
1802   \aFivePaper
1803   line-width = \width
1804 @}
1805 @{
1806   c4^\name
1807 @}
1808 @end example
1809
1810
1811 @node Version number
1812 @subsection Version number
1813
1814 @cindex versioning
1815 @cindex version
1816 @cindex version number
1817 @cindex upgrades
1818 @cindex future upgrades
1819 @cindex updating files
1820 @cindex files, updating
1821
1822 @funindex \version
1823 @funindex version
1824 @funindex convert-ly
1825
1826 The @code{\version} statement records the version of LilyPond that
1827 was used to write the file:
1828
1829 @example
1830 \version @w{"@version{}"}
1831 @end example
1832
1833 @noindent
1834 By convention, this is placed at the top of your LilyPond file.
1835
1836 These annotations make future upgrades of LilyPond go more
1837 smoothly.  Changes in the syntax are handled with a special
1838 program, @command{convert-ly}, and it uses @code{\version} to
1839 determine what rules to apply.  For details, see
1840 @rprogram{Updating files with convert-ly}.
1841
1842
1843 @node Adding titles
1844 @subsection Adding titles
1845
1846 @cindex title
1847 @cindex headers
1848 @cindex header block
1849
1850 @funindex \header
1851 @funindex header
1852
1853 The title, composer, opus number, and similar information are
1854 entered in the @code{\header} block.  This exists outside of the
1855 main music expression; the @code{\header} block is usually placed
1856 underneath the version number.
1857
1858 @example
1859 \version @w{"@version{}"}
1860 \header @{
1861   title = "Symphony"
1862   composer = "Me"
1863   opus = "Op. 9"
1864 @}
1865
1866 @{
1867   @dots{} music @dots{}
1868 @}
1869 @end example
1870
1871 When the file is processed, the title and composer are printed
1872 above the music.  More information on titling can be found in
1873 @ruser{Creating titles}.
1874
1875
1876 @node Absolute note names
1877 @subsection Absolute note names
1878
1879 @cindex note names
1880 @cindex note names, absolute
1881 @cindex absolute mode
1882 @cindex absolute values for pitches
1883 @cindex pitches, absolute values
1884 @cindex absolute note names
1885
1886 So far we have always used @code{\relative} to define pitches.
1887 This is the easiest way to enter most music, but another way of
1888 defining pitches exists: absolute mode.
1889
1890 If you omit the @code{\relative}, LilyPond treats all pitches as
1891 absolute values.  A @code{c'} will always mean middle C, a
1892 @code{b} will always mean the note one step below middle C, and a
1893 @code{g,} will always mean the note on the bottom staff of the
1894 bass clef.
1895
1896 @lilypond[verbatim,quote]
1897 {
1898   \clef bass
1899   c' b g, g,
1900   g, f, f c'
1901 }
1902 @end lilypond
1903
1904 Here is a four-octave scale:
1905
1906 @lilypond[verbatim,quote]
1907 {
1908   \clef bass
1909   c, d, e, f,
1910   g, a, b, c
1911   d e f g
1912   a b c' d'
1913   \clef treble
1914   e' f' g' a'
1915   b' c'' d'' e''
1916   f'' g'' a'' b''
1917   c'''1
1918 }
1919 @end lilypond
1920
1921 As you can see, writing a melody in the treble clef involves a lot
1922 of quote @code{'} marks.  Consider this fragment from Mozart:
1923
1924 @lilypond[verbatim,quote]
1925 {
1926   \key a \major
1927   \time 6/8
1928   cis''8. d''16 cis''8 e''4 e''8
1929   b'8. cis''16 b'8 d''4 d''8
1930 }
1931 @end lilypond
1932
1933 All these quotes makes the input less readable and they are a source
1934 of errors.  With @code{\relative}, the previous example is much
1935 easier to read and type:
1936
1937 @lilypond[verbatim,quote]
1938 \relative c'' {
1939   \key a \major
1940   \time 6/8
1941   cis8. d16 cis8 e4 e8
1942   b8. cis16 b8 d4 d8
1943 }
1944 @end lilypond
1945
1946 If you make a mistake with an octave mark (@code{'} or @code{,})
1947 while working in @code{\relative} mode, it is very obvious -- many
1948 notes will be in the wrong octave.  When working in absolute mode,
1949 a single mistake will not be as visible, and will not be as easy
1950 to find.
1951
1952 However, absolute mode is useful for music which has large
1953 intervals, and is extremely useful for computer-generated LilyPond
1954 files.
1955
1956
1957
1958 @node After the tutorial
1959 @subsection After the tutorial
1960
1961 After finishing the tutorial, you should probably try writing a
1962 piece or two.  Start by adding notes to one of the
1963 @ref{Templates}.  If you need any notation that was not covered in
1964 the tutorial, look at the Notation Reference, starting with
1965 @ruser{Musical notation}.  If you want to write for an instrument
1966 ensemble that is not covered in the templates, take a look at
1967 @ref{Extending the templates}.
1968
1969 Once you have written a few short pieces, read the rest of the
1970 Learning Manual (chapters 3-5).  There's nothing wrong with
1971 reading it now, of course!  However, the rest of the Learning
1972 Manual assumes that you are familiar with LilyPond input.  You may
1973 wish to skim these chapters right now, and come back to them after
1974 you have more experience.
1975
1976 In this tutorial and in the rest of the Learning Manual, there is a
1977 paragraph @strong{See also} at the end of each section, which contains
1978 cross-references to other sections: you should not follow these
1979 cross-references at first reading; when you have read all of the
1980 Learning Manual, you may want to read some sections again and follow
1981 cross-references for further reading.
1982
1983 If you have not done so already, @emph{please} read @ref{About the
1984 documentation}.  There is a lot of information about LilyPond, so
1985 newcomers often do not know where they should look for help.  If
1986 you spend five minutes reading that section carefully, you might
1987 save yourself hours of frustration looking in the wrong places!
1988