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