]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/learning/tutorial.itely
ce9c6bcb76cc5a7854c7accf240b33e99554e0e1
[lilypond.git] / Documentation / learning / tutorial.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2
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 Common notation
32 @chapter Common notation
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 * Single staff notation::
41 * Multiple notes at once::
42 * Songs::
43 * Final touches::
44 @end menu
45
46
47 @node Single staff notation
48 @section Single staff notation
49
50 This section introduces common notation that is used for one voice
51 on one staff.
52
53 @menu
54 * Accidentals and key signatures::
55 * Ties and slurs::
56 * Articulation and dynamics::
57 * Adding text::
58 * Automatic and manual beams::
59 * Advanced rhythmic commands::
60 @end menu
61
62
63 @node Accidentals and key signatures
64 @subsection Accidentals and key signatures
65
66 @subheading Accidentals
67
68 @cindex accidentals
69 @cindex accidentals and key signatures
70 @cindex sharp
71 @cindex double sharp
72 @cindex sharp, double
73 @cindex flat
74 @cindex double flat
75 @cindex flat, double
76
77 @funindex es
78 @funindex is
79 @funindex eses
80 @funindex isis
81
82 Music Glossary: @rglos{sharp}, @rglos{flat}, @rglos{double sharp},
83 @rglos{double flat}, @rglos{accidental}.
84
85 A @notation{sharp} pitch is made by adding @code{is} to the name,
86 and a @notation{flat} pitch by adding @code{es}.  As you might
87 expect, a @notation{double sharp} or @notation{double flat} is
88 made by adding @code{isis} or @code{eses}.  This syntax is derived
89 from note naming conventions in Nordic and Germanic languages,
90 like German and Dutch.  To use other names for
91 @notation{accidentals}, see @ruser{Note names in other languages}.
92
93 @lilypond[verbatim,quote,relative=2]
94 cis1 ees fisis, aeses
95 @end lilypond
96
97 @cindex key signature, setting
98 @subheading Key signatures
99
100 @cindex key signature
101 @cindex major
102 @cindex minor
103 @cindex accidentals and key signature
104 @cindex content vs. layout
105 @cindex layout vs. content
106
107 @funindex \key
108 @funindex key
109 @funindex \major
110 @funindex major
111 @funindex \minor
112 @funindex minor
113
114 Music Glossary: @rglos{key signature}, @rglos{major},
115 @rglos{minor}.
116
117 The @notation{key signature} is set with the command @code{\key}
118 followed by a pitch and @code{\major} or @code{\minor}.
119
120 @lilypond[verbatim,quote,relative=2]
121 \key d \major
122 a1
123 \key c \minor
124 a
125 @end lilypond
126
127 @smallspace
128
129 @subheading Warning: key signatures and pitches
130
131 Music Glossary: @rglos{accidental}, @rglos{key signature},
132 @rglos{pitch}, @rglos{flat}, @rglos{natural}, @rglos{sharp},
133 @rglos{transposition}.
134
135 To determine whether to print an @notation{accidental}, LilyPond
136 examines the pitches and the @notation{key signature}.  The key
137 signature only affects the @emph{printed} accidentals, not the
138 note's @notation{pitch}!  This is a feature that often causes
139 confusion to newcomers, so let us explain it in more detail.
140
141 LilyPond makes a sharp distinction between musical content and
142 layout.  The alteration (@notation{flat}, @notation{natural sign} or
143 @notation{sharp}) of a note is part of the pitch, and is therefore
144 musical content.  Whether an accidental (a @emph{printed} flat,
145 natural or sharp sign) is printed in front of the corresponding
146 note is a question of layout.  Layout is something that follows
147 rules, so accidentals are printed automatically according to those
148 rules.  The pitches in your music are works of art, so they will
149 not be added automatically, and you must enter what you want to
150 hear.
151
152 In this example:
153
154 @lilypond[verbatim,quote,relative=2]
155 \key d \major
156 d cis fis
157 @end lilypond
158
159 @noindent
160 No note has a printed accidental, but you must still add
161 @code{is} and type @code{cis} and @code{fis} in the input file.
162
163 The code @code{b} does not mean @qq{print a black dot just on
164 the middle line of the staff.}  Rather, it means @qq{there is a
165 note with pitch B-natural.}  In the key of A-flat major, it
166 @emph{does} get an accidental:
167
168 @lilypond[verbatim,quote,relative=2]
169 \key aes \major
170 b
171 @end lilypond
172
173 Adding all alterations explicitly might require a little more
174 effort when typing, but the advantage is that
175 @notation{transposing} is easier, and accidentals can be printed
176 according to different conventions.  For some examples how
177 accidentals can be printed according to different rules, see
178 @ruser{Automatic accidentals}.
179
180
181 @seealso
182 Notation Reference: @ruser{Note names in other languages},
183 @ruser{Accidentals}, @ruser{Automatic accidentals},
184 @ruser{Key signature}.
185
186 Music Glossary: @rglos{Pitch names}.
187
188
189 @node Ties and slurs
190 @subsection Ties and slurs
191
192 @cindex tie
193 @cindex slur
194 @cindex slur, phrasing
195 @cindex phrasing slur
196
197 @funindex ~
198 @funindex ( ... )
199 @funindex \( ... \)
200
201 @subheading Ties
202
203
204 Music Glossary: @rglos{tie}.
205
206 A @notation{tie} is created by appending a tilde @code{~} to the
207 first note being tied.
208
209 @lilypond[verbatim,quote,relative=2]
210 g4~ g c2~
211 c4 ~ c8 a8 ~ a2
212 @end lilypond
213
214 @subheading Slurs
215
216
217 Music Glossary: @rglos{slur}.
218
219 A @notation{slur} is a curve drawn across many notes.  The
220 starting note and ending note are marked with @code{(} and
221 @code{)} respectively.
222
223 @lilypond[verbatim,quote,relative=2]
224 d4( c16) cis( d e c cis d) e( d4)
225 @end lilypond
226
227 @subheading Phrasing slurs
228
229 Music Glossary: @rglos{slur}, @rglos{phrasing}.
230
231 Slurs to indicate longer @notation{phrasing} can be entered with
232 @code{\(} and @code{\)}.  You can have both @notation{slurs}
233 and phrasing slurs at the same time, but you cannot have
234 simultaneous slurs or simultaneous phrasing slurs.
235
236 @lilypond[verbatim,quote,relative=2]
237 a8(\( ais b c) cis2 b'2 a4 cis,\)
238 @end lilypond
239
240 @smallspace
241
242 @cindex slurs versus ties
243 @subheading Warnings: slurs vs. ties
244
245 Music Glossary: @rglos{articulation}, @rglos{slur}, @rglos{tie}.
246
247 A @notation{slur} looks like a @notation{tie}, but it has a
248 different meaning.  A tie simply makes the first note longer, and
249 can only be used on pairs of notes with the same pitch.  Slurs
250 indicate the @notation{articulation} of notes, and can be used on
251 larger groups of notes.  Slurs and ties can be nested.
252
253 @lilypond[verbatim,quote,relative=2]
254 c2~( c8 fis fis4 ~ fis2 g2)
255 @end lilypond
256
257
258 @seealso
259 Notation Reference: @ruser{Ties}, @ruser{Slurs},
260 @ruser{Phrasing slurs}.
261
262
263 @node Articulation and dynamics
264 @subsection Articulation and dynamics
265
266
267 @subheading Articulations
268
269 @cindex articulation
270 @cindex accent
271 @cindex staccato
272
273 Music Glossary: @rglos{articulation}.
274
275 Common @notation{articulations} can be added to a note using a
276 dash @code{-} and a single character:
277
278 @lilypond[verbatim,quote,relative=2]
279 c-. c-- c-> c-^ c-+ c-_
280 @end lilypond
281
282 @subheading Fingerings
283
284 @cindex fingering
285
286 @funindex ^
287 @funindex _
288
289 Music Glossary: @rglos{fingering}.
290
291 Similarly, @notation{fingering} indications can be added to a note
292 using a dash (@code{-}) and the digit to be printed:
293
294 @lilypond[verbatim,quote,relative=2]
295 c-3 e-5 b-2 a-1
296 @end lilypond
297
298 Articulations and fingerings are usually placed automatically, but
299 you can specify a direction by replacing the dash (@code{-}) with
300 @code{^} (up) or @code{_} (down).  You can also use multiple
301 articulations on the same note.  However, in most cases it is best
302 to let LilyPond determine the articulation directions.
303
304 @lilypond[verbatim,quote,relative=2]
305 c_-^1 d^. f^4_2-> e^-_+
306 @end lilypond
307
308 @subheading Dynamics
309
310 @cindex dynamics
311 @cindex decrescendo
312 @cindex crescendo
313
314 @funindex \f
315 @funindex \ff
316 @funindex \mp
317 @funindex \p
318 @funindex \mf
319 @funindex \pp
320 @funindex \<
321 @funindex <
322 @funindex \>
323 @funindex >
324 @funindex \!
325 @funindex !
326
327 Music Glossary: @rglos{dynamics}, @rglos{crescendo},
328 @rglos{decrescendo}.
329
330 @notation{Dynamic} signs are made by adding the markings (with a
331 backslash) to the note:
332
333 @lilypond[verbatim,quote,relative=2]
334 c\ff c\mf c\p c\pp
335 @end lilypond
336
337
338 @notation{Crescendi} and @notation{decrescendi} are started with
339 the commands @code{\<} and @code{\>}.  The next dynamics sign, for
340 example @code{\f}, will end the (de)crescendo, or the command
341 @code{\!} can be used:
342
343 @lilypond[verbatim,quote,relative=2]
344 c2\< c2\ff\> c2 c2\!
345 @end lilypond
346
347
348 @seealso
349 Notation Reference: @ruser{Articulations and ornamentations},
350 @ruser{Fingering instructions}, @ruser{Dynamics}.
351
352
353 @node Adding text
354 @subsection Adding text
355
356 @cindex text, adding
357 @cindex adding text
358 @cindex markup
359
360 @funindex \markup
361 @funindex markup
362
363 Text may be added to your scores:
364
365 @lilypond[verbatim,quote,relative=2]
366 c1^"espr" a_"legato"
367 @end lilypond
368
369 Extra formatting may be added with the @code{\markup} command:
370
371 @lilypond[verbatim,quote,relative=2]
372 c1^\markup{ \bold espr}
373 a1_\markup{
374   \dynamic f \italic \small { 2nd } \hspace #0.1 \dynamic p
375 }
376 @end lilypond
377
378
379 @seealso
380 Notation Reference: @ruser{Writing text}.
381
382
383 @node Automatic and manual beams
384 @subsection Automatic and manual beams
385
386 @cindex beaming
387 @cindex automatic beams
388 @cindex manual beams
389 @cindex beams, automatic
390 @cindex beams, manual
391 @cindex beams, by hand
392
393 @funindex [ ... ]
394 @funindex [
395 @funindex ]
396 @funindex \autoBeamOff
397 @funindex autoBeamOff
398 @funindex \autoBeamOn
399 @funindex autoBeamOn
400
401 Music Glossary: @rglos{beam}.
402
403 All @notation{beams} are drawn automatically:
404
405 @lilypond[verbatim,quote,relative=2]
406 a8 ais d ees r d c16 b a8
407 @end lilypond
408
409 If you do not like the automatic beams, they may be overridden
410 manually.  To correct just an occasional beam mark the first note
411 to be beamed with @code{[} and the last one with @code{]}.
412
413 @lilypond[verbatim,quote,relative=2]
414 a8[ ais] d[ ees r d] a b
415 @end lilypond
416
417 If you want to turn off automatic beaming entirely or for an
418 extended section of music, use the command @code{\autoBeamOff}
419 to turn off automatic beaming and @code{\autoBeamOn} to turn it
420 on again.
421
422 @lilypond[verbatim,quote,relative=2]
423 \autoBeamOff
424 a8 c b4 d8. c16 b4
425 \autoBeamOn
426 a8 c b4 d8. c16 b4
427 @end lilypond
428
429
430 @seealso
431 Notation Reference: @ruser{Automatic beams}, @ruser{Manual beams}.
432
433
434 @node Advanced rhythmic commands
435 @subsection Advanced rhythmic commands
436
437 @subheading Partial measure
438
439 @cindex pickup
440 @cindex anacrusis
441 @cindex partial measure
442
443 @funindex \partial
444 @funindex partial
445
446 Music Glossary: @rglos{anacrusis}.
447
448 A pickup (or @notation{anacrusis}) is entered with the keyword
449 @code{\partial}.  It is followed by a duration: @code{\partial 4}
450 is a quarter note pickup and @code{\partial 8} an eighth note.
451
452 @lilypond[verbatim,quote,relative=2]
453 \partial 8
454 f8 c2 d
455 @end lilypond
456
457 @subheading Tuplets
458
459 @cindex tuplets
460 @cindex triplets
461
462 @funindex \times
463 @funindex times
464
465 Music Glossary: @rglos{note value}, @rglos{triplet}.
466
467 @notation{Tuplets} are made with the @code{\times} keyword.  It
468 takes two arguments: a fraction and a piece of music.  The
469 duration of the piece of music is multiplied by the fraction.
470 Triplets make notes occupy 2/3 of their notated duration, so a
471 @notation{triplet} has 2/3 as its fraction
472
473 @lilypond[verbatim,quote,relative=2]
474 \times 2/3 { f8 g a }
475 \times 2/3 { c r c }
476 \times 2/3 { f,8 g16[ a g a] }
477 \times 2/3 { d4 a8 }
478 @end lilypond
479
480 @subheading Grace notes
481
482 @cindex grace notes
483 @cindex acciaccatura
484 @cindex appoggiatura
485
486 @funindex \grace
487 @funindex grace
488 @funindex \acciaccatura
489 @funindex acciaccatura
490 @funindex \appoggiatura
491 @funindex acciaccatura
492
493 Music Glossary: @rglos{grace notes}, @rglos{acciaccatura},
494 @rglos{appoggiatura}.
495
496 @notation{Grace notes} are created with the @code{\grace} command,
497 although they can also be created by prefixing a music expression
498 with the keyword @code{\appoggiatura} or @code{\acciaccatura}:
499
500 @lilypond[verbatim,quote,relative=2]
501 c2 \grace { a32[ b] } c2
502 c2 \appoggiatura b16 c2
503 c2 \acciaccatura b16 c2
504 @end lilypond
505
506
507 @seealso
508 Notation Reference: @ruser{Grace notes}, @ruser{Tuplets},
509 @ruser{Upbeats}.
510
511
512 @node Multiple notes at once
513 @section Multiple notes at once
514
515 This section introduces having more than one note at the same
516 time: multiple instruments, multiple staves for a single
517 instrument (i.e. piano), and chords.
518
519 Polyphony in music refers to having more than one voice occurring
520 in a piece of music.  Polyphony in LilyPond refers to having more
521 than one voice on the same staff.
522
523 @menu
524 * Music expressions explained::
525 * Multiple staves::
526 * Staff groups::
527 * Combining notes into chords::
528 * Single staff polyphony::
529 @end menu
530
531
532 @node Music expressions explained
533 @subsection Music expressions explained
534
535 @cindex music expression
536 @cindex expression, music
537 @cindex compound music expression
538 @cindex music expression, compound
539
540 In LilyPond input files, music is represented by @emph{music
541 expressions}.  A single note is a music expression:
542
543 @lilypond[verbatim,quote,relative=2]
544 a4
545 @end lilypond
546
547 Enclosing a note in braces creates a @emph{compound music
548 expression}.  Here we have created a compound music expression
549 with two notes:
550
551 @lilypond[verbatim,quote,relative=2]
552 { a4 g4 }
553 @end lilypond
554
555 Putting a group of music expressions (e.g. notes) in braces means
556 that they are in sequence (i.e. each one follows the previous
557 one).  The result is another music expression:
558
559 @lilypond[verbatim,quote,relative=2]
560 { { a4 g } f g }
561 @end lilypond
562
563 @subheading Analogy: mathematical expressions
564
565 This mechanism is similar to mathematical formulas: a big formula
566 is created by composing small formulas.  Such formulas are called
567 expressions, and they can contain other expressions, so you can
568 make arbitrarily complex and large expressions.  For example,
569
570 @example
571 1
572
573 1 + 2
574
575 (1 + 2) * 3
576
577 ((1 + 2) * 3) / (4 * 5)
578 @end example
579
580 This is a sequence of expressions, where each expression is
581 contained in the next (larger) one.  The simplest expressions are
582 numbers, and larger ones are made by combining expressions with
583 operators (like @code{+}, @code{*} and @code{/}) and parentheses.
584 Like mathematical expressions, music expressions can be nested
585 arbitrarily deep, which is necessary for complex music like
586 polyphonic scores.
587
588
589 @subheading Simultaneous music expressions: multiple staves
590
591 @cindex multiple staves
592 @cindex staves, multiple
593 @cindex polyphony
594 @cindex combining expressions in parallel
595 @cindex parallel expressions
596 @cindex expressions, parallel
597 @cindex relative notes and simultaneous music
598 @cindex relative notes and parallel expressions
599 @cindex simultaneous music and relative notes
600 @cindex parallel expressions and relative notes
601
602 @funindex <<
603 @funindex >>
604 @funindex << ... >>
605
606 Music Glossary: @rglos{polyphony}.
607
608 This technique is useful for @notation{polyphonic} music.  To
609 enter music with more voices or more staves, we combine
610 expressions in parallel.  To indicate that two voices should play
611 at the same time, simply enter a simultaneous combination of music
612 expressions.  A @q{simultaneous} music expression is formed by
613 enclosing expressions inside @code{<<} and @code{>>}.  In the
614 following example, three sequences (all containing two separate
615 notes) are combined simultaneously:
616
617 @lilypond[verbatim,quote]
618 \relative c'' {
619   <<
620     { a4 g }
621     { f e }
622     { d b }
623   >>
624 }
625 @end lilypond
626
627 Note that we have indented each level of the input with a
628 different amount of space.  LilyPond does not care how much (or
629 little) space there is at the beginning of a line, but indenting
630 LilyPond code like this makes it much easier for humans to read.
631
632 @warning{each note is relative to the previous note in
633 the input, not relative to the @code{c''} in the initial
634 @code{@bs{}relative} command.}
635
636
637 @subheading Simultaneous music expressions: single staff
638
639 To determine the number of staves in a piece, LilyPond looks at
640 the beginning of the first expression.  If there is a single note,
641 there is one staff; if there is a simultaneous expression, there
642 is more than one staff.  The following example shows a complex
643 expression, but as it begins with a single note it will be set
644 out on a single staff.
645
646 @lilypond[verbatim,quote]
647 \relative c'' {
648   c2 <<c e>>
649   << { e f } { c <<b d>> } >>
650 }
651 @end lilypond
652
653 @node Multiple staves
654 @subsection Multiple staves
655
656 @cindex multiple staves
657 @cindex staves, multiple
658 @cindex context
659 @cindex context, notation
660 @cindex notation context
661
662 @funindex \new Staff
663 @funindex new Staff
664 @funindex Staff
665 @funindex \new
666 @funindex new
667 @funindex Score
668 @funindex Voice
669 @funindex Lyrics
670 @funindex ChordNames
671
672 LilyPond input files are constructed out of music expressions, as
673 we saw in @ref{Music expressions explained}.  If the score begins
674 with simultaneous music expressions, LilyPond creates multiples
675 staves.  However, it is easier to see what happens if we create
676 each staff explicitly.
677
678 To print more than one staff, each piece of music that makes up a
679 staff is marked by adding @code{\new Staff} before it.  These
680 @code{Staff} elements are then combined in parallel with @code{<<}
681 and @code{>>}:
682
683 @lilypond[verbatim,quote]
684 \relative c'' {
685   <<
686     \new Staff { \clef treble c }
687     \new Staff { \clef bass c,, }
688   >>
689 }
690 @end lilypond
691
692 The command @code{\new} introduces a @q{notation context.}  A
693 notation context is an environment in which musical events (like
694 notes or @code{\clef} commands) are interpreted.  For simple
695 pieces, such notation contexts are created automatically.  For
696 more complex pieces, it is best to mark contexts explicitly.
697
698 There are several types of contexts.  @code{Score}, @code{Staff},
699 and @code{Voice} handle melodic notation, while @code{Lyrics} sets
700 lyric texts and @code{ChordNames} prints chord names.
701
702 In terms of syntax, prepending @code{\new} to a music expression
703 creates a bigger music expression.  In this way it resembles the
704 minus sign in mathematics.  The formula @math{(4+5)} is an
705 expression, so @math{-(4+5)} is a bigger expression.
706
707 Time signatures entered in one staff affects all other staves by
708 default.  On the other hand, the key signature of one staff does
709 @emph{not} affect other staves.  This different default behavior
710 is because scores with transposing instruments are more common
711 than polyrhythmic scores.
712
713 @lilypond[verbatim,quote]
714 \relative c'' {
715   <<
716     \new Staff { \clef treble \key d \major \time 3/4 c }
717     \new Staff { \clef bass c,, }
718   >>
719 }
720 @end lilypond
721
722
723
724
725 @node Staff groups
726 @subsection Staff groups
727
728 @cindex piano staff
729 @cindex staff, piano
730 @cindex choir staff
731 @cindex staff, choir
732 @cindex grand staff
733 @cindex staff, grand
734 @cindex staff group
735
736 @funindex PianoStaff
737 @funindex GrandStaff
738 @funindex ChoirStaff
739
740 Music Glossary: @rglos{brace}.
741
742 Piano music is typeset in two staves connected by a
743 @notation{brace}.
744 Printing such a staff is similar to the polyphonic example in
745 @ref{Multiple staves}.  However, now this entire expression is
746 inserted inside a @code{PianoStaff}:
747
748 @example
749 \new PianoStaff <<
750   \new Staff @dots{}
751   \new Staff @dots{}
752 >>
753 @end example
754
755 Here is a small example:
756
757 @lilypond[verbatim,quote]
758 \relative c'' {
759   \new PianoStaff <<
760     \new Staff { \time 2/4 c4 e g g, }
761     \new Staff { \clef bass c,, c' e c }
762   >>
763 }
764 @end lilypond
765
766 Other staff groupings are introduced with @code{\new GrandStaff},
767 suitable for orchestral scores, and @w{@code{\new ChoirStaff}},
768 suitable for vocal scores.  These staff groups each form another
769 type of context, one that generates the brace at the left end of
770 every system and also controls the extent of bar lines.
771
772
773 @seealso
774 Notation Reference: @ruser{Keyboard and other multi-staff
775 instruments},
776 @ruser{Displaying staves}.
777
778
779 @node Combining notes into chords
780 @subsection Combining notes into chords
781
782 @cindex chords
783 @cindex note durations in chords
784
785 @funindex <
786 @funindex >
787 @funindex < ... >
788
789 Music Glossary: @rglos{chord}.
790
791 We saw earlier how notes can be combined into @notation{chords} by
792 indicating they are simultaneous by enclosing them in double angle
793 brackets.  However, the normal way of indicating a chord is to
794 surround the pitches with @emph{single} angle brackets.  Note that
795 all the notes in a chord must have the same duration, and that the
796 duration is placed after the closing bracket.
797
798 @lilypond[verbatim,quote,relative=2]
799 r4 <c e g>4 <c f a>2
800 @end lilypond
801
802 Think of chords as almost equivalent to single notes:
803 almost everything you can attach to a single note can be attached
804 to a chord, and everything must go @emph{outside} the angle
805 brackets.  For example, you can combine markings like beams and
806 ties with chords.  They must be placed outside the angle brackets.
807
808 @lilypond[verbatim,quote,relative=2]
809 r4 <c e g>8[ <c f a>]~ <c f a>2
810 r4 <c e g>8( <c e g>\> <c e g>4 <c f a>\!)
811 @end lilypond
812
813
814 @node Single staff polyphony
815 @subsection Single staff polyphony
816
817 @cindex polyphony
818 @cindex multiple voices
819 @cindex voices, more on one staff
820 @cindex single staff polyphony
821 @cindex spacer rest
822 @cindex rest, spacer
823
824 @funindex << ... \\ ... >>
825 @funindex <<
826 @funindex \\
827 @funindex >>
828
829 Polyphonic music in lilypond, while not difficult, uses concepts
830 that we haven't discussed yet, so we're not going to introduce
831 them here. Instead, the following sections introduce these concepts
832 and explain them thoroughly.
833
834 @seealso
835 Learning Manual: @ref{Voices contain music}.
836
837 Notation Reference: @ruser{Simultaneous notes}.
838
839 @node Songs
840 @section Songs
841
842 This section introduces vocal music and simple song sheets.
843
844 @menu
845 * Setting simple songs::
846 * Aligning lyrics to a melody::
847 * Lyrics to multiple staves::
848 @end menu
849
850
851 @node Setting simple songs
852 @subsection Setting simple songs
853
854 @cindex lyrics
855 @cindex songs
856
857 @funindex \addlyrics
858 @funindex addlyrics
859
860 Music Glossary: @rglos{lyrics}.
861
862 Here is the start of the melody to a nursery
863 rhyme, @notation{Girls and boys come out to play}:
864
865 @lilypond[verbatim,quote]
866 \relative c'' {
867   \key g \major
868   \time 6/8
869   d4 b8 c4 a8 d4 b8 g4
870 }
871 @end lilypond
872
873 The @notation{lyrics} can be set to these notes, combining both
874 with the @code{\addlyrics} keyword.  Lyrics are entered by
875 separating each syllable with a space.
876
877 @lilypond[verbatim,quote]
878 <<
879   \relative c'' {
880     \key g \major
881     \time 6/8
882     d4 b8 c4 a8 d4 b8 g4
883   }
884   \addlyrics {
885     Girls and boys come out to play,
886   }
887 >>
888 @end lilypond
889
890 Note the curly brackets delimiting both the music and the lyrics.
891 It is essential that the final syllable is separated from the
892 terminating curly bracket by a space or a newline, or it will be
893 assumed to be part of the syllable, giving rise to an obscure
894 error, see @ref{Apparent error in ../ly/init.ly}.
895
896 Note also the double angle brackets @w{@code{<< ... >>}} around the
897 whole piece to show that the music and lyrics are to occur at the
898 same time.
899
900 @node Aligning lyrics to a melody
901 @subsection Aligning lyrics to a melody
902
903 @cindex melisma
904 @cindex extender line
905 @cindex hyphens
906 @cindex underscore
907 @cindex lyrics, aligning
908 @cindex aligning lyrics
909 @cindex lyrics, multi-syllable words
910 @cindex words with multiple syllables in lyrics
911
912 Music Glossary: @rglos{melisma}, @rglos{extender line}.
913
914 The next line in the nursery rhyme is @notation{The moon doth
915 shine as bright as day}.  Let's extend it:
916
917 @lilypond[verbatim,quote]
918 <<
919   \relative c'' {
920     \key g \major
921     \time 6/8
922     d4 b8 c4 a8 d4 b8 g4
923     g8 a4 b8 c b a d4 b8 g4.
924   }
925   \addlyrics {
926     Girls and boys come out to play,
927     The moon doth shine as bright as day;
928   }
929 >>
930 @end lilypond
931
932 We see the extra lyrics do not align properly with the notes.  The
933 word @notation{shine} should be sung on two notes, not one.  This
934 is called a @notation{melisma}, a single syllable sung to more
935 than one note.  There are several ways to spread a syllable over
936 multiple notes, the simplest being to add a slur across them, for
937 details, see @ref{Ties and slurs}:
938
939 @lilypond[verbatim,quote]
940 <<
941   \relative c'' {
942     \key g \major
943     \time 6/8
944     d4 b8 c4 a8 d4 b8 g4
945     g8 a4 b8 c( b) a d4 b8 g4.
946   }
947   \addlyrics {
948     Girls and boys come out to play,
949     The moon doth shine as bright as day;
950   }
951 >>
952 @end lilypond
953
954 The words now line up correctly with the notes, but the automatic
955 beaming for the notes above @notation{shine as} does not look right.
956 We can correct this by inserting manual beaming commands to override
957 the automatic beaming here, for details, see @ref{Automatic and
958 manual beams}.
959
960 @lilypond[verbatim,quote]
961 <<
962   \relative c'' {
963     \key g \major
964     \time 6/8
965     d4 b8 c4 a8 d4 b8 g4
966     g8 a4 b8 c([ b]) a d4 b8 g4.
967   }
968   \addlyrics {
969     Girls and boys come out to play,
970     The moon doth shine as bright as day;
971   }
972 >>
973 @end lilypond
974
975 As an alternative to using slurs, the melismata may be indicated
976 in just the lyrics by using an underscore @code{_} for each note
977 that should be included in the melisma:
978
979 @lilypond[verbatim,quote]
980 <<
981   \relative c'' {
982     \key g \major
983     \time 6/8
984     d4 b8 c4 a8 d4 b8 g4
985     g8 a4 b8 c[ b] a d4 b8 g4.
986   }
987   \addlyrics {
988     Girls and boys come out to play,
989     The moon doth shine _ as bright as day;
990   }
991 >>
992 @end lilypond
993
994 If a syllable extends over several notes or a single very long
995 note an @notation{extender line} is usually drawn from the
996 syllable extending under all the notes for that syllable.  It is
997 entered as two underscores @code{__}.  Here is an example from the
998 first three bars of @notation{Dido's Lament}, from Purcell's
999 @notation{Dido and Ã†neas}:
1000
1001 @lilypond[verbatim,quote]
1002 <<
1003   \relative c'' {
1004     \key g \minor
1005     \time 3/2
1006     g2 a bes bes( a)
1007     b c4.( bes8 a4. g8 fis4.) g8 fis1
1008   }
1009   \addlyrics {
1010     When I am laid,
1011     am laid __ in earth,
1012   }
1013 >>
1014 @end lilypond
1015
1016 None of the examples so far have involved words containing more
1017 than one syllable.  Such words are usually split one syllable to a
1018 note, with hyphens between syllables.  Such hyphens are entered as
1019 two dashes, resulting in a centered hyphen between the syllables.
1020 Here is an example showing this and everything we have learned so
1021 far about aligning lyrics to notes.
1022
1023 @c no ragged-right here because otherwise the hyphens get lost,
1024 @c but the example is long enough to avoid looking strange.
1025 @lilypond[verbatim,quote,noragged-right]
1026 <<
1027   \relative c' {
1028     \key g \major
1029     \time 3/4
1030     \partial 4
1031     d4 g4 g a8( b) g4 g4
1032     b8( c) d4 d e4 c2
1033   }
1034   \addlyrics {
1035     A -- way in a __ man -- ger,
1036     no __ crib for a bed, __
1037   }
1038 >>
1039 @end lilypond
1040
1041 Some lyrics, especially those in Italian, require the opposite:
1042 setting more than one syllable to a single note.  This is
1043 achieved by linking the syllables together with a single
1044 underscore @code{_} (with no spaces), or enclosing them in quotes.
1045 Here's an example from Rossini's @notation{Figaro}, where
1046 @notation{al} has to be sung on the same note as the @notation{go} of
1047 @notation{Largo} in Figaro's aria @notation{Largo al factotum}:
1048
1049 @c no ragged-right here because otherwise the hyphens get lost,
1050 @c but the example is long enough to avoid looking strange.
1051 @lilypond[verbatim,quote,noragged-right]
1052 <<
1053   \relative c' {
1054     \clef bass
1055     \key c \major
1056     \time 6/8
1057     c4.~ c8 d b c([ d]) b c d b c
1058   }
1059   \addlyrics {
1060     Lar -- go_al fac -- to -- tum del -- la cit -- tà
1061   }
1062 >>
1063 @end lilypond
1064
1065
1066 @seealso
1067 Notation Reference: @ruser{Vocal music}.
1068
1069
1070 @node Lyrics to multiple staves
1071 @subsection Lyrics to multiple staves
1072
1073 @cindex lyrics and multiple staves
1074 @cindex multiple staves and lyrics
1075
1076 The simple approach using @code{\addlyrics} can be used for
1077 placing lyrics under more than one staff.  Here is an
1078 example from Handel's @notation{Judas Maccabæus}:
1079
1080 @lilypond[verbatim,quote]
1081 <<
1082   \relative c'' {
1083     \key f \major
1084     \time 6/8
1085     \partial 8
1086     c8 c([ bes]) a a([ g]) f f'4. b, c4.~ c4
1087   }
1088   \addlyrics {
1089     Let flee -- cy flocks the hills a -- dorn, __
1090   }
1091   \relative c' {
1092     \key f \major
1093     \time 6/8
1094     \partial 8
1095     r8 r4. r4 c8 a'([ g]) f f([ e]) d e([ d]) c bes'4
1096   }
1097   \addlyrics {
1098     Let flee -- cy flocks the hills a -- dorn,
1099   }
1100 >>
1101 @end lilypond
1102
1103 Scores any more complex than this simple example are better
1104 produced by separating out the score structure from the notes and
1105 lyrics with variables.  These are discussed in @ref{Organizing
1106 pieces with variables}.
1107
1108
1109 @seealso
1110 Notation Reference: @ruser{Vocal music}.
1111
1112
1113 @node Final touches
1114 @section Final touches
1115
1116 This is the final section of the tutorial; it demonstrates how to
1117 add the final touches to simple pieces, and provides an
1118 introduction to the rest of the manual.
1119
1120 @menu
1121 * Organizing pieces with variables::
1122 * Version number::
1123 * Adding titles::
1124 * Absolute note names::
1125 * After the tutorial::
1126 @end menu
1127
1128
1129 @node Organizing pieces with variables
1130 @subsection Organizing pieces with variables
1131
1132 @cindex variables
1133 @cindex variables, defining
1134 @cindex identifiers
1135 @cindex macros
1136 @cindex assigning variables
1137 @cindex using variables
1138 @cindex variables, using
1139 @cindex variables, characters allowed in
1140 @cindex characters allowed in variables
1141
1142 When all of the elements discussed earlier are combined to produce
1143 larger files, the music expressions get a lot bigger.  In
1144 polyphonic music with many staves, the input files can become very
1145 confusing.  We can reduce this confusion by using
1146 @emph{variables}.
1147
1148 With variables (also known as identifiers or macros), we can break
1149 up complex music expressions.  A variable is assigned as
1150 follows:
1151
1152 @example
1153 namedMusic = @{ @dots{} @}
1154 @end example
1155
1156 The contents of the music expression @code{namedMusic} can be used
1157 later by placing a backslash in front of the name
1158 (@code{\namedMusic}, just like a normal LilyPond command).
1159
1160 @lilypond[verbatim,quote]
1161 violin = \new Staff {
1162   \relative c'' {
1163     a4 b c b
1164   }
1165 }
1166 cello = \new Staff {
1167   \relative c {
1168     \clef bass
1169     e2 d
1170   }
1171 }
1172 {
1173   <<
1174     \violin
1175     \cello
1176   >>
1177 }
1178 @end lilypond
1179
1180 @noindent
1181 The name of a variable must have alphabetic characters only, no
1182 numbers, underscores, or dashes.
1183
1184 Variables must be defined @emph{before} the main music
1185 expression, but may be used as many times as required anywhere after
1186 they have been defined.  They may even be used in a later definition
1187 of another variable, giving a way of shortening the input if a
1188 section of music is repeated many times.
1189
1190 @lilypond[verbatim,quote]
1191 tripletA = \times 2/3 { c,8 e g }
1192 barA = { \tripletA \tripletA \tripletA \tripletA }
1193
1194 \relative c'' {
1195  \barA \barA
1196 }
1197 @end lilypond
1198
1199 Variables may be used for many other types of objects in
1200 the input.  For example,
1201
1202 @example
1203 width = 4.5\cm
1204 name = "Wendy"
1205 aFivePaper = \paper @{ paperheight = 21.0 \cm @}
1206 @end example
1207
1208 Depending on its contents, the variable can be used in different
1209 places.  The following example uses the above variables:
1210
1211 @example
1212 \paper @{
1213   \aFivePaper
1214   line-width = \width
1215 @}
1216 @{
1217   c4^\name
1218 @}
1219 @end example
1220
1221
1222 @node Version number
1223 @subsection Version number
1224
1225 @cindex versioning
1226 @cindex version
1227 @cindex version number
1228 @cindex upgrades
1229 @cindex future upgrades
1230 @cindex updating files
1231 @cindex files, updating
1232
1233 @funindex \version
1234 @funindex version
1235 @funindex convert-ly
1236
1237 The @code{\version} statement records the version of LilyPond that
1238 was used to write the file:
1239
1240 @example
1241 \version @w{"@version{}"}
1242 @end example
1243
1244 @noindent
1245 By convention, this is placed at the top of your LilyPond file.
1246
1247 These annotations make future upgrades of LilyPond go more
1248 smoothly.  Changes in the syntax are handled with a special
1249 program, @command{convert-ly}, and it uses @code{\version} to
1250 determine what rules to apply.  For details, see
1251 @rprogram{Updating files with convert-ly}.
1252
1253
1254 @node Adding titles
1255 @subsection Adding titles
1256
1257 @cindex title
1258 @cindex headers
1259 @cindex header block
1260
1261 @funindex \header
1262 @funindex header
1263
1264 The title, composer, opus number, and similar information are
1265 entered in the @code{\header} block.  This exists outside of the
1266 main music expression; the @code{\header} block is usually placed
1267 underneath the version number.
1268
1269 @example
1270 \version @w{"@version{}"}
1271 \header @{
1272   title = "Symphony"
1273   composer = "Me"
1274   opus = "Op. 9"
1275 @}
1276
1277 @{
1278   @dots{} music @dots{}
1279 @}
1280 @end example
1281
1282 When the file is processed, the title and composer are printed
1283 above the music.  More information on titling can be found in
1284 @ruser{Creating titles}.
1285
1286
1287 @node Absolute note names
1288 @subsection Absolute note names
1289
1290 @cindex note names
1291 @cindex note names, absolute
1292 @cindex absolute mode
1293 @cindex absolute values for pitches
1294 @cindex pitches, absolute values
1295 @cindex absolute note names
1296
1297 So far we have always used @code{\relative} to define pitches.
1298 This is the easiest way to enter most music, but another way of
1299 defining pitches exists: absolute mode.
1300
1301 If you omit the @code{\relative}, LilyPond treats all pitches as
1302 absolute values.  A @code{c'} will always mean middle C, a
1303 @code{b} will always mean the note one step below middle C, and a
1304 @code{g,} will always mean the note on the bottom staff of the
1305 bass clef.
1306
1307 @lilypond[verbatim,quote]
1308 {
1309   \clef bass
1310   c' b g, g,
1311   g, f, f c'
1312 }
1313 @end lilypond
1314
1315 Here is a four-octave scale:
1316
1317 @lilypond[verbatim,quote]
1318 {
1319   \clef bass
1320   c, d, e, f,
1321   g, a, b, c
1322   d e f g
1323   a b c' d'
1324   \clef treble
1325   e' f' g' a'
1326   b' c'' d'' e''
1327   f'' g'' a'' b''
1328   c'''1
1329 }
1330 @end lilypond
1331
1332 As you can see, writing a melody in the treble clef involves a lot
1333 of quote @code{'} marks.  Consider this fragment from Mozart:
1334
1335 @lilypond[verbatim,quote]
1336 {
1337   \key a \major
1338   \time 6/8
1339   cis''8. d''16 cis''8 e''4 e''8
1340   b'8. cis''16 b'8 d''4 d''8
1341 }
1342 @end lilypond
1343
1344 All these quotes makes the input less readable and they are a source
1345 of errors.  With @code{\relative}, the previous example is much
1346 easier to read and type:
1347
1348 @lilypond[verbatim,quote]
1349 \relative c'' {
1350   \key a \major
1351   \time 6/8
1352   cis8. d16 cis8 e4 e8
1353   b8. cis16 b8 d4 d8
1354 }
1355 @end lilypond
1356
1357 If you make a mistake with an octave mark (@code{'} or @code{,})
1358 while working in @code{\relative} mode, it is very obvious -- many
1359 notes will be in the wrong octave.  When working in absolute mode,
1360 a single mistake will not be as visible, and will not be as easy
1361 to find.
1362
1363 However, absolute mode is useful for music which has large
1364 intervals, and is extremely useful for computer-generated LilyPond
1365 files.
1366
1367
1368
1369 @node After the tutorial
1370 @subsection After the tutorial
1371
1372 After finishing the tutorial, you should probably try writing a
1373 piece or two.  Start by adding notes to one of the
1374 @ref{Templates}.  If you need any notation that was not covered in
1375 the tutorial, look at the Notation Reference, starting with
1376 @ruser{Musical notation}.  If you want to write for an instrument
1377 ensemble that is not covered in the templates, take a look at
1378 @ref{Extending the templates}.
1379
1380 Once you have written a few short pieces, read the rest of the
1381 Learning Manual (chapters 3-5).  There's nothing wrong with
1382 reading it now, of course!  However, the rest of the Learning
1383 Manual assumes that you are familiar with LilyPond input.  You may
1384 wish to skim these chapters right now, and come back to them after
1385 you have more experience.
1386
1387 In this tutorial and in the rest of the Learning Manual, there is a
1388 paragraph @strong{See also} at the end of each section, which contains
1389 cross-references to other sections: you should not follow these
1390 cross-references at first reading; when you have read all of the
1391 Learning Manual, you may want to read some sections again and follow
1392 cross-references for further reading.
1393
1394 If you have not done so already, @emph{please} read
1395 FIXME FIXME FIXME 
1396 @c @ref{About the documentation}.
1397 There is a lot of information about LilyPond, so
1398 newcomers often do not know where they should look for help.  If
1399 you spend five minutes reading that section carefully, you might
1400 save yourself hours of frustration looking in the wrong places!
1401