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