2 @c This file is part of lilypond.tely
5 @c * more details about running lilypond; error messages,
6 @c compiling/viewing (emacs?)
7 @c * where to go from First steps+More basics?
9 @c Your first LilyPond score in 10 minutes?
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
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.
26 @lilypond[fragment,quote,raggedright,relative=2]
27 c-\markup { \bold \huge { Click here. } }
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
37 @ref{Cheat sheet}, which is a table listing all commands for quick
43 * More about pitches::
45 * Automatic and manual beams::
47 * Music expressions explained::
49 * Adding articulation marks to notes::
50 * Combining notes into chords::
51 * Basic rhythmical commands::
52 * Commenting input files::
55 * Listening to output::
57 * Single staff polyphony::
59 * Organizing larger pieces::
60 * An orchestral part::
61 * Integrating text and music::
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
77 the result looks like this
79 @lilypond[fragment,quote,notime,relative=1]
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
91 @c FIXME: have NOTIME also remove Score.timing?
92 @lilypond[fragment,quote,notime,relative=1]
93 \set Score.timing = ##f
94 \set Staff.autoBeaming = ##f
95 { a1 a2 a4 a16 a32 s16_" " }
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
106 @lilypond[fragment,quote,notime,relative=1]
107 \set Score.timing = ##f
108 { a a8 a a2 a s16_" " }
112 Rests are entered just like notes, but with the name @samp{r}
119 @lilypond[fragment,quote,notime]
120 \set Score.timing = ##f
124 Add a dot @samp{.} after the duration to get a @rglos{dotted note}
130 @lilypond[fragment,quote,notime,relative=1]
131 \set Score.timing = ##f
132 { a2. a4 a8. a16 s16_" " }
135 The @rglos{meter} (or @rglos{time signature}) can be set with the
144 @c A clef here may lead to confusion, remove it.
145 @lilypond[fragment,quote]
146 \override Staff.Clef #'transparent = ##t
155 The @rglos{clef} can be set using the @code{\clef} command
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.
167 @lilypond[fragment,quote,notime]
168 \set Score.timing = ##f
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
195 Now the piece of music is almost ready to be printed. Enclose
196 the @code{\notes} block in a @code{\score} block
210 and the music will be converted to printable output.
213 Remember to enclose the notes and commands in curly braces
214 @code{@{@tie{}@dots{}@tie{}@}} to convert it to printable output.
216 @lilypond[fragment,quote,noindent,linewidth=55\staffspace]
225 For more elaborate information on
229 @item Entering pitches and durations
231 @ref{Pitches}, and @ref{Durations}.
236 @item Time signatures and other timing commands
237 see @ref{Time signature}.
242 @node Running LilyPond
243 @section Running LilyPond
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
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.
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.
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}
278 To process @file{test.ly}, proceed as follows
285 You will see something resembling
288 lilypond (GNU LilyPond) 2.2.0
289 Running lilypond-bin...
290 Now processing `/home/fred/ly/test.ly'
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'...
300 @cindex Viewing music
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
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.}
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
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.
331 @node More about pitches
332 @section More about pitches
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.}
345 @lilypond[fragment,quote,notime]
346 \set Score.timing = ##f
347 \transpose c c' { cis1 ees fisis aeses s16_" " }
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}
361 @lilypond[fragment,quote,notime,fragment]
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
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.
386 @lilypond[quote,notime,fragment]
392 no note gets an explicit accidental, but you still must enter
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
404 @lilypond[quote,notime,fragment]
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.
421 For more information on
426 see @ref{Accidentals}.
429 see @ref{Key signature}.
434 @section Entering ties
437 A tie is created by appending a tilde @samp{~} to the first note
440 @lilypond[quote,notime,fragment,verbatim,relative=3]
444 For more information on Ties see @ref{Ties}.
448 @node Automatic and manual beams
449 @section Automatic and manual beams
451 @cindex beams, by hand
452 Beams are drawn automatically
454 @lilypond[quote,fragment,relative=2,verbatim]
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
463 @lilypond[quote,fragment,relative=2,verbatim]
467 For more information on beams, see @ref{Beaming}.
470 Here are key signatures, accidentals and ties in action
479 fis4 fis8 fis8 eis4 a8 gis~
486 ugr: removing the ignore block, leaving the comment line below
487 @c TODO: use relative mode, verbatim, junk \transpose and above @example
491 @lilypond[fragment,quote,noindent,linewidth=50\staffspace]
498 fis4 fis8 fis8 eis4 a8 gis~
507 There are some interesting points to note in this example. Bar lines
508 and beams are drawn automatically. Line breaks are calculated
509 automatically; it does not matter where the line breaks are in the
510 source file. Finally, the order in which time, key and clef changes
511 are entered is not relevant: in the printout, these are ordered
512 according to standard notation conventions.
517 @section Octave entry
520 @c Tim wants to move this quotes example just before the: quotes-do not-work
521 @c score, but we'd need to remove quotes from the other two (key and
524 @c better to have this just before the `octaves are bad' snipped
525 @c but we'd need to remove the ', from \key and tie
526 To raise a note by an octave, add a high quote @code{'} (apostrophe) to
527 the note name, to lower a note one octave, add a `low quote' @code{,}
528 (a comma). Middle C is @code{c'}
531 c'4 c'' c''' \clef bass c c,
534 @lilypond[quote,notime,fragment]
535 c'4 c'' c''' \clef bass c c,
538 An example of the use of quotes is in the following Mozart fragment
540 @lilypond[quote,raggedright,fragment,verbatim]
543 cis''8. d''16 cis''8 e''4 e''8
544 b'8. cis''16 b'8 d''4 d''8
548 The last example shows that music in a high register needs lots of quotes.
549 This makes the input less readable, and it is a source of errors. The
550 solution is to use `relative octave' mode. In practice, this is the
551 most convenient way to copy existing music. To use relative mode, add
552 @code{\relative} before the piece of music.
554 FIXME: move to notation manual?
555 You must also give a note
556 from which relative mode starts, in this case @code{c''}.
559 use octavation quotes (i.e., do not add @code{'} or @code{,} after a
560 note), relative mode chooses the note that is closest to the previous
561 one. For example, @samp{c f} goes up while @samp{c g} goes down
563 @lilypond[quote,notime,fragment,verbatim]
570 Since most music has small intervals, pieces can be written almost
571 without octavation quotes in relative mode. The previous example is
574 @lilypond[quote,raggedright,fragment,verbatim]
578 cis''8. d16 cis8 e4 e8
583 @c needed better, maybe even redundant explanation
584 @c added another example below.
585 @c grappig: Pa vond het heel logies, en slim toen-i eenmaal begreep.
586 @c in eerste instantie drong het `relative' niet door zonder extra uitleg.
587 Larger intervals are made by adding octavation quotes.
589 @lilypond[quote,notime,verbatim,fragment]
595 In summary, quotes or commas no longer determine the absolute height
596 of a note in @code{\relative} mode. Rather, the height of a note is
597 relative to the previous one, and changing the octave of a single note
598 shifts all following notes an octave up or down.
600 For more information on Relative octaves see @ref{Relative octaves},
601 and @ref{Octave check}.
604 @node Music expressions explained
605 @section Music expressions explained
608 In input files, music is represent by so-called @emph{music
609 expression}. We have already seen in the previous examples;
610 a single note is a music expression
612 @lilypond[fragment,quote,verbatim,relative=3]
616 Enclosing group of notes in braces creates a new music
619 @lilypond[fragment,quote,verbatim,relative=3]
623 Putting a bunch of music expressions (notes) in braces, means that
624 they should be played in sequence. The result again is a music
625 expression, which can be grouped with other expressions sequentially.
626 Here, the expression from the previous example is combined with two
629 @lilypond[fragment,quote,verbatim,relative=3]
633 This technique is useful for non-monophonic music. To enter music
634 with more voices or more staves, we also combine expressions in
635 parallel. Two voices that should play at the same time, are entered
636 as a simultaneous combination of two sequences. A `simultaneous'
637 music expression is formed by enclosing expressions in @code{<<} and
638 @code{>>}. In the following example, three sequences (all containing
639 two notes) are combined simultaneously
641 @lilypond[fragment,quote,verbatim,relative=3]
649 This mechanism is similar to mathematical
650 formulas: a big formula is created by composing small formulas. Such
651 formulas are called expressions, and their definition is recursive, so
652 you can make arbitrarily complex and large expressions. For example,
661 ((1 + 2) * 3) / (4 * 5)
665 @cindex music expression
666 This example shows a sequence of expressions, where each expression is
667 contained in the next one. The simplest expressions are numbers and
668 operators (like @samp{+}, @samp{*} and @samp{/}). Parentheses are used
669 to group expressions.
671 Like mathematical expressions, music expressions can be nested
672 arbitrarily deep@footnote{The reason for getting three staves in the
673 previous example but just a single staff in the current one will be
676 @lilypond[fragment,quote,verbatim,relative=2]
679 << { e f } { c <<b d>> } >>
685 When spreading expressions over multiple lines, it is customary to use
686 an indent that indicates the nesting level. Formatting music like this
687 eases reading, and helps you insert the right number of closing
688 braces at the end of an expression. For example,
708 Some editors have special support for entering LilyPond, and can help
709 indenting source files. See @ref{Editor support}, for more information.
714 To print more than one staff, each piece of music that makes up a
715 staff is marked by adding @code{\new Staff} before it. These
716 @code{Staff} elements are then combined parallel with @code{<<} and
717 @code{>>}, as demonstrated here
719 @lilypond[quote,fragment,verbatim]
721 \new Staff { \clef violin c'' }
722 \new Staff { \clef bass c }
727 The command @code{\new} introduces a `notation context.' A notation
728 context is an environment in which musical events (like notes or
729 @code{\clef} commands) are interpreted. For simple pieces, such
730 notation contexts are created implicitly. For more complex pieces, it
731 is best to mark contexts explicitly. This ensures that each fragment
734 There are several types of contexts: @code{Staff}, @code{Voice} and
735 @code{Score} handle normal music notation. Other contexts are also
736 @code{Lyrics} (for setting lyric texts) and @code{ChordNames} (for
737 printing chord names).
740 In terms of syntax, prepending @code{\new} to a music expression
741 creates a bigger music expression. In this way it resembles the minus
742 sign in mathematics. The formula @math{(4+5)} is an expression, so
743 @math{-(4+5)} is a bigger expression.
745 We can now typeset a melody with two staves
747 @c TODO: (c) status of this Paul McCartney (?) song (let's all stand together)
749 @lilypond[fragment,quote,verbatim,raggedright]
766 For more information on context see the description in
767 @ref{Interpretation contexts}.
771 @node Adding articulation marks to notes
772 @section Adding articulation marks to notes
778 Common accents can be added to a note using a dash (@samp{-}) and a
781 @lilypond[fragment,quote,verbatim,relative=2]
782 c-. c-- c-> c-^ c-+ c-_
786 Similarly, fingering indications can be added to a note using a dash
787 (@samp{-}) and the digit to be printed
789 @lilypond[fragment,quote,verbatim,relative=2]
794 Dynamic signs are made by adding the markings (with a backslash) to
797 @lilypond[fragment,quote,verbatim,relative=2]
805 Crescendi and decrescendi are started with the commands @code{\<} and
806 @code{\>}. An ending dynamic, for example @code{\f}, will finish the
807 crescendo, or the command @code{\!} can be used
809 @lilypond[fragment,quote,verbatim,relative=2]
817 A slur is a curve drawn across many notes, and indicates legato
818 articulation. The starting note and ending note are marked with
819 @samp{(} and @samp{)}, respectively
821 @lilypond[fragment,quote,fragment,relative=2,verbatim]
822 d4( c16)( cis d e c cis d e)( d4)
825 @cindex slurs versus ties
826 A slur looks like a tie, but it has a different meaning. A tie simply
827 makes the first note sound longer, and can only be used on pairs of
828 notes with the same pitch. Slurs indicate the articulations of notes,
829 and can be used on larger groups of notes. Slurs and ties are also
832 @lilypond[quote,fragment,relative=2]
833 c2~( c8 fis fis4 ~ fis2 g2)
836 @cindex phrasing slurs
837 Slurs to indicate phrasing can be entered with @code{\(} and
838 @code{\)}, so you can have both legato slurs and phrasing slurs at the
841 @lilypond[quote,fragment,relative=2,verbatim]
842 a8(\( ais b c) cis2 b'2 a4 cis, c\)
846 For more information on
851 see @ref{Fingering instructions}.
853 see @ref{Articulations}.
857 see @ref{Phrasing slurs}.
864 @node Combining notes into chords
865 @section Combining notes into chords
868 Chords can be made by surrounding pitches with angle brackets.
869 Angle brackets are the symbols @samp{<} and @samp{>}.
871 @lilypond[quote,relative=1,fragment,verbatim]
876 You can combine markings like beams and ties with chords. They must
877 be placed outside the angled brackets
879 @lilypond[quote,relative=1,fragment,verbatim]
880 r4 <c e g>8[ <c f a>]~ <c f a>
884 r4 <c e g>8\>( <c e g> <c e g> <c f a>8\!)
887 @lilypond[quote,relative=1,fragment]
889 r4 <c e g>8\>( <c e g> <c e g> <c f a>8\!)
895 @node Basic rhythmical commands
896 @section Basic rhythmical commands
900 @cindex partial measure
901 A pickup is entered with the keyword @code{\partial}. It
902 is followed by a duration: @code{\partial 4} is a quarter note upstep
903 and @code{\partial 8} an eighth note
905 @lilypond[quote,relative=2,verbatim,fragment]
912 Tuplets are made with the @code{\times} keyword. It takes two
913 arguments: a fraction and a piece of music. The duration of the piece
914 of music is multiplied by the fraction. Triplets make notes occupy
915 2/3 of their notated duration, so a triplet has 2/3 as its fraction
917 @lilypond[quote,relative=1,verbatim,fragment]
918 \times 2/3 { f8 g a }
924 Grace notes are also made by prefixing a music expression with the
925 keyword @code{\appoggiatura} or @code{\acciaccatura}
929 @lilypond[quote,relative=2,verbatim,fragment]
930 c4 \appoggiatura b16 c4
931 c4 \acciaccatura b16 c4
936 For more information on
941 see @ref{Grace notes},
945 see @ref{Partial measures}.
950 @node Commenting input files
951 @section Commenting input files
955 @cindex block comment
956 A comment is a remark for the human reader of the music input; it is
957 ignored and has no effect on the printed output. There are two types
958 of comments. The percent symbol @samp{%} introduces a line comment;
959 the rest of the line is ignored. A block comments marks a whole
960 section of music input---anything that is enclosed in @code{%@{} and
961 @code{%@}} is ignored. The following fragment shows possible uses for
965 % notes for twinkle twinkle follow
969 This line, and the notes below
970 are ignored, since they are in a
977 There is a special statement that really is a kind of comment. The
978 version statement marks for which version of LilyPond the file was
979 written. To mark a file for version 2.1.17, use
986 These annotations make future upgrades of LilyPond go more
987 smoothly. Changes in the syntax are handled with a special program,
988 @file{convert-ly} (see @ref{Invoking convert-ly}), and it uses
989 @code{\version} to determine what rules to apply.
992 @node Printing lyrics
993 @section Printing lyrics
996 @c TODO: (c) status of the Queen fragment.
1000 Lyrics are entered by separating each syllable with a space
1003 I want to break free
1008 @lilypond[quote,verbatim,fragment,raggedright]
1010 r4 c \times 2/3 { f g g }
1011 \times 2/3 { g4( a2) }
1015 @c FIXME: when/how/to what rename newlyrics?
1016 The lyrics can be set to these notes, combining both with the
1017 @code{\newlyrics} keyword
1019 @lilypond[quote,verbatim,fragment,raggedright]
1022 r4 c \times 2/3 { f g g }
1023 \times 2/3 { g4( a2) }
1025 \newlyrics { I want to break free }
1030 @cindex extender line
1032 This melody ends on a @rglos{melisma}, a single syllable (`free')
1033 sung to more than one note. This is indicated with an @emph{extender
1034 line}. It is entered as two underscores, i.e.,
1037 @{ I want to break free __ @}
1040 @lilypond[fragment,quote,raggedright]
1043 r4 c \times 2/3 { f g g }
1044 \times 2/3 { g4( a2) }
1046 \newlyrics { I want to break free __ }
1050 Similarly, hyphens between words can be entered as two dashes,
1051 resulting in a centered hyphen between two syllables
1054 Twin -- kle twin -- kle
1057 @lilypond[fragment,quote,raggedright]
1063 \newlyrics { Twin -- kle twin -- kle }
1067 More options, like putting multiple lines of lyrics below a melody are
1068 discussed in @ref{Vocal music}.
1070 @c FIXME: too geeky, for notation manual?
1071 @c or introduce using foo = \lyrics { a b c } ?
1073 When using variables for a piece of lyrics
1074 To prevent certain words (for example `as') as being read as a
1075 pitch, the input-mode must be switched. This is done with
1076 @code{\lyrics}. In @code{\lyrics} mode, all words are read as lyric
1080 myText = \lyrics @{ I want to break free @}
1084 The braces @code{@{@}} signify that the syllables are sung in
1088 By default, music expressions are interpreted in @code{Staff} context. For
1089 lyrics, this is obviously not desirable, so it is necessary
1090 to explicitly specify a @code{Lyrics} context,
1093 \lyrics @{ I want to break free @}
1096 The melody for this song is as follows
1098 @lilypond[fragment,quote,fragment,relative=2]
1099 r4 c \times 2/3 { f4 g g }
1100 \times 2/3 { g4( a2) }
1107 @section A lead sheet
1113 In popular music, it is common to denote accompaniment as chord names.
1114 Such chords can be entered like notes,
1121 but now, each pitch is read as the root of a chord instead of a note.
1122 This mode is switched on with @code{\chords}
1124 @lilypond[quote,verbatim,raggedright]
1125 \chords { c2 f4. g8 }
1128 Other chords can be created by adding modifiers after a colon. The
1129 following example shows a few common modifiers
1131 @lilypond[quote,verbatim]
1132 \chords { c2 f4:m g4:maj7 gis1:dim7 }
1135 For lead sheets, chords are not printed on staves, but as names on a
1136 line of themselves. Hence, we have to override the context with
1137 @code{\new}, rendering the music expression in a @code{ChordNames}
1140 @lilypond[quote,verbatim]
1141 \new ChordNames \chords { c2 f4.:m g4.:maj7 gis8:dim7 }
1145 When put together, chord names, lyrics and a melody form
1146 a lead sheet, for example,
1150 \new ChordNames \chords @{ @emph{chords} @}
1152 \newlyrics @{ @emph{the text} @}
1157 @lilypond[quote,raggedright]
1159 \new ChordNames \chords { r2 c:sus4 f }
1161 r4 c' \times 2/3 { f g g }
1162 \times 2/3 { g4( a2) }
1164 \newlyrics { I want to break free __ }
1168 A complete list of modifiers and other options for layout can be found
1171 @c FIXME: we talk about \midi before mentioning \paper (or \layout?)
1172 @node Listening to output
1173 @section Listening to output
1178 MIDI (Musical Instrument Digital Interface) is a standard for
1179 connecting and controlling digital instruments. A MIDI file is like a
1180 tape recording of a MIDI instrument.
1182 To create a MIDI from a music piece of music, add a @code{\midi}
1183 block. This causes LilyPond to create a MIDI file, so you can listen
1184 to what you just entered. It is great for checking the music.
1185 Octaves that are off or accidentals that were mistyped stand out very
1186 much when listening to the musical transcription.
1188 The @code{\midi} block is added to @code{\score}, for example,
1193 \midi @{ \tempo 4=72 @}
1197 Here, the tempo is specified using the @code{\tempo} command. In this
1198 case the tempo of quarter notes is set to 72 beats per minute. More
1199 information on auditory output in the notation manual can be found in
1202 If there is a @code{\midi} command in a @code{\score}, only MIDI will
1203 be produced. If notation is needed too, a @code{\paper} block must be
1209 \midi @{ \tempo 4=72 @}
1217 @section Adding titles
1219 Bibliographic information is entered in a separate block, the
1220 @code{\header} block. The name of the piece, its composer, etc., are
1221 entered as an assignment, within @code{\header
1222 @{@tie{}@dots{}@tie{}@}}. The @code{\header} block is usually put at
1223 the top of the file. For example,
1227 title = "Eight miniatures"
1228 composer = "Igor Stravinsky"
1229 tagline = "small is beautiful"
1235 @cindex bibliographic information
1238 @cindex Engraved by LilyPond
1240 When the file is processed the title and composer are printed above
1241 the music. The `tagline' is a short line printed at bottom of the last
1242 page which normally says `Engraved by LilyPond, version @dots{}'. In
1243 the example above it is replaced by the line `small is
1244 beautiful.'@footnote{Nicely printed parts are good PR for us, so
1245 please leave the tagline if you can.}
1248 The @code{\header} block is usually put at the top of the file.
1250 A document may contains multiple pieces of music, examples are an
1251 etude book, or an orchestral part with multiple movements.
1252 @c FIXME: ugh. \header can only live at toplevel, or inside \score.
1253 @c If we allow it also to live inside \book, we do not need \score here?
1254 The @code{\book} block is used to group the individual @code{\score}
1257 The header for each piece of music can be put inside the @code{\score}
1258 block. The @code{piece} name from the header will be printed before
1263 FIXME: introduce \BOOK
1265 FIXME: Using "Adagio" as a name is confusing, it's more common to be
1266 a plain tempo indication.
1268 Since today (CVS-1.211) we also allow headers and composite music
1281 @cindex Engraved by LilyPond
1282 @cindex signature line
1287 title = "Eight miniatures"
1288 composer = "Igor Stravinsky"
1289 tagline = "small is beautiful"
1295 \header @{ piece = "Adagio" @}
1299 \header @{ piece = "Menuetto" @}
1304 More information on titling can be found in @ref{Invoking lilypond}.
1307 @node Single staff polyphony
1308 @section Single staff polyphony
1311 @cindex multiple voices
1312 @cindex voices, more -- on a staff
1313 When different melodic lines are combined on a single staff they are
1314 printed as polyphonic voices; each voice has its own stems, slurs and
1315 beams, and the top voice has the stems up, while the bottom voice has
1318 Entering such parts is done by entering each voice as a sequence (with
1319 @code{@{...@}}), and combining those simultaneously, separating the
1320 voices with @code{\\}
1322 @lilypond[quote,verbatim,relative=3]
1323 << { a4 g2 f4~ f4 } \\
1327 For polyphonic music typesetting, spacer rests can also be convenient; these
1328 are rests that do not print. It is useful for filling up voices that
1329 temporarily do not play. Here is the same example with a spacer rest
1330 instead of a normal rest---just use @samp{s} instead of @samp{r}
1332 @lilypond[quote,verbatim,relative=3]
1333 << { a4 g2 f4~ f4 } \\
1338 Again, these expressions can be nested arbitrarily
1340 @lilypond[quote,fragment,verbatim,relative=3]
1348 { <c, g>1 ~ <c g>4 } \\
1354 More features of polyphonic typesetting in the notation manual are
1355 described in @ref{Polyphony}.
1359 @section Piano staves
1361 @cindex staff switch, manual
1362 @cindex cross staff voice, manual
1363 @cindex @code{\context}
1364 Piano music is typeset in two staves connected by a brace. Printing
1365 such a staff is similar to the polyphonic example in @ref{More staves},
1368 << \new Staff @{ @dots{} @}
1369 \new Staff @{ @dots{} @} >>
1373 but now this entire expression must be interpreted as a
1377 \new PianoStaff << \new Staff @dots{} >>
1380 Here is a full-fledged example
1382 @lilypond[quote,verbatim,relative=1,fragment]
1384 \new Staff { \time 2/4 c4 c g' g }
1385 \new Staff { \clef bass c,, c' e c }
1389 More information on formatting piano music is in @ref{Piano music}.
1392 @node Organizing larger pieces
1393 @section Organizing larger pieces
1395 When all of the elements discussed earlier are combined to produce
1396 larger files, the @code{\score} blocks get a lot bigger, because the
1397 music expressions are longer, and, in the case of polyphonic pieces,
1398 more deeply nested. Such large expressions can become unwieldy.
1400 By using variables, also known as identifiers, it is possible to break
1401 up complex music expressions. An identifier is assigned as follows
1404 namedMusic = \notes @{ @dots{} @}
1408 The contents of the music expression @code{namedMusic}, can be used
1409 later by preceding the name with a backslash, i.e., @code{\namedMusic}.
1410 In the next example, a two-note motive is repeated two times by using
1411 variable substitution
1413 @lilypond[quote,raggedright,verbatim,nofragment]
1417 { \seufzer \seufzer }
1420 The name of an identifier should have alphabetic characters only;
1421 no numbers, underscores or dashes. The assignment should be outside of
1422 the @code{\score} block.
1424 It is possible to use variables for many other types of objects in the
1430 aFivePaper = \paper @{ paperheight = 21.0 \cm @}
1433 Depending on its contents, the identifier can be used in different
1434 places. The following example uses the above variables
1438 \notes @{ c4^\name @}
1446 More information on the possible uses of identifiers is in the
1447 technical manual, in TODO.
1450 @node An orchestral part
1451 @section An orchestral part
1453 In orchestral music, all notes are printed twice; in a part for
1454 the musicians, and in a full score for the conductor. Identifiers can
1455 be used to avoid double work. The music is entered once, and stored in
1456 a variable. The contents of that variable is then used to generate
1457 both the part and the score.
1459 It is convenient to define the notes in a special file. For example,
1460 suppose that the file @file{horn-music.ly} contains the following part
1461 of a horn/bassoon duo
1464 hornNotes = \notes \relative c @{
1471 Then, an individual part is made by putting the following in a file
1474 \include "horn-music.ly"
1476 instrument = "Horn in F"
1479 \notes \transpose f c' \hornNotes
1486 \include "horn-music.ly"
1490 substitutes the contents of @file{horn-music.ly} at this position in
1491 the file, so @code{hornNotes} is defined afterwards. The command
1492 @code{\transpose f@tie{}c'} indicates that the argument, being
1493 @code{\hornNotes}, should be transposed by a fifth downwards. Sounding
1494 @samp{f} is denoted by notated @code{c'}, which corresponds with
1495 tuning of a normal French Horn in@tie{}F. The transposition can be seen
1496 in the following output
1498 @lilypond[quote,raggedright]
1500 \notes \transpose f c' \notes \relative c {
1507 In ensemble pieces, one of the voices often does not play for many
1508 measures. This is denoted by a special rest, the multi-measure
1509 rest. It is entered with a capital @samp{R} followed by a duration
1510 (1@tie{}for a whole note, 2@tie{}for a half note, etc.). By multiplying the
1511 duration, longer rests can be constructed. For example, this rest
1512 takes 3@tie{}measures in 2/4 time
1518 When printing the part, multi-rests
1519 must be condensed. This is done by setting a run-time variable
1522 \set Score.skipBars = ##t
1526 This command sets the property @code{skipBars} in the
1527 @code{Score} context to true (@code{##t}). Prepending the rest and
1528 this option to the music above, leads to the following result
1530 @lilypond[quote,raggedright]
1532 \notes \transpose f c' \relative c {
1534 \set Score.skipBars = ##t
1542 The score is made by combining all of the music in a @code{\score}
1543 block. Assuming that the other voice is in @code{bassoonNotes} in the
1544 file @file{bassoon-music.ly}, a score is made with
1547 \include "bassoon-music.ly"
1548 \include "horn-music.ly"
1552 \new Staff \hornNotes
1553 \new Staff \bassoonNotes
1561 @lilypond[quote,raggedright]
1563 \notes \relative c \simultaneous {
1570 r4 d,8 f | gis4 c | b bes |
1571 a8 e f4 | g d | gis f
1577 More in-depth information on preparing parts and scores can be found
1578 in the notation manual; see @ref{Orchestral music}.
1580 Setting run-time variables (`properties') is discussed in ref-TODO.
1583 @node Integrating text and music
1584 @section Integrating text and music
1586 @cindex La@TeX{}, music in
1587 @cindex HTML, music in
1588 @cindex Texinfo, music in
1589 Some texts include music examples. Examples are musicological
1590 treatises, songbooks or manuals like this. Such texts can be made by
1591 hand, simply by importing a PostScript figure into the word processor.
1592 However, there is an automated procedure to reduce the amount of work
1593 involved HTML, La@TeX{}, and Texinfo documents.
1595 A script called @code{lilypond-book} will extract the music fragments,
1596 run format them, and put back the resulting notation. This program is
1597 fully described in @ref{lilypond-book manual}. Here we show a small
1598 example. The example also contains explanatory text, so we will not
1599 comment on it further
1602 \documentclass[a4paper]@{article@}
1605 Documents for lilypond-book may freely mix music and text. For
1609 \score @{ \notes \relative c' @{
1610 c2 g'2 \times 2/3 @{ f8 e d @} c'2 g4
1614 If there is no \verb+\score+ block in the fragment,
1615 \texttt@{lilypond-book@} will supply one
1617 \begin[quote]@{lilypond@}
1622 In this example two things happened. A
1623 \verb+\score+ block was added, and the line width was set to natural
1626 Options are put in brackets.
1628 \begin[quote,staffsize=26,verbatim]@{lilypond@}
1632 Larger examples can be put in a separate file, and introduced with
1633 \verb+\lilypondfile+.
1635 \lilypondfile[quote,noindent]@{screech-boink.ly@}
1640 Under Unix, you can view the results as follows
1645 $ lilypond-book --output=out/ lilybook.tex
1646 lilypond-book (GNU LilyPond) 2.1.19
1647 Reading `input/tutorial/lilybook.tex'
1648 Reading `input/screech-boink.ly'
1649 @var{lots of stuff deleted}
1650 Writing `out/lilybook.tex'
1653 @var{lots of stuff deleted}
1657 To convert the file into a nice PDF document, run the following
1661 $ dvips -Ppdf -u +lilypond lilybook
1662 $ ps2pdf lilybook.ps
1665 Running lilypond-book and running latex creates a lot of temporary
1666 files, which would clutter up the working directory. To remedy this,
1667 use the @code{--output=@var{dir}} option. It will create the files in
1668 a separate subdirectory @file{dir}.
1670 Finally the result of the La@TeX{} example shown above.@footnote{Note
1671 that in this tutorial the example is processed with Texinfo. This gives
1672 slightly different results in layout.} This finishes the tutorial
1677 Documents for lilypond-book may freely mix music and text. For
1681 \score { \notes \relative c' {
1682 c2 g'2 \times 2/3 { f8 e d } c'2 g4
1686 If there is no @code{\score} block in the fragment,
1687 @code{lilypond-book} will supply one
1689 @lilypond[fragment,quote]
1694 In this example two things happened. A
1695 @code{score} block was added, and the line width was set to natural
1698 Options are put in brackets.
1700 @lilypond[fragment,quote,staffsize=26,verbatim]
1704 Larger examples can be put in a separate file, and introduced with
1705 @code{\lilypondfile}.
1707 @lilypondfile[quote,noindent]{screech-boink.ly}