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