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