]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/tutorial.itely
Minor editing. (I'm just fixing a few things while I read the updated docs)
[lilypond.git] / Documentation / user / tutorial.itely
1 @c -*-texinfo-*-
2 @c This file is part of lilypond.tely
3
4 @c TODO:
5 @c   * more details about running lilypond; error messages,
6 @c     compiling/viewing (emacs?)
7 @c   * where to go from First steps+More basics?
8
9 @c Your first LilyPond score in 10 minutes?
10
11 @node Tutorial
12 @chapter Tutorial
13
14 This tutorial starts with a short introduction to the LilyPond music
15 language.  After this first contact we will show you how to produce
16 printed output.  Then you will be able to create and print your own
17 sheets of music.
18
19 @ifhtml
20 Many people learn programs by trying and fiddling around with the
21 program.  This is also possible with LilyPond.  If you click on a
22 picture in the HTML version of this manual, you will see the exact
23 LilyPond input that was used to generate that image.
24 Try it on this image
25
26 @lilypond[fragment,quote,raggedright,relative=2]
27 c-\markup { \bold \huge { Click here.  } }
28 @end lilypond
29 @end ifhtml
30
31 By cutting and pasting the full input into a test file, you have a
32 starting template for experiments.  If you like learning in this way,
33 you will probably want to print out or bookmark
34 @ifhtml
35 the
36 @end ifhtml
37 @ref{Cheat sheet}, which is a table listing all commands for quick
38 reference.
39
40 @menu
41 * First steps::                 
42 * Running LilyPond for the first time::  
43 * More about pitches::          
44 * Entering ties::               
45 * Automatic and manual beams::  
46 * Octave entry::                
47 * Music expressions explained::  
48 * More staves::                 
49 * Adding articulation marks to notes::  
50 * Combining notes into chords::  
51 * Basic rhythmical commands::   
52 * Commenting input files::      
53 * Printing lyrics::             
54 * A lead sheet::                
55 * Adding titles::               
56 * Single staff polyphony::      
57 * Piano staves::                
58 * Organizing larger pieces::    
59 * An orchestral part::          
60 @end menu
61
62
63 @node First steps
64 @section First steps
65
66 The first example demonstrates how to enter the most elementary piece
67 of music, a scale.  A note can be entered by typing its name, from
68 @samp{a} through @samp{g}.  So, if you enter
69
70 @example
71 c d e f g a b
72 @end example
73
74 @noindent
75 the result looks like this
76
77 @lilypond[fragment,quote,notime,relative=1]
78 c d e f g a b
79 @end lilypond
80
81 The duration of a note is specified by a number after the note name.
82 @samp{1} for a @rglos{whole note}, @samp{2} for a @rglos{half note},
83 @samp{4} for a @rglos{quarter note} and so on
84
85 @example
86 a1 a2 a4 a16 a32
87 @end example
88
89 @c FIXME: have NOTIME also remove Score.timing?
90 @lilypond[fragment,quote,notime,relative=2]
91 \set Score.timing = ##f
92 \set Staff.autoBeaming = ##f
93 { a1 a2 a4 a16 a32 s16_" " }
94 @end lilypond
95
96 If you do not specify a @rglos{duration}, the duration last entered is
97 used for the next notes.  The duration of the first note in input
98 defaults to a quarter
99
100 @example
101 a a8 a a2 a
102 @end example
103
104 @lilypond[fragment,quote,notime,relative=2]
105 \set Score.timing = ##f
106 { a a8 a a2 a s16_" " }
107 @end lilypond
108
109
110 Rests are entered just like notes, but with the name @samp{r}
111
112 @cindex rests
113 @example
114 r2 r4 r8 r16
115 @end example
116
117 @lilypond[fragment,quote,notime]
118 \set Score.timing = ##f
119 r2 r4 r8 r16 s16_" "
120 @end lilypond
121
122 Add a dot @samp{.} after the duration to get a @rglos{dotted note}
123
124 @example
125 a2. a4 a8. a16
126 @end example
127
128 @lilypond[fragment,quote,notime,relative=1]
129 \set Score.timing = ##f
130 { a2. a4 a8. a16 s16_" " }
131 @end lilypond
132
133 The @rglos{meter} (or @rglos{time signature}) can be set with the
134 @code{\time} command
135
136 @example
137 \time 3/4
138 \time 6/8
139 \time 4/4
140 @end example
141
142 @c A clef here may lead to confusion, remove it.
143 @lilypond[fragment,quote]
144 \override Staff.Clef #'transparent = ##t 
145 \time 3/4
146 s4_" "
147 \time 6/8
148 s4_" "
149 \time 4/4
150 s16_" "
151 @end lilypond
152
153 The @rglos{clef} can be set using the @code{\clef} command
154
155 @c what is more common name treble or violin?
156 @c in Dutch, it is violin.
157 @c in English it is definitely treble.
158 @example
159 \clef treble
160 \clef bass
161 \clef alto
162 \clef tenor
163 @end example
164
165 @lilypond[fragment,quote,notime]
166 \set Score.timing = ##f
167 \clef violin
168 s4_" "
169 \clef bass
170 s4_" "
171 \clef alto
172 s4_" "
173 \clef tenor
174 s16_" "
175 @end lilypond
176
177
178 Remember to enclose the notes and commands in curly braces
179 @code{@{@tie{}@dots{}@tie{}@}} to convert it to printable output.
180
181 @lilypond[fragment,quote,noindent,linewidth=55\staffspace]
182 {
183   \time 3/4
184   \clef bass
185   c2 e4 g2.
186   f4 e d c2 r4
187 }
188 @end lilypond
189
190 For more elaborate information on
191
192 @quotation
193 @table @asis
194 @item Entering pitches and durations
195 see 
196 @ref{Pitches}, and @ref{Durations}.
197 @item Clefs
198 see @ref{Clef}.
199 @item Rests
200 see @ref{Rests}.  
201 @item Time signatures and other timing commands
202 see @ref{Time signature}.
203 @end table
204 @end quotation
205
206
207 @node Running LilyPond for the first time
208 @section Running LilyPond for the first time
209
210 @c cheesy title to avoid clash with chapter name.
211
212 @c FIXME: let's not be so casual about Emacs and VIM, but rather
213 @c instruct (how) to use them; let advanced user figure-out what
214 @c commands to type?
215
216 @c
217 @c We don't have enough space to explain either VIM
218 @c or Emacs non-advanced users, and I fear that both editors will only
219 @c confuse newbies. I vote for keeping the material in footnotes.
220 @c 
221 @c --hwn 
222
223 In the last section we explained what kind of things you could enter
224 in a LilyPond file.  In this section we will explain what commands to
225 run and how to view or print the output.  If you have not used
226 LilyPond before, want to test your setup, or want to run an example
227 file yourself, read this section.  The instructions that follow are
228 for Unix-like systems.  Some additional instructions for Microsoft
229 Windows are given at the end of this section.
230
231 Begin by opening a terminal window and starting a text editor.  For
232 example, you could open an xterm and execute
233 @code{joe}.@footnote{There are macro files for VIM addicts, and there
234 is a @code{LilyPond-mode} for Emacs addicts.  If they have not been
235 installed already, refer to
236 @c FIXME lousy reference.
237 the file @file{INSTALL.txt}.}  In your text editor, enter the following
238 input and save the file as @file{test.ly}
239
240 @example
241 @{ c'4 e' g' @}
242 @end example
243
244 @noindent
245 To process @file{test.ly}, proceed as follows
246
247 @example
248 lilypond test.ly
249 @end example
250
251 @noindent
252 You will see something resembling
253
254 @example
255 lilypond (GNU LilyPond) 2.2.0
256 Running lilypond...
257 Now processing `/home/fred/ly/test.ly'
258 Parsing...
259 Interpreting music...[1]
260 @emph{... more interesting stuff ... }
261 DVI output to `test.dvi'...
262 PDF output to `test.pdf'...
263 PS output to `test.ps'...
264 @end example
265
266 @cindex DVI file
267 @cindex Viewing music
268 @cindex xdvi
269 @noindent
270 The result is the file @file{test.pdf}@footnote{For @TeX{}
271 aficionados: there is also a @file{test.dvi} file.  It can be viewed
272 with @code{xdvi}.  The DVI uses a lot of PostScript specials, which do
273 not show up in the magnifying glass.  The specials also mean that the
274 DVI file cannot be processed with @code{dvilj}.  Use @code{dvips} for
275 printing.
276 @cindex dvips
277 @cindex dvilj
278 @cindex DVI driver
279 } which you can print or with the standard facilities of your
280 operating system.@footnote{If your system does not have any tools
281 installed, you can try
282 @uref{http://www.cs.wisc.edu/~ghost/,Ghostscript}, a freely available
283 package for viewing and printing PDF and PostScript files.}
284
285 On Windows, start up a text-editor@footnote{Any simple or
286 programmer-oriented editor will do, for example Notepad.  Do not use a
287 word processor, since these insert formatting codes that will confuse
288 LilyPond.} and enter
289
290 @example
291 @{ c'4 e' g' @}
292 @end example
293
294 Save it on the desktop as @file{test.ly} and make sure that it is not
295 called @file{test.ly.TXT}.  Double clicking @file{test.ly} will process
296 the file and show the resulting PDF file.
297
298
299 @node More about pitches
300 @section More about pitches 
301
302 A @rglos{sharp} (@texisharp{}) pitch is made by adding @samp{is} to
303 the name, a @rglos{flat} (@texiflat{}) pitch by adding @samp{es}.  As
304 you might expect, a @rglos{double sharp} or @rglos{double flat} is
305 made by adding @samp{isis} or @samp{eses}@footnote{This syntax
306 derived from note naming conventions in Nordic and Germanic languages,
307 like German and Dutch.}
308
309 @example
310 cis1 ees fisis aeses
311 @end example
312
313 @lilypond[fragment,quote,notime]
314 \set Score.timing = ##f
315 \transpose c c' { cis1 ees fisis aeses s16_" " }
316 @end lilypond
317
318 @cindex key signature, setting
319 The key signature is set with the command @code{\key}, followed by
320 a pitch and @code{\major} or @code{\minor}
321
322 @example
323 \key d \major
324 g1
325 \key c \minor
326 g
327 @end example
328
329 @lilypond[fragment,quote,notime,fragment]
330 \key d \major
331 g'1
332 \key c \minor
333 g'
334 @end lilypond
335
336 @noindent
337 Key signatures together with the pitches (including alterations) are
338 used to determine when to print accidentals.  This is a
339 feature that often causes confusion to newcomers, so let us explain it
340 in more detail.
341
342
343 LilyPond makes a sharp distinction between musical content and
344 layout.  The alteration (flat, natural or sharp) of a note is part of
345 the pitch, and is therefore musical content.  Whether an accidental (a
346 flat, natural or sharp @emph{sign}) is printed in front of the
347 corresponding note is a question of layout.  Layout is something that
348 follows rules, so accidentals are printed automatically according to
349 those rules.  The pitches in your music are works of art, so they will
350 not be added automatically, and you must enter what you want to hear.
351
352 In this example
353
354 @lilypond[quote,notime,fragment]
355 \key d \major
356 d' cis' fis'
357 @end lilypond
358
359 @noindent
360 no note has an explicit accidental, but you still must enter
361
362 @example
363 \key d \major
364 d cis fis
365 @end example
366
367 @noindent
368 The code @samp{d} does not mean `print a black dot just below the
369 staff.'  Rather, it means: `a note with pitch D-natural.'  In the key
370 of A-flat, it does get an accidental
371
372 @lilypond[quote,notime,fragment]
373 \key as \major
374 d'
375 @end lilypond
376
377 @example
378 \key as \major
379 d
380 @end example
381
382 Adding all alterations explicitly might require a little more effort
383 when typing, but the advantage is that transposing is easier, and
384 accidentals can be printed according to different conventions.  See
385 @ref{Accidentals}, for some examples how accidentals can be printed
386 according to different rules.
387
388
389 For more information on
390
391 @quotation
392 @table @asis
393 @item Accidentals
394 see @ref{Accidentals}.
395
396 @item Key signature
397 see @ref{Key signature}.
398 @end table
399 @end quotation
400
401 @node Entering ties
402 @section Entering ties
403
404 @cindex tie
405 A tie is created by appending a tilde @samp{~} to the first note
406 being tied
407
408 @lilypond[quote,notime,fragment,verbatim,relative=3]
409 g4~ g a2~ a4
410 @end lilypond
411
412 For more information on Ties see @ref{Ties}.
413
414
415
416 @node Automatic and manual beams
417 @section Automatic and manual beams
418
419 @cindex beams, by hand 
420 Beams are drawn automatically
421
422 @lilypond[quote,fragment,relative=2,verbatim]
423 a8 ais d es r d
424 @end lilypond
425
426 @noindent
427 If you do not like where beams are put, they can be entered by
428 hand.  Mark the first note to be beamed with @samp{[} and the last one
429 with @samp{]}.
430
431 @lilypond[quote,fragment,relative=2,verbatim]
432 a8[ ais] d[ es r d]
433 @end lilypond
434
435 For more information on beams, see @ref{Beaming}.
436
437
438 Here are key signatures, accidentals and ties in action
439
440 @example
441 @{
442   \time 4/4
443   \key g \minor
444   \clef violin
445   r4 r8 a8 gis4 b
446   a8 d4.~ d e8
447   fis4 fis8 fis8 eis4 a8 gis~
448   gis2 r2
449 @}
450 @end example
451
452 @ignore
453 FIXME
454 ugr: removing the ignore block, leaving the comment line below
455 @c TODO: use relative mode, verbatim, junk \transpose and above @example
456 @end ignore
457
458
459 @lilypond[fragment,quote,noindent,linewidth=50\staffspace]
460 \transpose c c' {
461   \time 4/4
462   \key g \minor
463   \clef violin
464   r4 r8 a8 gis4 b
465   a8 d4.~ d e8
466   fis4 fis8 fis8 eis4 a8 gis~
467   gis2 r2
468 }
469 @end lilypond
470
471 @cindex accidentals
472
473
474 @noindent
475 There are some interesting points to note in this example.  Bar lines
476 and beams are drawn automatically.  Line breaks are calculated
477 automatically; it does not matter where the line breaks are in the
478 source file.  Finally, the order in which time, key and clef changes
479 are entered is not relevant: in the printout, these are ordered
480 according to standard notation conventions.
481
482
483
484 @node Octave entry
485 @section Octave entry
486
487
488 @c Tim wants to move this quotes example just before the: quotes-do not-work
489 @c score, but we'd need to remove quotes from the other two (key and
490 @c tie) examples...
491
492 @c better to have this just before the `octaves are bad' snipped
493 @c but we'd need to remove the ', from \key and tie 
494 To raise a note by an octave, add a high quote @code{'} (apostrophe) to
495 the note name, to lower a note one octave, add a `low quote' @code{,}
496 (a comma).  Middle C is @code{c'}
497
498 @example
499 c'4 c'' c''' \clef bass c c,
500 @end example
501
502 @lilypond[quote,notime,fragment]
503 c'4 c'' c''' \clef bass c c,
504 @end lilypond
505
506 An example of the use of quotes is in the following Mozart fragment
507
508 @lilypond[quote,raggedright,fragment,verbatim]
509 \key a \major
510 \time 6/8
511 cis''8. d''16 cis''8 e''4 e''8
512 b'8. cis''16 b'8 d''4 d''8 
513 @end lilypond
514
515 @noindent
516 The last example shows that music in a high register needs lots of quotes.
517 This makes the input less readable, and it is a source of errors.  The
518 solution is to use `relative octave' mode.   This is the
519 most convenient way to copy existing music.
520
521 In relative mode, a note without octavation quotes (i.e.  the @code{'}
522 or @code{,} after a note) is chosen so it it is closest to the
523 previous one.  For example, @samp{c f} goes up while @samp{c g} goes
524 down
525
526 To use relative mode, add @code{\relative} before the piece of
527 music. The first note is taken relative to the middle C
528 @c no , for this sentence
529 (i.e. @code{c'})
530
531
532
533 @lilypond[quote,notime,fragment,verbatim]
534 \relative {
535   c' f c g c
536 }
537 @end lilypond
538
539
540 Since most music has small intervals, pieces can be written almost
541 without octavation quotes in relative mode.  The previous example is
542 entered as
543
544 @lilypond[quote,raggedright,verbatim]
545 \relative {
546   \key a \major
547   \time 6/8
548   cis'8. d16 cis8 e4 e8
549   b8. cis16 b8 d4 d8
550 }
551 @end lilypond
552
553 @c needed better, maybe even redundant explanation
554 @c   added another example below.
555 @c grappig: Pa vond het heel logies, en slim toen-i eenmaal begreep.
556 @c in eerste instantie drong het `relative' niet door zonder extra uitleg.
557 Larger intervals are made by adding octavation quotes.
558
559 @lilypond[quote,notime,verbatim,fragment]
560 \relative c {
561   c'' f, f c' c g' c,
562 }
563 @end lilypond
564
565 In summary, quotes or commas no longer determine the absolute height
566 of a note in @code{\relative} mode.  Rather, the height of a note is
567 relative to the previous one, and changing the octave of a single note
568 shifts all following notes an octave up or down.
569
570 For more information on Relative octaves see @ref{Relative octaves},
571 and @ref{Octave check}.
572
573
574 @node Music expressions explained
575 @section Music expressions explained
576
577
578 In input files, music is represent by so-called @emph{music
579 expression}.  We have already seen in the previous examples; 
580 a single note is a music expression
581
582 @lilypond[fragment,quote,verbatim,relative=3]
583 a4
584 @end lilypond
585
586 Enclosing group of notes in braces creates a new music
587 expression
588
589 @lilypond[fragment,quote,verbatim,relative=3]
590 { a4 g4 }
591 @end lilypond
592
593 Putting a bunch of music expressions (notes) in braces, means that
594 they should be played in sequence.  The result again is a music
595 expression, which can be grouped with other expressions sequentially.
596 Here, the expression from the previous example is combined with two
597 notes
598
599 @lilypond[fragment,quote,verbatim,relative=3]
600 { { a4 g } f g } 
601 @end lilypond
602
603 This technique is useful for non-monophonic music.  To enter music
604 with more voices or more staves, we also combine expressions in
605 parallel.  Two voices that should play at the same time, are entered
606 as a simultaneous combination of two sequences.  A `simultaneous'
607 music expression is formed by enclosing expressions in @code{<<} and
608 @code{>>}.  In the following example, three sequences (all containing
609 two other notes) are combined simultaneously
610
611 @lilypond[fragment,quote,verbatim,relative=3]
612 <<
613    { a4 g }
614    { f e }
615    { d b }
616 >>
617 @end lilypond
618
619 This mechanism is similar to mathematical
620 formulas: a big formula is created by composing small formulas.  Such
621 formulas are called expressions, and their definition is recursive, so
622 you can make arbitrarily complex and large expressions.  For example,
623
624 @example
625 1
626
627 1 + 2
628
629 (1 + 2) * 3
630
631 ((1 + 2) * 3) / (4 * 5)
632 @end example
633
634 @cindex expression
635 @cindex music expression
636 This is a sequence of expressions, where each expression is contained
637 in the next one.  The simplest expressions are numbers, and larger
638 ones are made by combining expressions with operators (like @samp{+},
639 @samp{*} and @samp{/}) and parentheses.  Like mathematical expressions,
640 music expressions can be nested arbitrarily deep, which is necessary
641 for complex music like polyphonic scores.
642
643 Note that this example only has one staff, whereas
644 the previous example had three seperate staves.  That is because this
645 example begins with a single note.  To determine the number of staves,
646 LilyPond looks at the first element.  If it's a single note, there's one
647 staff; if there's a simultaneous expression, there's more than one staff.
648
649 @lilypond[fragment,quote,verbatim,relative=2] 
650 {
651   c <<c e>>
652   << { e f } { c <<b d>> } >>
653 }
654 @end lilypond
655
656 Music files with deep nesting can be confusing to enter and
657 maintain.  One convention that helps against this confusion is
658 indenting.  When entering a file with deep nesting of braces and
659 angles, it is customary to use an indent that indicates the nesting
660 level.  Formatting music like this eases reading and helps you insert
661 the right number of closing braces at the end of an expression.  For
662 example,
663
664 @example
665 <<
666   @{
667     @dots{}
668   @}
669   @{
670     @dots{}
671   @}
672 >>
673 @end example
674
675 Some editors have special support for entering LilyPond, and can help
676 indenting source files.  See @ref{Editor support} for more information.
677
678 @node More staves
679 @section More staves
680
681 To print more than one staff, each piece of music that makes up a
682 staff is marked by adding @code{\new Staff} before it.  These
683 @code{Staff} elements are then combined parallel with @code{<<} and
684 @code{>>}, as demonstrated here
685
686 @lilypond[quote,fragment,verbatim]
687 <<
688   \new Staff { \clef treble c'' }
689   \new Staff { \clef bass c }
690 >>
691 @end lilypond
692
693
694 The command @code{\new} introduces a `notation context.'  A notation
695 context is an environment in which musical events (like notes or
696 @code{\clef} commands) are interpreted.  For simple pieces, such
697 notation contexts are created automatically.  For more complex pieces, it
698 is best to mark contexts explicitly.  This ensures that each fragment
699 gets its own stave.
700
701 There are several types of contexts: @code{Staff}, @code{Voice} and
702 @code{Score} handle melodic notation.  Other contexts are also
703 @code{Lyrics} (for setting lyric texts) and @code{ChordNames} (for
704 printing chord names).
705
706
707 In terms of syntax, prepending @code{\new} to a music expression
708 creates a bigger music expression.  In this way it resembles the minus
709 sign in mathematics.  The formula @math{(4+5)} is an expression, so
710 @math{-(4+5)} is a bigger expression.
711
712 We can now typeset a melody with two staves
713
714 @c TODO: (c) status of this Paul McCartney (?) song (let's all stand together)
715
716 @lilypond[fragment,quote,verbatim,raggedright]
717 \relative <<
718   \new Staff {
719     \time 3/4
720     \clef treble 
721     
722     e'2 d4 c2 b4 a8[ a]
723     b[ b] g[ g] a2. 
724   }
725   \new Staff {
726      \clef bass
727      c,,2 e4 g2.
728      f4 e d c2.
729   }
730 >>
731 @end lilypond
732
733 For more information on context see the description in
734 @ref{Interpretation contexts}.
735
736
737
738 @node Adding articulation marks to notes
739 @section Adding articulation marks to notes
740
741 @cindex articulation
742 @cindex accents
743 @cindex staccato
744
745 Common accents can be added to a note using a dash (@samp{-}) and a
746 single character
747
748 @lilypond[fragment,quote,verbatim,relative=2]
749 c-.  c-- c-> c-^ c-+ c-_
750 @end lilypond
751
752 @cindex fingering
753 Similarly, fingering indications can be added to a note using a dash
754 (@samp{-}) and the digit to be printed
755
756 @lilypond[fragment,quote,verbatim,relative=2]
757 c-3 e-5 b-2 a-1
758 @end lilypond
759
760 Articulations and fingerings are usually placed automatically, but you
761 can specify a direction using @samp{^} (up) or @samp{_} (down).  You can
762 also use multiple articulations on the same note.  In most cases, it's
763 best to let LilyPond determine the articulation directions.
764
765 @lilypond[fragment,quote,verbatim,relative=2]
766 c_-^1 d^. f^4_2-> e^-_+
767 @end lilypond
768
769 Dynamic signs are made by adding the markings (with a backslash) to
770 the note
771
772 @lilypond[fragment,quote,verbatim,relative=2]
773 c\ff c\mf
774 @end lilypond
775
776 @cindex dynamics
777 @cindex decrescendo
778 @cindex crescendo
779
780 Crescendi and decrescendi are started with the commands @code{\<} and
781 @code{\>}.  An ending dynamic, for example @code{\f}, will finish the
782 crescendo, or the command @code{\!} can be used
783
784 @lilypond[fragment,quote,verbatim,relative=2]
785 c2\< c2\ff\> c2 c2\!
786 @end lilypond
787
788
789
790 @cindex slur
791
792 A slur is a curve drawn across many notes, and indicates legato
793 articulation.  The starting note and ending note are marked with
794 @samp{(} and @samp{)}, respectively
795
796 @lilypond[fragment,quote,fragment,relative=2,verbatim]
797 d4( c16) cis( d e c cis d) e( d4)
798 @end lilypond
799
800 @cindex slurs versus ties
801 A slur looks like a tie, but it has a different meaning.  A tie simply
802 makes the first note sound longer, and can only be used on pairs of
803 notes with the same pitch.  Slurs indicate the articulations of notes,
804 and can be used on larger groups of notes.  Slurs and ties can be
805 nested
806
807 @lilypond[quote,fragment,relative=2]
808 c2~( c8 fis fis4 ~ fis2 g2)
809 @end lilypond
810
811 @cindex phrasing slurs
812 Slurs to indicate phrasing can be entered with @code{\(} and
813 @code{\)}, so you can have both legato slurs and phrasing slurs at the
814 same time.
815
816 @lilypond[quote,fragment,relative=2,verbatim]
817 a8(\( ais b c) cis2 b'2 a4 cis, c\)
818 @end lilypond
819
820
821 For more information on
822
823 @quotation
824 @table @asis
825 @item Fingering
826 see @ref{Fingering instructions}.
827 @item Articulations
828 see @ref{Articulations}.
829 @item Slurs
830 see @ref{Slurs}.
831 @item Phrasing slurs
832 see @ref{Phrasing slurs}.
833 @item Dynamics
834 see @ref{Dynamics}.
835 @end table
836 @end quotation
837
838
839 @node Combining notes into chords
840 @section Combining notes into chords
841
842 @cindex chords
843 Chords can be made by surrounding pitches with angle brackets.
844 Angle brackets are the symbols @samp{<} and @samp{>}.
845
846 @lilypond[quote,relative=1,fragment,verbatim]
847 r4 <c e g>4 <c f a>8
848 @end lilypond
849
850
851 You can combine markings like beams and ties with chords.  They must
852 be placed outside the angled brackets
853
854 @lilypond[quote,relative=1,fragment,verbatim]
855 r4 <c e g>8[ <c f a>]~ <c f a>
856 @end lilypond
857
858 @example
859 r4 <c e g>8\>( <c e g> <c e g> <c f a>8\!)
860 @end example
861
862 @lilypond[quote,relative=1,fragment]
863 \slurUp
864 r4 <c e g>8\>( <c e g> <c e g> <c f a>8\!)
865 @end lilypond
866
867
868
869
870 @node Basic rhythmical commands
871 @section Basic rhythmical commands
872
873 @cindex pickup
874 @cindex anacruse
875 @cindex partial measure
876 A pickup is entered with the keyword @code{\partial}.  It
877 is followed by a duration: @code{\partial 4} is a quarter note upstep
878 and @code{\partial 8} an eighth note
879
880 @lilypond[quote,relative=2,verbatim,fragment]
881 \partial 8
882 f8 c2 d e
883 @end lilypond
884
885 @cindex tuplets
886 @cindex triplets
887 Tuplets are made with the @code{\times} keyword.  It takes two
888 arguments: a fraction and a piece of music.  The duration of the piece
889 of music is multiplied by the fraction.  Triplets make notes occupy
890 2/3 of their notated duration, so a triplet has 2/3 as its fraction
891
892 @lilypond[quote,relative=1,verbatim,fragment]
893 \times 2/3 { f8 g a }
894 \times 2/3 { c r c }
895 @end lilypond
896
897 @cindex grace notes
898 @cindex acciaccatura
899 Grace notes are also made by prefixing a music expression with the
900 keyword @code{\appoggiatura} or @code{\acciaccatura}
901 @cindex appoggiatura
902 @cindex acciaccatura
903
904 @lilypond[quote,relative=2,verbatim,fragment]
905 c4 \appoggiatura b16 c4
906 c4 \acciaccatura b16 c4
907 @end lilypond
908
909 @noindent
910
911 For more information on
912
913 @quotation
914 @table @asis
915 @item Grace notes
916 see @ref{Grace notes},
917 @item Tuplets
918 see @ref{Tuplets},
919 @item Pickups
920 see @ref{Partial measures}.
921 @end table
922 @end quotation
923
924
925 @node Commenting input files
926 @section Commenting input files
927
928 @cindex comments
929 @cindex line comment
930 @cindex block comment
931 A comment is a remark for the human reader of the music input; it is
932 ignored while parsing, so it has no effect on the printed output.
933 There are two types of comments.  The percent symbol @samp{%}
934 introduces a line comment; after  @code{%} the rest of the line   is
935 ignored.  A block comments marks a whole section of music
936 input. Anything that is enclosed in @code{%@{} and @code{%@}} is
937 ignored.  The following fragment shows possible uses for comments
938
939 @example
940 % notes for twinkle twinkle follow
941 c4 c g' g a a
942
943 %@{
944     This line, and the notes below
945     are ignored, since they are in a
946     block comment.
947
948     g g f f e e d d c2 
949 %@}
950 @end example
951
952 @cindex versioning
953
954 There is a special statement that is a kind of comment.  The @code{\version}
955 statement marks for which version of LilyPond the file was written.
956 To mark a file for version 2.1.17, use
957
958 @example
959 \version "2.1.17"
960 @end example
961
962 @noindent
963 These annotations make future upgrades of LilyPond go more
964 smoothly. Changes in the syntax are handled with a special program,
965 @file{convert-ly} (see @ref{Invoking convert-ly}), and it uses
966 @code{\version} to determine what rules to apply.
967
968
969 @node Printing lyrics
970 @section Printing lyrics
971 @cindex lyrics
972
973 @c TODO: (c) status of the Queen fragment.
974
975 @cindex Lyrics
976 @cindex Songs
977 Lyrics are entered by separating each syllable with a space
978
979 @example
980 I want to break free
981 @end example
982
983 Consider the melody
984
985 @lilypond[quote,verbatim,fragment,raggedright]
986 \relative {
987     r4 c \times 2/3 { f g g }
988     \times 2/3 { g4( a2) }
989 }
990 @end lilypond
991
992 The lyrics can be set to these notes, combining both with the
993 @code{\addlyrics} keyword
994
995 @lilypond[quote,verbatim,fragment,raggedright]
996 <<
997   \relative {
998     r4 c \times 2/3 { f g g }
999     \times 2/3 { g4( a2) }
1000   }
1001   \addlyrics { I want to break free }
1002 >>
1003 @end lilypond
1004
1005 @cindex melisma
1006 @cindex extender line
1007 @c synonyms?
1008 This melody ends on a @rglos{melisma}, a single syllable (`free')
1009 sung to more than one note.  This is indicated with an @emph{extender
1010 line}.  It is entered as two underscores, i.e.,
1011
1012 @example
1013 @{ I want to break free __ @}
1014 @end example 
1015
1016 @lilypond[fragment,quote,raggedright]
1017 <<
1018   \relative {
1019     r4 c \times 2/3 { f g g }
1020     \times 2/3 { g4( a2) }
1021   }
1022   \addlyrics { I want to break free __ }
1023 >>
1024 @end lilypond
1025
1026 Similarly, hyphens between words can be entered as two dashes,
1027 resulting in a centered hyphen between two syllables
1028
1029 @example
1030 Twin -- kle twin -- kle
1031 @end example
1032
1033 @lilypond[fragment,quote,raggedright]
1034 <<
1035   \relative {
1036      \time 2/4
1037      f4 f c' c
1038    }
1039    \addlyrics { Twin -- kle twin -- kle }
1040 >>
1041 @end lilypond
1042
1043 More options, like putting multiple lines of lyrics below a melody are
1044 discussed in @ref{Vocal music}.
1045
1046
1047 @node A lead sheet
1048 @section A lead sheet
1049
1050 @cindex Lead sheets
1051 @cindex chords
1052 @cindex chord names
1053
1054 In popular music, it is common to denote accompaniment with chord names.
1055 Such chords can be entered like notes,
1056
1057 @lilypond[quote,verbatim,raggedright]
1058 \chords { c2 f4. g8 }
1059 @end lilypond
1060
1061 @noindent
1062 Now each pitch is read as the root of a chord instead of a note.
1063 This mode is switched on with @code{\chords}
1064
1065
1066 Other chords can be created by adding modifiers after a colon.  The
1067 following example shows a few common modifiers
1068
1069 @lilypond[quote,verbatim]
1070 \chords { c2 f4:m g4:maj7 gis1:dim7 }
1071 @end lilypond
1072
1073 For lead sheets, chords are not printed on staves, but as names on a
1074 line of themselves.  Hence, we have to override the context with
1075 @code{\new}, rendering the music expression in a @code{ChordNames}
1076 context
1077
1078 @lilypond[quote,verbatim]
1079 \new ChordNames \chords { c2 f4.:m g4.:maj7 gis8:dim7 }
1080 @end lilypond
1081
1082 @cindex lead sheet
1083 When put together, chord names, lyrics and a melody form
1084 a lead sheet, for example,
1085
1086 @example
1087 <<
1088   \new ChordNames \chords @{ @emph{chords} @}
1089   @emph{the melody}
1090   \addlyrics @{ @emph{the text} @}
1091 >>
1092 @}
1093 @end example
1094
1095 @lilypond[quote,raggedright]
1096 <<
1097   \new ChordNames \chords { r2 c:sus4 f } 
1098   \relative {
1099     r4 c' \times 2/3 { f g g }
1100     \times 2/3 { g4( a2) }
1101   }
1102  \addlyrics { I want to break free __ }
1103 >>
1104 @end lilypond
1105
1106 A complete list of modifiers and other options for layout can be found
1107 in @ref{Chords}.
1108
1109
1110 @node Adding titles
1111 @section Adding titles
1112
1113 Bibliographic information is entered in a separate block, the
1114 @code{\header} block.  The name of the piece, its composer, etc., are
1115 entered as an assignment, within @code{\header
1116 @{@tie{}@dots{}@tie{}@}}.  The @code{\header} block is usually put at
1117 the top of the file.  For example,
1118
1119 @example 
1120 \header @{
1121   title = "Miniature" 
1122   composer = "Igor Stravinsky"
1123 @}
1124
1125 @{ @dots{} @}
1126 @end example
1127
1128
1129 When the file is processed the title and composer are printed above
1130 the music.  More information on titling can be found in @ref{Creating
1131 titles}.
1132
1133
1134 @node Single staff polyphony
1135 @section Single staff polyphony
1136
1137 @cindex polyphony
1138 @cindex multiple voices
1139 @cindex voices, more -- on a staff
1140 When different melodic lines are combined on a single staff they are
1141 printed as polyphonic voices; each voice has its own stems, slurs and
1142 beams, and the top voice has the stems up, while the bottom voice has
1143 them down.
1144
1145 Entering such parts is done by entering each voice as a sequence (with
1146 @code{@{...@}}), and combining those simultaneously, separating the
1147 voices with @code{\\}
1148
1149 @lilypond[quote,verbatim,relative=2,fragment]
1150 << { a4 g2 f4~ f4 } \\
1151    { r4 g4 f2 f4 } >>
1152 @end lilypond
1153
1154 For polyphonic music typesetting, spacer rests can also be convenient;
1155 these are rests that do not print.  They are useful for filling up
1156 voices that temporarily do not play.  Here is the same example with a
1157 spacer rest (@code{s}) instead of a normal rest (@code{r}),
1158
1159 @lilypond[quote,verbatim,relative=2,fragment]
1160 << { a4 g2 f4~ f4 } \\
1161    { s4 g4 f2 f4 } >>
1162 @end lilypond
1163
1164 @noindent
1165 Again, these expressions can be nested arbitrarily
1166
1167 @lilypond[quote,fragment,verbatim,relative=2,fragment]
1168 <<
1169   \new Staff <<
1170     { a4 g2 f4~ f4 } \\
1171     { s4 g4 f2 f4 }
1172   >>
1173   \new Staff <<
1174     \clef bass
1175     { <c, g>1 ~ <c g>4 } \\
1176     { f4 d e2 ~ e4}
1177   >>
1178 >>
1179 @end lilypond
1180
1181 More features of polyphonic typesetting in the notation manual are
1182 described in @ref{Polyphony}.
1183
1184
1185 @node Piano staves
1186 @section Piano staves
1187
1188 @cindex staff switch, manual
1189 @cindex cross staff voice, manual
1190 @cindex @code{\context}
1191 Piano music is typeset in two staves connected by a brace.  Printing
1192 such a staff is similar to the polyphonic example in @ref{More staves},
1193
1194 @example
1195 << \new Staff @{ @dots{} @}
1196    \new Staff @{ @dots{} @} >>
1197 @end example
1198
1199 @noindent
1200 but now this entire expression must be interpreted as a
1201 @code{PianoStaff}
1202
1203 @example
1204 \new PianoStaff << \new Staff @dots{} >>
1205 @end example
1206
1207 Here is a small example
1208
1209 @lilypond[quote,verbatim,relative=1,fragment]
1210 \new PianoStaff <<
1211   \new Staff { \time 2/4 c4 c g' g }
1212   \new Staff { \clef bass c,, c' e c }
1213 >>
1214 @end lilypond
1215
1216 More information on formatting piano music is in @ref{Piano music}.  
1217
1218
1219 @node Organizing larger pieces
1220 @section Organizing larger pieces
1221
1222 When all of the elements discussed earlier are combined to produce
1223 larger files, the @code{\score} blocks get a lot bigger, because the
1224 music expressions are longer, and, in the case of polyphonic pieces,
1225 more deeply nested.  Such large expressions can become unwieldy.
1226
1227 By using variables, also known as identifiers, it is possible to break
1228 up complex music expressions.  An identifier is assigned as follows
1229
1230 @example
1231 namedMusic = @{ @dots{} @}
1232 @end example
1233
1234 @noindent
1235 The contents of the music expression @code{namedMusic}, can be used
1236 later by preceding the name with a backslash, i.e., @code{\namedMusic}.
1237 In the next example, a two-note motive is repeated two times by using
1238 variable substitution
1239
1240 @lilypond[quote,raggedright,verbatim,nofragment]
1241 seufzer = {
1242   e'4( dis'4)
1243 }
1244 { \seufzer \seufzer }
1245 @end lilypond
1246
1247 The name of an identifier should have alphabetic characters only; no
1248 numbers, underscores or dashes.  The assignment should be outside of
1249 running music.
1250
1251 It is possible to use variables for many other types of objects in the
1252 input.  For example,
1253
1254 @example
1255 width = 4.5\cm
1256 name = "Wendy"
1257 aFivePaper = \paper @{ paperheight = 21.0 \cm @}
1258 @end example
1259
1260 Depending on its contents, the identifier can be used in different
1261 places.  The following example uses the above variables
1262
1263 @example
1264   \paper @{
1265     \aFivePaper
1266     linewidth = \width
1267   @}
1268   @{ c4^\name @}
1269 @end example
1270
1271 More information on the possible uses of identifiers is in the
1272 technical manual, in @ref{Input variables and Scheme}.
1273 @c fixme: the ref is too technical.
1274
1275
1276 @node An orchestral part
1277 @section An orchestral part
1278
1279 In orchestral music, all notes are printed twice. Once in a part for
1280 the musicians, and once in a full score for the conductor.  Identifiers can
1281 be used to avoid double work. The music is entered once, and stored in
1282 a variable.  The contents of that variable is then used to generate
1283 both the part and the score.
1284
1285 It is convenient to define the notes in a special file.  For example,
1286 suppose that the file @file{horn-music.ly} contains the following part
1287 of a horn/bassoon duo
1288
1289 @example
1290 hornNotes =  \relative c @{
1291   \time 2/4
1292   r4 f8 a cis4 f e d
1293 @}
1294 @end example
1295
1296 @noindent
1297 Then, an individual part is made by putting the following in a file
1298
1299 @example
1300 \include "horn-music.ly"
1301 \header @{
1302   instrument = "Horn in F"
1303 @}
1304
1305 @{
1306  \transpose f c' \hornNotes
1307 @}
1308 @end example
1309
1310 The line
1311
1312 @example
1313 \include "horn-music.ly"
1314 @end example
1315
1316 @noindent
1317 substitutes the contents of @file{horn-music.ly} at this position in
1318 the file, so @code{hornNotes} is defined afterwards.  The command
1319 @code{\transpose f@tie{}c'} indicates that the argument, being
1320 @code{\hornNotes}, should be transposed by a fifth downwards. Sounding
1321 @samp{f} is denoted by notated @code{c'}, which corresponds with
1322 tuning of a normal French Horn in@tie{}F.  The transposition can be seen
1323 in the following output
1324
1325 @lilypond[quote,raggedright]
1326   \transpose f c' \relative c {
1327     \time 2/4
1328     r4 f8 a cis4 f e d
1329   }
1330 @end lilypond
1331
1332 In ensemble pieces, one of the voices often does not play for many
1333 measures.  This is denoted by a special rest, the multi-measure
1334 rest.  It is entered with a capital @samp{R} followed by a duration
1335 (1@tie{}for a whole note, 2@tie{}for a half note, etc.).  By multiplying the
1336 duration, longer rests can be constructed.  For example, this rest
1337 takes 3@tie{}measures in 2/4 time
1338
1339 @example
1340 R2*3
1341 @end example
1342
1343 When printing the part, multi-rests
1344 must be condensed.  This is done by setting a run-time variable
1345
1346 @example
1347 \set Score.skipBars = ##t
1348 @end example
1349
1350 @noindent
1351 This command sets the property @code{skipBars} in the
1352 @code{Score} context to true (@code{##t}).  Prepending the rest and
1353 this option to the music above, leads to the following result
1354
1355 @lilypond[quote,raggedright]
1356 \transpose f c' \relative c {
1357     \time 2/4
1358     \set Score.skipBars = ##t 
1359     R2*3
1360     r4 f8 a cis4 f e d
1361   }
1362 @end lilypond
1363
1364
1365 The score is made by combining all of the music together.  Assuming
1366 that the other voice is in @code{bassoonNotes} in the file
1367 @file{bassoon-music.ly}, a score is made with
1368
1369 @example
1370 \include "bassoon-music.ly"
1371 \include "horn-music.ly"
1372
1373   <<
1374     \new Staff \hornNotes
1375     \new Staff \bassoonNotes
1376   >>
1377 @end example
1378
1379 @noindent
1380 leading to 
1381
1382 @lilypond[quote,raggedright]
1383   \relative c <<
1384     \new Staff {
1385       \time 2/4 R2*3
1386       r4 f8 a cis4 f e d
1387     }
1388     \new Staff {
1389       \clef bass
1390       r4 d,8 f | gis4 c | b bes |
1391       a8 e f4 | g d | gis f
1392     }
1393   >>
1394 @end lilypond
1395
1396 More in-depth information on preparing parts and scores can be found
1397 in the notation manual; see @ref{Orchestral music}.
1398
1399 Setting run-time variables (`properties') is discussed in
1400 @ref{Changing context properties on the fly}.
1401
1402
1403 @ignore
1404
1405 * longer example
1406
1407 * discuss expectations (?)
1408
1409 * conclude tutorial
1410
1411 * overview of chapters?
1412
1413 @end ignore