1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @c This file is part of lilypond-learning.tely
4 Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
6 When revising a translation, copy the HEAD committish of the
7 version that you are working on. See TRANSLATION for details.
13 Tutorial guidelines: (different from policy.txt!)
14 - unless you have a really good reason, use either
15 @lilypond[verbatim,quote]
17 @lilypond[verbatim,quote,relative=2]
19 Don't use any other relative=X commands.
21 - use "aes" and "ees" instead of "as" and "es". I know it's not
22 correct Dutch naming, but let's not confuse people with this
23 until we get to the Basic notation chapter.
25 - Add "Music Glossary: @rglos{foo}" to the *top* of the relevant
26 portions of the tutorial.
34 This tutorial starts with an introduction to the LilyPond music
35 language and explains how to produce printed music. After this first
36 contact we will explain how to create beautiful printed music
37 containing common musical notation.
41 * Single staff notation::
42 * Multiple notes at once::
51 This section gives a basic introduction to working with LilyPond.
56 * Working on input files::
57 * How to read the manual::
61 @node Compiling a file
62 @subsection Compiling a file
66 @cindex example, first
67 @cindex case sensitive
69 @qq{Compiling} is the term used for processing an input file
70 in LilyPond format to produce a file which can be printed and
71 (optionally) a MIDI file which can be played. LilyPond input
72 files are simple text files. The first example
73 shows what a simple input file looks like.
75 To create sheet music, we write an input file that specifies the
76 notation. For example, if we write:
85 the result looks like this:
87 @c in this case we don't want verbatim
94 @warning{Notes and lyrics in LilyPond input must always be
95 surrounded by @strong{@{ curly braces @}}. The braces
96 should also be surrounded by a space unless they are at the
97 beginning or end of a line to avoid ambiguities. The braces may
98 be omitted in some examples in this manual, but don't forget them
99 in your own music! For more information about the display of
100 examples in the manual, see @ref{How to read the manual}.}
102 In addition, LilyPond input is @strong{case sensitive}.
103 @w{@code{@{ c d e @}}} is valid input; @w{@code{@{ C D E @}}} will
104 produce an error message.
108 @subheading Entering music and viewing output
111 @cindex viewing music
113 @cindex running LilyPond under MacOS X
114 @cindex MacOS X, running LilyPond
115 @cindex running LilyPond under Windows
116 @cindex Windows, running LilyPond
117 @cindex running LilyPond under Unix
118 @cindex Unix, running LilyPond
120 In this section we will explain what commands to run and how to
121 view or print the output.
123 Note that there are several other text editors available with
124 better support for LilyPond. For more information, see
125 @rprogram{Text editor support}.
127 @warning{The first time you ever run LilyPond, it may take a
128 minute or two because all of the system fonts have to be analyzed
129 first. After this, LilyPond will be much faster!}
131 @subsubheading MacOS X
133 If you double click @command{LilyPond.app}, it will open with an
134 example file. Save it, for example, to @file{test.ly} on your
135 Desktop, and then process it with the menu command
136 @w{@code{Compile > Typeset File}}. The resulting PDF file will be
137 displayed on your screen.
139 For future use of LilyPond, you should begin by selecting @q{New}
140 or @q{Open}. You must save your file before typesetting it. If
141 any errors occur in processing, please see the log window.
144 @subsubheading Windows
146 On Windows, if you double-click in the LilyPond icon on the
147 Desktop, it will open a simple text editor with an example file.
148 Save it, for example, to @file{test.ly} on your Desktop and then
149 double-click on the file to process it (the file icon looks like a
150 note). After some seconds, you will get a file @file{test.pdf} on
151 your desktop. Double-click on this PDF file to view the typeset
152 score. An alternative method to process the @file{test.ly} file
153 is to drag and drop it onto the LilyPond icon using your mouse
156 To edit an existing @file{.ly} file, right-click on it and
157 select @qq{Edit source}. To get an empty file to start from, run
158 the editor as described above and use @qq{New} in
159 the @qq{File} menu, or right-click on the desktop and select
160 @qq{New..Text Document}, change its name to a name of your choice
161 and change the file extension to @code{.ly}. Double-click the
162 icon to type in your LilyPond source code as before.
164 Double-clicking the file does not only result in a PDF file, but
165 also produces a @file{.log} file that contains some information on
166 what LilyPond has done to the file. If any errors occur, please
171 Create a text file called @file{test.ly} and enter:
179 To process @file{test.ly}, proceed as follows:
186 You will see something resembling:
190 GNU LilyPond @version{}
193 Interpreting music...
194 Preprocessing graphical objects...
195 Finding the ideal number of pages...
196 Fitting music on 1 page...
198 Layout output to `test.ps'...
199 Converting to `test.pdf'...
203 @node Simple notation
204 @subsection Simple notation
206 @cindex simple notation
207 @cindex notation, simple
209 LilyPond will add some notation elements automatically. In the
210 next example, we have only specified four pitches, but LilyPond
211 has added a clef, time signature, and rhythms.
213 @lilypond[verbatim,quote]
220 This behavior may be altered, but in most cases these automatic
227 @cindex relative mode
228 @cindex quote, single
230 @cindex accidentals and relative mode
231 @cindex relative mode, and accidentals
238 Music Glossary: @rglos{pitch}, @rglos{interval},
239 @rglos{scale}, @rglos{middle C}, @rglos{octave},
242 The easiest way to enter notes is by using @code{\relative} mode.
243 In this mode, the octave is chosen automatically by assuming the
244 following note is always to be placed closest to the previous
245 note, i.e., it is to be placed in the octave which is within three
246 staff spaces of the previous note. We begin by entering the most
247 elementary piece of music, a @notation{scale}, in which every note
248 is within just one staff space of the previous note.
250 @lilypond[verbatim,quote]
251 % set the starting point to middle C
258 The initial note is @notation{middle C}. Each successive note is
259 placed closest to the previous note -- in other words, the first
260 @code{c} is the closest C to middle C. This is followed by the
261 closest D to the previous note. We can create melodies which have
262 larger intervals, still using only @code{\relative} mode:
264 @lilypond[verbatim,quote]
272 It is not necessary for the first note of the melody to start on
273 the note which specifies the starting pitch. In the previous
274 example, the first note -- the @code{d} -- is the closest D to
277 By adding (or removing) quotes @code{'} or commas @code{,} from
278 the @code{@w{\relative c' @{}} command, we can change the starting
281 @lilypond[verbatim,quote]
282 % one octave above middle C
288 Relative mode can be confusing initially, but is the easiest way
289 to enter most melodies. Let us see how this relative calculation
290 works in practice. Starting from a B, which is on the middle line
291 in a treble clef, you can reach a C, D and E within 3 staff spaces
292 going up, and an A, G and F within 3 staff spaces going down. So
293 if the note following a B is a C, D or E it will be assumed to be
294 above the B, and an A, G or F will be assumed to be below.
296 @lilypond[verbatim,quote]
298 b c % c is 1 staff space up, so is the c above
299 b d % d is 2 up or 5 down, so is the d above
300 b e % e is 3 up or 4 down, so is the e above
301 b a % a is 6 up or 1 down, so is the a below
302 b g % g is 5 up or 2 down, so is the g below
303 b f % f is 4 up or 3 down, so is the f below
307 Exactly the same happens even when any of these notes are
308 sharpened or flattened. @notation{Accidentals} are
309 @strong{totally ignored} in the calculation of relative position.
310 Precisely the same staff space counting is done from a note at any
311 other position on the staff.
313 To add intervals that are larger than three staff spaces, we can
314 raise the @notation{octave} by adding a single quote @code{'} (or
315 apostrophe) to the note name. We can lower the octave by adding a
316 comma @code{,} to the note name.
318 @lilypond[verbatim,quote]
326 To change a note by two (or more!) octaves, we use multiple
327 @code{''} or @code{,,} -- but be careful that you use two single
328 quotes @code{''} and not one double quote @code{"}@tie{}! The
329 initial value in @code{@w{\relative c'}} may also be modified like
331 @c " - keeps quotes in order for context-sensitive editor -td
333 @subheading Durations (rhythms)
335 @cindex note durations
342 @cindex notating durations
344 Music Glossary: @rglos{beam}, @rglos{duration},
345 @rglos{whole note}, @rglos{half note}, @rglos{quarter note},
348 The @notation{duration} of a note is specified by a number after
349 the note name. @code{1} for a @notation{whole note}, @code{2} for
350 a @notation{half note}, @code{4} for a @notation{quarter note} and
351 so on. @notation{Beams} are added automatically.
353 If you do not specify a duration, the previous duration is used
354 for the next note. The duration of the first note defaults to a
357 @lilypond[verbatim,quote]
361 a16 a a a a32 a a a a64 a a a a a a a a2
365 To create @notation{dotted notes}, add a dot @code{.} to the
366 duration number. The duration of a dotted note must be stated
367 explicitly (i.e., with a number).
369 @lilypond[verbatim,quote]
380 @cindex notating rests
382 Music Glossary: @rglos{rest}.
384 A @notation{rest} is entered just like a note with the name
387 @lilypond[verbatim,quote]
395 @subheading Time signature
397 @cindex time signature
402 Music Glossary: @rglos{time signature}.
404 The @notation{time signature} can be set with the @code{\time}
407 @lilypond[verbatim,quote]
430 Music Glossary: @rglos{clef}.
432 The @notation{clef} can be set using the @code{\clef} command:
434 @lilypond[verbatim,quote]
448 @subheading All together
450 Here is a small example showing all these elements together:
452 @lilypond[verbatim,quote]
463 Notation Reference: @ruser{Writing pitches},
464 @ruser{Writing rhythms}, @ruser{Writing rests},
465 @ruser{Time signature}, @ruser{Clef}.
468 @node Working on input files
469 @subsection Working on input files
472 @cindex braces, curly
475 @cindex comment, line
476 @cindex block comment
477 @cindex comment, line
478 @cindex case sensitive
479 @cindex whitespace insensitive
484 @funindex %@{ ... %@}
486 LilyPond input files are similar to source files in many common
487 programming languages. They are case sensitive, and white-space
488 is generally ignored. Expressions are formed with curly braces
489 @{ @}, and comments are denoted with @code{%} or
490 @w{@code{%@{ ... %@}}}.
492 If the previous sentences sound like nonsense, don't worry! We'll
493 explain what all these terms mean:
498 @strong{Case sensitive}:
499 it matters whether you enter a letter in lower case (e.g.
500 @w{@code{a, b, s, t}}) or upper case (e.g. @w{@code{A, B, S, T}}).
501 Notes are lower case: @w{@code{@{ c d e @}}} is valid input;
502 @w{@code{@{ C D E @}}} will produce an error message.
505 @strong{Whitespace insensitive}:
506 it does not matter how many spaces (or new lines) you add.
507 @w{@code{@{ c d e @}}} means the same thing as
508 @w{@code{@{ c @tie{}} @tie{} @tie{} d e @}} and:
516 Of course, the previous example is hard to read. A good rule of
517 thumb is to indent code blocks with either a tab or two spaces:
526 @strong{Expressions}:
527 every piece of LilyPond input needs to have @strong{@{ curly
528 braces @}} placed around the input. These braces tell LilyPond
529 that the input is a single music expression, just like parentheses
530 @code{()} in mathematics. The braces should be surrounded by a
531 space unless they are at the beginning or end of a line to avoid
534 A LilyPond command followed by a simple expression in braces (such
535 as @w{@code{\relative @{ @}}}) also counts as a single music
540 @cindex block comment
543 a comment is a remark for the human reader of the music input; it
544 is ignored while parsing, so it has no effect on the printed
545 output. There are two types of comments. The percent symbol
546 @code{%} introduces a line comment; anything after @code{%} on
547 that line is ignored. By convention, a line comment is placed
548 @emph{above} the code it refers to.
552 % this comment refers to the Bs
556 A block comment marks a whole section of music input as a comment.
557 Anything that is enclosed in @code{%@{} and @code{%@}} is ignored.
558 However, block comments do not @q{nest}. This means that you
559 cannot place a block comment inside another block comment. If you
560 try, the first @code{%@}} will terminate @emph{both} block
561 comments. The following fragment shows possible uses for
565 % notes for twinkle twinkle follow
569 This line, and the notes below are ignored,
570 since they are in a block comment.
579 @node How to read the manual
580 @subsection How to read the manual
582 @cindex how to read the manual
583 @cindex manual, reading
584 @cindex reading the manual
585 @cindex examples, clickable
586 @cindex clickable examples
587 @cindex tips for constructing files
589 @cindex constructing files, tips
590 @cindex files, tips for constructing
592 LilyPond input must be surrounded by @{ @} marks or a
593 @code{@w{\relative c'' @{ ... @}}}, as we saw in @ref{Working on
594 input files}. For the rest of this manual, most examples will
595 omit this. To replicate the examples, you may copy and paste the
596 displayed input, but you @strong{must} add the
597 @code{@w{\relative c'' @{ @}}} like this:
601 ... example goes here...
605 Why omit the braces? Most examples in this manual can be inserted
606 into the middle of a longer piece of music. For these examples,
607 it does not make sense to add @code{@w{\relative c'' @{ @}}} --
608 you should not place a @code{\relative} inside another
609 @code{\relative}! If we included @code{@w{\relative c'' @{ @}}}
610 around every example, you would not be able to copy a small
611 documentation example and paste it inside a longer piece of your
612 own. Most people want to add material to an existing piece, so we
613 format the manual this way.
616 @subheading Clickable examples
618 Many people learn programs by trying and fiddling around with the
619 program. This is also possible with LilyPond. If you click on a
620 picture in the HTML version of this manual, you will see the exact
621 LilyPond input that was used to generate that image. Try it on
627 c-\markup { \bold \huge { Click here. } }
631 By cutting and pasting everything in the @qq{ly snippet} section,
632 you have a starting template for experiments. To see exactly the
633 same output (line-width and all), copy everything from @qq{Start
634 cut-&-pastable section} to the bottom of the file.
638 There are more tips for constructing input files in
639 @ref{Suggestions for writing LilyPond input files}. But it might be
640 best to read through the rest of the tutorial first.
643 @node Single staff notation
644 @section Single staff notation
646 This section introduces common notation that is used for one voice
650 * Accidentals and key signatures::
652 * Articulation and dynamics::
654 * Automatic and manual beams::
655 * Advanced rhythmic commands::
659 @node Accidentals and key signatures
660 @subsection Accidentals and key signatures
662 @subheading Accidentals
665 @cindex accidentals and key signatures
668 @cindex sharp, double
678 Music Glossary: @rglos{sharp}, @rglos{flat}, @rglos{double sharp},
679 @rglos{double flat}, @rglos{accidental}.
681 A @notation{sharp} pitch is made by adding @code{is} to the name,
682 and a @notation{flat} pitch by adding @code{es}. As you might
683 expect, a @notation{double sharp} or @notation{double flat} is
684 made by adding @code{isis} or @code{eses}. This syntax is derived
685 from note naming conventions in Nordic and Germanic languages,
686 like German and Dutch. To use other names for
687 @notation{accidentals}, see @ruser{Note names in other languages}.
689 @lilypond[verbatim,quote,relative=2]
690 cis1 ees fisis, aeses
693 @cindex key signature, setting
694 @subheading Key signatures
696 @cindex key signature
699 @cindex accidentals and key signature
700 @cindex content vs. layout
701 @cindex layout vs. content
710 Music Glossary: @rglos{key signature}, @rglos{major},
713 The @notation{key signature} is set with the command @code{\key}
714 followed by a pitch and @code{\major} or @code{\minor}.
716 @lilypond[verbatim,quote,relative=2]
725 @subheading Warning: key signatures and pitches
727 Music Glossary: @rglos{accidental}, @rglos{key signature},
728 @rglos{pitch}, @rglos{flat}, @rglos{natural}, @rglos{sharp},
729 @rglos{transposition}.
731 To determine whether to print an @notation{accidental}, LilyPond
732 examines the pitches and the @notation{key signature}. The key
733 signature only affects the @emph{printed} accidentals, not the
734 note's @notation{pitch}! This is a feature that often causes
735 confusion to newcomers, so let us explain it in more detail.
737 LilyPond makes a sharp distinction between musical content and
738 layout. The alteration (@notation{flat}, @notation{natural sign} or
739 @notation{sharp}) of a note is part of the pitch, and is therefore
740 musical content. Whether an accidental (a @emph{printed} flat,
741 natural or sharp sign) is printed in front of the corresponding
742 note is a question of layout. Layout is something that follows
743 rules, so accidentals are printed automatically according to those
744 rules. The pitches in your music are works of art, so they will
745 not be added automatically, and you must enter what you want to
750 @lilypond[verbatim,quote,relative=2]
756 No note has a printed accidental, but you must still add
757 @code{is} and type @code{cis} and @code{fis} in the input file.
759 The code @code{b} does not mean @qq{print a black dot just on
760 the middle line of the staff.} Rather, it means @qq{there is a
761 note with pitch B-natural.} In the key of A-flat major, it
762 @emph{does} get an accidental:
764 @lilypond[verbatim,quote,relative=2]
769 Adding all alterations explicitly might require a little more
770 effort when typing, but the advantage is that
771 @notation{transposing} is easier, and accidentals can be printed
772 according to different conventions. For some examples how
773 accidentals can be printed according to different rules, see
774 @ruser{Automatic accidentals}.
778 Notation Reference: @ruser{Note names in other languages},
779 @ruser{Accidentals}, @ruser{Automatic accidentals},
780 @ruser{Key signature}.
782 Music Glossary: @rglos{Pitch names}.
786 @subsection Ties and slurs
790 @cindex slur, phrasing
791 @cindex phrasing slur
800 Music Glossary: @rglos{tie}.
802 A @notation{tie} is created by appending a tilde @code{~} to the
803 first note being tied.
805 @lilypond[verbatim,quote,relative=2]
813 Music Glossary: @rglos{slur}.
815 A @notation{slur} is a curve drawn across many notes. The
816 starting note and ending note are marked with @code{(} and
817 @code{)} respectively.
819 @lilypond[verbatim,quote,relative=2]
820 d4( c16) cis( d e c cis d) e( d4)
823 @subheading Phrasing slurs
825 Music Glossary: @rglos{slur}, @rglos{phrasing}.
827 Slurs to indicate longer @notation{phrasing} can be entered with
828 @code{\(} and @code{\)}. You can have both @notation{slurs}
829 and phrasing slurs at the same time, but you cannot have
830 simultaneous slurs or simultaneous phrasing slurs.
832 @lilypond[verbatim,quote,relative=2]
833 a8(\( ais b c) cis2 b'2 a4 cis,\)
838 @cindex slurs versus ties
839 @subheading Warnings: slurs vs. ties
841 Music Glossary: @rglos{articulation}, @rglos{slur}, @rglos{tie}.
843 A @notation{slur} looks like a @notation{tie}, but it has a
844 different meaning. A tie simply makes the first note longer, and
845 can only be used on pairs of notes with the same pitch. Slurs
846 indicate the @notation{articulation} of notes, and can be used on
847 larger groups of notes. Slurs and ties can be nested.
849 @lilypond[verbatim,quote,relative=2]
850 c2~( c8 fis fis4 ~ fis2 g2)
855 Notation Reference: @ruser{Ties}, @ruser{Slurs},
856 @ruser{Phrasing slurs}.
859 @node Articulation and dynamics
860 @subsection Articulation and dynamics
863 @subheading Articulations
869 Music Glossary: @rglos{articulation}.
871 Common @notation{articulations} can be added to a note using a
872 dash @code{-} and a single character:
874 @lilypond[verbatim,quote,relative=2]
875 c-. c-- c-> c-^ c-+ c-_
878 @subheading Fingerings
885 Music Glossary: @rglos{fingering}.
887 Similarly, @notation{fingering} indications can be added to a note
888 using a dash (@code{-}) and the digit to be printed:
890 @lilypond[verbatim,quote,relative=2]
894 Articulations and fingerings are usually placed automatically, but
895 you can specify a direction by replacing the dash (@code{-}) with
896 @code{^} (up) or @code{_} (down). You can also use multiple
897 articulations on the same note. However, in most cases it is best
898 to let LilyPond determine the articulation directions.
900 @lilypond[verbatim,quote,relative=2]
901 c_-^1 d^. f^4_2-> e^-_+
923 Music Glossary: @rglos{dynamics}, @rglos{crescendo},
926 @notation{Dynamic} signs are made by adding the markings (with a
927 backslash) to the note:
929 @lilypond[verbatim,quote,relative=2]
934 @notation{Crescendi} and @notation{decrescendi} are started with
935 the commands @code{\<} and @code{\>}. The next dynamics sign, for
936 example @code{\f}, will end the (de)crescendo, or the command
937 @code{\!} can be used:
939 @lilypond[verbatim,quote,relative=2]
945 Notation Reference: @ruser{Articulations and ornamentations},
946 @ruser{Fingering instructions}, @ruser{Dynamics}.
950 @subsection Adding text
959 Text may be added to your scores:
961 @lilypond[verbatim,quote,relative=2]
965 Extra formatting may be added with the @code{\markup} command:
967 @lilypond[verbatim,quote,relative=2]
968 c1^\markup{ \bold espr}
970 \dynamic f \italic \small { 2nd } \hspace #0.1 \dynamic p
976 Notation Reference: @ruser{Writing text}.
979 @node Automatic and manual beams
980 @subsection Automatic and manual beams
983 @cindex automatic beams
985 @cindex beams, automatic
986 @cindex beams, manual
987 @cindex beams, by hand
992 @funindex \autoBeamOff
993 @funindex autoBeamOff
994 @funindex \autoBeamOn
997 Music Glossary: @rglos{beam}.
999 All @notation{beams} are drawn automatically:
1001 @lilypond[verbatim,quote,relative=2]
1002 a8 ais d ees r d c16 b a8
1005 If you do not like the automatic beams, they may be overridden
1006 manually. To correct just an occasional beam mark the first note
1007 to be beamed with @code{[} and the last one with @code{]}.
1009 @lilypond[verbatim,quote,relative=2]
1010 a8[ ais] d[ ees r d] a b
1013 If you want to turn off automatic beaming entirely or for an
1014 extended section of music, use the command @code{\autoBeamOff}
1015 to turn off automatic beaming and @code{\autoBeamOn} to turn it
1018 @lilypond[verbatim,quote,relative=2]
1027 Notation Reference: @ruser{Automatic beams}, @ruser{Manual beams}.
1030 @node Advanced rhythmic commands
1031 @subsection Advanced rhythmic commands
1033 @subheading Partial measure
1037 @cindex partial measure
1042 Music Glossary: @rglos{anacrusis}.
1044 A pickup (or @notation{anacrusis}) is entered with the keyword
1045 @code{\partial}. It is followed by a duration: @code{\partial 4}
1046 is a quarter note pickup and @code{\partial 8} an eighth note.
1048 @lilypond[verbatim,quote,relative=2]
1061 Music Glossary: @rglos{note value}, @rglos{triplet}.
1063 @notation{Tuplets} are made with the @code{\times} keyword. It
1064 takes two arguments: a fraction and a piece of music. The
1065 duration of the piece of music is multiplied by the fraction.
1066 Triplets make notes occupy 2/3 of their notated duration, so a
1067 @notation{triplet} has 2/3 as its fraction
1069 @lilypond[verbatim,quote,relative=2]
1070 \times 2/3 { f8 g a }
1071 \times 2/3 { c r c }
1072 \times 2/3 { f,8 g16[ a g a] }
1073 \times 2/3 { d4 a8 }
1076 @subheading Grace notes
1079 @cindex acciaccatura
1080 @cindex appoggiatura
1084 @funindex \acciaccatura
1085 @funindex acciaccatura
1086 @funindex \appoggiatura
1087 @funindex acciaccatura
1089 Music Glossary: @rglos{grace notes}, @rglos{acciaccatura},
1090 @rglos{appoggiatura}.
1092 @notation{Grace notes} are created with the @code{\grace} command,
1093 although they can also be created by prefixing a music expression
1094 with the keyword @code{\appoggiatura} or @code{\acciaccatura}:
1096 @lilypond[verbatim,quote,relative=2]
1097 c2 \grace { a32[ b] } c2
1098 c2 \appoggiatura b16 c2
1099 c2 \acciaccatura b16 c2
1104 Notation Reference: @ruser{Grace notes}, @ruser{Tuplets},
1108 @node Multiple notes at once
1109 @section Multiple notes at once
1111 This section introduces having more than one note at the same
1112 time: multiple instruments, multiple staves for a single
1113 instrument (i.e. piano), and chords.
1115 Polyphony in music refers to having more than one voice occurring
1116 in a piece of music. Polyphony in LilyPond refers to having more
1117 than one voice on the same staff.
1120 * Music expressions explained::
1123 * Combining notes into chords::
1124 * Single staff polyphony::
1128 @node Music expressions explained
1129 @subsection Music expressions explained
1131 @cindex music expression
1132 @cindex expression, music
1133 @cindex compound music expression
1134 @cindex music expression, compound
1136 In LilyPond input files, music is represented by @emph{music
1137 expressions}. A single note is a music expression:
1139 @lilypond[verbatim,quote,relative=2]
1143 Enclosing a note in braces creates a @emph{compound music
1144 expression}. Here we have created a compound music expression
1147 @lilypond[verbatim,quote,relative=2]
1151 Putting a group of music expressions (e.g. notes) in braces means
1152 that they are in sequence (i.e. each one follows the previous
1153 one). The result is another music expression:
1155 @lilypond[verbatim,quote,relative=2]
1159 @subheading Analogy: mathematical expressions
1161 This mechanism is similar to mathematical formulas: a big formula
1162 is created by composing small formulas. Such formulas are called
1163 expressions, and they can contain other expressions, so you can
1164 make arbitrarily complex and large expressions. For example,
1173 ((1 + 2) * 3) / (4 * 5)
1176 This is a sequence of expressions, where each expression is
1177 contained in the next (larger) one. The simplest expressions are
1178 numbers, and larger ones are made by combining expressions with
1179 operators (like @code{+}, @code{*} and @code{/}) and parentheses.
1180 Like mathematical expressions, music expressions can be nested
1181 arbitrarily deep, which is necessary for complex music like
1185 @subheading Simultaneous music expressions: multiple staves
1187 @cindex multiple staves
1188 @cindex staves, multiple
1190 @cindex combining expressions in parallel
1191 @cindex parallel expressions
1192 @cindex expressions, parallel
1193 @cindex relative notes and simultaneous music
1194 @cindex relative notes and parallel expressions
1195 @cindex simultaneous music and relative notes
1196 @cindex parallel expressions and relative notes
1202 Music Glossary: @rglos{polyphony}.
1204 This technique is useful for @notation{polyphonic} music. To
1205 enter music with more voices or more staves, we combine
1206 expressions in parallel. To indicate that two voices should play
1207 at the same time, simply enter a simultaneous combination of music
1208 expressions. A @q{simultaneous} music expression is formed by
1209 enclosing expressions inside @code{<<} and @code{>>}. In the
1210 following example, three sequences (all containing two separate
1211 notes) are combined simultaneously:
1213 @lilypond[verbatim,quote]
1223 Note that we have indented each level of the input with a
1224 different amount of space. LilyPond does not care how much (or
1225 little) space there is at the beginning of a line, but indenting
1226 LilyPond code like this makes it much easier for humans to read.
1228 @warning{each note is relative to the previous note in
1229 the input, not relative to the @code{c''} in the initial
1230 @code{@bs{}relative} command.}
1233 @subheading Simultaneous music expressions: single staff
1235 To determine the number of staves in a piece, LilyPond looks at
1236 the beginning of the first expression. If is a single note, there
1237 is one staff; if there is a simultaneous expression, there is more
1240 @lilypond[verbatim,quote]
1243 << { e f } { c <<b d>> } >>
1247 @node Multiple staves
1248 @subsection Multiple staves
1250 @cindex multiple staves
1251 @cindex staves, multiple
1253 @cindex context, notation
1254 @cindex notation context
1256 @funindex \new Staff
1264 @funindex ChordNames
1266 LilyPond input files are constructed out of music expressions, as
1267 we saw in @ref{Music expressions explained}. If the score begins
1268 with simultaneous music expressions, LilyPond creates multiples
1269 staves. However, it is easier to see what happens if we create
1270 each staff explicitly.
1272 To print more than one staff, each piece of music that makes up a
1273 staff is marked by adding @code{\new Staff} before it. These
1274 @code{Staff} elements are then combined in parallel with @code{<<}
1277 @lilypond[verbatim,quote]
1280 \new Staff { \clef treble c }
1281 \new Staff { \clef bass c,, }
1286 The command @code{\new} introduces a @q{notation context.} A
1287 notation context is an environment in which musical events (like
1288 notes or @code{\clef} commands) are interpreted. For simple
1289 pieces, such notation contexts are created automatically. For
1290 more complex pieces, it is best to mark contexts explicitly.
1292 There are several types of contexts. @code{Score}, @code{Staff},
1293 and @code{Voice} handle melodic notation, while @code{Lyrics} sets
1294 lyric texts and @code{ChordNames} prints chord names.
1296 In terms of syntax, prepending @code{\new} to a music expression
1297 creates a bigger music expression. In this way it resembles the
1298 minus sign in mathematics. The formula @math{(4+5)} is an
1299 expression, so @math{-(4+5)} is a bigger expression.
1301 Time signatures entered in one staff affects all other staves by
1302 default. On the other hand, the key signature of one staff does
1303 @emph{not} affect other staves. This different default behavior
1304 is because scores with transposing instruments are more common
1305 than polyrhythmic scores.
1307 @lilypond[verbatim,quote]
1310 \new Staff { \clef treble \key d \major \time 3/4 c }
1311 \new Staff { \clef bass c,, }
1320 @subsection Staff groups
1323 @cindex staff, piano
1325 @cindex staff, choir
1327 @cindex staff, grand
1330 @funindex PianoStaff
1331 @funindex GrandStaff
1332 @funindex ChoirStaff
1334 Music Glossary: @rglos{brace}.
1336 Piano music is typeset in two staves connected by a
1338 Printing such a staff is similar to the polyphonic example in
1339 @ref{Multiple staves}. However, now this entire expression is
1340 inserted inside a @code{PianoStaff}:
1349 Here is a small example:
1351 @lilypond[verbatim,quote]
1354 \new Staff { \time 2/4 c4 e g g, }
1355 \new Staff { \clef bass c,, c' e c }
1360 Other staff groupings are introduced with @code{\new GrandStaff},
1361 suitable for orchestral scores, and @w{@code{\new ChoirStaff}},
1362 suitable for vocal scores. These staff groups each form another
1363 type of context, one that generates the brace at the left end of
1364 every system and also controls the extent of bar lines.
1368 Notation Reference: @ruser{Keyboard and other multi-staff
1370 @ruser{Displaying staves}.
1373 @node Combining notes into chords
1374 @subsection Combining notes into chords
1377 @cindex note durations in chords
1383 Music Glossary: @rglos{chord}.
1385 We saw earlier how notes can be combined into @notation{chords} by
1386 indicating they are simultaneous by enclosing them in double angle
1387 brackets. However, the normal way of indicating a chord is to
1388 surround the pitches with @emph{single} angle brackets. Note that
1389 all the notes in a chord must have the same duration, and that the
1390 duration is placed after the closing bracket.
1392 @lilypond[verbatim,quote,relative=2]
1393 r4 <c e g>4 <c f a>2
1396 Think of chords as almost equivalent to single notes:
1397 almost everything you can attach to a single note can be attached
1398 to a chord, and everything must go @emph{outside} the angle
1399 brackets. For example, you can combine markings like beams and
1400 ties with chords. They must be placed outside the angle brackets.
1402 @lilypond[verbatim,quote,relative=2]
1403 r4 <c e g>8[ <c f a>]~ <c f a>2
1404 r4 <c e g>8( <c e g>\> <c e g>4 <c f a>\!)
1408 @node Single staff polyphony
1409 @subsection Single staff polyphony
1412 @cindex multiple voices
1413 @cindex voices, more on one staff
1414 @cindex single staff polyphony
1416 @cindex rest, spacer
1418 @funindex << ... \\ ... >>
1423 When different melodic lines are combined on a single staff they
1424 are printed as polyphonic voices; each voice has its own stems,
1425 slurs and beams, and the top voice has the stems up, while the
1426 bottom voice has them down.
1428 Entering such parts is done by entering each voice as a sequence
1429 (with @w{@code{@{...@}}}) and combining these simultaneously,
1430 separating the voices with @code{\\}:
1432 @lilypond[verbatim,quote,relative=2]
1439 For polyphonic music typesetting, spacer rests can also be
1440 convenient; these are rests that do not print. They are useful
1441 for filling up voices that temporarily do not play. Here is the
1442 same example with a spacer rest (@code{s}) instead of a normal
1445 @lilypond[verbatim,quote,relative=2]
1453 Again, these expressions can be nested arbitrarily.
1455 @lilypond[verbatim,quote,relative=2]
1463 { <c g>1 ~ <c g>4 } \\
1471 Notation Reference: @ruser{Simultaneous notes}.
1477 This section introduces vocal music and simple song sheets.
1480 * Setting simple songs::
1481 * Aligning lyrics to a melody::
1482 * Lyrics to multiple staves::
1486 @node Setting simple songs
1487 @subsection Setting simple songs
1492 @funindex \addlyrics
1495 Music Glossary: @rglos{lyrics}.
1497 Here is the start of the melody to a nursery
1498 rhyme, @notation{Girls and boys come out to play}:
1500 @lilypond[verbatim,quote]
1504 d4 b8 c4 a8 d4 b8 g4
1508 The @notation{lyrics} can be set to these notes, combining both
1509 with the @code{\addlyrics} keyword. Lyrics are entered by
1510 separating each syllable with a space.
1512 @lilypond[verbatim,quote]
1517 d4 b8 c4 a8 d4 b8 g4
1520 Girls and boys come out to play,
1525 Note the curly brackets delimiting both the music and the lyrics,
1526 and the double angle brackets @w{@code{<< ... >>}} around the
1527 whole piece to show that the music and lyrics are to occur at the
1530 @node Aligning lyrics to a melody
1531 @subsection Aligning lyrics to a melody
1534 @cindex extender line
1537 @cindex lyrics, aligning
1538 @cindex aligning lyrics
1539 @cindex lyrics, multi-syllable words
1540 @cindex words with multiple syllables in lyrics
1542 Music Glossary: @rglos{melisma}, @rglos{extender line}.
1544 The next line in the nursery rhyme is @notation{The moon doth
1545 shine as bright as day}. Let's extend it:
1547 @lilypond[verbatim,quote]
1552 d4 b8 c4 a8 d4 b8 g4
1553 g8 a4 b8 c b a d4 b8 g4.
1556 Girls and boys come out to play,
1557 The moon doth shine as bright as day;
1562 We see the extra lyrics do not align properly with the notes. The
1563 word @notation{shine} should be sung on two notes, not one. This
1564 is called a @notation{melisma}, a single syllable sung to more
1565 than one note. There are several ways to spread a syllable over
1566 multiple notes, the simplest being to add a slur across them, for
1567 details, see @ref{Ties and slurs}:
1569 @lilypond[verbatim,quote]
1574 d4 b8 c4 a8 d4 b8 g4
1575 g8 a4 b8 c( b) a d4 b8 g4.
1578 Girls and boys come out to play,
1579 The moon doth shine as bright as day;
1584 The words now line up correctly with the notes, but the automatic
1585 beaming for the notes above @notation{shine as} does not look right.
1586 We can correct this by inserting manual beaming commands to override
1587 the automatic beaming here, for details, see @ref{Automatic and
1590 @lilypond[verbatim,quote]
1595 d4 b8 c4 a8 d4 b8 g4
1596 g8 a4 b8 c([ b]) a d4 b8 g4.
1599 Girls and boys come out to play,
1600 The moon doth shine as bright as day;
1605 As an alternative to using slurs, the melismata may be indicated
1606 in just the lyrics by using an underscore @code{_} for each note
1607 that should be included in the melisma:
1609 @lilypond[verbatim,quote]
1614 d4 b8 c4 a8 d4 b8 g4
1615 g8 a4 b8 c[ b] a d4 b8 g4.
1618 Girls and boys come out to play,
1619 The moon doth shine _ as bright as day;
1624 If a syllable extends over several notes or a single very long
1625 note an @notation{extender line} is usually drawn from the
1626 syllable extending under all the notes for that syllable. It is
1627 entered as two underscores @code{__}. Here is an example from the
1628 first three bars of @notation{Dido's Lament}, from Purcell's
1629 @notation{Dido and Æneas}:
1631 @lilypond[verbatim,quote]
1637 b c4.( bes8 a4. g8 fis4.) g8 fis1
1641 am laid __ in earth,
1646 None of the examples so far have involved words containing more
1647 than one syllable. Such words are usually split one syllable to a
1648 note, with hyphens between syllables. Such hyphens are entered as
1649 two dashes, resulting in a centered hyphen between the syllables.
1650 Here is an example showing this and everything we have learned so
1651 far about aligning lyrics to notes.
1653 @c no ragged-right here because otherwise the hyphens get lost,
1654 @c but the example is long enough to avoid looking strange.
1655 @lilypond[verbatim,quote,noragged-right]
1661 d4 g4 g a8( b) g4 g4
1665 A -- way in a __ man -- ger,
1666 no __ crib for a bed, __
1671 Some lyrics, especially those in Italian, require the opposite:
1672 setting more than one syllable to a single note. This is
1673 achieved by linking the syllables together with a single
1674 underscore @code{_} (with no spaces), or enclosing them in quotes.
1675 Here's an example from Rossini's @notation{Figaro}, where
1676 @notation{al} has to be sung on the same note as the @notation{go} of
1677 @notation{Largo} in Figaro's aria @notation{Largo al factotum}:
1679 @c no ragged-right here because otherwise the hyphens get lost,
1680 @c but the example is long enough to avoid looking strange.
1681 @lilypond[verbatim,quote,noragged-right]
1687 c4.~ c8 d b c([ d]) b c d b c
1690 Lar -- go_al fac -- to -- tum del -- la cit -- tÃ
1697 Notation Reference: @ruser{Vocal music}.
1700 @node Lyrics to multiple staves
1701 @subsection Lyrics to multiple staves
1703 @cindex lyrics and multiple staves
1704 @cindex multiple staves and lyrics
1706 The simple approach using @code{\addlyrics} can be used for
1707 placing lyrics under more than one staff. Here is an
1708 example from Handel's @notation{Judas Maccabæus}:
1710 @lilypond[verbatim,quote]
1716 c8 c([ bes]) a a([ g]) f f'4. b, c4.~ c4
1719 Let flee -- cy flocks the hills a -- dorn, __
1725 r8 r4. r4 c8 a'([ g]) f f([ e]) d e([ d]) c bes'4
1728 Let flee -- cy flocks the hills a -- dorn,
1733 Scores any more complex than this simple example are better
1734 produced by separating out the score structure from the notes and
1735 lyrics with variables. These are discussed in @ref{Organizing
1736 pieces with variables}.
1740 Notation Reference: @ruser{Vocal music}.
1744 @section Final touches
1746 This is the final section of the tutorial; it demonstrates how to
1747 add the final touches to simple pieces, and provides an
1748 introduction to the rest of the manual.
1751 * Organizing pieces with variables::
1754 * Absolute note names::
1755 * After the tutorial::
1759 @node Organizing pieces with variables
1760 @subsection Organizing pieces with variables
1763 @cindex variables, defining
1766 @cindex assigning variables
1767 @cindex using variables
1768 @cindex variables, using
1769 @cindex variables, characters allowed in
1770 @cindex characters allowed in variables
1772 When all of the elements discussed earlier are combined to produce
1773 larger files, the music expressions get a lot bigger. In
1774 polyphonic music with many staves, the input files can become very
1775 confusing. We can reduce this confusion by using
1778 With variables (also known as identifiers or macros), we can break
1779 up complex music expressions. A variable is assigned as
1783 namedMusic = @{ @dots{} @}
1786 The contents of the music expression @code{namedMusic} can be used
1787 later by placing a backslash in front of the name
1788 (@code{\namedMusic}, just like a normal LilyPond command).
1790 @lilypond[verbatim,quote]
1791 violin = \new Staff {
1796 cello = \new Staff {
1811 The name of a variable must have alphabetic characters only, no
1812 numbers, underscores, or dashes.
1814 Variables must be defined @emph{before} the main music
1815 expression, but may be used as many times as required anywhere after
1816 they have been defined. They may even be used in a later definition
1817 of another variable, giving a way of shortening the input if a
1818 section of music is repeated many times.
1820 @lilypond[verbatim,quote]
1821 tripletA = \times 2/3 { c,8 e g }
1822 barA = { \tripletA \tripletA \tripletA \tripletA }
1829 Variables may be used for many other types of objects in
1830 the input. For example,
1835 aFivePaper = \paper @{ paperheight = 21.0 \cm @}
1838 Depending on its contents, the variable can be used in different
1839 places. The following example uses the above variables:
1852 @node Version number
1853 @subsection Version number
1857 @cindex version number
1859 @cindex future upgrades
1860 @cindex updating files
1861 @cindex files, updating
1865 @funindex convert-ly
1867 The @code{\version} statement records the version of LilyPond that
1868 was used to write the file:
1871 \version @w{"@version{}"}
1875 By convention, this is placed at the top of your LilyPond file.
1877 These annotations make future upgrades of LilyPond go more
1878 smoothly. Changes in the syntax are handled with a special
1879 program, @command{convert-ly}, and it uses @code{\version} to
1880 determine what rules to apply. For details, see
1881 @rprogram{Updating files with convert-ly}.
1885 @subsection Adding titles
1889 @cindex header block
1894 The title, composer, opus number, and similar information are
1895 entered in the @code{\header} block. This exists outside of the
1896 main music expression; the @code{\header} block is usually placed
1897 underneath the version number.
1900 \version @w{"@version{}"}
1908 @dots{} music @dots{}
1912 When the file is processed, the title and composer are printed
1913 above the music. More information on titling can be found in
1914 @ruser{Creating titles}.
1917 @node Absolute note names
1918 @subsection Absolute note names
1921 @cindex note names, absolute
1922 @cindex absolute mode
1923 @cindex absolute values for pitches
1924 @cindex pitches, absolute values
1925 @cindex absolute note names
1927 So far we have always used @code{\relative} to define pitches.
1928 This is the easiest way to enter most music, but another way of
1929 defining pitches exists: absolute mode.
1931 If you omit the @code{\relative}, LilyPond treats all pitches as
1932 absolute values. A @code{c'} will always mean middle C, a
1933 @code{b} will always mean the note one step below middle C, and a
1934 @code{g,} will always mean the note on the bottom staff of the
1937 @lilypond[verbatim,quote]
1945 Here is a four-octave scale:
1947 @lilypond[verbatim,quote]
1962 As you can see, writing a melody in the treble clef involves a lot
1963 of quote @code{'} marks. Consider this fragment from Mozart:
1965 @lilypond[verbatim,quote]
1969 cis''8. d''16 cis''8 e''4 e''8
1970 b'8. cis''16 b'8 d''4 d''8
1974 All these quotes makes the input less readable and they are a source
1975 of errors. With @code{\relative}, the previous example is much
1976 easier to read and type:
1978 @lilypond[verbatim,quote]
1982 cis8. d16 cis8 e4 e8
1987 If you make a mistake with an octave mark (@code{'} or @code{,})
1988 while working in @code{\relative} mode, it is very obvious -- many
1989 notes will be in the wrong octave. When working in absolute mode,
1990 a single mistake will not be as visible, and will not be as easy
1993 However, absolute mode is useful for music which has large
1994 intervals, and is extremely useful for computer-generated LilyPond
1999 @node After the tutorial
2000 @subsection After the tutorial
2002 After finishing the tutorial, you should probably try writing a
2003 piece or two. Start by adding notes to one of the
2004 @ref{Templates}. If you need any notation that was not covered in
2005 the tutorial, look at the Notation Reference, starting with
2006 @ruser{Musical notation}. If you want to write for an instrument
2007 ensemble that is not covered in the templates, take a look at
2008 @ref{Extending the templates}.
2010 Once you have written a few short pieces, read the rest of the
2011 Learning Manual (chapters 3-5). There's nothing wrong with
2012 reading it now, of course! However, the rest of the Learning
2013 Manual assumes that you are familiar with LilyPond input. You may
2014 wish to skim these chapters right now, and come back to them after
2015 you have more experience.
2017 In this tutorial and in the rest of the Learning Manual, there is a
2018 paragraph @strong{See also} at the end of each section, which contains
2019 cross-references to other sections: you should not follow these
2020 cross-references at first reading; when you have read all of the
2021 Learning Manual, you may want to read some sections again and follow
2022 cross-references for further reading.
2024 If you have not done so already, @emph{please} read @ref{About the
2025 documentation}. There is a lot of information about LilyPond, so
2026 newcomers often do not know where they should look for help. If
2027 you spend five minutes reading that section carefully, you might
2028 save yourself hours of frustration looking in the wrong places!