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