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