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